:root {
  --navy: #123342;
  --navy-deep: #092a36;
  --teal: #167d98;
  --cyan: #60cbd8;
  --green: #0f644c;
  --lime: #9fd33b;
  --ink: #1f303a;
  --muted: #60737e;
  --cream: #f7f4e9;
  --paper: #fffdf8;
  --blue-wash: #edf5f8;
  --line: #d5e1e5;
  --shadow: 0 25px 70px rgba(18, 51, 66, 0.16);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1190px, 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; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; color: white; border-radius: 10px; background: var(--navy); transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; transition: background .25s, box-shadow .25s, backdrop-filter .25s; }
.site-header.scrolled { background: rgba(255, 253, 248, .9); box-shadow: 0 1px 0 rgba(18, 51, 66, .1); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name { color: var(--navy); font: 800 22px/1 "Manrope", sans-serif; letter-spacing: -.7px; }
.brand-tagline { margin-left: 5px; padding-left: 13px; color: #52706a; border-left: 2px solid var(--lime); font: 700 8px/1.35 "Manrope", sans-serif; letter-spacing: .45px; text-transform: uppercase; }
.brand-tagline strong { color: var(--teal); }
.site-nav { display: flex; align-items: center; gap: 25px; color: var(--navy); font-size: 13px; font-weight: 700; }
.site-nav > a { position: relative; }
.site-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--lime); transition: right .2s; }
.site-nav > a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 9px; margin-left: 5px; }
.login-link { min-height: 42px; padding: 0 15px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #b8c9cf; border-radius: 999px; }
.login-link:hover { background: white; }
.nav-cta { min-height: 42px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; color: white; border-radius: 999px; background: var(--navy); }
.nav-cta:hover { background: var(--teal); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--navy); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: white; border-radius: 2px; transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: 820px; padding: 162px 0 112px; overflow: hidden; background: var(--cream); }
.hero::before { content: ""; position: absolute; width: 720px; height: 720px; right: -300px; top: -310px; border-radius: 50%; background: rgba(159, 211, 59, .16); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 60px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--green); font: 700 11px/1.25 "Manrope", sans-serif; letter-spacing: 1.7px; text-transform: uppercase; }
.eyebrow > span { width: 27px; height: 2px; background: var(--lime); }
.eyebrow strong { color: var(--teal); }
.eyebrow.light { color: #d2e5e4; }
.eyebrow.dark { color: var(--green); }
.hero h1, .section-heading h2, .product-copy h2, .product-heading h2, .maps-copy h2, .platforms-inner h2, .final-cta h2 { font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -2.5px; line-height: 1.05; }
.hero h1 { margin: 0 0 26px; max-width: 610px; color: var(--navy); font-size: clamp(52px, 5vw, 74px); }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-lead { margin: 0; max-width: 585px; color: #536b66; font-size: 18px; line-height: 1.7; }
.hero-actions, .cta-actions { margin-top: 32px; display: flex; align-items: center; gap: 12px; }
.button { min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; font: 700 14px/1 "Manrope", sans-serif; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--navy); box-shadow: 0 13px 26px rgba(18, 51, 66, .2); }
.button-primary:hover { background: var(--teal); box-shadow: 0 16px 30px rgba(18, 51, 66, .24); }
.button-ghost { color: var(--navy); border-color: #b8c9c3; background: rgba(255, 255, 255, .45); }
.button-ghost:hover { background: white; }
.availability-inline { margin-top: 31px; padding-top: 23px; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; color: #6a7c76; border-top: 1px solid #d4dacf; font-size: 11px; }
.availability-inline strong { color: var(--green); }
.status-dot { width: 8px; height: 8px; border: 2px solid white; border-radius: 50%; background: #46aa62; box-shadow: 0 0 0 2px rgba(70,170,98,.22); }
.availability-divider { width: 1px; height: 16px; margin-inline: 4px; background: #c4cec6; }

.hero-visual { position: relative; min-width: 0; padding: 34px 0 52px; }
.app-shot, .phone-shot, .screenshot-card { margin: 0; overflow: hidden; background: white; box-shadow: var(--shadow); }
.hero-app-shot { position: relative; z-index: 2; border: 7px solid white; border-radius: 22px; transform: rotate(1deg); }
.hero-app-shot picture { display: block; }
.hero-app-shot img { width: 100%; height: auto; }
.browser-bar { height: 34px; padding: 0 12px; display: flex; align-items: center; gap: 6px; color: #71828a; border-bottom: 1px solid #dde6e8; background: #f8faf8; font-size: 7px; }
.browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #bdc9cc; }
.browser-bar i:nth-child(1) { background: #f2a985; }
.browser-bar i:nth-child(2) { background: #e2c95e; }
.browser-bar i:nth-child(3) { background: #75bd85; }
.browser-bar span { margin-left: auto; }
.phone-shot { border: 7px solid white; border-radius: 25px; }
.phone-shot img { width: 100%; height: auto; }
.hero-phone-shot { position: absolute; z-index: 4; width: 148px; right: -25px; bottom: -5px; transform: rotate(-2deg); box-shadow: 0 24px 60px rgba(18,51,66,.25); }
.hero-contour { position: absolute; inset: auto 0 0; height: 78px; opacity: .13; background: repeating-linear-gradient(169deg, transparent 0 27px, var(--navy) 28px 29px); clip-path: polygon(0 60%, 18% 18%, 37% 62%, 57% 12%, 78% 51%, 100% 5%, 100% 100%, 0 100%); }

.trust-strip { padding: 22px 0; color: white; background: var(--navy); }
.trust-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 24px; }
.trust-grid div { display: flex; align-items: baseline; justify-content: center; gap: 7px; }
.trust-grid strong { color: var(--cyan); font: 800 13px/1.2 "Manrope", sans-serif; }
.trust-grid span { color: #bdd3da; font-size: 10px; }
.trust-grid > i { width: 3px; height: 3px; border-radius: 50%; background: var(--lime); }

.section { padding: 112px 0; }
.section[id], .platforms-section { scroll-margin-top: 82px; }
.features { background: var(--paper); }
.split-heading { margin-bottom: 48px; display: grid; grid-template-columns: 1.15fr .72fr; align-items: end; gap: 75px; }
.section-heading h2, .product-copy h2, .product-heading h2, .maps-copy h2, .platforms-inner h2 { margin: 0; color: var(--navy); font-size: clamp(38px, 4vw, 54px); }
.split-heading > p, .product-heading > p { margin: 0 0 3px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.feature-card { min-height: 292px; padding: 27px; display: flex; align-items: flex-start; flex-direction: column; border: 1px solid var(--line); border-radius: 23px; background: #f9fbf8; transition: transform .25s, box-shadow .25s, background .25s; }
.feature-card:hover { transform: translateY(-5px); background: white; box-shadow: 0 17px 40px rgba(18,51,66,.1); }
.feature-index { width: 42px; height: 42px; display: grid; place-content: center; color: var(--green); border-radius: 13px; background: #e6f2ce; font: 800 10px/1 "Manrope", sans-serif; }
.feature-card h3 { margin: 51px 0 11px; color: var(--navy); font: 800 21px/1.25 "Manrope", sans-serif; letter-spacing: -.5px; }
.feature-card p { margin: 0 0 22px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.feature-card a { margin-top: auto; color: var(--teal); font: 700 11px/1 "Manrope", sans-serif; }
.feature-card a span { margin-left: 4px; }

.product-section { position: relative; overflow: hidden; background: var(--blue-wash); }
.anchor-target { position: absolute; top: 0; scroll-margin-top: 82px; }
.product-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.product-copy p:not(.eyebrow) { margin: 23px 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.check-list { margin: 29px 0 0; padding: 0; list-style: none; }
.check-list li { padding: 12px 0; display: flex; align-items: flex-start; gap: 11px; color: #405d63; border-top: 1px solid #cfdee2; font-size: 14px; }
.check-list li:last-child { border-bottom: 1px solid #cfdee2; }
.check-list span { color: var(--teal); font-weight: 800; }
.phone-showcase { position: relative; width: min(330px, 90%); margin: 0 auto; padding: 10px; border-radius: 34px; background: white; box-shadow: var(--shadow); }
.phone-showcase::before { content: ""; position: absolute; inset: 11% -34% 11% -34%; z-index: -1; border-radius: 50%; background: rgba(96,203,216,.16); }
.phone-showcase img { width: 100%; border-radius: 25px; }
.phone-showcase figcaption { position: absolute; right: -95px; bottom: 42px; padding: 11px 14px; color: var(--navy); border: 1px solid #d7e2e3; border-radius: 11px; background: white; box-shadow: 0 12px 26px rgba(18,51,66,.13); font: 700 9px/1.2 "Manrope", sans-serif; }

.conditions-section { overflow: hidden; color: white; background: var(--navy); }
.product-heading { margin-bottom: 48px; display: grid; grid-template-columns: 1.08fr .75fr; align-items: end; gap: 80px; }
.product-heading h2 { color: white; }
.product-heading > p { color: #bdd0d7; }
.conditions-gallery { position: relative; padding-bottom: 52px; }
.dark-frame { border: 7px solid #1b4252; }
.wide-shot { width: calc(100% - 72px); border-radius: 20px; }
.wide-shot img { width: 100%; }
.conditions-phone { position: absolute; width: 180px; right: 2px; bottom: 0; box-shadow: 0 22px 50px rgba(0,0,0,.3); }
.condition-models { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.condition-models span { padding: 8px 12px; color: #c9dce1; border: 1px solid #3d6070; border-radius: 999px; font-size: 10px; font-weight: 700; }
.condition-models .coming-soon-model { border-style: dashed; color: #d8e5e8; }
.coming-soon-model em { margin-left: 5px; color: var(--lime); font-size: 8px; font-style: normal; letter-spacing: .4px; text-transform: uppercase; }

.maps-section { color: white; background: var(--navy-deep); overflow: hidden; }
.maps-layout { display: grid; grid-template-columns: .68fr 1.32fr; align-items: center; gap: 75px; }
.maps-copy h2 { color: white; }
.maps-copy > p:not(.eyebrow) { margin: 24px 0; color: #b8cdd4; font-size: 16px; line-height: 1.75; }
.map-layer-list { display: flex; flex-wrap: wrap; gap: 7px; }
.map-layer-list span { padding: 8px 11px; color: #d0dfe3; border: 1px solid #315564; border-radius: 999px; font-size: 9px; font-weight: 700; }
.phone-gallery { min-height: 600px; display: flex; align-items: center; justify-content: center; gap: 0; perspective: 1100px; }
.phone-gallery .phone-shot { position: relative; width: 230px; flex: 0 0 auto; box-shadow: 0 25px 55px rgba(0,0,0,.27); }
.phone-gallery .phone-back { z-index: 1; transform: scale(.88) rotateY(8deg); opacity: .9; }
.phone-gallery .phone-back:last-child { transform: scale(.88) rotateY(-8deg); }
.phone-gallery .phone-front { z-index: 3; margin-inline: -36px; }

.trends-section { background: var(--cream); }
.product-heading.dark-copy h2 { color: var(--navy); }
.product-heading.dark-copy > p { color: var(--muted); }
.clean-frame { border: 7px solid white; border-radius: 21px; }
.trends-main { width: 100%; }
.trends-main img { width: 100%; }
.insight-gallery { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.screenshot-card { border: 6px solid white; border-radius: 19px; }
.screenshot-card img { width: 100%; aspect-ratio: 1.75 / 1; object-fit: cover; object-position: top; }
.screenshot-card figcaption { padding: 18px 19px; display: flex; align-items: baseline; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); }
.screenshot-card strong { color: var(--navy); font: 800 14px/1.2 "Manrope", sans-serif; }
.screenshot-card span { color: var(--muted); font-size: 11px; text-align: right; }
.insight-wide { grid-column: 1 / -1; }
.insight-wide img { aspect-ratio: 1.95 / 1; }

.fields-section { overflow: hidden; background: white; }
.fields-layout { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 80px; }
.field-visuals { position: relative; padding: 24px 30px 45px 0; }
.field-map-shot { width: 100%; }
.field-map-shot img { width: 100%; }
.fields-phone { position: absolute; width: 150px; right: -24px; bottom: 0; box-shadow: 0 20px 50px rgba(18,51,66,.22); }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; color: var(--teal); font: 700 14px/1 "Manrope", sans-serif; }
.text-link span { font-size: 18px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.calendar-section { background: var(--blue-wash); }
.calendar-heading { align-items: start; }
.calendar-main-shot { overflow: hidden; background: white; }
.calendar-main-shot > img { width: 100%; }
.calendar-main-shot figcaption { padding: 23px 25px; display: flex; align-items: baseline; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); }
.calendar-main-shot figcaption strong { color: var(--navy); font: 800 16px/1.3 "Manrope", sans-serif; }
.calendar-main-shot figcaption span { max-width: 680px; color: var(--muted); font-size: 12px; text-align: right; }
.calendar-summary-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.summary-view-card { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: white; box-shadow: 0 15px 34px rgba(18,51,66,.08); }
.summary-view-card img { width: 100%; aspect-ratio: 1.49 / 1; object-fit: cover; object-position: top; }
.summary-view-card figcaption { min-height: 142px; padding: 21px 21px 23px; border-top: 1px solid var(--line); }
.summary-view-card strong { display: block; color: var(--navy); font: 800 17px/1.25 "Manrope", sans-serif; }
.summary-view-card span { display: block; margin-top: 9px; color: var(--muted); font-size: 12px; line-height: 1.65; }

.email-section { overflow: hidden; color: white; background: #0a2933; }
.email-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 75px; }
.email-copy h2, .principles-heading h2, .founder-story h2, .founder-profile h2 { font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -2.2px; line-height: 1.07; }
.email-copy h2 { margin: 0; color: white; font-size: clamp(38px, 4vw, 54px); }
.email-copy > p:not(.eyebrow) { margin: 23px 0 0; color: #bdd0d7; font-size: 16px; line-height: 1.78; }
.email-benefits { margin: 31px 0 0; padding: 0; list-style: none; }
.email-benefits li { padding: 17px 0; display: grid; grid-template-columns: 39px 1fr; gap: 13px; border-top: 1px solid rgba(255,255,255,.12); }
.email-benefits li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.email-benefits li > span { width: 32px; height: 32px; display: grid; place-content: center; color: var(--navy); border-radius: 10px; background: var(--lime); font: 800 9px/1 "Manrope", sans-serif; }
.email-benefits strong { display: block; color: white; font: 800 14px/1.25 "Manrope", sans-serif; }
.email-benefits small { display: block; margin-top: 5px; color: #a9c1c9; font-size: 11px; line-height: 1.55; }
.email-gallery { display: grid; grid-template-columns: 1.08fr .92fr; align-items: start; gap: 15px; }
.email-shot { margin: 0; overflow: hidden; border: 6px solid white; border-radius: 19px; background: #fffdf8; box-shadow: 0 22px 48px rgba(0,0,0,.24); }
.email-shot img { width: 100%; height: auto; }
.email-settings-shot { grid-row: 1 / span 2; }
.email-daily-shot { transform: rotate(1deg); }
.email-weekly-shot { transform: rotate(-1deg); }

.founder-section { overflow: hidden; color: white; background: var(--navy); }
.founder-layout { display: grid; grid-template-columns: .68fr 1.32fr; align-items: start; gap: 28px; }
.founder-profile { padding: 23px; border: 1px solid rgba(255,255,255,.12); border-radius: 27px; background: #0a2933; }
.founder-photo-wrap { margin-bottom: 27px; overflow: hidden; border-radius: 19px; background: #e7ecea; }
.founder-photo-wrap img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center top; }
.founder-profile .eyebrow { margin-bottom: 13px; }
.founder-profile h2 { margin: 0; color: white; font-size: 31px; letter-spacing: -1px; }
.founder-role { margin: 7px 0 0; color: var(--lime); font-size: 12px; font-weight: 700; }
.founder-story { padding: clamp(32px, 5vw, 62px); color: var(--ink); border-radius: 27px; background: var(--paper); }
.founder-story h2 { max-width: 760px; margin: 0 0 29px; color: var(--navy); font-size: clamp(38px, 4vw, 55px); }
.founder-story > p:not(.eyebrow) { margin: 0 0 18px; color: #526871; font-size: 15px; line-height: 1.8; }
.founder-story blockquote { margin: 32px 0 0; padding: 22px 24px 22px 29px; color: var(--navy); border-left: 4px solid var(--lime); border-radius: 0 15px 15px 0; background: #edf4df; font: 800 20px/1.5 "Manrope", sans-serif; }
.principles-heading { max-width: 760px; margin: 78px 0 35px; }
.principles-heading .eyebrow { margin-bottom: 16px; }
.principles-heading h2 { margin: 0; color: white; font-size: clamp(36px, 4vw, 52px); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.principle-card { overflow: hidden; color: var(--ink); border-radius: 22px; background: var(--paper); }
.principle-media { height: 232px; position: relative; display: grid; place-content: center; overflow: hidden; border-bottom: 1px solid var(--line); background: #ebe9df; }
.principle-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.principle-phone-media { background: #e4ece7; }
.principle-phone-media img { width: 100%; max-width: 100%; object-fit: contain; object-position: center; }
.principle-copy { padding: 25px 25px 29px; }
.principle-number { width: 37px; height: 37px; display: grid; place-content: center; color: var(--green); border-radius: 11px; background: #e6f2ce; font: 800 9px/1 "Manrope", sans-serif; }
.principle-copy h3 { margin: 22px 0 11px; color: var(--navy); font: 800 19px/1.28 "Manrope", sans-serif; letter-spacing: -.4px; }
.principle-copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.72; }
.founder-closing { max-width: 880px; margin: 55px auto 0; color: #c3d5dc; font-size: 21px; line-height: 1.65; text-align: center; }
.founder-closing strong { color: var(--lime); }

.platforms-section { padding: 105px 0; color: white; background: #155b5a; }
.platforms-inner { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.platforms-inner h2 { color: white; }
.platforms-inner p:not(.eyebrow) { max-width: 560px; margin: 21px 0 0; color: #c1dcd8; font-size: 16px; }
.platform-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 11px; }
.platform-card { min-height: 145px; padding: 18px; position: relative; display: flex; align-items: flex-start; flex-direction: column; border: 1px solid rgba(255,255,255,.17); border-radius: 19px; background: rgba(255,255,255,.07); }
.platform-card.available { background: white; }
.platform-icon { width: 35px; height: 35px; display: grid; place-content: center; color: white; border-radius: 10px; background: rgba(255,255,255,.12); font-weight: 800; }
.platform-card.available .platform-icon { color: white; background: var(--teal); }
.platform-card div { margin-top: auto; }
.platform-card small { display: block; color: #a8cbc6; font: 700 7px/1.2 "Manrope", sans-serif; letter-spacing: 1px; }
.platform-card strong { display: block; margin-top: 4px; color: white; font: 800 18px/1.2 "Manrope", sans-serif; }
.platform-card.available small { color: #6d8588; }
.platform-card.available strong { color: var(--navy); }

.final-cta { padding: 118px 0; position: relative; overflow: hidden; color: white; background: var(--navy); text-align: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.final-cta::before { width: 550px; height: 550px; left: -300px; top: -250px; box-shadow: 0 0 0 65px rgba(255,255,255,.015), 0 0 0 130px rgba(255,255,255,.01); }
.final-cta::after { width: 650px; height: 650px; right: -390px; bottom: -450px; box-shadow: 0 0 0 60px rgba(255,255,255,.014); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; flex-direction: column; }
.cta-inner > img { width: 88px; height: 88px; margin-bottom: 18px; filter: drop-shadow(0 14px 28px rgba(0,0,0,.18)); }
.cta-inner .eyebrow { margin-bottom: 22px; }
.final-cta h2 { max-width: 780px; margin: 0; color: white; font-size: clamp(42px, 5vw, 64px); }
.final-cta p:not(.eyebrow) { margin: 23px 0 0; color: #c3d5dc; font-size: 17px; }
.button-light { color: var(--navy); background: var(--lime); box-shadow: 0 12px 25px rgba(0,0,0,.13); }
.button-light:hover { background: #b2de49; }
.button-dark-outline { color: white; border-color: #5a7480; background: transparent; }
.button-dark-outline:hover { background: rgba(255,255,255,.08); }

.site-footer { padding: 48px 0 25px; color: #c1d2d8; background: #061f29; }
.footer-main { padding-bottom: 34px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; }
.footer-brand .brand-name { color: white; }
.footer-main > p { margin: 0; text-align: center; font-size: 12px; }
.footer-main > p strong { color: var(--cyan); text-transform: uppercase; letter-spacing: .6px; }
.footer-links { justify-self: end; display: flex; flex-wrap: wrap; gap: 12px 18px; color: var(--lime); font-size: 11px; font-weight: 700; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; color: #78929c; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal][data-delay="1"] { transition-delay: .12s; }
[data-reveal][data-delay="2"] { transition-delay: .24s; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 16px; }
  .brand-tagline { display: none; }
  .hero { min-height: auto; padding-top: 142px; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(850px, 94%); margin-inline: auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { gap: 60px; }
  .maps-layout { grid-template-columns: 1fr; gap: 40px; }
  .maps-copy { max-width: 720px; }
  .phone-gallery { min-height: 560px; }
  .fields-layout { grid-template-columns: 1fr; gap: 60px; }
  .field-visuals { width: min(850px, 92%); }
  .fields-layout .product-copy { max-width: 700px; }
  .email-layout { grid-template-columns: 1fr; gap: 55px; }
  .email-copy { max-width: 760px; }
  .email-gallery { width: min(900px, 100%); }
  .founder-layout { grid-template-columns: .58fr 1.42fr; }
  .platforms-inner { gap: 50px; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 32px, 660px); }
  .site-header { background: rgba(255,253,248,.95); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 20px; }
  .menu-toggle { display: flex; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 70px 0 auto; padding: 25px 24px 32px; display: grid; gap: 2px; background: rgba(255,253,248,.99); box-shadow: 0 22px 38px rgba(18,51,66,.13); transform: translateY(-130%); opacity: 0; transition: transform .25s, opacity .25s; }
  .site-nav.open { transform: translateY(0); opacity: 1; }
  .site-nav > a { padding: 11px 8px; font-size: 16px; }
  .nav-actions { margin: 13px 0 0; display: grid; grid-template-columns: 1fr 1fr; }
  .login-link, .nav-cta { min-height: 48px; }
  .hero { padding: 120px 0 78px; }
  .hero h1 { font-size: clamp(48px, 14vw, 66px); letter-spacing: -2px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-visual { width: min(100%, 430px); padding: 18px 0 0; }
  .hero-app-shot { transform: none; border-radius: 26px; }
  .hero-app-shot .browser-bar { display: none; }
  .hero-app-shot picture img { width: 100%; }
  .hero-phone-shot { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-grid > i { display: none; }
  .trust-grid div { justify-content: flex-start; flex-direction: column; gap: 1px; }
  .section { padding: 82px 0; }
  .split-heading, .product-heading { grid-template-columns: 1fr; gap: 23px; margin-bottom: 38px; }
  .section-heading h2, .product-copy h2, .product-heading h2, .maps-copy h2, .platforms-inner h2 { letter-spacing: -1.8px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 245px; }
  .feature-card h3 { margin-top: 38px; }
  .product-grid { grid-template-columns: 1fr; gap: 55px; }
  .product-copy { max-width: none; }
  .phone-showcase figcaption { right: -10px; bottom: 35px; }
  .wide-shot { width: 100%; border-radius: 15px; }
  .conditions-gallery { padding-bottom: 0; }
  .conditions-phone { display: none; }
  .condition-models { margin-top: 23px; }
  .phone-gallery { min-height: auto; padding: 15px 0 4px; justify-content: flex-start; gap: 15px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .phone-gallery .phone-shot { width: min(72vw, 270px); transform: none !important; opacity: 1; scroll-snap-align: center; }
  .phone-gallery .phone-front { order: -1; margin: 0; }
  .insight-gallery { grid-template-columns: 1fr; }
  .screenshot-card figcaption { align-items: flex-start; flex-direction: column; gap: 5px; }
  .screenshot-card span { text-align: left; }
  .calendar-main-shot figcaption { align-items: flex-start; flex-direction: column; gap: 7px; }
  .calendar-main-shot figcaption span { text-align: left; }
  .calendar-summary-grid { grid-template-columns: 1fr; }
  .summary-view-card figcaption { min-height: auto; }
  .field-visuals { width: 100%; padding: 0 0 46px; }
  .fields-phone { width: 125px; right: -5px; }
  .email-gallery { grid-template-columns: 1fr; gap: 18px; }
  .email-settings-shot { grid-row: auto; }
  .email-daily-shot, .email-weekly-shot { transform: none; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-profile { display: grid; grid-template-columns: 180px 1fr; align-items: start; column-gap: 25px; }
  .founder-photo-wrap { grid-row: 1 / span 4; margin: 0; }
  .founder-profile .eyebrow { margin-top: 10px; }
  .principles-heading { margin-top: 65px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-media { height: min(58vw, 340px); }
  .principle-phone-media { height: min(95vw, 440px); }
  .founder-closing { font-size: 18px; }
  .platforms-inner { grid-template-columns: 1fr; gap: 42px; }
  .platform-cards { grid-template-columns: 1fr 1fr 1fr; }
  .final-cta { padding: 92px 0; }
  .cta-actions { width: 100%; align-items: stretch; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 21px; justify-items: start; }
  .footer-main > p { text-align: left; }
  .footer-links { justify-self: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 480px) {
  .eyebrow { letter-spacing: 1.25px; }
  .hero h1 { font-size: 48px; }
  .availability-inline { align-items: flex-start; }
  .availability-divider { display: none; }
  .availability-inline > span:last-child { width: 100%; padding-left: 17px; }
  .nav-actions { grid-template-columns: 1fr; }
  .trust-grid { gap: 14px; }
  .trust-grid strong { font-size: 12px; }
  .phone-showcase { width: min(320px, 92%); }
  .phone-showcase figcaption { right: -4px; }
  .clean-frame, .dark-frame { border-width: 4px; border-radius: 13px; }
  .platform-cards { grid-template-columns: 1fr; }
  .platform-card { min-height: 105px; }
  .founder-profile { display: block; }
  .founder-photo-wrap { width: 100%; margin-bottom: 24px; }
  .founder-profile .eyebrow { margin-top: 0; }
  .founder-story { padding: 28px 22px; }
  .founder-story blockquote { padding: 19px 18px 19px 21px; font-size: 17px; }
  .principle-copy { padding: 22px; }
  .field-visuals { padding-bottom: 0; }
  .fields-phone { position: relative; width: 62%; right: auto; margin: -25px 0 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
