:root {
  --night: #06182e;
  --night-soft: #0b2640;
  --night-card: #0d2d48;
  --paper: #f1f8f2;
  --paper-2: #e6f1e9;
  --ink: #0a2135;
  --ink-soft: #53716d;
  --white: #f7fffa;
  --muted: #a7c2bd;
  --line: rgba(196, 239, 220, 0.15);
  --line-dark: rgba(10, 33, 53, 0.13);
  --teal: #2dd7c3;
  --teal-deep: #128e8e;
  --lime: #b5f49b;
  --lime-deep: #72bd78;
  --coral: #f09e7f;
  --shadow: 0 26px 70px rgba(0, 15, 30, 0.23);
  --shadow-soft: 0 16px 40px rgba(0, 15, 30, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--lime); color: var(--night); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.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; }
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.section-pad { padding: 124px 0; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(197, 240, 219, 0.1);
}
.inner-page .site-header { position: relative; background: var(--night); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 17px; letter-spacing: -0.03em; }
.brand-name { color: var(--white); white-space: nowrap; }
.brand-name strong { color: var(--lime); font-weight: 650; }
.brand-mark { display: grid; width: 37px; height: 37px; padding: 3px; place-items: center; overflow: hidden; border: 1px solid rgba(181, 244, 155, 0.5); border-radius: 12px; background: var(--night-soft); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 9px; }
.site-nav { display: flex; align-items: center; gap: 32px; color: var(--muted); font-size: 13px; font-weight: 550; }
.site-nav a { transition: color 180ms ease, background 180ms ease, border-color 180ms ease; }
.site-nav a:hover, .site-nav a.active { color: var(--white); }
.site-nav .nav-cta { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; border: 1px solid rgba(181, 244, 155, 0.48); border-radius: 99px; color: var(--lime); }
.site-nav .nav-cta:hover { border-color: var(--lime); background: rgba(181, 244, 155, 0.1); color: var(--lime); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 23px; height: 1px; margin: 5px 0; background: var(--white); }

