:root {
  --ink: #1b2436;
  --ink-soft: #526079;
  --ink-faint: #7b8799;
  --paper: #ffffff;
  --canvas: #f5f7fb;
  --blue: #2274e6;
  --blue-deep: #185abe;
  --blue-pale: #e8f1ff;
  --cyan: #73d9e7;
  --lilac: #d8ccff;
  --mint: #c8f3e6;
  --line: rgba(66, 89, 126, 0.15);
  --line-strong: rgba(66, 89, 126, 0.23);
  --glass: rgba(255, 255, 255, 0.64);
  --glass-strong: rgba(255, 255, 255, 0.8);
  --shadow-sm: 0 3px 12px rgba(38, 59, 90, 0.07);
  --shadow-md: 0 18px 48px rgba(41, 69, 107, 0.12);
  --shadow-lg: 0 36px 90px rgba(37, 64, 101, 0.17);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shell: 1180px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -8%, rgba(190, 228, 255, 0.95) 0, rgba(213, 238, 255, 0.25) 24%, transparent 46%),
    radial-gradient(circle at 100% 10%, rgba(221, 207, 255, 0.50) 0, transparent 35%),
    var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

:focus-visible { outline: 3px solid rgba(34, 116, 230, 0.42); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 9px 12px;
  transform: translateY(-170%);
  color: var(--paper);
  background: var(--ink);
  border-radius: 9px;
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.site-header { position: relative; z-index: 5; padding-top: 18px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  box-shadow: var(--shadow-sm), inset 0 1px rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 18px; font-weight: 720; letter-spacing: -0.045em; }
.brand-mark { position: relative; display: grid; width: 26px; height: 26px; place-items: center; overflow: hidden; background: linear-gradient(135deg, #3c9ff2, #2274e6 58%, #0b4fae); border-radius: 8px; box-shadow: 0 3px 8px rgba(34, 116, 230, 0.25); }
.brand-mark::before { width: 13px; height: 13px; content: ""; border: 2px solid white; border-right-color: transparent; border-radius: 50%; transform: rotate(-30deg); opacity: 0.96; }
.brand-mark span { position: absolute; top: 6px; right: 5px; width: 5px; height: 5px; background: #d1fbf5; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; color: var(--ink-soft); font-size: 14px; font-weight: 540; }
.nav-links a { transition: color 160ms ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 19px; border: 1px solid transparent; border-radius: 13px; font-size: 15px; font-weight: 650; letter-spacing: -0.015em; transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { color: white; background: linear-gradient(180deg, #3a94f5, var(--blue)); box-shadow: 0 8px 18px rgba(34, 116, 230, 0.24), inset 0 1px rgba(255, 255, 255, 0.30); }
.button-primary:hover { background: linear-gradient(180deg, #4aa0fb, #1768d7); box-shadow: 0 12px 24px rgba(34, 116, 230, 0.31), inset 0 1px rgba(255, 255, 255, 0.30); }
.button-secondary { color: var(--ink); background: rgba(255, 255, 255, 0.68); border-color: var(--line); box-shadow: inset 0 1px rgba(255, 255, 255, 0.85); }
.button-secondary:hover { border-color: rgba(34, 116, 230, 0.36); box-shadow: var(--shadow-sm), inset 0 1px rgba(255, 255, 255, 0.9); }
.button-light { color: var(--blue-deep); background: rgba(255, 255, 255, 0.91); box-shadow: 0 10px 22px rgba(12, 58, 124, 0.18); }
.button-small { min-height: 40px; padding-inline: 14px; font-size: 13px; }

.hero { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: clamp(40px, 7vw, 100px); min-height: 665px; padding-top: 78px; padding-bottom: 76px; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin: 0 0 18px; color: var(--blue); font-size: 12px; font-weight: 760; letter-spacing: 0.11em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; background: #4bc6da; border-radius: 50%; box-shadow: 0 0 0 4px rgba(75, 198, 218, 0.14); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 630px; margin-bottom: 22px; font-size: clamp(51px, 5.6vw, 76px); font-weight: 740; letter-spacing: -0.072em; line-height: 0.99; }
h1 span { color: var(--blue); }
.hero-lead { max-width: 500px; margin-bottom: 30px; color: var(--ink-soft); font-size: clamp(18px, 1.9vw, 21px); letter-spacing: -0.025em; line-height: 1.42; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.quiet-note { display: flex; align-items: center; gap: 7px; margin: 20px 0 0; color: var(--ink-faint); font-size: 13px; font-weight: 510; }
.mini-lock { display: inline-grid; width: 18px; height: 18px; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 6px; font-size: 11px; font-weight: 700; }

.hero-stage { position: relative; min-height: 490px; }
.orb { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.orb-blue { top: 4%; right: 3%; width: 270px; height: 270px; background: rgba(117, 210, 241, 0.45); }
.orb-lilac { bottom: 0; left: 2%; width: 190px; height: 190px; background: rgba(197, 177, 255, 0.55); }
.app-window { position: absolute; z-index: 1; top: 33px; right: 0; left: 0; overflow: hidden; min-height: 416px; background: rgba(247, 250, 255, 0.75); border: 1px solid rgba(255, 255, 255, 0.92); border-radius: 27px; box-shadow: var(--shadow-lg), inset 0 1px rgba(255, 255, 255, 0.90); backdrop-filter: blur(22px) saturate(1.22); -webkit-backdrop-filter: blur(22px) saturate(1.22); transform: perspective(1400px) rotateY(-5deg) rotateX(2deg); transform-origin: center; }
.window-chrome { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 42px; padding: 0 16px; color: #6f7d92; background: rgba(255, 255, 255, 0.52); border-bottom: 1px solid rgba(69, 97, 135, 0.1); font-size: 11px; font-weight: 600; text-align: center; }
.traffic-lights { display: flex; gap: 6px; }
.traffic-lights i { display: block; width: 10px; height: 10px; border-radius: 50%; }
.traffic-lights i:nth-child(1) { background: #ff605c; }.traffic-lights i:nth-child(2) { background: #ffbd44; }.traffic-lights i:nth-child(3) { background: #00ca4e; }
.chrome-lock { justify-self: end; color: #95a4b8; font-size: 8px; }
.app-content { padding: 22px 23px 23px; }
.app-topline, .review-heading, .finder-row, .review-bottom { display: flex; align-items: center; justify-content: space-between; }
.app-brand { display: flex; align-items: center; gap: 7px; color: #17263b; font-size: 13px; font-weight: 720; letter-spacing: -0.03em; }
.app-brand-icon { display: grid; width: 18px; height: 18px; place-items: center; color: white; background: var(--blue); border-radius: 6px; font-size: 11px; }
.app-local { color: #147566; font-size: 10px; font-weight: 720; }
.app-intro { display: flex; align-items: flex-end; justify-content: space-between; padding: 20px 0 17px; }
.app-intro p { margin: 0; color: #17263b; font-size: 27px; font-weight: 720; letter-spacing: -0.06em; line-height: 1.03; }
.app-intro span { max-width: 134px; padding-bottom: 2px; color: #78879b; font-size: 10px; line-height: 1.35; text-align: right; }
.ask-field { display: flex; align-items: center; gap: 8px; min-height: 50px; padding: 0 8px 0 14px; color: #46566e; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(52, 94, 148, 0.16); border-radius: 14px; box-shadow: inset 0 1px rgba(255,255,255,0.9); font-size: 11px; font-weight: 520; }
.ask-sparkle { color: var(--blue); font-size: 14px; }
.ask-field button { display: grid; width: 30px; height: 30px; margin-left: auto; place-items: center; color: white; background: var(--blue); border: 0; border-radius: 50%; font-size: 14px; }
.app-grid { display: grid; grid-template-columns: 0.76fr 1.24fr; gap: 10px; margin-top: 12px; }
.preview-card { min-height: 138px; padding: 13px; background: rgba(255, 255, 255, 0.56); border: 1px solid rgba(52, 94, 148, 0.12); border-radius: 14px; }
.card-kicker { margin: 0 0 11px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: 0.105em; line-height: 1.2; }
.finder-row { gap: 6px; margin-top: 15px; color: #293952; font-size: 11px; }
.finder-row em { margin-left: auto; color: #8390a3; font-size: 9px; font-style: normal; }
.finder-icon { display: grid; width: 25px; height: 25px; place-items: center; color: #154a9c; background: #cce0fb; border-radius: 7px; font-size: 11px; }
.demo-pills { display: flex; gap: 3px; margin-top: 16px; }
.demo-pills span { padding: 4px 5px; color: #7d8da1; border: 1px solid transparent; border-radius: 6px; font-size: 8px; }
.demo-pills .active { color: #1455b2; background: #e6f0fe; border-color: #bcd6fa; }
.review-heading span { padding: 3px 6px; color: #117464; background: #e4f7f1; border-radius: 999px; font-size: 8px; font-weight: 700; }
.review-card h3 { margin: 18px 0 6px; color: #23334c; font-size: 15px; letter-spacing: -0.04em; }
.review-card > p { margin-bottom: 16px; color: #718096; font-size: 9px; line-height: 1.35; }
.review-bottom { color: #0a8872; font-size: 8px; font-weight: 650; }
.review-bottom b { color: #8290a4; font-weight: 600; }
.cursor-callout { position: absolute; z-index: 2; right: -27px; bottom: 5px; display: flex; align-items: center; gap: 9px; min-width: 175px; padding: 9px 12px; color: #34445b; background: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.93); border-radius: 15px; box-shadow: 0 15px 30px rgba(37, 65, 105, 0.18); backdrop-filter: blur(18px); font-size: 11px; }
.cursor-callout b, .cursor-callout small { display: block; }.cursor-callout b { font-size: 12px; }.cursor-callout small { margin-top: 2px; color: #6f7f94; font-size: 9px; }.cursor-icon { display: grid; width: 27px; height: 27px; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 9px; font-size: 17px; }

.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 142px; overflow: hidden; background: var(--glass); border: 1px solid rgba(255, 255, 255, 0.86); border-radius: 24px; box-shadow: var(--shadow-sm), inset 0 1px rgba(255, 255, 255, 0.85); backdrop-filter: blur(16px); }
.trust-strip > div { display: flex; align-items: center; gap: 13px; min-height: 92px; padding: 18px 24px; }.trust-strip > div + div { border-left: 1px solid var(--line); }
.trust-icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 11px; font-size: 18px; font-weight: 700; }.trust-strip p { margin: 0; }.trust-strip b, .trust-strip p span { display: block; }.trust-strip b { color: var(--ink); font-size: 13px; letter-spacing: -0.02em; }.trust-strip p span { margin-top: 2px; color: var(--ink-faint); font-size: 12px; line-height: 1.3; }

.feature-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(44px, 8vw, 118px); padding-bottom: 152px; }.section-heading { align-self: start; }.section-heading h2, .privacy-copy h2, .cta-card h2 { margin-bottom: 18px; font-size: clamp(37px, 4vw, 54px); font-weight: 720; letter-spacing: -0.068em; line-height: 1.02; }.section-heading > p:last-child { max-width: 375px; margin-bottom: 0; color: var(--ink-soft); font-size: 16px; letter-spacing: -0.018em; line-height: 1.55; }
.feature-stack { display: grid; gap: 14px; }.feature-card { position: relative; display: grid; grid-template-columns: 43px minmax(185px, 1fr) minmax(160px, 0.82fr); align-items: center; gap: 16px; min-height: 190px; padding: 27px 30px; overflow: hidden; background: rgba(255,255,255,0.57); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: var(--radius); box-shadow: var(--shadow-sm), inset 0 1px rgba(255,255,255,0.9); backdrop-filter: blur(15px); }.feature-number { align-self: start; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: -0.02em; }.feature-copy h3 { margin-bottom: 8px; font-size: 23px; letter-spacing: -0.048em; line-height: 1.04; }.feature-copy p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.46; }
.feature-visual { position: relative; min-height: 108px; overflow: hidden; background: linear-gradient(135deg, rgba(225, 240, 255, 0.94), rgba(237, 232, 255, 0.8)); border: 1px solid rgba(255,255,255,0.75); border-radius: 18px; }.voice-visual { display: flex; align-items: center; justify-content: center; gap: 5px; }.wave { width: 5px; border-radius: 999px; background: var(--blue); }.wave-a, .wave-e { height: 18px; opacity: .45; }.wave-b, .wave-d { height: 36px; opacity: .72; }.wave-c { height: 52px; }.voice-dot { display: grid; width: 35px; height: 35px; margin-left: 8px; place-items: center; color: white; background: var(--blue); border-radius: 50%; box-shadow: 0 5px 12px rgba(34,116,230,.24); }.target-visual { display: grid; place-items: center; }.target-visual span { position: relative; z-index: 1; padding: 7px 12px; color: #1552ab; background: white; border-radius: 9px; box-shadow: 0 5px 14px rgba(59,85,126,.13); font-size: 12px; font-weight: 700; }.target-visual i { position: absolute; z-index: 1; right: 30%; bottom: 20%; color: var(--blue); font-size: 26px; font-style: normal; }.target-ring { position: absolute; width: 88px; height: 88px; border: 1px solid rgba(34,116,230,.38); border-radius: 50%; }.ring-two { width: 130px; height: 130px; border-color: rgba(34,116,230,.14); }.approval-visual { display: grid; place-items: center; }.approval-sheet { width: 144px; padding: 12px; color: #2f405b; background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.9); border-radius: 13px; box-shadow: 0 8px 18px rgba(49,75,116,.13); }.approval-sheet > span { font-size: 12px; font-weight: 720; }.approval-sheet p { margin: 4px 0 9px; color: #b07218; font-size: 9px; }.approval-sheet div { display: flex; gap: 5px; }.approval-sheet b, .approval-sheet i { padding: 5px 6px; border-radius: 6px; font-size: 8px; font-style: normal; }.approval-sheet b { color: white; background: var(--blue); }.approval-sheet i { color: #687790; background: #edf2f8; }

.privacy-section { position: relative; padding: 130px 0; overflow: hidden; color: white; background: #172744; }.privacy-section::before { position: absolute; top: -260px; right: -120px; width: 630px; height: 630px; content: ""; background: radial-gradient(circle, rgba(82, 200, 228, .52), rgba(41, 119, 184, .15) 44%, transparent 67%); }.privacy-section::after { position: absolute; bottom: -310px; left: -200px; width: 620px; height: 620px; content: ""; background: radial-gradient(circle, rgba(160, 137, 255, .38), transparent 63%); }.privacy-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.9fr; align-items: center; gap: 100px; }.eyebrow-light { color: #9ae3e6; }.eyebrow-light .eyebrow-dot { background: #a7eddf; box-shadow: 0 0 0 4px rgba(167,237,223,.15); }.privacy-copy h2 { color: white; }.privacy-copy > p:not(.eyebrow) { max-width: 490px; margin-bottom: 29px; color: #c4d0e2; font-size: 18px; letter-spacing: -0.02em; line-height: 1.5; }.privacy-badges { display: grid; gap: 12px; }.privacy-badges article { display: flex; gap: 15px; padding: 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; box-shadow: inset 0 1px rgba(255,255,255,.10); backdrop-filter: blur(15px); }.badge-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; color: #aaf1e5; background: rgba(127,232,219,.14); border-radius: 11px; font-size: 18px; }.privacy-badges b { display: block; font-size: 15px; letter-spacing: -0.025em; }.privacy-badges p { margin: 2px 0 0; color: #bac9dd; font-size: 13px; }

.faq-section { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(45px, 9vw, 130px); padding-top: 142px; padding-bottom: 142px; }.faq-list { border-top: 1px solid var(--line-strong); }.faq-list details { border-bottom: 1px solid var(--line-strong); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 23px 3px; cursor: pointer; font-size: 18px; font-weight: 650; letter-spacing: -0.03em; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--blue); font-size: 24px; font-weight: 400; transition: transform 180ms ease; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { max-width: 600px; padding: 0 3px 23px; margin: -4px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

.final-cta { padding-bottom: 100px; }.cta-card { position: relative; padding: clamp(42px, 7vw, 80px); overflow: hidden; color: white; background: linear-gradient(132deg, #2377e5, #2c91e9 47%, #4bbec9); border-radius: var(--radius-lg); box-shadow: 0 26px 55px rgba(34, 116, 230, 0.24), inset 0 1px rgba(255,255,255,.32); }.cta-card::after { position: absolute; top: -190px; right: -70px; width: 480px; height: 480px; content: ""; background: radial-gradient(circle, rgba(255,255,255,.34), transparent 62%); }.cta-card .eyebrow { position: relative; z-index: 1; color: #d2faff; }.cta-card .eyebrow-dot { background: white; box-shadow: 0 0 0 4px rgba(255,255,255,.16); }.cta-card h2 { position: relative; z-index: 1; max-width: 650px; color: white; }.cta-card > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 520px; margin-bottom: 27px; color: rgba(255,255,255,.84); font-size: 17px; letter-spacing: -0.015em; }.cta-card .button { position: relative; z-index: 1; }

.site-footer { display: flex; align-items: center; gap: 25px; padding-top: 0; padding-bottom: 38px; color: var(--ink-faint); font-size: 13px; }.site-footer .brand { color: var(--ink); }.site-footer p { margin: 0; }.site-footer div { display: flex; gap: 17px; margin-left: auto; }.site-footer a:not(.brand):hover { color: var(--blue); }

/* Contact */
.contact-page { min-height: 100vh; background: radial-gradient(circle at 88% 4%, rgba(199, 226, 255, .76), transparent 30%), radial-gradient(circle at 0 24%, rgba(233, 224, 255, .5), transparent 32%), var(--canvas); }.contact-hero { max-width: 900px; padding-top: 105px; padding-bottom: 57px; text-align: center; }.contact-hero .eyebrow { justify-content: center; }.contact-hero h1 { margin-right: auto; margin-left: auto; font-size: clamp(56px, 8vw, 94px); }.contact-hero p:last-child { max-width: 620px; margin: 0 auto; color: var(--ink-soft); font-size: 20px; letter-spacing: -0.025em; line-height: 1.45; }.contact-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 18px; padding-bottom: 26px; }.contact-card { padding: clamp(27px, 4vw, 46px); background: var(--glass); border: 1px solid rgba(255,255,255,.88); border-radius: 28px; box-shadow: var(--shadow-md), inset 0 1px rgba(255,255,255,.85); backdrop-filter: blur(18px) saturate(1.25); }.contact-card h2 { margin-bottom: 9px; font-size: 31px; letter-spacing: -0.055em; line-height: 1.05; }.card-intro { max-width: 460px; margin-bottom: 28px; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.form-card form { display: grid; gap: 15px; }.form-card label { display: grid; gap: 7px; color: #3c4d66; font-size: 13px; font-weight: 650; }.form-card input, .form-card textarea { width: 100%; padding: 13px 14px; resize: vertical; color: var(--ink); background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 11px; outline: none; font-size: 15px; font-weight: 450; transition: border-color 160ms ease, box-shadow 160ms ease; }.form-card input::placeholder, .form-card textarea::placeholder { color: #99a5b7; }.form-card input:focus, .form-card textarea:focus { border-color: rgba(34,116,230,.65); box-shadow: 0 0 0 4px rgba(34,116,230,.12); }.form-submit { justify-self: start; margin-top: 3px; }.form-status { min-height: 20px; margin: -3px 0 0; color: #147467; font-size: 12px; font-weight: 600; }.booking-card { display: flex; flex-direction: column; }.booking-preview { padding: 22px; margin: 4px 0 22px; background: rgba(255,255,255,.64); border: 1px solid rgba(65, 91, 128, .12); border-radius: 18px; box-shadow: inset 0 1px rgba(255,255,255,.9); }.booking-top { display: flex; align-items: center; gap: 8px; color: #465870; font-size: 12px; font-weight: 620; }.calendar-glyph { display: grid; width: 24px; height: 24px; place-items: center; color: var(--blue); background: var(--blue-pale); border-radius: 7px; font-size: 16px; }.booking-profile { display: flex; align-items: center; gap: 11px; padding: 24px 0 19px; border-bottom: 1px solid var(--line); }.profile-orb { display: grid; width: 39px; height: 39px; place-items: center; color: #1657ae; background: linear-gradient(135deg, #bee0ff, #d9c9ff); border: 1px solid rgba(255,255,255,.82); border-radius: 50%; font-size: 15px; font-weight: 750; }.booking-profile b, .booking-profile small { display: block; }.booking-profile b { font-size: 15px; letter-spacing: -0.025em; }.booking-profile small { margin-top: 1px; color: var(--ink-faint); font-size: 12px; }.booking-lines { display: grid; gap: 9px; padding-top: 18px; color: var(--ink-soft); font-size: 13px; line-height: 1.4; }.booking-button { align-self: start; margin-top: auto; }.booking-note { margin: 13px 0 0; color: var(--ink-faint); font-size: 12px; }.contact-reassurance { display: flex; align-items: flex-start; gap: 10px; max-width: 850px; padding-bottom: 100px; color: var(--ink-soft); font-size: 13px; }.contact-reassurance p { margin: 0; }.contact-reassurance b { color: var(--ink); }

.reveal { animation: enter 720ms var(--ease) both; }.reveal-delay { animation-delay: 130ms; }@keyframes enter { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .nav-links { display: none; }.hero { grid-template-columns: 1fr; gap: 42px; min-height: auto; padding-top: 70px; }.hero-stage { width: min(100%, 630px); min-height: 455px; margin: 0 auto; }.app-window { right: 18px; left: 0; }.feature-section, .faq-section { grid-template-columns: 1fr; gap: 48px; }.section-heading > p:last-child { max-width: 520px; }.privacy-layout { grid-template-columns: 1fr; gap: 46px; }.privacy-copy > p:not(.eyebrow) { max-width: 570px; }.contact-grid { grid-template-columns: 1fr; }.trust-strip { margin-bottom: 105px; }.feature-section { padding-bottom: 110px; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }.site-header { padding-top: 11px; }.nav { min-height: 59px; padding-left: 13px; border-radius: 18px; }.brand { font-size: 16px; }.brand-mark { width: 23px; height: 23px; border-radius: 7px; }.nav-cta { min-height: 35px; padding: 0 10px; font-size: 11px; }.hero { padding-top: 56px; padding-bottom: 52px; }.hero-copy h1 { font-size: clamp(46px, 14vw, 62px); }.hero-lead { font-size: 18px; }.hero-actions { display: grid; grid-template-columns: 1fr; }.hero-actions .button { width: 100%; }.hero-stage { min-height: 320px; }.app-window { top: 10px; min-height: 285px; border-radius: 19px; transform: perspective(1000px) rotateY(-3deg); }.window-chrome { height: 32px; padding: 0 11px; }.traffic-lights { gap: 4px; }.traffic-lights i { width: 7px; height: 7px; }.app-content { padding: 14px; }.app-intro { padding: 14px 0 12px; }.app-intro p { font-size: 19px; }.app-intro span { max-width: 95px; font-size: 8px; }.ask-field { min-height: 38px; padding-left: 9px; font-size: 8px; }.ask-field button { width: 24px; height: 24px; font-size: 11px; }.app-grid { gap: 6px; margin-top: 7px; }.preview-card { min-height: 102px; padding: 8px; border-radius: 10px; }.card-kicker { margin-bottom: 6px; font-size: 6px; }.finder-row { margin-top: 9px; font-size: 8px; }.finder-icon { width: 18px; height: 18px; font-size: 8px; }.demo-pills { margin-top: 8px; }.demo-pills span { padding: 3px; font-size: 6px; }.review-heading span { padding: 2px 4px; font-size: 6px; }.review-card h3 { margin: 10px 0 3px; font-size: 11px; }.review-card > p { margin-bottom: 7px; font-size: 7px; }.review-bottom { font-size: 6px; }.cursor-callout { right: -4px; bottom: -8px; min-width: 142px; padding: 7px 9px; border-radius: 12px; font-size: 9px; }.cursor-callout b { font-size: 10px; }.cursor-callout small { font-size: 7px; }.cursor-icon { width: 22px; height: 22px; font-size: 13px; }.trust-strip { grid-template-columns: 1fr; margin-bottom: 76px; border-radius: 18px; }.trust-strip > div { min-height: 74px; padding: 13px 16px; }.trust-strip > div + div { border-top: 1px solid var(--line); border-left: 0; }.feature-section { gap: 35px; padding-bottom: 80px; }.section-heading h2, .privacy-copy h2, .cta-card h2 { font-size: 38px; }.feature-card { grid-template-columns: 28px 1fr; gap: 10px; min-height: 0; padding: 20px; }.feature-copy h3 { font-size: 20px; }.feature-visual { grid-column: 2; min-height: 96px; margin-top: 3px; }.privacy-section { padding: 83px 0; }.privacy-layout { gap: 35px; }.faq-section { gap: 33px; padding-top: 80px; padding-bottom: 80px; }.faq-list summary { padding: 18px 1px; font-size: 16px; }.final-cta { padding-bottom: 64px; }.cta-card { padding: 36px 26px; border-radius: 25px; }.site-footer { flex-wrap: wrap; padding-bottom: 28px; }.site-footer p { width: 100%; order: 3; }.site-footer div { margin-left: auto; }.contact-hero { padding-top: 70px; padding-bottom: 38px; }.contact-hero h1 { font-size: clamp(50px, 15vw, 71px); }.contact-hero p:last-child { font-size: 17px; }.contact-grid { gap: 13px; }.contact-card { padding: 25px 20px; border-radius: 22px; }.contact-card h2 { font-size: 27px; }.form-row { grid-template-columns: 1fr; }.contact-reassurance { padding-bottom: 66px; }.booking-preview { padding: 17px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.reveal { animation: none; }.button, .nav-links a, .faq-list summary span { transition: none; } }
