/* ============================================================
   aboboxx — Website 2026
   Design System → Web
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --green-900: #0f3a33;
  --green-800: #14463d;
  --green-700: #195c52;
  --green-600: #19594d;
  --green-300: #5a8c83;

  --orange-600: #d96704;
  --orange-500: #e8713c;
  --orange-300: #eb9f5b;
  --orange-100: #fbe6d6;

  --off-white: #faf8f3;
  --cream: #f2ede2;
  --beige: #e6dcc6;
  --warm-gray: #c9c1b0;
  --kraft: #b08968;

  --ink: #1a1f1d;
  --ink-2: #3a4340;
  --ink-3: #6b7470;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;

  --maxw: 1240px;
  --pad: clamp(22px, 5vw, 80px);

  --shadow-sm: 0 2px 8px rgba(15, 58, 51, 0.06);
  --shadow-md: 0 18px 50px -20px rgba(15, 58, 51, 0.28);
  --shadow-lg: 0 40px 90px -30px rgba(15, 58, 51, 0.42);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Keyboard focus (a11y) ---------- */
:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 3px;
}
.bg-green :focus-visible,
.bg-green-deep :focus-visible,
.hero :focus-visible,
.photo-band :focus-visible,
.final :focus-visible,
.footer :focus-visible { outline-color: #fff; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

section { position: relative; }

.section-pad { padding-block: clamp(72px, 11vw, 150px); }

.bg-cream { background: var(--cream); }
.bg-off { background: var(--off-white); }
.bg-green {
  background: var(--green-700);
  color: var(--off-white);
}
.bg-green-deep {
  background: var(--green-900);
  color: var(--off-white);
}

/* ---------- Type atoms ---------- */
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-600);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--orange-500);
  display: inline-block;
}
.bg-green .eyebrow,
.bg-green-deep .eyebrow { color: var(--orange-300); }
.bg-green .eyebrow::before,
.bg-green-deep .eyebrow::before { background: var(--orange-300); }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.h-section {
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.03;
}
.h-sub {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
}

.lead {
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
  margin: 0;
}
.bg-green .lead,
.bg-green-deep .lead { color: rgba(255, 255, 255, 0.82); }

.body-text {
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 60ch;
  text-wrap: pretty;
  margin: 0;
}
.bg-green .body-text { color: rgba(255, 255, 255, 0.8); }

.caption {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin: 0;
}
.bg-green .caption,
.bg-green-deep .caption { color: rgba(255, 255, 255, 0.58); }

.accent { color: var(--orange-500); }
.green-text { color: var(--green-700); }

/* Section header block */
.sec-head { max-width: 64ch; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head .lead { margin-top: 24px; }
.sec-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
  padding: 18px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn .arr {
  transition: transform 0.25s var(--ease);
  display: inline-block;
}
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(217, 103, 4, 0.6);
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--green-700);
  color: var(--off-white);
}
.btn-dark:hover { background: var(--green-900); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: rgba(25, 92, 82, 0.32);
}
.btn-outline:hover {
  border-color: var(--green-700);
  background: rgba(25, 92, 82, 0.05);
}
.bg-green .btn-outline,
.bg-green-deep .btn-outline {
  color: var(--off-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.bg-green .btn-outline:hover,
.bg-green-deep .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-ghost {
  padding-inline: 0;
  color: var(--green-700);
  font-weight: 600;
}
.bg-green .btn-ghost { color: var(--orange-300); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn-lg {
  font-size: 17px;
  padding: 21px 34px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom-color: rgba(26, 31, 29, 0.09);
  box-shadow: 0 6px 24px -18px rgba(15, 58, 51, 0.5);
}
.nav-inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.3s var(--ease);
}
.nav.scrolled .nav-inner { height: 84px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 70px;
  width: auto;
  transition: height 0.3s var(--ease);
}
.nav.scrolled .nav-logo img { height: 60px; }
/* protect the mark with breathing room + subtle lift on the dark hero */
.nav-logo { padding: 6px 4px; }
.nav:not(.scrolled) .logo-light { filter: drop-shadow(0 2px 14px rgba(8, 34, 29, 0.5)); }
/* On the dark hero, before scroll, use the white logo */
.nav:not(.scrolled) .logo-dark { display: none; }
.nav.scrolled .logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--off-white);
  padding: 9px 15px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  transition: color 0.2s, background 0.2s;
}
.nav.scrolled .nav-links a { color: var(--ink-2); }
.nav-links a:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.nav.scrolled .nav-links a:hover {
  background: rgba(25, 92, 82, 0.08);
  color: var(--green-700);
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--orange-500);
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-600); transform: translateY(-1px); }