.hero { position: relative; min-height: 780px; padding-top: 190px; overflow: hidden; }
.hero::after { position: absolute; right: -6%; bottom: -18%; width: 42%; height: 70%; border: 1px solid rgba(45, 215, 195, 0.07); border-radius: 50%; content: ""; transform: rotate(-22deg); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr); align-items: center; gap: 52px; }
.hero-copy { padding-bottom: 25px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 22px; color: var(--lime); font-size: 11px; font-weight: 720; letter-spacing: 0.16em; line-height: 1; text-transform: uppercase; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(181, 244, 155, 0.08); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -0.065em; }
h1 { max-width: 690px; margin-bottom: 25px; font-size: clamp(58px, 7.2vw, 98px); font-weight: 500; line-height: 0.96; }
h2 { margin-bottom: 18px; font-size: clamp(40px, 5vw, 68px); font-weight: 500; line-height: 0.99; }
h2 em { color: var(--lime); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.07em; }
h3 { letter-spacing: -0.035em; }
.gradient-text { color: var(--lime); background: linear-gradient(110deg, var(--lime) 10%, var(--teal) 90%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lede { max-width: 515px; margin-bottom: 35px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 49px; padding: 12px 19px; border: 1px solid transparent; border-radius: 99px; font-size: 13px; font-weight: 700; letter-spacing: -0.01em; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--night); box-shadow: 0 10px 22px rgba(181, 244, 155, 0.15); }
.button-primary:hover { background: #c5f8b0; }
.button-quiet { border-color: rgba(197, 240, 219, 0.2); color: var(--white); }
.button-quiet:hover { border-color: rgba(197, 240, 219, 0.5); background: rgba(197, 240, 219, 0.06); }
.button-dark { background: var(--night); color: var(--lime); }
.button-dark:hover { background: var(--night-soft); }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 42px; color: rgba(231, 255, 240, 0.66); font-size: 12px; }
.note-icon { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid rgba(181, 244, 155, 0.32); border-radius: 50%; color: var(--lime); font-size: 11px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(5px); pointer-events: none; }
.hero-glow-one { top: 16%; left: -8%; width: 420px; height: 420px; background: rgba(16, 119, 129, 0.16); }
.hero-glow-two { right: 8%; bottom: -12%; width: 520px; height: 520px; background: rgba(137, 214, 125, 0.08); }

.hero-visual { position: relative; display: flex; min-height: 570px; align-items: center; justify-content: center; }
.visual-aura { position: absolute; width: 530px; height: 530px; border-radius: 50%; background: radial-gradient(circle, rgba(45, 215, 195, 0.24) 0%, rgba(45, 215, 195, 0.04) 45%, transparent 70%); }
.orbit { position: absolute; border: 1px solid rgba(181, 244, 155, 0.16); border-radius: 50%; transform: rotate(-34deg); }
.orbit-one { width: 570px; height: 238px; }
.orbit-two { width: 520px; height: 205px; border-color: rgba(45, 215, 195, 0.14); transform: rotate(47deg); }
.phone-frame { position: relative; z-index: 2; width: min(300px, 68%); padding: 9px; border: 1px solid rgba(225, 255, 232, 0.22); border-radius: 40px; background: #031224; box-shadow: 20px 30px 80px rgba(0, 0, 0, 0.42), 0 0 0 10px rgba(5, 33, 51, 0.44); transform: rotate(4deg); }
.phone-frame::after { position: absolute; right: 8px; bottom: 9px; left: 8px; height: 22%; border-radius: 0 0 32px 32px; background: linear-gradient(transparent, rgba(0, 0, 0, 0.24)); content: ""; pointer-events: none; }
.phone-speaker { position: absolute; z-index: 3; top: 17px; left: 50%; width: 62px; height: 5px; border-radius: 99px; background: rgba(7, 20, 31, 0.8); transform: translateX(-50%); }
.phone-screen { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 32px; }
.floating-stat { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; padding: 13px 16px 13px 12px; border: 1px solid rgba(212, 255, 229, 0.2); border-radius: 16px; background: rgba(7, 34, 53, 0.82); box-shadow: 0 16px 28px rgba(0, 0, 0, 0.19); backdrop-filter: blur(12px); }
.floating-stat small, .floating-stat strong { display: block; line-height: 1.2; }
.floating-stat small { color: var(--muted); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.floating-stat strong { margin-top: 4px; color: var(--white); font-size: 13px; font-weight: 650; }
.floating-stat-top { top: 19%; right: 2%; }
.floating-stat-bottom { bottom: 15%; left: 1%; }
.floating-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 10px; font-size: 16px; font-weight: 700; }
.floating-icon-green { background: rgba(181, 244, 155, 0.14); color: var(--lime); }
.floating-icon-teal { background: rgba(45, 215, 195, 0.14); color: var(--teal); }

.proof-strip { position: relative; z-index: 3; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(12, 40, 62, 0.52); }
.proof-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); align-items: center; gap: 20px; }
.proof-intro { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.35; }
.proof-intro strong { color: var(--white); font-weight: 600; }
.proof-item { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12px; line-height: 1.25; }
.proof-value { color: var(--lime); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; }

