:root {
  --black: #050505;
  --near-black: #0e0e0e;
  --panel: #151515;
  --white: #ffffff;
  --light: #f0f4f3;
  --lighter: #fcfcfc;
  --mint: #5ef0cd;
  --mint-dark: #0c967f;
  --mint-soft: #cff8f0;
  --muted: rgba(255, 255, 255, 0.7);
  --muted-dark: #686975;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --wrap: 1120px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: normal;
  word-break: normal;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 185px; height: auto; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 14px; color: rgba(255, 255, 255, 0.82); }
.nav a:hover, .nav a:focus-visible, .footer-links a:hover { color: var(--mint); }

.header-cta,
.btn {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.header-cta, .btn-primary { background: var(--mint); color: #000; }
.btn-secondary { border-color: rgba(255, 255, 255, 0.3); background: transparent; color: #fff; }
.header-cta:hover, .btn:hover { transform: translateY(-2px); }
.btn-secondary:hover { border-color: var(--mint); color: var(--mint); }
.btn:focus-visible, .header-cta:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(94, 240, 205, 0.55);
  outline-offset: 3px;
}

.eyebrow,
.section-label,
.card-index,
.channel-label,
.category-card > span {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mint);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
h1 { margin: 24px 0 0; font-size: clamp(50px, 6.2vw, 86px); line-height: 0.98; max-width: 11.5ch; }
h2 { margin: 14px 0 0; font-size: clamp(38px, 4.9vw, 64px); line-height: 1.01; }
h3 { font-size: clamp(22px, 2.5vw, 30px); line-height: 1.08; }
.hero h1 { font-size: clamp(44px, 5.1vw, 70px); max-width: 13ch; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 30%, rgba(94, 240, 205, 0.16), transparent 32%),
    var(--black);
  padding: 64px 0 78px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(94, 240, 205, 0.6) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to right, transparent 0, #000 65%, transparent 100%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr); gap: 70px; align-items: stretch; }
.hero-copy { padding: 0; }
.hero-copy .lede { margin: 28px 0 0; max-width: 650px; color: rgba(255,255,255,.83); font-size: clamp(18px, 2vw, 22px); line-height: 1.45; }
.hero-support { margin: 16px 0 0; max-width: 620px; color: var(--muted); }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 10px; color: rgba(255,255,255,.82); font-size: 14px; }
.hero-points li { position: relative; padding-left: 20px; }
.hero-points li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.hero-media { position: relative; margin: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); background: #d9dddc; }
.hero-media img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }

.section { padding: 100px 0; }
.section-dark, .journey-section, .category-section, .faq-section { background: var(--black); color: var(--white); }
.section-light { background: var(--light); color: #101214; }
.section-light .section-label { color: var(--mint-dark); }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading > p:last-child { color: inherit; opacity: .68; margin: 20px 0 0; max-width: 660px; font-size: 18px; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); gap: 80px; align-items: end; }
.split-heading > p:last-child { margin-bottom: 6px; }
.section-heading-dark > p:last-child { color: var(--muted); opacity: 1; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); gap: 84px; align-items: start; }
.intro-grid h2 { max-width: 10ch; }
.intro-copy { padding-top: 26px; color: var(--muted); font-size: 18px; }
.intro-copy p { margin-bottom: 18px; }
.intro-copy .accent-copy { color: var(--mint); font-weight: 600; }

