@font-face {
  font-family: "Gotham 4Kube";
  src: url("./assets/fonts/GothamBook.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham 4Kube";
  src: url("./assets/fonts/GothamMedium.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham 4Kube";
  src: url("./assets/fonts/GothamBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #19c37d;
  --green-dark: #047857;
  --green-soft: #dcfce7;
  --ink: #07130f;
  --ink-2: #102118;
  --muted: #65756e;
  --paper: #f7fbf8;
  --white: #ffffff;
  --line: rgba(7, 19, 15, 0.12);
  --dark-line: rgba(255, 255, 255, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max-width: 1160px;
  color-scheme: light;
  font-family:
    Avenir Next, Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(25, 195, 125, 0.18), transparent 26rem),
    linear-gradient(180deg, #f4fbf6 0%, #ffffff 42%, #ecf8f0 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(7, 19, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 19, 15, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), transparent 76%);
  animation: grid-drift 22s linear infinite;
}

body::after {
  position: fixed;
  inset: auto 8% 10% auto;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(25, 195, 125, 0.18), transparent 68%);
  filter: blur(8px);
  animation: ambient-orb 12s ease-in-out infinite alternate;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

code {
  padding: 0.12rem 0.36rem;
  border-radius: 999px;
  background: rgba(25, 195, 125, 0.13);
  color: var(--green-dark);
  font-size: 0.92em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 28px), 1240px);
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 78px rgba(7, 19, 15, 0.13);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 10px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__logo {
  width: clamp(172px, 16vw, 224px);
  height: auto;
  animation: logo-glow 5s ease-in-out infinite;
}

.header-quick-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(7, 19, 15, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(25, 195, 125, 0.11);
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--green);
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch a {
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch a[aria-current="page"] {
  background: var(--green);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero,
.section,
.logo-strip,
.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 144px 0 64px;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: -72px;
  left: 50%;
  z-index: -2;
  width: 100vw;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 251, 248, 0.94) 0%, rgba(247, 251, 248, 0.72) 34%, rgba(247, 251, 248, 0.12) 54%, transparent 64%),
    linear-gradient(180deg, transparent 78%, rgba(255, 255, 255, 0.3) 100%),
    url("./assets/hero-crisp-tech-background.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: 12%;
  left: -8%;
  z-index: -1;
  width: min(680px, 72vw);
  height: min(500px, 56vw);
  border-radius: 999px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 68%);
  filter: blur(14px);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
  box-shadow: 0 24px 90px rgba(7, 19, 15, 0.06);
  backdrop-filter: blur(10px);
}

.announcement {
  display: inline-flex;
  max-width: 680px;
  margin-bottom: 26px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(7, 19, 15, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(7, 19, 15, 0.08);
  animation: soft-float 6s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.4vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.3vw, 3.15rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero__lead {
  max-width: 640px;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(7, 19, 15, 0.16);
}

.button--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(7, 19, 15, 0.18);
}

.button--secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--green);
  color: var(--ink);
}

.hero-panel {
  justify-self: end;
  width: min(100%, 390px);
  display: grid;
  gap: 14px;
}

.hero-panel__visual {
  display: none;
}

.hero-panel__visual.has-bg--cloud {
  background: #f6fbf8;
}

.hero-panel__visual.has-bg--cloud::after {
  z-index: 0;
  opacity: 1;
  background-position: center;
}

.hero-panel__visual.has-bg--cloud::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(rgba(7, 19, 15, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 19, 15, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    42px 42px,
    42px 42px;
  animation: grid-drift 18s linear infinite;
  pointer-events: none;
}

.signal-card {
  min-height: 100%;
  padding: clamp(16px, 2vw, 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(7, 19, 15, 0.09);
  backdrop-filter: blur(14px);
  animation: soft-float 6.5s ease-in-out infinite;
}

.platform-overlay {
  max-width: none;
  padding: clamp(18px, 2.6vw, 24px);
  border: 1px solid rgba(7, 19, 15, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(7, 19, 15, 0.08);
}

.platform-overlay span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(25, 195, 125, 0.14);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-overlay h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.6vw, 1.55rem);
  line-height: 1.18;
}

.platform-overlay p {
  margin-bottom: 0;
  color: rgba(7, 19, 15, 0.68);
  line-height: 1.58;
  font-size: 0.94rem;
}

.signal-card strong,
.signal-card span {
  display: block;
}

.signal-card strong {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.42rem;
}

.signal-card span {
  color: rgba(7, 19, 15, 0.66);
  line-height: 1.45;
}

.hero-panel__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-panel__metrics .signal-card:nth-child(2) {
  animation-delay: 1.2s;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.logo-strip span {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.logo-strip span:hover {
  transform: translateY(-3px);
  background: #bbf7d0;
}

.section {
  padding: clamp(64px, 8vw, 84px) 0;
}

.section__heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.intro-section > p {
  margin: 28px 0 0;
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px rgba(7, 19, 15, 0.08);
}

.has-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.has-bg::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: bg-ken-burns 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.has-bg--cloud::after {
  background-image: url("./assets/hero-cloud-platform-clear.png");
  opacity: 1;
}

.has-bg--cloud-soft {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
}

.has-bg--cloud-soft::after {
  background-image: url("./assets/platform-light-background.png");
  background-position: 76% 48%;
  opacity: 0.22;
  mask-image: linear-gradient(90deg, transparent 10%, rgba(0, 0, 0, 0.5) 72%);
}

.has-bg--cloud-soft::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 251, 246, 0.88));
  pointer-events: none;
}

.has-bg--ai {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
}

.has-bg--ai::after {
  background-image: url("./assets/ai-data-pipeline.png");
  opacity: 0.12;
}

.has-bg--ai::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 0.9) 100%);
  pointer-events: none;
}