.light-section { background: var(--paper); color: var(--ink); }
.eyebrow-dark { color: var(--teal-deep); }
.eyebrow-dark .eyebrow-dot { background: var(--teal-deep); box-shadow: 0 0 0 5px rgba(18, 142, 142, 0.1); }
.centered-heading { max-width: 620px; margin: 0 auto 62px; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading h2 { margin-bottom: 17px; }
.centered-heading > p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; min-height: 310px; padding: 33px 31px; border: 1px solid var(--line-dark); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.4); }
.step-card-featured { border-color: rgba(18, 142, 142, 0.18); background: #d8efe5; }
.step-number { position: absolute; top: 31px; right: 30px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; }
.step-icon { display: grid; width: 54px; height: 54px; margin-bottom: 28px; place-items: center; border-radius: 17px; }
.step-icon svg { width: 29px; height: 29px; }
.icon-sun { background: #d9f18b; color: #467452; }
.icon-breath { background: #b7e7dc; color: var(--teal-deep); }
.icon-sprout { background: #d9efca; color: #3f8055; }
.step-card h3 { max-width: 205px; margin-bottom: 12px; font-size: 23px; font-weight: 600; line-height: 1.08; }
.step-card p { max-width: 260px; margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

.feature-section { background: var(--night); }
.split-heading { display: grid; grid-template-columns: 1fr 0.72fr; align-items: end; gap: 70px; margin-bottom: 54px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 330px; margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 18px; }
.feature-card { position: relative; min-height: 450px; padding: 29px 31px 33px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--night-card); }
.feature-card-large { grid-row: span 2; min-height: 650px; }
.feature-card-wide { display: grid; grid-template-columns: 1fr 1.3fr; align-items: center; min-height: 200px; padding-top: 29px; }
.feature-card-wide .feature-card-top { position: absolute; top: 29px; right: 31px; left: 31px; }
.feature-card-wide h3 { margin: 42px 0 10px; font-size: 28px; }
.feature-card-wide p { max-width: 300px; margin-bottom: 0; color: var(--muted); font-size: 13px; }
.feature-card-dark { background: #0b344c; }
.feature-card-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.feature-kicker { color: var(--lime); font-size: 10px; font-weight: 720; letter-spacing: 0.16em; text-transform: uppercase; }
.feature-badge { color: rgba(225, 255, 232, 0.34); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; }
.feature-card h3 { position: relative; z-index: 2; margin: 24px 0 10px; font-size: 30px; font-weight: 550; line-height: 1.05; }
.feature-card > p { position: relative; z-index: 2; max-width: 390px; margin-bottom: 0; color: var(--muted); font-size: 13px; }
.feature-visual { position: relative; display: grid; place-items: center; }
.feature-visual-ring { min-height: 375px; }
.ring { display: grid; place-items: center; border: 1px solid rgba(181, 244, 155, 0.58); border-radius: 50%; }
.ring-outer { width: 287px; height: 287px; border-right-color: rgba(45, 215, 195, 0.2); border-bottom-color: rgba(45, 215, 195, 0.2); transform: rotate(26deg); }
.ring-inner { width: 185px; height: 185px; border-color: rgba(45, 215, 195, 0.5); border-top-color: rgba(181, 244, 155, 0.9); transform: rotate(-51deg); }
.ring-inner span { color: var(--muted); font-size: 11px; letter-spacing: 0.04em; line-height: 1.35; text-align: center; transform: rotate(25deg); }
.ring-inner strong { color: var(--lime); font-size: 14px; font-weight: 600; }
.breathing-visual { min-height: 190px; }
.breath-orb { position: absolute; width: 128px; height: 128px; border: 1px solid rgba(181, 244, 155, 0.6); border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(181, 244, 155, 0.4), rgba(45, 215, 195, 0.05) 62%, transparent 64%); box-shadow: 0 0 0 28px rgba(45, 215, 195, 0.05), 0 0 0 58px rgba(45, 215, 195, 0.04); animation: breathe 5s ease-in-out infinite; }
.breath-label { position: relative; z-index: 1; color: var(--white); font-size: 12px; line-height: 1.45; text-align: center; }
.breath-label small { color: var(--muted); font-size: 10px; }
@keyframes breathe { 0%, 100% { transform: scale(0.94); } 50% { transform: scale(1.05); } }
.mini-metrics { display: flex; gap: 11px; align-self: end; padding-top: 22px; }
.mini-metrics > div { display: flex; flex: 1; min-height: 84px; flex-direction: column; justify-content: space-between; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(5, 24, 46, 0.48); }
.mini-metrics strong { color: var(--lime); font-size: 21px; font-weight: 500; }
.mini-metrics span { color: var(--muted); font-size: 10px; line-height: 1.25; }

.journey-section { overflow: hidden; background: #0a2840; }
.journey-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 70px; }
.journey-copy h2 { max-width: 460px; }
.journey-lede { max-width: 440px; margin-bottom: 34px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.journey-list { display: grid; gap: 17px; margin-bottom: 35px; }
.journey-list-item { display: flex; align-items: flex-start; gap: 13px; }
.journey-check { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; border: 1px solid rgba(181, 244, 155, 0.45); border-radius: 50%; color: var(--lime); font-size: 11px; }
.journey-list-item strong, .journey-list-item small { display: block; }
.journey-list-item strong { color: var(--white); font-size: 13px; font-weight: 650; }
.journey-list-item small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: var(--lime); font-size: 13px; font-weight: 700; }
.text-link:hover { color: var(--white); }
.journey-image-wrap { position: relative; display: flex; min-height: 575px; align-items: center; justify-content: center; }
.image-blob { position: absolute; width: 550px; height: 470px; border-radius: 49% 51% 52% 48% / 45% 43% 57% 55%; background: linear-gradient(135deg, rgba(181, 244, 155, 0.16), rgba(45, 215, 195, 0.12)); transform: rotate(9deg); }
.journey-image-wrap img { position: relative; z-index: 1; width: min(320px, 62%); border: 8px solid #031224; border-radius: 38px; box-shadow: var(--shadow); transform: rotate(-5deg); }
.journey-caption { position: absolute; z-index: 2; right: 3%; bottom: 15%; display: flex; align-items: center; gap: 9px; padding: 11px 14px; border: 1px solid rgba(212, 255, 229, 0.18); border-radius: 99px; background: rgba(7, 34, 53, 0.83); color: var(--white); font-size: 11px; backdrop-filter: blur(12px); }
.caption-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(181, 244, 155, 0.1); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 18px; }
.gallery-card { margin: 0; }
.gallery-card img { width: 100%; padding: 7px; border: 1px solid rgba(5, 28, 42, 0.12); border-radius: 26px; background: #dcebe1; box-shadow: 0 18px 30px rgba(15, 57, 51, 0.12); }
.gallery-card-tall { margin-top: 17px; }
.gallery-card-offset { margin-top: 85px; }
.gallery-card figcaption { padding: 18px 7px 0; }
.gallery-card figcaption strong, .gallery-card figcaption span { display: block; }
.gallery-card figcaption strong { color: var(--ink); font-size: 17px; letter-spacing: -0.03em; }
.gallery-card figcaption span { margin-top: 3px; color: var(--ink-soft); font-size: 12px; }

.cta-section { padding-top: 108px; padding-bottom: 108px; background: var(--night); }
.cta-card { position: relative; display: flex; min-height: 430px; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 68px 30px; border: 1px solid rgba(181, 244, 155, 0.23); border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 35%, rgba(34, 111, 112, 0.65), rgba(10, 40, 64, 0.9) 50%, #0a253d 78%); text-align: center; }
.cta-card::before, .cta-card::after { position: absolute; width: 340px; height: 180px; border: 1px solid rgba(181, 244, 155, 0.13); border-radius: 50%; content: ""; transform: rotate(23deg); }
.cta-card::before { top: -79px; left: -44px; }
.cta-card::after { right: -44px; bottom: -79px; transform: rotate(203deg); }
.cta-card .eyebrow, .cta-card h2, .cta-card p, .cta-card .button { position: relative; z-index: 1; }
.cta-card .eyebrow { margin-bottom: 24px; }
.cta-card h2 { margin-bottom: 15px; font-size: clamp(44px, 6vw, 72px); }
.cta-card > p:not(.eyebrow) { max-width: 370px; margin-bottom: 30px; color: var(--muted); font-size: 15px; }
.cta-stars { position: absolute; top: 32px; color: rgba(181, 244, 155, 0.68); font-size: 13px; letter-spacing: 0.5em; }

.site-footer { padding: 60px 0 30px; border-top: 1px solid var(--line); background: #051528; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 22px 40px; }
.brand-footer { margin-bottom: 12px; }
.footer-tagline { margin: 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; align-content: start; gap: 10px 27px; color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; grid-column: 1 / -1; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--line); color: rgba(167, 194, 189, 0.57); font-size: 11px; }

.inner-hero { position: relative; overflow: hidden; padding-top: 122px; padding-bottom: 86px; border-bottom: 1px solid var(--line); }
.inner-hero-content { position: relative; z-index: 1; }
.inner-hero h1 { max-width: 700px; margin-bottom: 21px; font-size: clamp(52px, 7vw, 84px); }
.inner-hero-content > p:not(.eyebrow):not(.last-updated) { max-width: 520px; margin-bottom: 0; color: var(--muted); font-size: 17px; }
.last-updated { margin-top: 24px; color: rgba(167, 194, 189, 0.64); font-size: 12px; }
.contact-section { background: var(--paper); color: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: stretch; gap: 18px; }
.contact-card-main { position: relative; min-height: 500px; overflow: hidden; padding: 44px; border-radius: var(--radius-lg); background: #d9efe2; }
.contact-orb { position: absolute; top: -55px; right: -18px; display: grid; width: 230px; height: 230px; place-items: center; border: 1px solid rgba(18, 142, 142, 0.2); border-radius: 50%; color: rgba(18, 142, 142, 0.24); font-family: Georgia, serif; font-size: 93px; font-style: italic; }
.contact-card-main h2 { position: relative; z-index: 1; margin-bottom: 18px; font-size: 57px; }
.contact-card-main > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 340px; margin-bottom: 27px; color: var(--ink-soft); font-size: 14px; }
.email-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 11px; margin-bottom: 25px; color: var(--teal-deep); font-size: 17px; font-weight: 700; }
.email-link:hover { color: var(--ink); }
.contact-card-main .button { position: relative; z-index: 1; }
.contact-side { display: grid; gap: 18px; }
.contact-detail { display: grid; grid-template-columns: 55px 1fr; gap: 20px; min-height: 0; padding: 29px 30px; border: 1px solid var(--line-dark); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.42); }
.detail-number { color: var(--teal-deep); font-size: 11px; font-weight: 750; letter-spacing: 0.15em; }
.contact-detail h3 { margin-bottom: 7px; font-size: 22px; font-weight: 600; }
.contact-detail p { max-width: 390px; margin-bottom: 0; color: var(--ink-soft); font-size: 13px; }

.legal-hero { padding-bottom: 75px; }
.legal-section { background: var(--paper); color: var(--ink); }
.legal-shell { display: grid; grid-template-columns: 205px minmax(0, 780px); justify-content: space-between; gap: 70px; }
.legal-nav { position: sticky; top: 25px; align-self: start; display: grid; gap: 3px; padding: 18px 0; }
.legal-nav p { margin: 0 0 11px; color: var(--ink-soft); font-size: 10px; font-weight: 750; letter-spacing: 0.15em; text-transform: uppercase; }
.legal-nav a { padding: 8px 10px; border-left: 2px solid transparent; color: var(--ink-soft); font-size: 12px; }
.legal-nav a:hover, .legal-nav a.active { border-color: var(--teal-deep); color: var(--ink); }
.legal-card { padding: 54px 60px 60px; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.48); }
.legal-intro { margin-bottom: 45px; padding-bottom: 33px; border-bottom: 1px solid var(--line-dark); }
.legal-label { display: inline-block; margin-bottom: 18px; color: var(--teal-deep); font-size: 11px; font-weight: 750; letter-spacing: 0.14em; text-transform: uppercase; }
.legal-intro p { margin-bottom: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.legal-card h2 { margin: 36px 0 11px; font-size: 24px; font-weight: 650; letter-spacing: -0.045em; }
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p { margin-bottom: 16px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.legal-card a { color: var(--teal-deep); font-weight: 650; text-decoration: underline; text-decoration-color: rgba(18, 142, 142, 0.3); text-underline-offset: 3px; }
.legal-contact { display: flex; align-items: baseline; gap: 11px; margin-top: 45px; padding: 19px 20px; border: 1px solid rgba(18, 142, 142, 0.2); border-radius: 13px; background: #dcefe5; color: var(--ink-soft); font-size: 13px; }
.legal-contact strong { color: var(--ink); }

@media (max-width: 960px) {
  .container { width: min(calc(100% - 38px), var(--container)); }
  .section-pad { padding: 92px 0; }
  .hero { min-height: auto; padding-top: 156px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 660px; }
  .hero-visual { min-height: 540px; }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-intro { grid-column: 1 / -1; }
  .split-heading { gap: 40px; }
  .journey-grid { gap: 35px; }
  .legal-shell { grid-template-columns: 165px minmax(0, 1fr); gap: 32px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { position: absolute; }
  .inner-page .site-header { position: relative; }
  .nav-wrap { min-height: 78px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 70px; right: 16px; left: 16px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 9px; border: 1px solid var(--line); border-radius: 16px; background: rgba(6, 24, 46, 0.97); box-shadow: var(--shadow-soft); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 13px; border-radius: 10px; }
  .site-nav a:hover { background: rgba(197, 240, 219, 0.06); }
  .site-nav .nav-cta { justify-content: center; margin-top: 5px; border-radius: 10px; }
  .section-pad { padding: 76px 0; }
  .hero { padding-top: 137px; }
  h1 { font-size: clamp(53px, 15vw, 82px); }
  h2 { font-size: clamp(39px, 11vw, 56px); }
  .hero-lede { font-size: 16px; }
  .hero-visual { min-height: 480px; }
  .phone-frame { width: min(260px, 64%); }
  .visual-aura { width: 390px; height: 390px; }
  .orbit-one { width: 410px; height: 190px; }
  .orbit-two { width: 380px; height: 165px; }
  .floating-stat { transform: scale(0.9); }
  .floating-stat-top { top: 14%; right: -3%; }
  .floating-stat-bottom { bottom: 10%; left: -5%; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 19px 10px; }
  .proof-intro { grid-column: 1 / -1; }
  .proof-item { gap: 9px; }
  .step-grid, .feature-grid, .journey-grid, .contact-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .split-heading { display: block; margin-bottom: 38px; }
  .split-heading > p { margin-top: 20px; }
  .feature-card-large { grid-row: auto; min-height: 590px; }
  .feature-card-wide { display: block; min-height: 290px; }
  .feature-card-wide h3 { margin-top: 55px; }
  .mini-metrics { max-width: 430px; }
  .journey-image-wrap { min-height: 500px; margin-top: 18px; }
  .journey-image-wrap img { width: min(285px, 67%); }
  .journey-caption { right: 0; bottom: 10%; transform: scale(0.9); transform-origin: right center; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 430px; margin: 0 auto; }
  .gallery-card-tall, .gallery-card-offset { margin-top: 0; }
  .gallery-card:not(:first-child) { margin-top: 25px; }
  .cta-card { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .inner-hero { padding-top: 72px; padding-bottom: 66px; }
  .inner-hero h1 { font-size: clamp(49px, 14vw, 75px); }
  .contact-card-main { min-height: 470px; padding: 34px 28px; }
  .contact-card-main h2 { font-size: 52px; }
  .legal-shell { display: block; }
  .legal-nav { position: static; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 25px; padding: 0; }
  .legal-nav p { grid-column: 1 / -1; margin-bottom: 9px; }
  .legal-nav a { padding: 8px 5px; font-size: 11px; }
  .legal-card { padding: 34px 25px 38px; border-radius: 23px; }
  .legal-intro p { font-size: 15px; }
  .legal-contact { flex-direction: column; gap: 2px; }
}

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