.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.benefit-card { min-height: 300px; padding: 34px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(255,255,255,.52); }
.benefit-card h3 { margin: 62px 0 14px; max-width: 15ch; }
.benefit-card p { color: var(--muted-dark); max-width: 48ch; margin-bottom: 0; }
.benefit-card-accent { background: var(--mint); }
.benefit-card-accent .card-index, .benefit-card-accent p { color: #10221e; }

.journey-section { padding-top: 110px; background: linear-gradient(135deg, #050505 0%, #0a1512 100%); }
.journey-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.journey-list li { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); transition: padding-left .2s ease, background-color .2s ease; }
.journey-list li:hover { padding-left: 16px; background: rgba(94,240,205,.035); }
.journey-list > li > span { font-family: var(--mono); font-size: 13px; color: var(--mint); letter-spacing: .12em; }
.journey-list h3 { margin: 0 0 8px; font-size: clamp(27px, 3vw, 40px); }
.journey-list p { margin: 0; max-width: 700px; color: var(--muted); }

.channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.channel-card { min-height: 260px; padding: 30px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.72); }
.channel-card-wide { grid-column: 1 / -1; min-height: 300px; display: grid; grid-template-columns: 1fr; gap: 24px; align-content: end; background: #111; color: #fff; border-color: #111; }
.channel-card h3 { margin: 48px 0 14px; max-width: 18ch; }
.channel-card-wide h3 { margin: 0; max-width: none; }
.commerce-flow { display: flex; align-items: center; gap: 9px; white-space: nowrap; font-size: clamp(19px, 2vw, 28px); letter-spacing: -0.035em; }
.commerce-flow span { padding: 8px 10px; border: 1px solid rgba(94,240,205,.24); border-radius: 8px; background: rgba(94,240,205,.06); }
.commerce-flow b { color: var(--mint); font-weight: 400; }
.channel-card p:last-child { margin: 0; color: var(--muted-dark); }
.channel-card-wide p:last-child { max-width: 650px; color: var(--muted); align-self: end; }

.category-section { background: #0a0a0a; }
.category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.category-card { min-height: 335px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); }
.category-card > span { align-self: flex-start; padding: 6px 9px; border: 1px solid rgba(94,240,205,.35); border-radius: 999px; }
.category-card h3 { margin: 70px 0 14px; }
.category-card p { color: var(--muted); }
.category-card a { margin-top: auto; font-weight: 600; color: var(--mint); }
.category-card a:hover { text-decoration: underline; text-underline-offset: 4px; }
.category-note { margin: 26px 0 0; color: var(--muted); font-size: 14px; }

.strategy-section { background: #e8efed; color: #0f1112; }
.strategy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.strategy-panel { padding: 42px; border-radius: var(--radius); min-height: 620px; }
.strategy-panel-light { background: #fff; border: 1px solid var(--line-dark); }
.strategy-panel-mint { background: var(--mint); }
.strategy-panel .section-label { color: var(--mint-dark); }
.strategy-panel-mint .section-label { color: #074d41; }
.strategy-panel h2 { font-size: clamp(36px, 4.2vw, 54px); }
.strategy-panel > p:not(.section-label) { margin-top: 22px; color: #51565f; }
.strategy-panel-mint > p:not(.section-label) { color: #14342e; }
.check-list { list-style: none; padding: 0; margin: 48px 0 0; border-top: 1px solid var(--line-dark); }
.check-list li { position: relative; padding: 15px 0 15px 28px; border-bottom: 1px solid var(--line-dark); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--mint-dark); font-weight: 700; }
.signal-list { margin: 42px 0 0; }
.signal-list > div { padding: 14px 0; border-top: 1px solid rgba(0,0,0,.18); }
.signal-list dt { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.signal-list dd { margin: 3px 0 0; color: #1a3f38; }

.asset-section { overflow: hidden; background: var(--black); }
.asset-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); gap: 90px; align-items: center; }
.asset-grid h2 { max-width: 10ch; }
.asset-grid .asset-title { max-width: 15ch; font-size: clamp(32px, 3.7vw, 48px); }
.asset-grid > div:first-child > p:last-child { color: var(--muted); margin-top: 22px; }
.asset-orbit { position: relative; min-height: 480px; display: grid; place-content: center; }
.asset-orbit::before { content: "ONE PRODUCT\A ASSET"; white-space: pre; width: 190px; height: 190px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--mint); color: #000; font-family: var(--mono); font-weight: 700; letter-spacing: .1em; box-shadow: 0 0 0 52px rgba(94,240,205,.05), 0 0 0 104px rgba(94,240,205,.025); }
.asset-orbit span { position: absolute; padding: 10px 14px; border: 1px solid rgba(94,240,205,.26); border-radius: 999px; background: #111; font-size: 13px; }
.asset-orbit span:nth-child(1) { top: 6%; left: 42%; }
.asset-orbit span:nth-child(2) { top: 24%; right: 0; }
.asset-orbit span:nth-child(3) { bottom: 23%; right: 4%; }
.asset-orbit span:nth-child(4) { bottom: 4%; left: 40%; }
.asset-orbit span:nth-child(5) { bottom: 22%; left: 0; }
.asset-orbit span:nth-child(6) { top: 24%; left: 2%; }

.process-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-dark); }
.process-list li { display: grid; grid-template-columns: 80px minmax(0, .85fr) minmax(280px, 1.15fr); gap: 30px; padding: 28px 0; border-bottom: 1px solid var(--line-dark); align-items: start; }
.process-list span { font-family: var(--mono); color: var(--mint-dark); font-size: 12px; letter-spacing: .13em; }
.process-list div { display: contents; }
.process-list h3 { margin: 0; font-size: clamp(22px, 2.6vw, 30px); }
.process-list p { margin: 3px 0 0; color: var(--muted-dark); }

.faq-section { background: #0b0b0b; }
.faq-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: 88px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p:last-child { color: var(--muted); margin-top: 20px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 24px 54px 24px 0; position: relative; font-size: 19px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; right: 3px; top: 50%; width: 18px; height: 1px; background: var(--mint); }
.faq-list summary span::after { transform: rotate(90deg); transition: transform .2s ease; }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { margin: -4px 54px 24px 0; color: var(--muted); }

.contact-section { background: var(--light); color: #101214; }
.contact-section .section-label { color: var(--mint-dark); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 620px); justify-content: center; }
.contact-form { padding: 34px; background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius); box-shadow: 0 20px 55px rgba(0,0,0,.08); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form label > span { display: block; margin-bottom: 7px; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #ccced8; border-radius: 8px; padding: 12px 13px; color: #101214; background: #fff; }
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: 100%; border: 0; }
.contact-form .btn:disabled { opacity: .6; cursor: wait; }
.privacy-copy, .form-status { font-size: 12px; color: var(--muted-dark); margin: 12px 0 0; }
.privacy-copy a { text-decoration: underline; }
.form-status[data-state="success"] { color: #08745f; }
.form-status[data-state="error"] { color: #b02b25; }

.site-footer { padding: 72px 0 28px; background: #000; color: #fff; }
.footer-grid { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: 80px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 360px; margin-top: 22px; color: var(--muted); text-transform: uppercase; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; }
.footer-links h3 { margin: 0 0 16px; font-family: var(--mono); font-size: 11px; letter-spacing: .13em; }
.footer-links a { display: block; margin: 9px 0; color: var(--muted); font-size: 14px; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.5); font-size: 12px; }
.footer-bottom div { display: flex; gap: 18px; }

.sticky-mobile { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .header-cta, .btn, .journey-list li { transition: none; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr); gap: 38px; }
  h1 { font-size: clamp(48px, 7vw, 70px); }
  .split-heading, .intro-grid, .asset-grid { gap: 48px; }
  .strategy-panel { padding: 32px; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }
  .header-inner { min-height: 66px; }
  .brand img { width: 150px; }
  .header-cta { display: none; }
  .hero { padding: 42px 0 58px; }
  .hero-grid, .intro-grid, .split-heading, .strategy-grid, .asset-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-copy { padding-top: 0; }
  h1 { font-size: clamp(44px, 13vw, 66px); }
  .hero h1 { font-size: clamp(38px, 10.8vw, 52px); }
  h2 { font-size: clamp(36px, 10vw, 52px); }
  .hero-media { width: min(100%, 500px); margin: 0 auto; }
  .hero-media img { height: auto; aspect-ratio: auto; object-fit: contain; }
  .section { padding: 72px 0; }
  .split-heading { align-items: start; }
  .benefit-grid, .channel-grid, .category-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 260px; }
  .channel-card-wide { grid-column: auto; grid-template-columns: 1fr; gap: 28px; }
  .commerce-flow { gap: 2px; font-size: clamp(10px, 3vw, 13px); letter-spacing: -0.02em; }
  .commerce-flow span { padding: 6px 3px; }
  .strategy-panel { min-height: 0; }
  .asset-grid { gap: 38px; }
  .asset-orbit { min-height: 420px; transform: scale(.92); }
  .process-list li { grid-template-columns: 56px minmax(0, 1fr); gap: 16px; }
  .process-list div { display: block; }
  .process-list p { margin-top: 10px; }
  .faq-intro { position: static; }
  .faq-grid, .footer-grid { gap: 48px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: column; padding-bottom: 64px; }
  .sticky-mobile { position: fixed; z-index: 50; left: 14px; right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); min-height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--mint); color: #000; font-weight: 700; box-shadow: 0 12px 35px rgba(0,0,0,.36); opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity .2s ease, transform .2s ease; }
  .sticky-mobile.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
}

@media (max-width: 430px) {
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .benefit-card, .channel-card, .category-card, .strategy-panel, .contact-form { padding: 24px; }
  .journey-list li { grid-template-columns: 42px minmax(0, 1fr); }
  .asset-orbit { margin: -30px -26px; transform: scale(.78); }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom div { flex-direction: column; gap: 8px; }
}
