:root {
  --green-950: #063b25;
  --green-900: #0d5636;
  --green-700: #168149;
  --green-500: #37b955;
  --green-100: #dff4e2;
  --green-50: #f1faf1;
  --orange-600: #ed9000;
  --orange-500: #ffa800;
  --orange-300: #ffc95c;
  --orange-100: #fff0ca;
  --ivory: #fffdf6;
  --paper: #fbf8ee;
  --text-primary: #17362a;
  --text-muted: #5f7168;
  --text-body: #222222;
  --text-on-dark: #ffffff;
  --heading-color: var(--text-primary);
  --line: rgba(13, 86, 54, .14);
  --shadow: 0 28px 80px rgba(12, 71, 43, .10);
  --radius: 22px;
  --container: 1200px;
  --font-base: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --header-bg: #ff9933;
  --header-h: 50px;
  --header-h-mobile: 56px;
  --leaf-dark: #006600;
  --font-kicker: 1.7rem;
  --font-eyebrow-lg: 1.2rem;
  --font-eyebrow: 1.5rem;
  --video-offset: 10px;
  --space-after-banner: 50px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text-primary);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 16px; border-radius: 8px; background: var(--green-950); color: var(--text-on-dark); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--header-bg);
  box-shadow: 0 1px 0 rgba(6,59,37,.12);
}
.header-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; width: max-content; color: var(--heading-color); font-family: var(--font-base); font-size: clamp(1.8rem, 2.5vw, 2.45rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.brand img { display: block; width: 35px; height: 35px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 42px; font-size: .91rem; font-weight: 650; }
.primary-nav a { position: relative; padding: 8px 0; color: var(--heading-color); }
.primary-nav a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; background: var(--orange-500); content: ""; transform: scaleX(0); transition: transform .25s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--green-950); transition: transform .25s, opacity .25s; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 22px;
  border: 1px solid var(--orange-500);
  border-radius: 10px;
  background: var(--orange-500);
  color: var(--heading-color);
  font-size: .88rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(255, 168, 0, .18);
  transition: transform .25s, background .25s, box-shadow .25s;
}
.button:hover { transform: translateY(-2px); background: #ffb31e; box-shadow: 0 15px 34px rgba(255, 168, 0, .28); }
.button:focus-visible, .text-link:focus-visible, .slider-arrow:focus-visible, .slider-dot:focus-visible, .menu-toggle:focus-visible, a:focus-visible { outline: 3px solid rgba(255, 168, 0, .5); outline-offset: 4px; }
.button-small { min-height: 42px; padding: 9px 18px; border-radius: 999px; font-size: .82rem; }
.button-light { border-color: var(--text-on-dark); background: white; color: var(--heading-color); box-shadow: none; }
.button-light:hover { background: var(--ivory); }
.text-link { display: inline-flex; align-items: center; border-bottom: 2px solid var(--orange-500); color: var(--text-primary); font-size: .88rem; font-weight: 750; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 82% 20%, rgba(55, 185, 85, .08), transparent 31%), var(--ivory); }
.hero-track { position: relative; min-height: 515px; }
.hero-slide { position: absolute; inset: 0; display: grid; opacity: 0; pointer-events: none; transform: translateX(2%); transition: opacity .7s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.hero-slide.is-active { z-index: 2; opacity: 1; pointer-events: auto; transform: none; }
.hero-grid { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr); gap: clamp(44px, 6vw, 84px); align-items: start; padding-top: 36px; padding-bottom: 50px; }
.hero-copy { position: relative; z-index: 4; max-width: 360px; }
.eyebrow { margin: 0 0 20px; color: var(--orange-600); font-size: var(--font-eyebrow); font-weight: 850; letter-spacing: .17em; line-height: 1.35; }
.hero h1, .hero h2 { margin: 0; color: var(--heading-color); font-family: var(--font-base); font-size: clamp(3.1rem, 5vw, 5.1rem); font-weight: 400; letter-spacing: -.055em; line-height: 1.02; }
.hero h2 { font-size: clamp(2.85rem, 4.6vw, 4.75rem); }
.hero-lead { max-width: 34ch; margin: 28px 0 0; color: var(--text-muted); font-size: 1rem; line-height: 1.8; }
.hero-copy-features { max-width: 470px; }
.hero-features { display: grid; gap: 16px; margin: 28px 0 0; padding: 0; list-style: none; }
.hero-features li { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }
.hero-features li strong { color: var(--heading-color); font-weight: 750; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 38px; }
.hero-visual { position: relative; height: 530px; min-width: 0; isolation: isolate; }
.hero-video-wrap { position: relative; width: 100%; max-width: 640px; margin: var(--video-offset) auto 0; }
.hero-video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; min-width: 0; object-fit: cover; border-radius: 18px; background: var(--green-950); box-shadow: 0 26px 60px rgba(0,0,0,.14); }
.hero-visual::after { position: absolute; z-index: -2; right: 7%; bottom: 4%; width: 65%; height: 12%; border-radius: 50%; background: rgba(7, 77, 43, .14); filter: blur(28px); content: ""; }
.glow { position: absolute; border-radius: 50%; filter: blur(4px); }
.glow-one { top: 6%; right: 5%; width: 58%; aspect-ratio: 1; background: radial-gradient(circle, rgba(55,185,85,.15), transparent 67%); }
.glow-two { bottom: 7%; left: 4%; width: 50%; aspect-ratio: 1; background: radial-gradient(circle, rgba(255,168,0,.12), transparent 69%); }
.core { position: absolute; z-index: 5; top: 13%; right: 17%; width: min(39vw, 375px); aspect-ratio: 1; border: 2px solid rgba(13, 86, 54, .26); border-radius: 50%; background: radial-gradient(circle at 32% 25%, rgba(255,255,255,.96), rgba(210,244,218,.72) 36%, rgba(76,183,104,.38) 68%, rgba(13,86,54,.58)); box-shadow: inset -24px -32px 64px rgba(8,80,44,.22), inset 18px 18px 42px rgba(255,255,255,.68), 0 34px 80px rgba(7,82,44,.16); }
.core::before, .core::after { position: absolute; inset: 10%; border: 1px solid rgba(13,86,54,.12); border-radius: 50%; content: ""; }
.core::after { inset: 24%; }
.core span { position: absolute; inset: 0; border-radius: inherit; background-image: linear-gradient(30deg, transparent 48%, rgba(14,103,58,.12) 49%, rgba(14,103,58,.12) 50%, transparent 51%), linear-gradient(150deg, transparent 48%, rgba(14,103,58,.10) 49%, rgba(14,103,58,.10) 50%, transparent 51%); background-size: 28px 48px; mask-image: radial-gradient(circle, #000, transparent 72%); }
.ribbon { position: absolute; z-index: 3; border: clamp(30px, 4.5vw, 64px) solid rgba(55,185,85,.17); border-right-color: rgba(13,129,73,.55); border-left-color: rgba(152,222,165,.34); border-radius: 50%; transform: rotate(-20deg) skewX(-10deg); filter: drop-shadow(0 18px 18px rgba(5,74,40,.12)); }
.ribbon-one { inset: 6% -8% 8% 2%; }
.ribbon-two { z-index: 6; inset: 32% -10% 13% 12%; border-width: clamp(18px, 2.8vw, 38px); opacity: .64; transform: rotate(18deg) skewX(-14deg); }
.orbit { position: absolute; z-index: 7; border: 2px solid var(--orange-500); border-radius: 50%; }
.orbit-one { inset: 4% 1% 5% 7%; transform: rotate(24deg); }
.orbit-two { inset: 15% 9% 12% 0; transform: rotate(-21deg); }
.orbit i { position: absolute; top: 49%; left: -7px; width: 13px; height: 13px; border: 3px solid #fff2cc; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 1px var(--orange-600); }
.orbit-two i { top: 13%; right: 12%; left: auto; }

.visual-flow { perspective: 900px; }
.flow-veil { position: absolute; inset: 7% 3% 4% 2%; border-radius: 48% 52% 38% 62% / 55% 36% 64% 45%; background: radial-gradient(circle at 60% 35%, rgba(255,255,255,.95), rgba(219,247,225,.9) 42%, rgba(55,185,85,.22) 72%, transparent 73%); transform: rotate(-8deg); }
.flow-line { position: absolute; height: 3px; border-radius: 3px; background: linear-gradient(90deg, transparent, var(--orange-500), var(--green-500), transparent); transform-origin: left center; opacity: .8; }
.flow-line-one { top: 30%; left: 5%; width: 78%; transform: rotate(12deg); }
.flow-line-two { top: 52%; left: 9%; width: 75%; transform: rotate(-17deg); }
.flow-line-three { top: 70%; left: 25%; width: 62%; transform: rotate(8deg); }
.flow-card { position: absolute; z-index: 4; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(13,86,54,.17); border-radius: 20px; background: rgba(255,253,246,.78); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.flow-card-one { top: 17%; right: 12%; width: 35%; height: 32%; padding: 26px; transform: rotateY(-8deg) rotateZ(3deg); }
.flow-card-one span { display: block; height: 8px; margin: 7px 0; border-radius: 8px; background: var(--green-100); }
.flow-card-one span:nth-child(1) { width: 46%; background: var(--orange-300); }
.flow-card-one span:nth-child(3) { width: 70%; }
.flow-card-two { bottom: 12%; left: 17%; width: 31%; height: 26%; align-items: center; transform: rotateY(7deg) rotateZ(-4deg); }
.flow-card-two b { color: var(--heading-color); font-family: var(--font-base); font-size: 3.3rem; font-weight: 400; line-height: 1; }
.flow-card-two small { margin-top: 8px; color: var(--text-muted); }
.flow-node { position: absolute; z-index: 5; width: 22px; height: 22px; border: 6px solid var(--orange-100); border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 1px var(--orange-600); }
.node-one { top: 27%; left: 16%; }.node-two { top: 56%; right: 15%; }.node-three { bottom: 20%; left: 51%; }

.visual-people { display: grid; place-items: center; }
.people-halo { position: absolute; width: 66%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, white 0 16%, var(--orange-100) 17% 27%, rgba(55,185,85,.22) 28% 47%, transparent 48%); filter: drop-shadow(0 28px 50px rgba(14,92,52,.12)); }
.people-ring { position: absolute; width: 76%; height: 58%; border: 2px solid var(--orange-500); border-radius: 50%; }
.ring-one { transform: rotate(25deg); }.ring-two { transform: rotate(-25deg); border-color: rgba(55,185,85,.7); }
.people-center { position: relative; z-index: 3; display: flex; align-items: flex-end; justify-content: center; gap: 10px; width: 175px; height: 175px; padding: 42px 25px; border-radius: 50%; background: linear-gradient(145deg, white, var(--green-100)); box-shadow: inset 0 0 0 1px rgba(13,86,54,.16), var(--shadow); }
.people-center i { width: 33px; height: 58px; border-radius: 30px 30px 12px 12px; background: var(--green-500); }
.people-center i:nth-child(2) { height: 78px; background: var(--green-900); }.people-center i:nth-child(3) { height: 48px; background: var(--orange-500); }
.people-chip { position: absolute; z-index: 4; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,253,246,.88); color: var(--heading-color); font-size: .82rem; font-weight: 750; box-shadow: 0 14px 30px rgba(13,86,54,.1); backdrop-filter: blur(8px); }
.chip-one { top: 18%; left: 12%; }.chip-two { right: 7%; bottom: 24%; }.chip-three { bottom: 10%; left: 22%; }

.hero-controls { position: absolute; z-index: 10; right: 0; bottom: 28px; left: 0; display: flex; align-items: center; gap: 16px; }
.slider-arrow { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,253,246,.8); cursor: pointer; transition: border-color .2s, background .2s; }
.slider-arrow:hover { border-color: var(--orange-500); background: white; }
.slider-dots { display: flex; gap: 9px; }
.slider-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(13,86,54,.25); cursor: pointer; transition: width .3s, background .3s; }
.slider-dot.is-active { width: 30px; background: var(--orange-500); }

