:root {
  --ink: #07110e;
  --ink-2: #0c1a16;
  --ink-3: #12241e;
  --paper: #f3f7f4;
  --white: #ffffff;
  --muted: #9eb0a9;
  --muted-dark: #53655e;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(7, 17, 14, 0.12);
  --green: #2ecf7a;
  --green-dark: #138b5a;
  --blue: #168fd0;
  --orange: #ff8a00;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(2, 13, 9, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.section { padding: 112px 0; }
.section-compact { padding: 80px 0; }
.dark { color: var(--white); background: var(--ink); }
.dark-2 { color: var(--white); background: var(--ink-2); }
.light { background: var(--paper); }
.white { background: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.dark .eyebrow, .dark-2 .eyebrow { color: var(--green); }
.eyebrow::before { width: 24px; height: 2px; content: ""; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
h1 { max-width: 970px; margin-bottom: 28px; font-size: clamp(52px, 7.3vw, 102px); line-height: .96; }
h2 { max-width: 820px; margin-bottom: 22px; font-size: clamp(38px, 5vw, 66px); line-height: 1.02; }
h3 { margin-bottom: 12px; font-size: 24px; line-height: 1.15; }
.lead { max-width: 780px; color: var(--muted-dark); font-size: clamp(19px, 2vw, 24px); line-height: 1.55; }
.dark .lead, .dark-2 .lead { color: #c3d0cb; }
.body-copy { color: var(--muted-dark); font-size: 17px; line-height: 1.75; }
.dark .body-copy, .dark-2 .body-copy { color: #b7c6c0; }
.kicker { color: var(--orange); font-weight: 750; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(7, 17, 14, .91);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
}
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 178px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link { position: relative; color: #c7d3ce; font-size: 14px; font-weight: 650; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after { position: absolute; right: 0; bottom: -13px; left: 0; height: 2px; content: ""; background: var(--green); }
.nav-cta { padding: 12px 18px; color: var(--ink); background: var(--green); border-radius: 999px; font-size: 14px; font-weight: 800; }
.nav-cta:hover { background: #55e392; transform: translateY(-1px); }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; color: var(--white); background: transparent; border: 1px solid var(--line); border-radius: 12px; }
.menu-button span, .menu-button::before, .menu-button::after { display: block; width: 20px; height: 2px; margin: 5px auto; content: ""; background: currentColor; transition: .2s ease; }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  padding: 88px 0 42px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero::before {
  position: absolute;
  inset: -30% -20% auto 45%;
  height: 600px;
  content: "";
  background: radial-gradient(circle, rgba(22,143,208,.26), transparent 65%);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero .lead { max-width: 760px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--green); }
.button-primary:hover { background: #55e392; }
.button-secondary { color: var(--white); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.24); }
.button-secondary:hover { border-color: rgba(255,255,255,.55); }
.button-dark { color: var(--white); background: var(--ink); }

.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 36px 100px rgba(0,0,0,.34);
}
.hero-visual img { width: 100%; height: clamp(360px, 48vw, 630px); object-fit: cover; }
.hero-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(7,17,14,.62), transparent 55%); }
.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  max-width: 390px;
  padding: 18px 20px;
  background: rgba(7,17,14,.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}
.hero-badge strong { display: block; margin-bottom: 5px; font-size: 18px; }
.hero-badge span { color: #b8c6c1; font-size: 14px; line-height: 1.5; }

.signal-strip { border-top: 1px solid var(--line); background: var(--ink); }
.signal-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.signal { padding: 24px 18px; color: #9fb0aa; border-left: 1px solid var(--line); font-size: 12px; font-weight: 780; letter-spacing: .09em; text-align: center; text-transform: uppercase; }
.signal:last-child { border-right: 1px solid var(--line); }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(48px, 8vw, 110px); align-items: start; }
.sticky-copy { position: sticky; top: 116px; }
.cards { display: grid; gap: 18px; }
.card { padding: 30px; background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius); box-shadow: 0 15px 50px rgba(8, 25, 18, .05); }
.dark .card, .dark-2 .card { background: rgba(255,255,255,.045); border-color: var(--line); box-shadow: none; }
.card-number { display: inline-grid; width: 42px; height: 42px; margin-bottom: 42px; place-items: center; color: var(--green); background: rgba(46,207,122,.1); border: 1px solid rgba(46,207,122,.25); border-radius: 50%; font-size: 13px; font-weight: 800; }
.card p { margin-bottom: 0; color: var(--muted-dark); line-height: 1.65; }
.dark .card p, .dark-2 .card p { color: #b4c3bd; }
.card .micro-label { margin-bottom: 9px; color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }

.two-up { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.five-up { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.feature-card { display: flex; min-height: 430px; flex-direction: column; justify-content: flex-end; padding: 34px; overflow: hidden; color: var(--white); background: var(--ink-2); border-radius: 28px; }
.feature-card.media { position: relative; }
.feature-card.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-card.media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(4,14,10,.94), rgba(4,14,10,.12) 75%); }
.feature-card > * { position: relative; z-index: 2; }
.feature-card p { max-width: 550px; margin-bottom: 22px; color: #c2cfca; line-height: 1.65; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 800; }
.text-link::after { content: "\2192"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.statement { padding: clamp(48px, 7vw, 88px); color: var(--white); background: linear-gradient(130deg, #0b2119, #0a1714); border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); }
.statement blockquote { max-width: 980px; margin: 0; font-size: clamp(34px, 5.1vw, 66px); font-weight: 720; letter-spacing: -.04em; line-height: 1.08; }
.statement blockquote span { color: var(--green); }

.metric-card { min-height: 210px; padding: 26px 20px; background: var(--white); border: 1px solid var(--line-dark); border-radius: 20px; }
.metric-card strong { display: block; margin-bottom: 24px; color: var(--green-dark); font-size: 34px; letter-spacing: -.04em; }
.metric-card b { display: block; margin-bottom: 8px; font-size: 16px; }
.metric-card p { margin: 0; color: var(--muted-dark); font-size: 14px; line-height: 1.55; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; counter-reset: process; }
.process-step { position: relative; padding: 34px 28px 8px; border-top: 1px solid var(--line); counter-increment: process; }
.process-step::before { position: absolute; top: -6px; left: 28px; width: 11px; height: 11px; content: ""; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 6px rgba(46,207,122,.12); }
.process-step small { display: block; margin-bottom: 28px; color: var(--green); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.process-step h3 { font-size: 21px; }
.process-step p { margin-bottom: 0; color: #acbdb6; font-size: 14px; line-height: 1.6; }

.list-clean { margin: 0; padding: 0; list-style: none; }
.list-clean li { position: relative; padding: 14px 0 14px 26px; color: var(--muted-dark); border-bottom: 1px solid var(--line-dark); line-height: 1.5; }
.list-clean li::before { position: absolute; top: 21px; left: 2px; width: 8px; height: 8px; content: ""; background: var(--green); border-radius: 50%; }
.dark .list-clean li, .dark-2 .list-clean li { color: #bdcbc6; border-color: var(--line); }

.page-hero { position: relative; padding: 120px 0 88px; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero::after { position: absolute; top: -260px; right: -220px; width: 650px; height: 650px; content: ""; background: radial-gradient(circle, rgba(46,207,122,.17), transparent 68%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(50px, 6.8vw, 88px); }
.page-hero .lead { max-width: 820px; }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 50px; color: #8ea39b; font-size: 13px; }
.breadcrumbs span { color: var(--green); }

.principles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.principle { min-height: 270px; padding: 26px 22px; background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 20px; }
.principle .index { display: block; margin-bottom: 54px; color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.principle h3 { font-size: 19px; }
.principle p { margin-bottom: 0; color: #afbeb8; font-size: 14px; line-height: 1.55; }

.comparison { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 28px; }
.comparison > div { padding: clamp(34px, 5vw, 60px); }
.comparison > div:first-child { background: #e8eeea; }
.comparison > div:last-child { color: var(--white); background: var(--ink-2); }
.comparison h3 { font-size: 28px; }
.comparison ul { margin: 26px 0 0; padding: 0; list-style: none; }
.comparison li { padding: 12px 0; border-bottom: 1px solid rgba(120,135,128,.2); }

.note { padding: 24px 28px; color: var(--muted-dark); background: #e7efea; border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; line-height: 1.7; }
.dark .note, .dark-2 .note { color: #c2d0cb; background: rgba(255,255,255,.055); }

.cta-band { padding: 92px 0; color: var(--white); background: linear-gradient(110deg, #0c1d18 0%, #0e3324 65%, #0a2739 100%); }
.cta-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: end; }
.cta-grid h2 { margin-bottom: 0; }
.cta-grid .button-row { justify-content: flex-end; margin-top: 0; }

.site-footer { padding: 76px 0 30px; color: #b7c6c0; background: #050c09; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr .8fr; gap: 50px; }
.footer-brand img { width: 210px; margin-bottom: 22px; }
.footer-brand p { max-width: 380px; font-size: 14px; line-height: 1.7; }
.footer-title { margin-bottom: 20px; color: var(--white); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 12px; font-size: 14px; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { display: flex; margin-top: 60px; padding-top: 24px; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); font-size: 12px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 22px; }
.contact-card { padding: 34px; background: var(--white); border: 1px solid var(--line-dark); border-radius: 24px; }
.contact-card.accent { color: var(--white); background: var(--ink-2); }
.contact-card p { color: var(--muted-dark); line-height: 1.7; }
.contact-card.accent p { color: #b9c8c2; }
.contact-email { display: inline-block; margin: 20px 0 30px; color: var(--green-dark); font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.03em; }
.contact-card.accent .contact-email { color: var(--green); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .nav-links { gap: 16px; }
  .nav-link { font-size: 13px; }
  .nav-cta { padding-inline: 14px; }
  .principles { grid-template-columns: repeat(3, 1fr); }
  .five-up { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  /*
   * Mobile Safari treats a fixed descendant of a backdrop-filtered element as
   * being fixed to that element instead of the viewport. Without an explicit
   * viewport height, the navigation is therefore collapsed to the header and
   * only the first item remains visible.
   */
  .site-header {
    background: rgba(7,17,14,.99);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: auto;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
    display: none;
    padding: 34px 20px calc(34px + env(safe-area-inset-bottom));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: rgba(7,17,14,.99);
  }
  .menu-open .nav-links { display: flex; }
  .nav-link { padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .nav-link.active::after { display: none; }
  .nav-cta { margin-top: 24px; padding: 17px; text-align: center; }
  .menu-open .menu-button span { opacity: 0; }
  .menu-open .menu-button::before { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-button::after { transform: translateY(-7px) rotate(-45deg); }
  .split, .contact-grid, .cta-grid { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .three-up { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .cta-grid .button-row { justify-content: flex-start; margin-top: 20px; }
}

@media (max-width: 900px) and (max-height: 520px) {
  .nav-links { padding-top: 14px; padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
  .nav-link { padding-block: 12px; font-size: 16px; }
  .nav-cta { margin-top: 14px; padding: 13px 17px; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 82px 0; }
  .section-compact { padding: 60px 0; }
  .hero { min-height: 0; padding-top: 70px; }
  .hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero-visual { margin-top: 48px; border-radius: 20px; }
  .hero-visual img { height: 390px; }
  .hero-badge { right: 14px; bottom: 14px; left: 14px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal { border-bottom: 1px solid var(--line); }
  .signal:last-child { grid-column: 1 / -1; }
  .two-up, .three-up, .five-up, .principles, .comparison { grid-template-columns: 1fr; }
  .feature-card { min-height: 390px; padding: 28px; }
  .process { grid-template-columns: 1fr; }
  .metric-card { min-height: 0; }
  .page-hero { padding: 80px 0 65px; }
  .page-hero h1 { font-size: clamp(44px, 13vw, 64px); }
  .breadcrumbs { margin-bottom: 36px; }
  .statement { padding: 34px 26px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