.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav.scrolled .nav-burger span { background: var(--ink); }
.nav-burger span:nth-child(1) { top: 17px; }
.nav-burger span:nth-child(2) { top: 23px; }
.nav-burger span:nth-child(3) { top: 29px; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 84px 0 auto 0;
  background: var(--green-900);
  z-index: 99;
  padding: 24px var(--pad) 40px;
  transform: translateY(-120%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a {
  color: var(--off-white);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .btn { margin-top: 22px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--green-700);
  color: var(--off-white);
  padding-top: 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: stretch;
  min-height: min(88vh, 860px);
}
.hero-left {
  padding: clamp(40px, 6vw, 92px) clamp(40px, 5vw, 80px) clamp(48px, 6vw, 92px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--orange-300);
}
.hero h1 {
  color: #fff;
  font-size: clamp(46px, 6.6vw, 96px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.045em;
}
.hero h1 .accent { color: var(--orange-300); }
.hero-sub {
  font-size: clamp(20px, 1.85vw, 27px);
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.015em;
  margin: 34px 0 0;
  max-width: 40ch;
}
.hero-text {
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.72);
  margin: 24px 0 0;
  max-width: 46ch;
}
.hero .cta-row { margin-top: 48px; }

.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 36%;
}
/* cinematic green edge wash — smooth, keeps faces/box clear */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg,
      rgba(25, 92, 82, 0.88) 0%,
      rgba(25, 92, 82, 0.66) 10%,
      rgba(25, 92, 82, 0.4) 20%,
      rgba(25, 92, 82, 0.18) 30%,
      rgba(25, 92, 82, 0.05) 40%,
      transparent 52%),
    linear-gradient(0deg, rgba(15, 58, 51, 0.36) 0%, rgba(15,58,51,0.1) 16%, transparent 34%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: 0;
  bottom: clamp(28px, 4vw, 48px);
  z-index: 3;
  background: rgba(15, 58, 51, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 22px 12px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
}
.hero-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-400, #ff9045);
  box-shadow: 0 0 0 4px rgba(232, 113, 60, 0.3);
}

/* trust strip under hero */
.trust {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding-block: 26px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; color: var(--orange-300); flex-shrink: 0; }
.trust-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-right: auto;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.highlight-line {
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--green-700);
  max-width: 22ch;
  margin: 0;
}
.highlight-line .accent { color: var(--orange-500); }

.problem-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 70px);
}

.card-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mini-card {
  background: #fff;
  border: 1px solid rgba(26, 31, 29, 0.07);
  border-radius: var(--r-lg);
  padding: 40px 36px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 244px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mini-card .idx {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--orange-500);
}
.mini-card h4 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.mini-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  margin-top: auto;
}
.mini-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--cream);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-card .ico svg { width: 22px; height: 22px; }

/* ============================================================
   STATS / MARKET
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.bg-cream .stat-grid {
  background: rgba(26, 31, 29, 0.1);
  border-color: rgba(26, 31, 29, 0.1);
}
.stat {
  background: var(--green-700);
  padding: clamp(34px, 3.4vw, 52px) clamp(28px, 2.6vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
}
.bg-cream .stat { background: var(--cream); }
.stat .num {
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #fff;
}
.bg-cream .stat .num { color: var(--green-700); }
.stat .num .u { font-size: 0.42em; color: var(--orange-300); font-weight: 600; margin-left: 3px; }
.bg-cream .stat .num .u { color: var(--orange-500); }
.stat .desc {
  font-size: 18px;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  margin: 0;
}
.bg-cream .stat .desc { color: var(--ink); }
.stat .src {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.bg-cream .stat .src { color: var(--ink-3); border-top-color: rgba(26, 31, 29, 0.12); }

.stat-foot {
  margin-top: clamp(36px, 4vw, 56px);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 30ch;
}
.bg-green .stat-foot { color: #fff; }
.stat-foot .accent { color: var(--orange-300); }

/* ============================================================
   BENEFITS STRATEGY (split: text + big stat)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.bigstat {
  background: var(--green-700);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 64px);
  box-shadow: var(--shadow-md);
}
.bigstat .num {
  font-size: clamp(88px, 12vw, 150px);
  line-height: 0.84;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.bigstat .num .u { color: var(--orange-300); }
.bigstat p {
  font-size: 19px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin: 26px 0 0;
  max-width: 30ch;
}
.bigstat .src {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

/* ============================================================
   INSIGHT (94%) — big editorial green
   ============================================================ */
