/* =========================================================
   Fly Fly Check — Drone Hyperspectral Safety-Net Inspection
   Brand palette taken from the logo: forest green + leaf green
   on white, with a hyperspectral spectrum used as an accent.
   ========================================================= */

:root {
  --green-900: #0c2418;
  --green-800: #103420;
  --green-700: #154a31;
  --green-600: #1b6442;
  --green-500: #239a5f; /* primary */
  --green-400: #32c074;
  --mint-300:  #7ef0b0;
  --mint-200:  #c8f7dd;

  --ink:    #0c1611;
  --ink-2:  #1d2a22;
  --muted:  #5c6b62;
  --line:   #e4ece7;

  --paper:  #ffffff;
  --page:   #e7f3ec; /* pale green page base */
  --mist:   #ddeee4;
  --mist-2: #e6f1ea;

  --dark:   #0a1710;
  --dark-2: #06110b;

  --spectrum: linear-gradient(90deg,#06b6d4 0%,#22c55e 28%,#eab308 58%,#f97316 80%,#ef4444 100%);

  --shadow-sm: 0 2px 8px rgba(12,40,24,.06);
  --shadow:    0 18px 50px -20px rgba(10,40,24,.28);
  --shadow-lg: 0 40px 90px -30px rgba(8,34,20,.45);

  --radius: 18px;
  --maxw: 1200px;

  --font-head: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; margin: 0; letter-spacing: -0.02em; color: var(--ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green-500); border-radius: 2px; }
.eyebrow.on-dark { color: var(--mint-300); }
.eyebrow.on-dark::before { background: var(--mint-300); }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.bg-mist { background: var(--mist); }
.bg-white { background: var(--paper); }
.bg-dark { background: radial-gradient(120% 120% at 80% -10%, #11331f 0%, var(--dark) 45%, var(--dark-2) 100%); color: #dff1e7; }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green-500); color: #fff; box-shadow: 0 10px 24px -10px rgba(35,154,95,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(35,154,95,.8); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline { background: transparent; color: var(--green-700); border-color: var(--line); }
.btn-outline:hover { border-color: var(--green-500); color: var(--green-600); transform: translateY(-2px); }

/* ===================== NAV (white) ===================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink-2); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--green-500); transition: width .25s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; color: #eafff3;
  background: radial-gradient(130% 120% at 75% -20%, #114a2e 0%, #0a2317 45%, #06120c 100%); }
.hero-aurora { position: absolute; inset: 0; z-index: 0; opacity: .9; mix-blend-mode: screen; pointer-events: none; }
.hero-grid-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(rgba(126,240,176,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(126,240,176,.05) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 100%); }
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: clamp(70px, 10vw, 120px) 0 clamp(70px, 9vw, 110px); }
.hero-copy { max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px;
  background: rgba(126,240,176,.1); border: 1px solid rgba(126,240,176,.28); color: var(--mint-300);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 24px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 0 0 rgba(50,192,116,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(50,192,116,.6);} 70%{box-shadow:0 0 0 9px rgba(50,192,116,0);} 100%{box-shadow:0 0 0 0 rgba(50,192,116,0);} }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); color: #fff; letter-spacing: -.03em; }
.hero h1 .grad { background: var(--spectrum); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.16rem; color: #b9d6c6; margin: 22px 0 14px; }
.hero-tag { font-family: var(--font-head); font-weight: 600; color: var(--mint-300); letter-spacing: .01em; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: #fff; }
.hero-stat .num .grad { background: var(--spectrum); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat .lbl { font-size: .82rem; color: #9ec1ad; letter-spacing: .02em; }

/* centered hero: heading block stacked above the image */
.hero-inner.hero-centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-centered .hero-copy { max-width: 880px; }
.hero-centered .hero-actions { justify-content: center; }
.hero-centered .hero-stats { justify-content: center; }
.hero-centered .hero-stat { text-align: center; }
.hero-centered .hero-visual { width: 100%; max-width: 880px; margin-top: 46px; }
.hero-centered .hero-card { transform: none; margin-inline: auto; }

.hero-visual { position: relative; }
.hero-card { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid rgba(126,240,176,.25);
  box-shadow: var(--shadow-lg); transform: perspective(1400px) rotateY(-7deg) rotateX(3deg); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card .scanline { position: absolute; left: 0; right: 0; height: 90px; pointer-events: none;
  background: linear-gradient(180deg, rgba(126,240,176,0) 0%, rgba(126,240,176,.28) 50%, rgba(126,240,176,0) 100%);
  animation: scan 4.5s ease-in-out infinite; }
@keyframes scan { 0%,100%{ transform: translateY(-10%);} 50%{ transform: translateY(560%);} }
.hero-tagchip { position: absolute; bottom: 16px; left: 16px; right: 16px; display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-radius: 14px; background: rgba(6,18,12,.66); backdrop-filter: blur(6px); border: 1px solid rgba(126,240,176,.22); }
.hero-tagchip b { color: #fff; font-family: var(--font-head); }
.hero-tagchip .legend { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: #cfe9da; }
.hero-tagchip .legend i { width: 44px; height: 8px; border-radius: 4px; background: var(--spectrum); display: inline-block; }
.hero-float { position: absolute; padding: 11px 15px; border-radius: 14px; background: rgba(255,255,255,.94); color: var(--ink);
  box-shadow: var(--shadow); font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.hero-float.treated { top: -18px; right: 6%; }
.hero-float.untreated { bottom: 16%; left: -22px; }
.hero-float .tick { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: .8rem; }
.hero-float.treated .tick { background: var(--green-500); }
.hero-float.untreated .tick { background: #ef4444; }

/* ===================== LOGO LOOP (awards marquee) ===================== */
.loop-band { padding: 30px 0; background: var(--paper); border-block: 1px solid var(--line); }
.loop-label { text-align: center; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; font-weight: 600; }
.logoloop { position: relative; overflow: hidden; --gap: 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.logoloop__track { display: flex; width: max-content; gap: var(--gap); animation: loop-scroll 38s linear infinite; will-change: transform; }
.logoloop:hover .logoloop__track { animation-play-state: paused; }
@keyframes loop-scroll { to { transform: translateX(calc(-50% - var(--gap) / 2)); } }
.loop-chip { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 11px; padding: 13px 22px; border-radius: 14px;
  background: var(--mist); border: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; color: var(--ink-2);
  font-size: .96rem; white-space: nowrap; transition: transform .25s ease, border-color .25s; }
.loop-chip:hover { transform: translateY(-3px); border-color: var(--green-400); }
.loop-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: var(--green-500); font-size: .95rem; }
.loop-chip:nth-child(3n) .ic { background: var(--green-700); }
.loop-chip:nth-child(3n+1) .ic { background: linear-gradient(135deg, var(--green-400), #06b6d4); }

/* ===================== PROBLEM ===================== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prob-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease; }
.prob-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prob-card .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: #fdeceb; color: #e0483f; font-size: 1.3rem; }
.prob-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.prob-card p { color: var(--muted); margin: 0; font-size: .96rem; }

.flow-card { background: linear-gradient(160deg, var(--green-800), var(--green-900)); color: #d9f0e2; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); position: relative; overflow: hidden; }
.flow-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.flow-step { display: flex; gap: 14px; padding: 13px 0; border-top: 1px dashed rgba(126,240,176,.2); }
.flow-step:first-of-type { border-top: 0; }
.flow-step .n { flex: 0 0 28px; height: 28px; border-radius: 8px; background: rgba(126,240,176,.16); color: var(--mint-300);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: .85rem; }
.flow-step b { color: #fff; font-size: .98rem; }
.flow-step p { margin: 2px 0 0; font-size: .9rem; color: #a7ccb6; }
.flow-card .ribbon { position: absolute; top: 16px; right: -38px; transform: rotate(45deg); background: #e0483f; color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; padding: 6px 44px; }

/* ===================== SOLUTION (features) ===================== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s; }
.feat-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--spectrum); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--mist-2); color: var(--green-600); font-size: 1.5rem; }
.feat-card h3 { font-size: 1.16rem; margin-bottom: 9px; }
.feat-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.feat-card .tagline { margin-top: 12px; font-size: .76rem; color: var(--green-600); font-weight: 600; letter-spacing: .02em; }

/* ===================== PIPELINE (dark + strands) ===================== */
.pipe-wrap { position: relative; }
.pipe-strands { position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none; }
.pipe-content { position: relative; z-index: 2; }
.pipeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.pipe-step { position: relative; padding: 26px 20px; border-radius: 16px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(126,240,176,.16); backdrop-filter: blur(4px); transition: transform .25s ease, background .25s; }
.pipe-step:hover { transform: translateY(-6px); background: rgba(126,240,176,.08); }
.pipe-step .num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: transparent;
  background: var(--spectrum); -webkit-background-clip: text; background-clip: text; line-height: 1; margin-bottom: 14px; }
.pipe-step h4 { font-size: 1.05rem; margin-bottom: 8px; color: #fff; }
.pipe-step p { font-size: .88rem; color: #a7ccb6; margin: 0; }
.pipe-step .arrow { position: absolute; right: -13px; top: 50%; transform: translateY(-50%); color: rgba(126,240,176,.5); font-size: 1.1rem; z-index: 3; }
.pipe-step:last-child .arrow { display: none; }

/* ===================== PLATFORM (white — drone) ===================== */
.platform { background: var(--paper); }
.platform-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.drone-stage { position: relative; background:
    radial-gradient(60% 60% at 50% 45%, #f6faf7 0%, #ffffff 70%); border-radius: 26px; padding: 30px;
  border: 1px solid var(--line); box-shadow: inset 0 0 0 1px #fff, var(--shadow); }
.drone-stage::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: 34px; height: 26px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(12,40,24,.18), transparent); filter: blur(3px); z-index: 0; }
.drone-stage img { position: relative; z-index: 1; margin-inline: auto; animation: hover-float 6s ease-in-out infinite; }
@keyframes hover-float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.drone-badge { position: absolute; z-index: 2; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 8px 13px;
  box-shadow: var(--shadow-sm); font-size: .8rem; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.drone-badge i { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); }
.drone-badge.b1 { top: 22px; left: 22px; }
.drone-badge.b2 { bottom: 30px; right: 22px; }
.spec-list { margin-top: 26px; display: grid; gap: 2px; }
.spec-row { display: flex; justify-content: space-between; gap: 18px; padding: 14px 2px; border-bottom: 1px solid var(--line); }
.spec-row .k { color: var(--muted); font-size: .92rem; }
.spec-row .v { font-family: var(--font-head); font-weight: 600; color: var(--ink); text-align: right; font-size: .96rem; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.spec-chips span { font-size: .82rem; font-weight: 600; color: var(--green-700); background: var(--mist-2); border-radius: 999px; padding: 7px 14px; }

/* ===================== TECHNOLOGY (peaks + table) ===================== */
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.peak-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.peak-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.peak-card > p { color: var(--muted); margin: 0 0 20px; font-size: .96rem; }
.spectro { position: relative; height: 150px; margin: 10px 0 22px; border-radius: 12px; background: var(--dark);
  overflow: hidden; border: 1px solid var(--green-800); }
.spectro svg { width: 100%; height: 100%; display: block; }
.peak-tags { display: grid; gap: 10px; }
.peak-tag { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 12px; background: var(--mist); border: 1px solid var(--line); }
.peak-tag .sw { width: 12px; height: 12px; border-radius: 4px; flex: 0 0 auto; }
.peak-tag b { font-family: var(--font-head); }
.peak-tag span { color: var(--muted); font-size: .9rem; }

.cmp-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
table.cmp { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.cmp th, table.cmp td { text-align: left; padding: 12px 12px; border-bottom: 1px solid var(--line); }
table.cmp thead th { font-family: var(--font-head); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
table.cmp td:first-child { font-weight: 600; color: var(--ink); }
table.cmp tr.win { background: linear-gradient(90deg, rgba(50,192,116,.1), rgba(50,192,116,0)); }
table.cmp tr.win td:first-child { color: var(--green-700); }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .74rem; font-weight: 600; }
.pill.high { background: #e7f7ee; color: var(--green-700); }
.pill.mid  { background: #fef5e6; color: #b8791b; }
.pill.low  { background: #fdecec; color: #d0413a; }

/* ===================== ORBIT showcase ===================== */
.orbit-section { position: relative; overflow: hidden; }
.orbit-stage { position: relative; width: 100%; max-width: 880px; margin: 10px auto 0; aspect-ratio: 880 / 520; }
.orbit-rotor { position: absolute; inset: 0; transform: rotate(-8deg); }
.orbit-item { position: absolute; top: 0; left: 0; width: 132px; height: 132px; margin: -66px 0 0 -66px;
  offset-rotate: 0deg; offset-anchor: center; animation: orbit-move 34s linear infinite; will-change: offset-distance; }
.orbit-item .frame { width: 100%; height: 100%; border-radius: 16px; overflow: hidden; transform: rotate(8deg);
  border: 3px solid #fff; box-shadow: var(--shadow); background: #fff; }
.orbit-item .frame img { width: 100%; height: 100%; object-fit: cover; }
@keyframes orbit-move { from { offset-distance: 0%; } to { offset-distance: 100%; } }
.orbit-center { position: absolute; inset: 0; display: grid; place-items: center; z-index: 5; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,255,255,.96) 30%, rgba(255,255,255,.7) 52%, rgba(255,255,255,0) 72%); }
.orbit-core { text-align: center; width: min(330px, 58%); }
.orbit-core .ring { width: 120px; height: 120px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, var(--green-500), var(--green-700)); color: #fff; box-shadow: 0 20px 50px -16px rgba(35,154,95,.7);
  position: relative; }
.orbit-core .ring::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px dashed rgba(35,154,95,.4); animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-core .ring svg { width: 56px; height: 56px; }
.orbit-core h3 { font-size: 1.5rem; margin-bottom: 8px; }
.orbit-core p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ===================== SOCIAL IMPACT ===================== */
.impact-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: start; }
.impact-list { display: grid; gap: 16px; margin-top: 6px; }
.impact-item { display: flex; gap: 16px; padding: 18px 20px; border-radius: 16px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(126,240,176,.16); transition: background .25s, transform .25s; }
.impact-item:hover { background: rgba(126,240,176,.08); transform: translateX(4px); }
.impact-item .n { flex: 0 0 38px; height: 38px; border-radius: 11px; background: rgba(126,240,176,.14); color: var(--mint-300);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.impact-item b { color: #fff; font-size: 1.04rem; }
.impact-item p { margin: 3px 0 0; color: #a7ccb6; font-size: .93rem; }
.impact-aside { position: sticky; top: 100px; }
.impact-quote { background: linear-gradient(160deg, rgba(126,240,176,.12), rgba(126,240,176,.03)); border: 1px solid rgba(126,240,176,.25);
  border-radius: 20px; padding: 30px; }
.impact-quote .mark { font-family: var(--font-head); font-size: 3rem; color: var(--mint-300); line-height: .6; }
.impact-quote p { font-size: 1.15rem; color: #eafff3; margin: 10px 0 16px; }
.impact-quote b { font-family: var(--font-head); color: var(--mint-300); }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.metric { text-align: center; padding: 26px 16px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(126,240,176,.16); }
.metric .big { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: transparent; background: var(--spectrum);
  -webkit-background-clip: text; background-clip: text; }
.metric .big.word { font-size: 1.3rem; }
.metric p { margin: 6px 0 0; font-size: .88rem; color: #a7ccb6; }

/* ===================== MARKET ===================== */
.market-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.market-badge { display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; border-radius: 999px; background: #e7f7ee;
  color: var(--green-700); font-weight: 700; font-family: var(--font-head); margin-bottom: 18px; }
.market-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.market-inner h2 em { font-style: normal; color: var(--green-600); }
.market-inner > div > p { color: var(--muted); }
.market-list { display: grid; gap: 14px; }
.market-list .row { display: flex; gap: 14px; padding: 18px 20px; border-radius: 14px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.market-list .row .x { flex: 0 0 26px; height: 26px; border-radius: 8px; background: #fdecec; color: #d0413a; display: grid; place-items: center; font-weight: 700; }
.market-list .row.yes .x { background: #e7f7ee; color: var(--green-600); }
.market-list .row b { display: block; color: var(--ink); font-size: .98rem; }
.market-list .row span { color: var(--muted); font-size: .9rem; }

/* ===================== AWARDS & NEWS ===================== */
.awards-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.timeline { display: grid; gap: 6px; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.tl-item .when { font-family: var(--font-head); font-weight: 600; color: var(--green-600); font-size: .9rem; }
.tl-item .what b { display: block; color: var(--ink); }
.tl-item .what span { color: var(--muted); font-size: .92rem; }
.media-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--paper); margin-bottom: 22px; }
.media-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.media-card .cap { padding: 16px 20px; }
.media-card .cap .tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-600); font-weight: 700; }
.media-card .cap b { display: block; margin-top: 5px; color: var(--ink); }
.media-card .cap p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }

/* ===================== CONTACT / FOOTER ===================== */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-card { background: rgba(255,255,255,.04); border: 1px solid rgba(126,240,176,.18); border-radius: 22px; padding: 34px; }
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(126,240,176,.14); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic { flex: 0 0 44px; height: 44px; border-radius: 12px; background: rgba(126,240,176,.14); color: var(--mint-300); display: grid; place-items: center; }
.contact-row .k { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #8fb3a0; }
.contact-row .v { color: #fff; font-weight: 500; }
.contact-row a.v:hover { color: var(--mint-300); }
.contact-left h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: #fff; margin-bottom: 16px; }
.contact-left p { color: #a7ccb6; margin-bottom: 26px; }

.footer { background: var(--paper); border-top: 1px solid var(--line); padding: 44px 0 30px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer img { height: 50px; }
.footer .legal { color: var(--muted); font-size: .85rem; }
.footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer .links a { color: var(--ink-2); font-size: .9rem; }
.footer .links a:hover { color: var(--green-600); }

/* ===================== Reveal animation ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .hero-inner, .split, .platform-inner, .tech-grid, .impact-inner, .market-inner, .contact-inner, .awards-inner { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline { grid-template-columns: repeat(2, 1fr); }
  .pipe-step .arrow { display: none; }
  .impact-aside { position: static; }
  .hero-float.untreated { left: 4%; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 24px 18px; }
  .nav.open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .cards-3, .feature-grid, .metrics { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .orbit-item { width: 92px; height: 92px; margin: -46px 0 0 -46px; }
  .tl-item { grid-template-columns: 92px 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  html { scroll-behavior: auto; }
}