.trust-strip { border-block: 1px solid rgba(13,86,54,.07); background: var(--green-50); }
.trust-list { min-height: 76px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: 28px; }
.trust-list span { color: var(--green-700); font-size: clamp(.82rem, 1.5vw, 1.1rem); font-weight: 850; letter-spacing: -.025em; text-align: center; }
.section { padding: 64px 0; }
.section-heading { max-width: 700px; margin-bottom: 40px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .technology h2, .cta h2 { margin: 0; color: var(--heading-color); font-family: var(--font-base); font-size: clamp(2.3rem, 4vw, 3.75rem); font-weight: 400; letter-spacing: -.045em; line-height: 1.12; }
.section-heading > p:last-child { max-width: 50ch; margin: 18px auto 0; color: var(--text-muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; min-height: 360px; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.45); transition: transform .3s, border-color .3s, box-shadow .3s; }
.feature-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(6,59,37,0) 35%, rgba(6,59,37,.78) 100%); }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(55,185,85,.42); box-shadow: var(--shadow); }
.feature-number { position: absolute; top: 28px; right: 30px; color: rgba(13,86,54,.26); font-family: var(--font-base); font-size: 1rem; }
.feature-icon { display: grid; width: 66px; height: 66px; place-items: center; border-radius: 50%; background: var(--green-50); }
.feature-icon svg { width: 31px; fill: none; stroke: var(--green-500); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.65; }
.feature-card h3 { position: absolute; z-index: 2; right: 26px; bottom: 20px; left: 26px; margin: 0; color: var(--text-on-dark); font-family: var(--font-base); font-size: 1.85rem; font-weight: 400; }
.feature-card h3::after { display: block; width: 28px; height: 2px; margin-top: 14px; background: var(--orange-500); content: ""; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: .94rem; }
.feature-card img { position: absolute; inset: -1px; width: calc(100% + 2px); height: calc(100% + 2px); object-fit: cover; border-radius: 0; }