.insight {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.insight-big {
  font-size: clamp(130px, 22vw, 320px);
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #fff;
}
.insight-big .u { color: var(--orange-300); font-size: 0.4em; vertical-align: 0.35em; }
.insight-right h2 { color: #fff; margin-bottom: 22px; }
.insight-q {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--orange-300);
  font-style: italic;
  margin: 0 0 28px;
}
.insight-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* ============================================================
   SOLUTION THESIS (text + photo)
   ============================================================ */
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.media-split.reverse .media-frame { order: -1; }
.media-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--beige);
}
.media-frame.wide { aspect-ratio: 5 / 4; }
.media-frame.land { aspect-ratio: 3 / 2; }
.media-frame.keep-land { aspect-ratio: 3 / 2; }

/* ---------- Full-bleed cinematic photo band ---------- */
.photo-band {
  position: relative;
  width: 100%;
  min-height: min(84vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-900);
}
.photo-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 46, 40, 0.94) 0%, rgba(12, 46, 40, 0.6) 22%, rgba(12, 46, 40, 0.12) 42%, transparent 60%),
    linear-gradient(90deg, rgba(12, 46, 40, 0.55) 0%, rgba(12,46,40,0.1) 26%, transparent 48%);
  pointer-events: none;
}
.photo-band .wrap { position: relative; z-index: 2; padding-block: clamp(48px, 7vw, 96px); }
.photo-band .band-inner { max-width: 42ch; color: #fff; }
.photo-band .eyebrow { color: var(--orange-300); }
.photo-band .eyebrow::before { background: var(--orange-300); }
.photo-band h2 { color: #fff; }
.photo-band .lead { color: rgba(255, 255, 255, 0.88); margin-top: 22px; }
.photo-band .highlight-line { color: #fff; }
.band-objpos-center > img { object-position: center 38%; }
.band-objpos-left > img { object-position: 30% 42%; }
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(15, 58, 51, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================================
   WHAT IS / cards 5
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  border: 1px solid rgba(26, 31, 29, 0.07);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 264px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-700);
  color: var(--orange-300);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature .ico svg { width: 23px; height: 23px; }
.feature h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-top: auto;
}

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 0 26px 0 0;
}
.step::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(26, 31, 29, 0.12);
}
.bg-green .step::before { background: rgba(255, 255, 255, 0.18); }
.step:last-child::before { right: 26px; }
.step .num {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 26px;
}
.bg-green .step .num { background: var(--orange-500); }
.step h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.22;
  padding-right: 12px;
}
.bg-green .step h4 { color: #fff; }

.note-line {
  margin-top: clamp(40px, 5vw, 60px);
  padding: 26px 32px;
  background: var(--cream);
  border-left: 3px solid var(--orange-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.bg-green .note-line {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

/* ============================================================
   WHAT'S IN THE BOX (photo + list)
   ============================================================ */
.box-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.box-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(26, 31, 29, 0.1);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.bg-green .box-list li { border-top-color: rgba(255, 255, 255, 0.16); color: #fff; }
.box-list li:last-child { border-bottom: 1px solid rgba(26, 31, 29, 0.1); }
.bg-green .box-list li:last-child { border-bottom-color: rgba(255, 255, 255, 0.16); }
.box-list li .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-green .box-list li .tick { background: rgba(232, 113, 60, 0.22); color: var(--orange-300); }
.box-list li .tick svg { width: 14px; height: 14px; }

/* ============================================================
   USE CASES — chips/cards
   ============================================================ */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usecase {
  background: #fff;
  border: 1px solid rgba(26, 31, 29, 0.07);
  border-radius: var(--r-md);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 168px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.usecase:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(25, 92, 82, 0.2);
}
.usecase .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.usecase .ico svg { width: 21px; height: 21px; }
.usecase h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-top: auto;
}
.usecase.feat { background: var(--green-700); color: #fff; border: none; }
.usecase.feat .ico { background: rgba(255, 255, 255, 0.12); color: var(--orange-300); }
.usecase.feat h4 { color: #fff; }

/* ============================================================
   FOR WHOM
   ============================================================ */
.audience {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(26, 31, 29, 0.1);
  border: 1px solid rgba(26, 31, 29, 0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.audience-list.wide { grid-template-columns: repeat(3, 1fr); }
.audience-list li {
  background: var(--off-white);
  padding: 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  min-height: 116px;
  justify-content: center;
}
.audience-list li .lab {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--orange-500);
  font-weight: 500;
}
.audience-note {
  margin-top: 30px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--green-700);
  max-width: 26ch;
}
.audience-note .accent { color: var(--orange-500); }

/* employee value list */
.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.value-list li {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px 0;
  border-top: 1px solid rgba(26, 31, 29, 0.12);
}
.value-list li:last-child { border-bottom: 1px solid rgba(26, 31, 29, 0.12); }
.value-list .lab {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green-700);
}
.value-list .vt {
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-2);
}

/* ============================================================
   COMPARISON
   ============================================================ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.compare-col {
  border-radius: var(--r-xl);
  padding: clamp(34px, 4vw, 52px);
  display: flex;
  flex-direction: column;
}
.compare-col.dull {
  background: #fff;
  border: 1px solid rgba(26, 31, 29, 0.1);
}
.compare-col.win {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.compare-col .ctitle {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.compare-col.win .ctitle { color: #fff; }
.compare-col .csub {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 28px;
}
.compare-col.win .csub { color: var(--orange-300); }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; }
.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(26, 31, 29, 0.1);
  font-size: 17.5px;
  line-height: 1.35;
}
.compare-col.win li { border-top-color: rgba(255, 255, 255, 0.16); }
.compare-col li .mk {
  flex-shrink: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  line-height: 1.45;
}
.compare-col.dull li .mk { color: var(--ink-3); }
.compare-col.win li .mk { color: var(--orange-300); }
.compare-foot {
  margin-top: auto;
  padding-top: 28px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.compare-col.dull .compare-foot { color: var(--ink-3); }
.compare-col.win .compare-foot { color: #fff; }
.compare-banner {
  text-align: center;
  margin-top: clamp(36px, 4vw, 52px);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--green-700);
}
.compare-banner .accent { color: var(--orange-500); }

/* ============================================================
   COMPANY MESSAGE
   ============================================================ */
.msg-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}
.msg-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 16px 26px;
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
}
.msg-chip.accent-chip {
  background: var(--orange-500);
  border-color: var(--orange-500);
}

/* ============================================================
   SACHBEZUG
   ============================================================ */
.sach {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.sach-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.sach-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green-700);
  border: 1px solid rgba(25, 92, 82, 0.16);
}
.warn-box {
  background: var(--beige);
  border: 1px solid rgba(26, 31, 29, 0.10);
  border-left: 3px solid var(--green-600);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 30px 34px;
}
.warn-box .wlabel {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}
.warn-box .wlabel svg { width: 17px; height: 17px; }
.warn-box h4 {
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 12px;
}
.warn-box p { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 0; }
/* Inline e-mail helper under CTA rows */
.cta-mail {
  width: 100%;
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}
.cta-mail a {
  color: var(--green-600);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(25, 92, 82, 0.3);
  padding-bottom: 1px;
}
.cta-mail a:hover { border-bottom-color: var(--green-600); }
.hero .cta-mail { color: rgba(255,255,255,0.72); }
.hero .cta-mail a { color: #fff; border-bottom-color: rgba(255,255,255,0.45); }
.faq-contact {
  text-align: center;
  margin: clamp(32px,4vw,44px) 0 0;
  font-size: 17px;
  color: var(--ink-2);
}
.faq-contact a {
  color: var(--green-600);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(25, 92, 82, 0.3);
  padding-bottom: 1px;
}
.faq-contact a:hover { border-bottom-color: var(--green-600); }
.sach-disclaimer {
  margin-top: 26px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}

/* ============================================================
   IMPLEMENTATION timeline
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tl-card {
  background: #fff;
  border: 1px solid rgba(26, 31, 29, 0.07);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 232px;
  box-shadow: var(--shadow-sm);
}
.tl-card .wk {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tl-card .wk .bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-500), rgba(232, 113, 60, 0.12));
}
.tl-card h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: auto;
}
.tl-card p { font-size: 15px; line-height: 1.45; color: var(--ink-2); margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(26, 31, 29, 0.09);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item:hover { border-color: rgba(25, 92, 82, 0.22); }
.faq-item.open {
  border-color: rgba(25, 92, 82, 0.28);
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(24px, 3vw, 36px);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}
.faq-q .pm {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(25, 92, 82, 0.28);
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}
.faq-q .pm::before,
.faq-q .pm::after {
  content: "";
  position: absolute;
  background: var(--green-700);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s var(--ease), background 0.25s;
}
.faq-q .pm::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .pm::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .pm { background: var(--green-700); border-color: var(--green-700); }
.faq-item.open .faq-q .pm::before,
.faq-item.open .faq-q .pm::after { background: #fff; }
.faq-item.open .faq-q .pm::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding: 0 clamp(24px, 3vw, 36px) 30px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 70ch;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle, rgba(232, 113, 60, 0.16), transparent 62%);
  pointer-events: none;
}
.final::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -12%;
  width: 55%;
  height: 150%;
  background: radial-gradient(circle, rgba(25, 92, 82, 0.5), transparent 60%);
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; text-align: center; max-width: 920px; margin-inline: auto; }
.final h2 {
  color: #fff;
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 18ch;
  margin-inline: auto;
}
.final p {
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  margin: 30px auto 0;
  max-width: 46ch;
}
.final .cta-row { justify-content: center; margin-top: 48px; }
.final-contact {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 4vw, 52px);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}
.final-contact a { color: var(--orange-300); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  padding-block: clamp(56px, 7vw, 88px) 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img { height: 42px; margin-bottom: 24px; }
.footer-brand p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
  margin: 0;
}
.footer-col h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature:nth-child(4), .feature:nth-child(5) { grid-column: span 1; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .step::before { display: none; }
  .usecase-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav-inner, .nav.scrolled .nav-inner { height: 78px; }
  .nav-logo img, .nav.scrolled .nav-logo img { height: 56px; }
  .mobile-menu { inset: 78px 0 auto 0; }
  .hero { padding-top: 78px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-left { padding: 40px 0 44px; }
  .hero-media { min-height: 60vw; max-height: 480px; aspect-ratio: 16/11; }
  .hero-media img { object-position: 50% 28%; }
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(25,92,82,0.7) 0%, transparent 40%),
      linear-gradient(0deg, rgba(15,58,51,0.4) 0%, transparent 36%);
  }
  .hero-badge { left: var(--pad); }
  .problem-top { grid-template-columns: 1fr; gap: 28px; }
  .card-row-3 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { min-height: 0; }
  .split, .insight, .media-split, .audience, .sach { grid-template-columns: 1fr; gap: 40px; }
  .audience-list.wide { grid-template-columns: 1fr 1fr; }
  .photo-band { min-height: 64vh; }
  .photo-band::after {
    background:
      linear-gradient(0deg, rgba(12,46,40,0.96) 0%, rgba(12,46,40,0.7) 30%, rgba(12,46,40,0.2) 52%, transparent 70%);
  }
  .media-split.reverse .media-frame { order: 0; }
  .insight-big { font-size: clamp(120px, 40vw, 240px); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .mobile-menu { inset: 78px 0 auto 0; }
  .cta-row { gap: 12px; }
  .cta-row .btn { width: 100%; justify-content: center; }
  .btn { padding: 18px 26px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature { min-height: 0; padding: 26px 22px; }
  .steps { grid-template-columns: 1fr; row-gap: 22px; }
  .step { padding: 0; }
  .step .num { margin-bottom: 14px; }
  .usecase-grid { grid-template-columns: 1fr 1fr; }
  .usecase { min-height: 0; padding: 24px 20px; }
  .mini-card { padding: 30px 26px 28px; min-height: 0; }
  .timeline { grid-template-columns: 1fr; }
  .audience-list, .audience-list.wide { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .faq-q { padding: 24px 22px; }
  .faq-a-inner { padding: 0 22px 26px; }
  .stat .num { font-size: clamp(58px, 17vw, 80px); }
  .insight-big { font-size: clamp(116px, 44vw, 200px); }
  .final h2 { font-size: clamp(32px, 8.4vw, 48px); }
  .media-frame { aspect-ratio: 1/1; }
}
