:root {
    --sage-950: #173b32;
    --sage-900: #244f43;
    --sage-800: #356655;
    --sage-700: #4f806e;
    --sage-500: #78a492;
    --sage-200: #cfe1da;
    --sage-100: #e8f1ed;
    --sage-50: #f3f7f5;
    --ivory: #fbfaf5;
    --white: #ffffff;
    --cream: #fff3df;
    --orange: #ee9e4d;
    --orange-dark: #bd6e23;
    --ink: #17302a;
    --muted: #697a74;
    --line: #dbe5e0;
    --danger: #a84343;
    --success: #246b52;
    --shadow: 0 24px 70px rgba(23, 59, 50, .12);
    --shadow-soft: 0 12px 34px rgba(23, 59, 50, .08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, .display { letter-spacing: -.04em; }
h1 { font: 600 clamp(3rem, 6.7vw, 6.4rem)/.98 Georgia, serif; }
h2 { font: 600 clamp(2.15rem, 4vw, 3.8rem)/1.06 Georgia, serif; }
h3 { font-size: 1.22rem; line-height: 1.25; }
p { color: var(--muted); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-tight { padding: 76px 0; }
.section-soft { background: var(--sage-50); }
.section-dark { color: white; background: var(--sage-950); }
.section-dark p { color: #bfd0ca; }
.section-header { max-width: 720px; margin-bottom: 50px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header p { max-width: 630px; font-size: 1.08rem; }
.section-header.center p { margin-inline: auto; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--sage-800);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow::before { width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--orange); }
.section-dark .eyebrow { color: #d8e6e1; }
.accent { color: var(--sage-700); font-style: italic; }
.orange { color: var(--orange-dark); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.center { text-align: center; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 999; top: -60px; left: 20px; padding: 10px 16px; color: white; background: var(--sage-950); border-radius: 10px; }
.skip-link:focus { top: 12px; }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    color: white;
    background: var(--sage-900);
    border: 1px solid var(--sage-900);
    border-radius: 999px;
    font-weight: 750;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--sage-800); box-shadow: var(--shadow-soft); }
.button-outline { color: var(--sage-900); background: transparent; border-color: var(--sage-200); }
.button-outline:hover { color: white; }
.button-cream { color: var(--sage-950); background: var(--cream); border-color: var(--cream); }
.button-cream:hover { background: white; }
.button-small { min-height: 43px; padding-inline: 19px; font-size: .92rem; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--sage-800); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(251, 250, 245, .88); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .2s, border-color .2s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(23, 59, 50, .06); }
.nav-shell { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: grid; width: 46px; height: 46px; place-items: center; color: var(--sage-950); background: white; border: 1px solid var(--line); border-radius: 15px; font: 500 1.8rem Georgia, serif; }
.brand-copy { display: flex; line-height: 1.08; flex-direction: column; }
.brand-copy strong { font-size: 1.04rem; }
.brand-copy small { color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: 25px; }
.nav-link { position: relative; color: #52665f; font-size: .92rem; font-weight: 700; }
.nav-link::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); transition: transform .2s; }
.nav-link:hover, .nav-link.active { color: var(--sage-950); }
.nav-link.active::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--sage-950); transition: transform .2s; }