.technology { padding-top: 20px; }
.technology-panel { display: grid; grid-template-columns: .95fr 1.25fr; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 18px 60px rgba(13,86,54,.06); }
.technology-intro { position: relative; min-height: 520px; padding: clamp(42px, 5vw, 70px); overflow: hidden; background: linear-gradient(145deg, var(--green-50), white 72%); }
.technology-intro h2 { max-width: 8ch; font-size: clamp(2.4rem, 4vw, 3.55rem); }
.technology-intro > p:not(.eyebrow) { max-width: 43ch; margin: 28px 0; color: var(--text-muted); }
.dot-pattern { position: absolute; right: 0; bottom: 0; width: 62%; height: 27%; opacity: .38; background-image: radial-gradient(var(--green-500) 1.8px, transparent 1.8px); background-size: 14px 14px; mask-image: linear-gradient(135deg, transparent 8%, #000); }
.workflow { padding: clamp(42px, 5vw, 70px); }
.workflow ol { display: grid; gap: 30px; margin: 0; padding: 0; list-style: none; }
.workflow ol li { display: grid; grid-template-columns: 58px 1fr; gap: 22px; align-items: start; }
.workflow ol li > span { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--green-50); color: var(--green-700); font-weight: 850; }
.workflow h3 { margin: 0 0 7px; font-family: var(--font-base); font-size: 1.35rem; font-weight: 400; }
.workflow ol li p { margin: 0; color: var(--text-muted); font-size: .9rem; }
.workflow .workflow-intro { color: var(--text-muted); font-size: .92rem; line-height: 1.8; margin: 0; }
.workflow .workflow-intro strong { color: var(--heading-color); }
.workflow .workflow-title { margin: 30px 0 14px; font-family: var(--font-base); font-size: 1.35rem; font-weight: 400; color: var(--heading-color); }
.workflow .workflow-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.workflow .workflow-list li { position: relative; padding-left: 20px; color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
.workflow .workflow-list li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--orange-500); }