.has-bg--finops::after {
  background-image: url("./assets/finops-cloud-value.png");
  opacity: 0.16;
}

.has-bg--finops::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(135deg, rgba(7, 19, 15, 0.96), rgba(7, 19, 15, 0.9));
  pointer-events: none;
}

.has-bg > * {
  position: relative;
  z-index: 2;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.feature-copy {
  padding: clamp(22px, 3.4vw, 34px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 70px rgba(7, 19, 15, 0.08);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: clamp(18px, 2.6vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(7, 19, 15, 0.06);
}

.feature-section--dark {
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
}

.feature-section--dark .feature-copy,
.feature-section--dark .feature-list article {
  border: 1px solid var(--dark-line);
  background: rgba(7, 19, 15, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.feature-section--dark h2,
.feature-section--dark h3 {
  color: var(--white);
}

.feature-section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.capability-card {
  min-height: 252px;
  padding: clamp(18px, 2.6vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(7, 19, 15, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 195, 125, 0.5);
  box-shadow: 0 28px 70px rgba(7, 19, 15, 0.11);
}

.capability-card:nth-child(2n),
.feature-list article:nth-child(2n),
.timeline article:nth-child(2n),
.stats-grid article:nth-child(2n) {
  animation-delay: 0.16s;
}

.capability-card:nth-child(3n),
.feature-list article:nth-child(3n),
.timeline article:nth-child(3n),
.stats-grid article:nth-child(3n) {
  animation-delay: 0.28s;
}

.capability-card--featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 90% 12%, rgba(25, 195, 125, 0.24), transparent 14rem),
    var(--ink);
  color: var(--white);
}

@media (min-width: 1180px) {
  .capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.capability-card span,
.timeline span,
.contact-card span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.capability-card--featured span {
  background: rgba(25, 195, 125, 0.16);
  color: var(--green);
}

.capability-card--featured p {
  color: rgba(255, 255, 255, 0.72);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 16px;
}

.method-card {
  min-height: 100%;
  padding: clamp(22px, 3.4vw, 34px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 16%, rgba(25, 195, 125, 0.24), transparent 16rem),
    var(--ink);
  color: var(--white);
}

.method-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: clamp(18px, 2.6vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.timeline article:hover {
  transform: translateX(6px);
  border-color: rgba(25, 195, 125, 0.42);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stats-grid article {
  min-height: 160px;
  padding: clamp(18px, 2.6vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(7, 19, 15, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.stats-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(7, 19, 15, 0.11);
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.015em;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.quote-section {
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(25, 195, 125, 0.16), rgba(255, 255, 255, 0.7)),
    var(--white);
  box-shadow: 0 24px 80px rgba(7, 19, 15, 0.09);
}

.quote-section blockquote {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.quote-section p {
  margin-bottom: 0;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  margin-bottom: 54px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.contact-options {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card .button {
  margin-top: 8px;
}

.contact-card .button--secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 46px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes panel-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(0.4deg);
  }
}

@keyframes bg-ken-burns {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.16) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes logo-glow {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(25, 195, 125, 0));
  }

  50% {
    transform: scale(1.015);
    filter: drop-shadow(0 10px 18px rgba(25, 195, 125, 0.26));
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 56px 56px, 56px 56px;
  }
}

@keyframes ambient-orb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-70px, -42px, 0) scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px;
    border-radius: 28px;
  }

  .brand__logo {
    width: 164px;
  }

  .header-quick-cta {
    display: inline-flex;
    margin-left: auto;
    margin-right: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 70px rgba(7, 19, 15, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero,
  .intro-section,
  .feature-section,
  .method-section,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 44px;
  }

  .hero::before {
    bottom: -48px;
    background:
      linear-gradient(180deg, rgba(247, 251, 248, 0.86) 0%, rgba(247, 251, 248, 0.62) 46%, rgba(247, 251, 248, 0.38) 100%),
      url("./assets/hero-crisp-tech-background.png");
    background-position: 68% top;
    background-size: cover;
    filter: saturate(1.06) contrast(1.04);
  }

  .intro-section.has-bg--cloud-soft {
    padding: 24px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section > p {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .logo-strip,
  .site-footer {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    top: 10px;
    padding: 10px;
    margin-top: 0;
  }

  .brand__logo {
    width: 142px;
  }

  .header-quick-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.15rem, 9.4vw, 3.05rem);
    line-height: 1.08;
    letter-spacing: -0.018em;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
    line-height: 1.15;
  }

  h3 {
    font-size: 1.12rem;
  }

  p {
    line-height: 1.64;
  }

  .announcement {
    border-radius: 22px;
    margin-bottom: 18px;
  }

  .hero__copy {
    padding: 18px;
    border-radius: 26px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    display: grid;
    gap: 10px;
    min-height: auto;
    padding-top: 12px;
    width: 100%;
  }

  .hero-panel__visual {
    display: none;
  }

  .platform-overlay {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    padding: 14px;
    background: rgba(255, 255, 255, 0.76);
  }

  .platform-overlay h3 {
    font-size: 1.05rem;
  }

  .platform-overlay p {
    display: none;
  }

  .signal-card {
    width: 100%;
    padding: 14px;
  }

  .logo-strip {
    justify-content: flex-start;
    border-radius: 28px;
  }

  .section {
    padding: 48px 0;
  }

  .section__heading {
    margin-bottom: 24px;
  }

  .capability-grid,
  .stats-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .stats-grid article {
    min-height: auto;
  }

  .capability-card,
  .feature-list article,
  .timeline article,
  .contact-card {
    padding: 18px;
  }

  .feature-section--dark {
    padding: 22px;
  }

  .capability-card--featured {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