.hero { position: relative; overflow: hidden; padding: 90px 0 110px; }
.hero::before { position: absolute; z-index: -1; top: -220px; right: -160px; width: 660px; height: 660px; content: ""; opacity: .58; background: radial-gradient(circle, #d6e9df 0, rgba(214,233,223,0) 68%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr); align-items: center; gap: 72px; }
.hero-copy h1 { max-width: 740px; margin-bottom: 26px; }
.hero-copy > p { max-width: 650px; font-size: clamp(1.08rem, 1.7vw, 1.27rem); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-chip { padding: 9px 14px; color: var(--sage-800); background: white; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; font-weight: 750; }
.proof-strip { background: white; border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 28px 22px; border-right: 1px solid var(--line); text-align: center; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--sage-900); font: 600 1.8rem Georgia, serif; }
.proof-item span { color: var(--muted); font-size: .84rem; }

.phone-scene { position: relative; min-height: 670px; }
.phone-frame { position: absolute; z-index: 2; top: 0; left: 50%; width: 340px; padding: 11px; background: #11251f; border-radius: 46px; box-shadow: 0 42px 90px rgba(18, 55, 44, .26); transform: translateX(-50%) rotate(1.7deg); }
.phone-speaker { width: 88px; height: 20px; margin: -2px auto 1px; background: #11251f; border-radius: 0 0 15px 15px; }
.phone-screen { min-height: 616px; padding: 13px 15px 18px; overflow: hidden; background: #fbfcf9; border-radius: 35px; }
.phone-status, .phone-brand { display: flex; align-items: center; justify-content: space-between; }
.phone-status { color: #60716c; font-size: .62rem; }
.phone-brand { margin: 11px 0 14px; }
.phone-brand button { padding: 0; color: #82918d; background: none; border: 0; }
.phone-brand strong { font: 500 1.65rem Georgia, serif; }
.phone-brand strong span { color: var(--orange); }
.phone-brand i { display: grid; width: 32px; height: 32px; place-items: center; color: var(--sage-900); border: 2px solid var(--sage-700); border-radius: 50%; font: normal 1rem Georgia, serif; }
.phone-agent-strip { display: flex; gap: 9px; padding-bottom: 14px; }
.mini-agent { width: 56px; text-align: center; }
.mini-agent b { display: grid; width: 43px; height: 43px; margin: auto; place-items: center; color: var(--sage-900); background: var(--sage-100); border: 2px solid white; border-radius: 50%; box-shadow: 0 0 0 1px var(--sage-200); }
.mini-agent.selected b { color: white; background: var(--sage-900); box-shadow: 0 0 0 2px var(--orange); }
.mini-agent span { display: block; margin-top: 5px; color: #63736e; font-size: .54rem; }
.phone-hero-card { padding: 19px 17px; background: var(--sage-100); border: 1px solid #d5e4de; border-radius: 22px; }
.mini-label { color: var(--sage-700); font-size: .55rem; font-weight: 850; letter-spacing: .09em; }
.phone-hero-card h4 { margin: 5px 0 1px; font-size: 1.4rem; }
.phone-hero-card > p { margin-bottom: 13px; font-size: .72rem; }
.priority-row { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 6px; padding: 8px 0; border-top: 1px solid rgba(79,128,110,.16); font-size: .58rem; }
.priority-row span { color: var(--muted); }
.priority-row em { padding: 3px 6px; color: var(--orange-dark); background: var(--cream); border-radius: 99px; font-style: normal; }
.phone-conversation { margin: 13px 0; padding: 15px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.phone-conversation p { margin: 5px 0 0; font-size: .72rem; line-height: 1.45; }
.phone-compose { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; color: #96a19d; background: white; border: 1px solid var(--line); border-radius: 99px; font-size: .66rem; }
.phone-compose b { color: var(--sage-900); font-size: 1.2rem; }
.phone-nav { display: flex; margin: 15px -15px -18px; padding: 10px 18px; justify-content: space-around; color: #9aa7a2; background: white; border-top: 1px solid var(--line); font-size: .65rem; }
.phone-nav span { display: flex; flex-direction: column; align-items: center; }
.phone-nav small { font-size: .5rem; }
.phone-nav .selected { color: var(--sage-800); }
.orbit { position: absolute; border: 1px solid var(--sage-200); border-radius: 50%; }
.orbit-one { top: 50px; left: 0; width: 520px; height: 520px; }
.orbit-two { top: 130px; left: 80px; width: 360px; height: 360px; border-color: rgba(238,158,77,.45); }
.floating-note { position: absolute; z-index: 4; display: flex; width: 210px; padding: 15px 17px; flex-direction: column; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
.floating-note b { font-size: .78rem; }
.floating-note span { color: var(--muted); font-size: .65rem; }
.note-one { top: 102px; right: -20px; }
.note-two { bottom: 80px; left: -28px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card, .step-card, .control-card { padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 8px 24px rgba(23,59,50,.035); }
.value-card .icon, .step-card .number, .control-card .icon { display: grid; width: 48px; height: 48px; margin-bottom: 24px; place-items: center; color: var(--sage-900); background: var(--sage-100); border-radius: 15px; font-weight: 850; }
.value-card h3, .step-card h3, .control-card h3 { margin-bottom: 9px; }
.value-card p, .step-card p, .control-card p { margin-bottom: 0; }
.step-card .number { color: var(--orange-dark); background: var(--cream); }

.shifi-feature { display: grid; padding: 52px; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 62px; color: white; background: linear-gradient(145deg, #173b32, #2c6554); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.shifi-feature p { color: #c7d8d2; }
.shifi-orb { position: relative; display: grid; width: 280px; height: 280px; margin: auto; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.shifi-orb::before, .shifi-orb::after { position: absolute; content: ""; border-radius: 50%; }
.shifi-orb::before { width: 210px; height: 210px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); }
.shifi-orb::after { width: 124px; height: 124px; background: var(--cream); box-shadow: 0 0 60px rgba(255,243,223,.28); }
.shifi-orb span { z-index: 2; color: var(--sage-950); font: 500 4.4rem Georgia, serif; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.feature-pills span { padding: 8px 12px; color: #dceae5; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; font-size: .76rem; }

.agent-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.agent-card { position: relative; padding: 32px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.agent-card::after { position: absolute; top: -35px; right: -35px; width: 110px; height: 110px; content: ""; opacity: .58; background: var(--sage-100); border-radius: 50%; }
.agent-card.master-agent { color: white; background: var(--sage-950); border-color: var(--sage-950); }
.agent-card.master-agent p { color: #bed0ca; }
.agent-card.master-agent .text-link, .agent-card.master-agent .eyebrow { color: var(--cream); }
.agent-card.master-agent::after { background: rgba(238,158,77,.28); }
.agent-card-top { display: flex; align-items: center; gap: 17px; margin-bottom: 20px; }
.agent-avatar { display: grid; width: 62px; height: 62px; flex: 0 0 auto; place-items: center; color: var(--sage-950); background: var(--sage-100); border-radius: 19px; font: 500 2rem Georgia, serif; }
.agent-shifi .agent-avatar { background: var(--cream); }
.agent-nutrition .agent-avatar { background: #e9f4e4; }
.agent-fitness .agent-avatar { background: #e4eff4; }
.agent-care .agent-avatar { background: #f8eadc; }
.agent-card h3 { margin: 0 0 3px; font-size: 1.5rem; }
.agent-role { margin: 0; font-size: .86rem; }
.agent-card > p { min-height: 77px; }
.agent-card.compact > p { min-height: 0; }
.check-list { display: grid; margin: 22px 0 25px; padding: 0; gap: 11px; list-style: none; }
.check-list li { position: relative; padding-left: 27px; color: var(--muted); font-size: .9rem; }
.check-list li::before { position: absolute; top: .18em; left: 0; display: grid; width: 18px; height: 18px; content: "✓"; place-items: center; color: var(--sage-800); background: var(--sage-100); border-radius: 50%; font-size: .65rem; font-weight: 900; }
.master-agent .check-list li { color: #bed0ca; }

.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.flow-item { position: relative; padding: 25px 20px; color: var(--ink); background: white; border-radius: 20px; }
.flow-item:not(:last-child)::after { position: absolute; z-index: 2; top: 50%; right: -14px; display: grid; width: 28px; height: 28px; content: "→"; place-items: center; color: var(--sage-900); background: var(--cream); border-radius: 50%; transform: translateY(-50%); }
.flow-item strong { display: block; margin-bottom: 6px; }
.flow-item span { color: var(--muted); font-size: .82rem; }
.consent-band { display: flex; margin-top: 20px; padding: 18px 22px; align-items: center; justify-content: space-between; gap: 20px; color: #d7e4e0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; }
.consent-band b { color: white; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.panel { padding: 36px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.panel-cream { background: var(--cream); border-color: #f0dec3; }
.panel-sage { background: var(--sage-100); }
.comparison-list { display: grid; gap: 13px; margin-top: 26px; }
.comparison-row { display: flex; align-items: flex-start; gap: 13px; }
.comparison-row i { display: grid; width: 29px; height: 29px; flex: 0 0 auto; place-items: center; color: var(--sage-800); background: white; border-radius: 9px; font-style: normal; font-weight: 900; }
.comparison-row p { margin: 0; }
.availability { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.availability .panel h3 { display: flex; align-items: center; gap: 10px; }
.status-dot { width: 9px; height: 9px; background: #37a77d; border-radius: 50%; }
.status-dot.future { background: var(--orange); }

.page-hero { padding: 82px 0 72px; text-align: center; }
.page-hero .container { max-width: 850px; }
.page-hero h1 { margin-bottom: 22px; font-size: clamp(3rem, 6vw, 5.7rem); }
.page-hero p { max-width: 680px; margin-inline: auto; font-size: 1.16rem; }
.page-hero-actions { display: flex; margin-top: 28px; justify-content: center; gap: 12px; }
.journey { position: relative; display: grid; gap: 20px; }
.journey::before { position: absolute; top: 20px; bottom: 20px; left: 31px; width: 1px; content: ""; background: var(--sage-200); }
.journey-item { position: relative; display: grid; padding: 28px 30px; grid-template-columns: 65px 150px 1fr; align-items: start; gap: 20px; background: white; border: 1px solid var(--line); border-radius: 22px; }
.journey-icon { z-index: 2; display: grid; width: 45px; height: 45px; place-items: center; color: white; background: var(--sage-900); border: 6px solid var(--ivory); border-radius: 50%; }
.journey-time { color: var(--orange-dark); font-weight: 800; }
.journey-item h3 { margin-bottom: 7px; }
.journey-item p { margin-bottom: 0; }
.view-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.view-card { padding: 30px; background: white; border: 1px solid var(--line); border-radius: 22px; }
.view-card .screen-tab { display: inline-flex; margin-bottom: 22px; padding: 6px 10px; color: var(--sage-800); background: var(--sage-100); border-radius: 8px; font-size: .72rem; font-weight: 850; text-transform: uppercase; }

.agent-detail { padding: 38px; background: white; border: 1px solid var(--line); border-radius: var(--radius-xl); scroll-margin-top: 110px; }
.agent-detail + .agent-detail { margin-top: 24px; }
.agent-detail.master-detail { color: white; background: var(--sage-950); border-color: var(--sage-950); }
.agent-detail.master-detail p { color: #bfd0ca; }
.agent-detail-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; }
.agent-detail .agent-avatar { width: 76px; height: 76px; margin-bottom: 22px; border-radius: 23px; font-size: 2.5rem; }
.responsibility-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.responsibility { padding: 17px; background: var(--sage-50); border-radius: 15px; }
.responsibility strong { display: block; margin-bottom: 4px; }
.responsibility span { color: var(--muted); font-size: .84rem; }
.master-detail .responsibility { background: rgba(255,255,255,.08); }
.master-detail .responsibility span { color: #bcd0c9; }
.scope-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; }
.scope-table { width: 100%; border-collapse: collapse; background: white; }
.scope-table th, .scope-table td { padding: 17px 19px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.scope-table th { color: var(--sage-800); background: var(--sage-50); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.scope-table tr:last-child td { border-bottom: 0; }

.principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.boundary { display: flex; padding: 20px; align-items: flex-start; gap: 15px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.boundary b:first-child { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; color: var(--sage-800); background: var(--sage-100); border-radius: 10px; }
.boundary p { margin: 3px 0 0; font-size: .88rem; }
.notice { padding: 22px 24px; color: #704c22; background: var(--cream); border: 1px solid #eed7b8; border-radius: 18px; }
.notice p { margin: 5px 0 0; color: #866845; }

.faq-list { max-width: 850px; margin: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { display: flex; width: 100%; padding: 25px 4px; align-items: center; justify-content: space-between; gap: 20px; background: transparent; border: 0; cursor: pointer; text-align: left; font-weight: 800; }
.faq-button span:last-child { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; background: var(--sage-100); border-radius: 50%; transition: transform .2s; }
.faq-item.open .faq-button span:last-child { transform: rotate(45deg); }
.faq-answer { padding: 0 50px 23px 4px; }
.faq-answer p { margin: 0; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-details { display: grid; margin-top: 28px; gap: 14px; }
.contact-detail { padding: 18px; background: var(--sage-50); border-radius: 15px; }
.contact-detail strong { display: block; }
.contact-detail span { color: var(--muted); font-size: .88rem; }
.form-card { padding: 38px; background: white; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .87rem; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 15px; color: var(--ink); background: #fcfdfb; border: 1px solid var(--line); border-radius: 13px; outline: none; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--sage-700); box-shadow: 0 0 0 3px rgba(79,128,110,.12); }
.field-meta { display: flex; margin-top: 5px; justify-content: flex-end; color: var(--muted); font-size: .75rem; }
.check-field { display: flex; margin-bottom: 20px; align-items: flex-start; gap: 10px; font-size: .84rem; }
.check-field input { margin-top: 5px; accent-color: var(--sage-800); }
.form-alert { margin-bottom: 22px; padding: 15px 17px; border-radius: 13px; }
.form-alert.error { color: #7c3131; background: #f9e9e9; }
.form-alert.success { color: #205c47; background: #e6f4ed; }
.form-alert ul { margin: 6px 0 0; padding-left: 20px; }
.honeypot { position: absolute; left: -9999px; }

.policy { max-width: 840px; margin: auto; padding: 80px 0 110px; }
.policy h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.policy h2 { margin-top: 42px; font: 750 1.5rem/1.25 inherit; letter-spacing: -.02em; }
.policy li { margin-bottom: 8px; color: var(--muted); }
.policy-meta { margin-bottom: 35px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }

.cta-box { display: grid; padding: 58px; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 40px; color: white; background: var(--sage-900); border-radius: var(--radius-xl); }
.cta-box h2 { margin-bottom: 12px; }
.cta-box p { margin: 0; color: #c8d8d3; }
.cta-box .action-row { margin: 0; justify-content: flex-end; }

.site-footer { padding: 72px 0 25px; color: #d8e4e0; background: #0f2e26; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .65fr 1fr; gap: 45px; }
.brand-light .brand-mark { color: var(--sage-950); background: var(--cream); border: 0; }
.brand-light .brand-copy small { color: #aebfba; }
.footer-brand p { max-width: 330px; color: #9fb3ac; }
.footer-badge { display: inline-flex; padding: 7px 11px; color: #c9dad4; background: rgba(255,255,255,.07); border-radius: 99px; font-size: .74rem; }
.site-footer h2 { margin-bottom: 15px; font: 800 .83rem/1.2 inherit; letter-spacing: .08em; text-transform: uppercase; }
.site-footer > .footer-grid > div:not(.footer-brand) a:not(.button) { display: block; margin: 9px 0; color: #9fb3ac; font-size: .88rem; }
.site-footer a:hover { color: white; }
.footer-cta p { color: #9fb3ac; }
.footer-bottom { display: flex; margin-top: 55px; padding-top: 22px; justify-content: space-between; gap: 20px; color: #819a92; border-top: 1px solid rgba(255,255,255,.09); font-size: .76rem; }

.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js [data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr 420px; gap: 35px; }
    .site-nav { gap: 16px; }
    .nav-link { font-size: .84rem; }
    .note-one { right: 0; }
    .note-two { left: 0; }
    .footer-grid { grid-template-columns: 1.1fr .7fr .7fr; }
    .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
    .section { padding: 82px 0; }
    .menu-toggle { display: block; }
    .site-nav { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: none; padding: 18px; align-items: stretch; flex-direction: column; gap: 5px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
    .site-nav.open { display: flex; }
    .nav-link { padding: 10px 9px; font-size: .95rem; }
    .nav-link::after { display: none; }
    .hero { padding-top: 60px; }
    .hero-grid, .split, .shifi-feature, .agent-detail-grid, .contact-grid, .cta-box { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy > p { margin-inline: auto; }
    .hero-copy .action-row, .trust-row { justify-content: center; }
    .phone-scene { margin-top: 35px; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-item:nth-child(2) { border-right: 0; }
    .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .card-grid, .view-grid { grid-template-columns: 1fr; }
    .agent-grid, .principle-grid { grid-template-columns: 1fr; }
    .flow { grid-template-columns: 1fr 1fr; }
    .flow-item:nth-child(2)::after { display: none; }
    .shifi-feature { padding: 38px; }
    .journey-item { grid-template-columns: 65px 110px 1fr; }
    .cta-box { text-align: center; }
    .cta-box .action-row { justify-content: center; }
}

@media (max-width: 600px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 66px 0; }
    .section-tight { padding: 54px 0; }
    h1 { font-size: clamp(2.65rem, 14vw, 4.3rem); }
    h2 { font-size: clamp(2rem, 10vw, 3rem); }
    .nav-shell { min-height: 69px; }
    .brand-mark { width: 42px; height: 42px; }
    .hero { padding: 45px 0 75px; }
    .hero-grid { display: block; }
    .phone-scene { min-height: 590px; transform: scale(.88); transform-origin: top center; margin-bottom: -70px; }
    .phone-frame { width: 326px; }
    .floating-note { display: none; }
    .proof-item { padding: 23px 9px; }
    .proof-item strong { font-size: 1.45rem; }
    .agent-grid, .availability, .responsibility-grid, .field-grid { grid-template-columns: 1fr; }
    .agent-card, .agent-detail, .form-card { padding: 25px; }
    .agent-card > p { min-height: 0; }
    .shifi-feature { padding: 28px 23px; }
    .shifi-orb { width: 220px; height: 220px; }
    .shifi-orb::before { width: 165px; height: 165px; }
    .shifi-orb::after { width: 100px; height: 100px; }
    .flow { grid-template-columns: 1fr; }
    .flow-item:not(:last-child)::after { top: auto; right: 50%; bottom: -14px; transform: translateX(50%) rotate(90deg); }
    .flow-item:nth-child(2)::after { display: grid; }
    .consent-band { align-items: flex-start; flex-direction: column; }
    .journey::before { display: none; }
    .journey-item { grid-template-columns: 45px 1fr; }
    .journey-time { grid-column: 2; grid-row: 1; }
    .journey-copy { grid-column: 2; }
    .cta-box { padding: 36px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand, .footer-cta { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .page-hero { padding: 58px 0 48px; }
    .page-hero-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
}