.proof { padding-top: 0; }
.proof-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; padding: clamp(36px, 5vw, 62px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--green-50); }
blockquote { margin: 0; }
blockquote > span { color: var(--orange-500); font-family: var(--font-base); font-size: 4rem; line-height: .6; }
blockquote > p { margin: 13px 0 22px; }
blockquote footer { display: flex; flex-direction: column; font-size: .86rem; }
blockquote footer small { color: var(--text-muted); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); }
.metrics > div { display: flex; flex-direction: column; align-items: center; padding: 14px 26px; border-left: 1px solid rgba(255,168,0,.4); text-align: center; }
.metrics strong { font-family: var(--font-base); font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 400; line-height: 1; }
.metrics sup { color: var(--orange-600); font-size: .5em; }
.metrics span { margin-top: 12px; color: var(--text-muted); font-size: .78rem; line-height: 1.55; }
.metrics img { width: 101px; height: 101px; object-fit: contain; }

.faq { background: var(--green-50); }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.faq-item { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); }
.faq-item h3 { margin: 0 0 12px; color: var(--heading-color); font-family: var(--font-base); font-size: 1.35rem; font-weight: 600; }
.faq-item p { margin: 0; color: var(--text-body); font-size: 1rem; font-weight: 500; line-height: 1.7; }
.faq-item a { color: var(--leaf-dark); font-weight: 600; }
.faq-item a:hover { text-decoration: underline; }

.contact-info { background: var(--paper); }
.contact-head { text-align: center; margin-bottom: 40px; }
.contact-head h1, .contact-head h2 { margin: 0; color: var(--heading-color); font-family: var(--font-base); font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 600; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-card h3 { margin: 0 0 14px; color: var(--heading-color); font-family: var(--font-base); font-size: 1.35rem; font-weight: 600; }
.contact-card h3 + h3 { margin-top: 28px; }
.contact-card p { margin: 0 0 14px; color: var(--text-body); font-size: 1rem; font-weight: 500; line-height: 1.7; }
.contact-table { margin: 0; }
.contact-table div { display: grid; grid-template-columns: 1fr 1.1fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.contact-table div:first-child { border-top: 0; }
.contact-table dt { color: var(--text-muted); font-size: .9rem; }
.contact-table dd { margin: 0; color: var(--heading-color); font-weight: 600; text-align: right; }
.contact-note { margin-top: 16px !important; font-size: .9rem; color: var(--text-muted); }
.contact-note a { color: var(--leaf-dark); font-weight: 600; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; padding: 12px 0; border-top: 1px solid var(--line); }
.contact-list li:first-child { border-top: 0; }
.contact-list span { color: var(--text-muted); min-width: 150px; }
.contact-list a { color: var(--leaf-dark); font-weight: 600; }
.contact-list small { width: 100%; color: var(--text-muted); font-size: .85rem; }
.contact-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.contact-steps li { position: relative; padding: 14px 0 14px 44px; border-top: 1px solid var(--line); color: var(--text-body); font-size: 1rem; font-weight: 500; line-height: 1.7; }
.contact-steps li:first-child { border-top: 0; }
.contact-steps li::before { counter-increment: step; content: "0" counter(step); position: absolute; left: 0; top: 14px; color: var(--orange-500); font-weight: 700; font-size: .85rem; letter-spacing: .05em; }

.banner-music { padding: 0; }
.banner-music-img { display: block; }
.banner-music-img img { display: block; width: 100%; height: auto; }

.cta { position: relative; overflow: hidden; padding: 56px 0; background: var(--orange-500); }
.cta::before, .cta::after { position: absolute; width: 60vw; height: 60vw; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; content: ""; }
.cta::before { top: 25%; left: -30%; }.cta::after { top: -110%; right: -15%; }
.cta-inner { position: relative; z-index: 1; max-width: 760px; text-align: center; }
.cta .eyebrow { color: var(--heading-color); }
.cta p:not(.eyebrow) { max-width: 58ch; margin: 18px auto 30px; color: var(--heading-color); }

.site-footer { padding: 12px 0 6px; background: var(--green-950); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; }
.brand-light { color: var(--text-on-dark); }
.footer-brand { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-brand p { max-width: 34ch; margin: 0; font-size: .87rem; }
.footer-grid h3 { margin: 0 0 18px; color: var(--text-on-dark); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-inline { flex-direction: row !important; flex-wrap: wrap; gap: 24px; align-items: center; }
.footer-menu { display: flex; flex-direction: column; gap: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.footer-inline span { font-size: .75rem; color: #ffa800; }
.footer-grid a:not(.brand) { width: max-content; font-size: .85rem; transition: color .2s; }
.footer-grid a:hover { color: var(--orange-300); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 9px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }
.footer-bottom div { display: flex; gap: 28px; }
.footer-bottom div { flex-wrap: wrap; }

.back-to-top {
  position: fixed;
  z-index: 40;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: var(--green-900);
  color: var(--text-on-dark);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(6,59,37,.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--green-700); }
.back-to-top:focus-visible { outline: 3px solid rgba(255,168,0,.65); outline-offset: 4px; }

.legal-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.legal-card h3 { margin: 0 0 10px; color: var(--heading-color); font-family: var(--font-base); font-size: 1.25rem; font-weight: 600; }
.legal-card h3 + h3 { margin-top: 24px; }
.legal-card p + h3 { margin-top: 24px; }
.legal-card p { margin: 0; color: var(--text-body); font-size: 1rem; font-weight: 500; line-height: 1.75; }
.legal-card .legal-meta { margin-bottom: 14px; color: var(--orange-600); font-weight: 600; font-size: .9rem; letter-spacing: .05em; }
.legal-card .legal-list { margin: 12px 0 0; padding-left: 20px; list-style: disc; }
.legal-card .legal-list li { color: var(--text-body); font-size: 1rem; font-weight: 500; line-height: 1.75; margin-bottom: 8px; }
.legal-card .legal-contact { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--heading-color); font-weight: 600; }
.legal-card a { color: var(--leaf-dark); font-weight: 600; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(250px, .9fr) minmax(0, 1.7fr); gap: 32px; }
  .hero-copy { max-width: 320px; }
  .hero-copy-features { max-width: 440px; }
  .hero-video-wrap { max-width: 560px; }
  .hero h1, .hero h2 { font-size: clamp(2.7rem, 5.5vw, 4rem); }
  .feature-card { padding: 28px; }
  .technology-panel { grid-template-columns: 1fr 1.15fr; }
  .proof-panel { grid-template-columns: 1fr; }
  .footer-grid { gap: 32px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 32px, var(--container)); }
  .site-header { position: sticky; height: var(--header-h-mobile); }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 2; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; padding: 90px 24px 32px; background: rgba(255,253,246,.98); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .25s, transform .25s; }
  .primary-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--font-base); font-size: 2rem; font-weight: 400; color: var(--heading-color); }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .hero-track { min-height: 0; height: auto; }
  .hero-slide { position: relative; inset: auto; display: none; opacity: 1; transform: none; }
  .hero-slide.is-active { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; padding-top: 20px; padding-bottom: 50px; }
  .hero-copy { max-width: 500px; }
  .hero h1, .hero h2 { font-size: clamp(2.85rem, 13vw, 4.4rem); }
  .hero-lead { margin-top: 20px; line-height: 1.7; }
  .hero-actions { gap: 22px; margin-top: 26px; }
  .hero-visual { height: 320px; margin-inline: 0; }
  .hero-video-wrap { max-width: 100%; }
  .core { top: 14%; right: 21%; width: min(58vw, 300px); }
  .hero-controls { position: static; margin-top: 20px; justify-content: center; }
  .trust-list { grid-template-columns: repeat(3, 1fr); padding-block: 24px; row-gap: 22px; }
  .section { padding: 44px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .technology { padding-top: 0; }
  .technology-panel { grid-template-columns: 1fr; }
  .technology-intro { min-height: 450px; }
  .proof { padding-top: 0; }
  .proof-panel { gap: 38px; }
  .metrics { grid-template-columns: 1fr; }
  .metrics > div { flex-direction: row; justify-content: space-between; border-top: 1px solid rgba(255,168,0,.35); border-left: 0; text-align: right; }
  .metrics span { margin: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .hero-visual { height: 280px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-controls { justify-content: center; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2, .technology h2, .cta h2 { font-size: 2.45rem; }
  .technology-intro, .workflow { padding: 34px 26px; }
  .workflow ol li { grid-template-columns: 45px 1fr; gap: 15px; }
  .workflow ol li > span { width: 43px; height: 43px; }
  .proof-panel { padding: 32px 24px; }
  .cta { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-direction: column; gap: 8px; }
}

.hero-copy-features h1, .hero-copy-features h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.16; letter-spacing: -.02em; }
.hero-copy-features .eyebrow { font-size: var(--font-eyebrow-lg); color: var(--leaf-dark); letter-spacing: .16em; line-height: 1.5; }
.hero-lead, .hero-features li, .section-heading > p:last-child, .feature-card p, .technology-intro > p:not(.eyebrow), .workflow ol li p, .workflow .workflow-intro, .workflow .workflow-list li, blockquote > p, .cta p:not(.eyebrow), .footer-brand p, .metrics span { font-size: 1rem; font-weight: 500; color: var(--text-body); }
.cta h2 { font-size: clamp(1.7rem, 2.8vw, 2.6rem); line-height: 1.3; margin-bottom: 22px; }
.cta p:not(.eyebrow) { font-size: 1.4rem; line-height: 1.6; margin-top: 24px; }
#solutions .section-heading { max-width: none; }
#solutions .section-heading > p:last-child { max-width: 80%; }
#solutions .section-kicker { margin: 0 0 10px; color: var(--text-body); font-size: var(--font-kicker); font-weight: 600; letter-spacing: .03em; }
#solutions .eyebrow { font-size: var(--font-eyebrow-lg); }
#solutions .section-domain { display: inline-block; margin: 8px 0 0; color: var(--leaf-dark); font-size: 2.4rem; font-weight: 700; letter-spacing: .02em; text-decoration: none; }
#solutions .section-domain:hover { text-decoration: underline; }
#solutions { padding-top: var(--space-after-banner); }
.footer-brand p { color: #ffa800; }

/* Responsive hardening: phones, tablets and wide/short screens. */
:where(section[id], main[id]) { scroll-margin-top: calc(var(--header-h) + 16px); }
img, video { max-width: 100%; }

@media (max-width: 1120px) and (min-width: 901px) {
  .primary-nav { gap: 22px; font-size: .86rem; }
  .hero-grid { grid-template-columns: minmax(250px, .95fr) minmax(0, 1.45fr); gap: 28px; }
  .technology-intro, .workflow { padding: 42px; }
  .faq-grid { gap: 18px; }
  .faq-item { padding: 24px; }
}

@media (max-width: 900px) {
  :root { --video-offset: 0px; }
  :where(section[id], main[id]) { scroll-margin-top: calc(var(--header-h-mobile) + 14px); }
  .site-header { min-height: var(--header-h-mobile); }
  .header-inner { gap: 12px; }
  .brand img { width: 34px; height: 34px; }
  .menu-toggle { flex: 0 0 44px; }
  .primary-nav {
    justify-content: flex-start;
    overflow-y: auto;
    padding-top: calc(var(--header-h-mobile) + 34px + env(safe-area-inset-top));
    padding-right: max(24px, env(safe-area-inset-right));
    padding-bottom: max(32px, env(safe-area-inset-bottom));
    padding-left: max(24px, env(safe-area-inset-left));
  }
  .primary-nav a { min-height: 52px; }
  .hero-grid { align-items: start; }
  .hero-video { border-radius: 14px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card { aspect-ratio: 1 / 1; min-height: 0; padding: 0; }
  .feature-card img { inset: 0; width: 100%; height: 100%; object-fit: contain; background: white; }
  .feature-card h3 { right: 20px; bottom: 18px; left: 20px; font-size: clamp(1.35rem, 4vw, 1.7rem); }
  .technology-intro { min-height: auto; }
  .technology-intro h2 { max-width: 12ch; }
  #solutions .section-heading > p:last-child { max-width: 62ch; }
  #solutions .section-domain { font-size: clamp(1.7rem, 6vw, 2.4rem); overflow-wrap: anywhere; }
  .contact-table dd, .contact-list a, .footer-grid a { overflow-wrap: anywhere; }
  .legal-card { padding: 30px; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { width: min(100%, 500px); min-height: 0; margin-inline: auto; }
  .trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; }
  .proof-panel { padding: 28px 22px; }
  .faq-item, .contact-card, .legal-card { padding: 24px; }
  .cta p:not(.eyebrow) { font-size: clamp(1.08rem, 4.6vw, 1.25rem); }
  .banner-music-img { overflow: hidden; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, var(--container)); }
  .brand { gap: 7px; }
  .brand img { width: 32px; height: 32px; }
  .primary-nav a { font-size: clamp(1.55rem, 8vw, 1.9rem); }
  .hero-grid { gap: 22px; padding-top: 18px; padding-bottom: 38px; }
  .hero h1, .hero h2 { font-size: clamp(2.15rem, 11.5vw, 3.15rem); }
  .hero-copy-features h1, .hero-copy-features h2 { font-size: clamp(1.65rem, 8vw, 2.15rem); }
  .eyebrow, .hero-copy-features .eyebrow { font-size: 1rem; letter-spacing: .11em; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .section { padding: 38px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .technology h2 { font-size: clamp(2rem, 10vw, 2.45rem); }
  #solutions .section-kicker { font-size: clamp(1.25rem, 6vw, 1.55rem); }
  .technology-intro, .workflow { padding: 30px 22px; }
  .workflow ol li { grid-template-columns: 42px minmax(0, 1fr); gap: 13px; }
  .metrics > div { gap: 18px; padding-inline: 8px; }
  .metrics strong { font-size: 2rem; }
  .metrics img { width: 76px; height: 76px; }
  .contact-table div { grid-template-columns: 1fr; gap: 4px; }
  .contact-table dd { text-align: left; }
  .contact-list li { display: grid; grid-template-columns: 1fr; gap: 3px; }
  .contact-list span { min-width: 0; }
  .legal-card .legal-list { padding-left: 18px; }
  .footer-inline, .footer-links { gap: 12px 18px; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand img { width: 29px; height: 29px; }
  .hero h1, .hero h2 { font-size: 2.05rem; }
  .feature-card { min-height: 0; }
  .faq-item, .contact-card, .legal-card, .technology-intro, .workflow { padding: 20px; }
  .workflow ol li { grid-template-columns: 36px minmax(0, 1fr); gap: 10px; }
  .workflow ol li > span { width: 36px; height: 36px; }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 540px) {
  .primary-nav { padding-top: calc(var(--header-h-mobile) + 18px); }
  .primary-nav a { min-height: 44px; padding-block: 8px; font-size: 1.35rem; }
}

@media (hover: none) {
  .button:hover, .feature-card:hover { transform: none; }
}

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