@charset "UTF-8";

:root {
  --primary: #004ea3;
  --primary-600: #003a7c;
  --primary-700: #002c5e;
  --primary-050: #e6efff;
  --primary-100: #c7daf5;
  --primary-200: #9bbce9;
  --navy: #1e3a7a;
  --navy-900: #14295a;
  --blue: #1877f2;
  --orange: #f59e0b;
  --orange-dk: #e08910;
  --success: #3d9b00;
  --success-050: #e9f7e4;
  --warn-050: #fff4db;
  --amber: #8a5100;
  --error: #c92727;
  --error-050: #fde4e4;
  --purple: #7c3aed;
  --purple-050: #ede9ff;
  --surface: #f7f8fa;
  --surface-high: #fff;
  --surface-alt: #eef2f7;
  --ink: #181c1e;
  --ink-2: #4a5261;
  --ink-3: #667180;
  --ghost: rgba(24, 28, 30, 0.08);
  --ghost-strong: rgba(24, 28, 30, 0.13);
  --grad-brand: linear-gradient(168deg, #1e3a7a 0%, #004ea3 58%, #1877f2 100%);
  --grad-cta: linear-gradient(135deg, #004ea3 0%, #1877f2 100%);
  --grad-ai: linear-gradient(150deg, #0a2356 0%, #103a86 60%, #1877f2 120%);
  --font-display: "Manrope", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1240px;
  --header-h: 78px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --shadow-1: 0 1px 3px rgba(24, 28, 30, 0.06), 0 1px 2px rgba(24, 28, 30, 0.04);
  --shadow-2: 0 14px 38px rgba(24, 28, 30, 0.10);
  --shadow-3: 0 28px 80px rgba(0, 44, 94, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body { margin: 0; min-width: 0; background: var(--surface); color: var(--ink); font-family: var(--font-body); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; }
p, h1, h2, h3 { margin-top: 0; }
main { overflow: clip; }
[hidden] { display: none !important; }
section[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; min-width: 0; }
.section { padding: 112px 0; position: relative; }
.section--soft { background: var(--surface-alt); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; transform: translateY(-160%); background: #fff; color: var(--primary); padding: 12px 18px; border-radius: 10px; box-shadow: var(--shadow-2); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); letter-spacing: -0.035em; text-wrap: balance; }
h1 { font-size: clamp(3rem, 6.5vw, 5.8rem); line-height: 0.99; font-weight: 800; }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.35rem); line-height: 1.04; font-weight: 800; }
h3 { font-size: 1.18rem; line-height: 1.3; font-weight: 750; }
h1 em, h2 em { color: var(--primary); font-style: normal; }
p { color: var(--ink-2); }
.overline { margin: 0 0 8px; color: var(--primary); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 22px; color: var(--primary); font-size: .74rem; font-weight: 800; letter-spacing: .09em; line-height: 1.25; text-transform: uppercase; }
.eyebrow .icon { color: var(--orange-dk); }
.eyebrow--light { color: rgba(255,255,255,.78); }
.eyebrow--light .icon { color: var(--orange); }

.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 20px; border: 0; border-radius: var(--radius-sm); background: var(--grad-cta); color: #fff; box-shadow: 0 8px 24px rgba(0, 78, 163, .22); font-weight: 800; line-height: 1.1; text-align: center; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button .icon { transition: transform .18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 13px 30px rgba(0, 78, 163, .28); }
.button:hover .icon { transform: translateX(3px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.button--secondary { background: #fff; color: var(--primary); box-shadow: inset 0 0 0 1px var(--ghost-strong), var(--shadow-1); }
.button--secondary:hover { background: var(--primary-050); box-shadow: inset 0 0 0 1px var(--primary-200), var(--shadow-1); }
.button--light { background: #fff; color: var(--primary-700); box-shadow: none; }
.button--light:hover { box-shadow: 0 14px 34px rgba(0,0,0,.16); }
.button--text { min-height: auto; padding: 8px 0; background: transparent; color: var(--primary); box-shadow: none; justify-content: flex-start; }
.button--text:hover { box-shadow: none; }

/* Header */
.site-header { position: sticky; z-index: 1000; top: 0; height: var(--header-h); background: rgba(247, 248, 250, .86); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.94); border-color: var(--ghost); box-shadow: 0 8px 32px rgba(24,28,30,.06); }
.site-header__inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; gap: 28px; }
.site-brand { flex: 0 0 auto; text-decoration: none; }
.brand-lockup { display: inline-flex; align-items: center; gap: 9px; }
.brand-symbol { display: grid; place-items: center; width: 38px; height: 38px; }
.brand-symbol img { width: 100%; height: 100%; object-fit: contain; }
.brand-word { color: var(--primary-700); font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.brand-word span { color: var(--orange-dk); }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 1.6vw, 28px); margin-left: auto; }
.desktop-nav a { position: relative; padding: 28px 0 24px; color: var(--ink-2); font-size: .86rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; border-radius: 99px; background: var(--orange); content: ""; transition: transform .18s ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--primary); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .button { min-height: 43px; padding: 11px 15px; font-size: .82rem; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 10px; background: #fff; box-shadow: inset 0 0 0 1px var(--ghost); color: var(--primary); cursor: pointer; place-items: center; }
.menu-toggle .icon { width: 22px; height: 22px; }
.menu-close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close-icon { display: block; }
.mobile-menu { display: none; position: fixed; z-index: 1; top: var(--header-h); right: 0; bottom: 0; left: 0; padding: 22px 24px 40px; background: rgba(247,248,250,.98); overflow-y: auto; }
.mobile-menu[aria-hidden="false"] { display: block; }
.mobile-menu nav { display: grid; gap: 4px; width: min(100%, 620px); margin: 0 auto; }
.mobile-menu nav > a:not(.button), .mobile-menu nav > span { display: flex; align-items: center; min-height: 50px; padding: 10px 12px; border-bottom: 1px solid var(--ghost); color: var(--ink); font-family: var(--font-display); font-size: 1.08rem; font-weight: 750; text-decoration: none; }
.mobile-menu nav > span { color: var(--ink-3); }
.mobile-menu .button { margin-top: 16px; }

/* Shared page hero */
.page-intro { position: relative; min-height: 650px; padding: 62px 0 88px; background: var(--surface); overflow: hidden; }
.page-intro::before { position: absolute; inset: 0; background: radial-gradient(circle at 82% 22%, rgba(24,119,242,.10), transparent 32%), linear-gradient(rgba(0,78,163,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,78,163,.035) 1px, transparent 1px); background-size: auto, 34px 34px, 34px 34px; content: ""; mask-image: linear-gradient(to bottom, #000, transparent 92%); }
.page-intro--dark { background: var(--navy-900); color: #fff; }
.page-intro--dark::before { background: radial-gradient(circle at 78% 45%, rgba(24,119,242,.38), transparent 34%), radial-gradient(circle at 12% 16%, rgba(245,158,11,.12), transparent 24%), linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: auto, auto, 34px 34px, 34px 34px; }
.page-intro .container { position: relative; z-index: 1; }
.breadcrumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 54px; color: var(--ink-3); font-size: .78rem; font-weight: 700; }
.breadcrumbs a { color: var(--primary); text-decoration: none; }
.page-intro--dark .breadcrumbs { color: rgba(255,255,255,.58); }
.page-intro--dark .breadcrumbs a { color: rgba(255,255,255,.78); }
.page-intro__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); align-items: center; gap: clamp(48px, 7vw, 104px); }
.page-intro__grid--solo { grid-template-columns: minmax(0, 820px); }
.page-intro__copy { min-width: 0; }
.page-intro__copy h1 { max-width: 780px; margin-bottom: 26px; font-size: clamp(3rem, 5.6vw, 5.25rem); }
.page-intro__copy > p { max-width: 720px; margin-bottom: 34px; font-size: clamp(1.04rem, 1.45vw, 1.22rem); line-height: 1.7; }
.page-intro--dark h1 { color: #fff; }
.page-intro--dark h1 em { color: #9ccbff; }
.page-intro--dark .page-intro__copy > p { color: rgba(255,255,255,.72); }
.page-intro__visual { min-width: 0; }

/* Product frames */
.product-shot { position: relative; width: min(100%, 390px); border: 1px solid rgba(0,78,163,.12); border-radius: 28px; background: #fff; box-shadow: var(--shadow-3); overflow: hidden; }
.product-shot__bar { display: flex; align-items: center; gap: 5px; height: 32px; padding: 0 12px; background: #f2f5f8; border-bottom: 1px solid var(--ghost); }
.product-shot__bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--primary-100); }
.product-shot__bar i:first-child { background: var(--orange); }
.product-shot__bar span { margin-left: auto; color: var(--ink-3); font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-shot__viewport { max-height: 590px; overflow: hidden; background: #fff; }
.product-shot__viewport img { width: 100%; min-height: 100%; object-fit: cover; object-position: top center; }
.product-shot figcaption { display: flex; align-items: center; gap: 7px; min-height: 38px; padding: 8px 12px; border-top: 1px solid var(--ghost); color: var(--ink-3); font-size: .68rem; font-weight: 700; }
.product-shot figcaption > span { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--success-050); color: var(--success); }
.product-shot figcaption .icon { width: 11px; }
.product-shot--intro { margin: 0 auto; transform: rotate(1.7deg); }
.product-shot--intro .product-shot__viewport { max-height: 500px; }
.product-shot--worker { width: 320px; margin: auto; transform: rotate(1.5deg); }
.product-shot--wide-intro { width: min(100%, 560px); margin: auto; transform: rotate(1deg); }
.product-shot--wide-intro .product-shot__viewport { max-height: 420px; }
.product-shot--wide-intro .product-shot__viewport img { object-position: center; }

.section-heading { margin-bottom: 54px; }
.section-heading h2 { max-width: 860px; margin-bottom: 20px; }
.section-heading > p, .section-heading > div > p { max-width: 690px; margin-bottom: 0; font-size: 1.05rem; }
.section-heading--center { max-width: 920px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading--center h2, .section-heading--center > p { margin-right: auto; margin-left: auto; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 64px; }
.section-heading--split > div > h2 { margin-bottom: 0; }

.icon-tile { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: var(--primary-050); color: var(--primary); }
.icon-tile .icon { width: 25px; height: 25px; }
.check-list { display: grid; gap: 11px; list-style: none; }
.check-list li { position: relative; padding-left: 26px; color: var(--ink-2); }
.check-list li::before { position: absolute; top: .45em; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--success-050); color: var(--success); content: "✓"; font-size: 10px; font-weight: 900; line-height: 15px; text-align: center; }
.check-list--negative li::before { background: var(--error-050); color: var(--error); content: "×"; }

/* Home */
.home-hero { position: relative; min-height: calc(100vh - var(--header-h)); padding: clamp(42px, 5.5vh, 64px) 0 58px; background: radial-gradient(circle at 82% 16%, rgba(24,119,242,.16), transparent 29%), radial-gradient(circle at 8% 90%, rgba(245,158,11,.09), transparent 25%), var(--surface); overflow: hidden; }
.home-hero::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,78,163,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,78,163,.035) 1px, transparent 1px); background-size: 38px 38px; content: ""; mask-image: radial-gradient(circle at 55% 45%, #000, transparent 74%); }
.home-hero__glow { position: absolute; top: 5%; right: -12%; width: 48vw; aspect-ratio: 1; border: 1px solid rgba(24,119,242,.16); border-radius: 50%; box-shadow: inset 0 0 0 90px rgba(24,119,242,.03), inset 0 0 0 180px rgba(24,119,242,.025); }
.home-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(350px, .86fr); align-items: center; gap: clamp(38px, 4.5vw, 64px); }
.home-hero__copy { min-width: 0; }
.home-hero h1 { max-width: 790px; margin-bottom: 24px; font-size: clamp(3.35rem, 5.25vw, 5.25rem); }
.home-hero h1 em { display: block; }
.hero-lead { max-width: 690px; margin-bottom: 20px; color: var(--ink-2); font-size: clamp(1.05rem, 1.5vw, 1.23rem); line-height: 1.7; }
.hero-statement { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 30px; color: var(--primary-700); }
.hero-statement .icon { color: var(--orange-dk); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-3); font-size: .74rem; font-weight: 700; }
.hero-trust .icon { color: var(--primary); }
.home-hero__visual { position: relative; display: grid; place-items: center; min-width: 0; }
.product-shot--hero { width: min(82%, 390px); transform: rotate(2deg); }
.product-shot--hero .product-shot__viewport { max-height: min(58vh, 570px); }
.hero-orbit { position: absolute; border: 1px solid rgba(0,78,163,.14); border-radius: 50%; }
.hero-orbit--one { width: 112%; aspect-ratio: 1; }
.hero-orbit--two { width: 82%; aspect-ratio: 1; border-style: dashed; }
.floating-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; min-width: 210px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.8); border-radius: 14px; background: rgba(255,255,255,.93); box-shadow: var(--shadow-2); backdrop-filter: blur(12px); }
.floating-card > span { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 10px; background: var(--primary-050); color: var(--primary); }
.floating-card small, .floating-card strong { display: block; line-height: 1.25; }
.floating-card small { color: var(--ink-3); font-size: .66rem; }
.floating-card strong { margin-top: 3px; color: var(--ink); font-size: .78rem; }
.floating-card--top { top: 11%; left: -7%; }
.floating-card--bottom { right: -4%; bottom: 14%; }
.floating-card--bottom > span { background: var(--success-050); color: var(--success); }

.signal-rail { position: relative; z-index: 2; background: var(--primary-700); color: #fff; }
.signal-rail__grid { display: grid; grid-template-columns: 1.15fr repeat(4, 1fr); }
.signal-rail__grid > div { display: flex; flex-direction: column; justify-content: center; min-height: 112px; padding: 22px 26px; border-left: 1px solid rgba(255,255,255,.12); }
.signal-rail__grid > div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.signal-rail strong { color: #fff; font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; }
.signal-rail span { margin-top: 2px; color: rgba(255,255,255,.66); font-size: .7rem; line-height: 1.35; }

.section--comparison { background: #fff; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.comparison-card { position: relative; padding: 34px; border: 1px solid var(--ghost); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; }
.comparison-card::after { position: absolute; right: -50px; bottom: -70px; width: 190px; height: 190px; border: 38px solid rgba(24,28,30,.03); border-radius: 50%; content: ""; }
.comparison-card--after { border-color: rgba(61,155,0,.2); background: linear-gradient(145deg, #fff, var(--success-050)); }
.comparison-card__label { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.comparison-card__label span { padding: 5px 9px; border-radius: 99px; background: var(--error-050); color: var(--error); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.comparison-card--after .comparison-card__label span { background: var(--success-050); color: var(--success); }
.comparison-card__label h3 { margin: 0; font-size: 1.45rem; }
.comparison-card .check-list { grid-template-columns: repeat(2, minmax(0,1fr)); }

.audience-home { background: var(--surface); }
.audience-panels { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.audience-panel { position: relative; min-height: 510px; padding: 38px; border-radius: var(--radius-xl); background: #fff; box-shadow: inset 0 0 0 1px var(--ghost), var(--shadow-1); text-decoration: none; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.audience-panel:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px rgba(0,78,163,.15), var(--shadow-2); }
.audience-panel::after { position: absolute; right: -70px; bottom: -100px; width: 280px; height: 280px; border: 58px solid var(--primary-050); border-radius: 50%; content: ""; }
.audience-panel--provider { background: var(--primary-700); }
.audience-panel--provider::after { border-color: rgba(255,255,255,.05); }
.audience-panel__number { position: absolute; top: 28px; right: 32px; color: var(--primary-100); font-family: var(--font-display); font-size: 3.8rem; font-weight: 800; line-height: 1; }
.audience-panel > p { margin: 32px 0 10px; color: var(--primary); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.audience-panel h3 { max-width: 460px; margin-bottom: 28px; font-size: clamp(2rem, 3vw, 3rem); }
.audience-panel ul { display: grid; gap: 10px; list-style: none; }
.audience-panel li { color: var(--ink-2); }
.audience-panel__link { position: absolute; z-index: 1; bottom: 34px; left: 38px; display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 800; }
.audience-panel--provider .audience-panel__number { color: rgba(255,255,255,.08); }
.audience-panel--provider .icon-tile { background: rgba(255,255,255,.1); color: #fff; }
.audience-panel--provider > p, .audience-panel--provider .audience-panel__link { color: #9ccbff; }
.audience-panel--provider h3 { color: #fff; }
.audience-panel--provider li { color: rgba(255,255,255,.7); }

.ai-story { background: #fff; }
.ai-story__grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); align-items: center; gap: 90px; }
.ai-story__copy h2 { margin-bottom: 24px; }
.ai-story__copy > p { margin-bottom: 28px; font-size: 1.05rem; }
.ai-steps { display: grid; gap: 8px; list-style: none; }
.ai-steps li { display: grid; grid-template-columns: 54px minmax(0,1fr); gap: 18px; padding: 18px 20px; border-radius: 16px; background: var(--surface); }
.ai-steps li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--primary-050); color: var(--primary); font-family: var(--font-display); font-size: .74rem; font-weight: 800; }
.ai-steps strong { color: var(--ink); font-family: var(--font-display); }
.ai-steps p { margin: 3px 0 0; font-size: .86rem; }
.ai-steps__approval { background: var(--primary-700) !important; }
.ai-steps__approval > span { background: var(--orange) !important; color: #fff !important; }
.ai-steps__approval strong { color: #fff; }
.ai-steps__approval p { color: rgba(255,255,255,.68); }

.platform-index { background: var(--surface); }
.feature-index-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.feature-index-grid a { display: flex; gap: 18px; min-height: 180px; padding: 25px; border: 1px solid var(--ghost); border-radius: var(--radius); background: #fff; text-decoration: none; transition: border-color .18s, transform .18s, box-shadow .18s; }
.feature-index-grid a:hover { transform: translateY(-3px); border-color: var(--primary-200); box-shadow: var(--shadow-2); }
.feature-index-grid a > span { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 auto; border-radius: 13px; background: var(--primary-050); color: var(--primary); }
.feature-index-grid small { color: var(--orange-dk); font-size: .67rem; font-weight: 800; }
.feature-index-grid h3 { margin: 6px 0; }
.feature-index-grid p { margin: 0; font-size: .84rem; }

.concierge-home { background: #fff; }
.concierge-home__grid { display: grid; grid-template-columns: minmax(340px,.85fr) minmax(0,1.15fr); align-items: center; gap: 100px; }
.concierge-home__visual { display: grid; place-items: center; }
.concierge-home__copy h2 { margin-bottom: 24px; }
.concierge-home__copy > p { max-width: 620px; margin-bottom: 28px; font-size: 1.05rem; }
.number-list { display: grid; gap: 14px; margin-bottom: 30px; list-style: none; }
.number-list li { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 14px; }
.number-list li > span { color: var(--orange-dk); font-family: var(--font-display); font-size: .76rem; font-weight: 800; }
.number-list strong { color: var(--ink); }
.number-list p { margin: 2px 0 0; font-size: .84rem; }

.route-cards-section { background: var(--surface-alt); }
.route-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.route-cards a { position: relative; min-height: 240px; padding: 28px; border-radius: var(--radius-lg); background: #fff; text-decoration: none; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.route-cards a:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.route-cards a > span { color: var(--orange-dk); font-size: .7rem; font-weight: 800; }
.route-cards h3 { margin: 42px 0 10px; font-size: 1.65rem; }
.route-cards p { margin: 0; }
.route-cards > a > .icon { position: absolute; right: 24px; bottom: 24px; color: var(--primary); }

/* Guest HTML visual — derived from app-customer */
.guest-showcase { position: relative; display: flex; align-items: center; justify-content: center; gap: 18px; min-width: 0; }
.guest-showcase--intro .guest-device { width: min(48%, 280px); }
.guest-showcase--intro .guest-device:first-child { transform: translateY(34px) rotate(-3deg); }
.guest-showcase--intro .guest-device:last-child { transform: translateY(-18px) rotate(3deg); }
.guest-showcase--full { align-items: flex-start; gap: clamp(24px,5vw,78px); margin-top: 20px; }
.guest-showcase--full .guest-device { width: min(100%, 372px); }
.guest-device { position: relative; width: min(100%, 370px); aspect-ratio: 402 / 874; padding: 8px; border: 1px solid rgba(255,255,255,.55); border-radius: 48px; background: #111820; box-shadow: 0 30px 80px rgba(0,44,94,.28), inset 0 0 0 2px #313944; container-type: inline-size; }
.guest-device::before { position: absolute; z-index: 5; top: 14px; left: 50%; width: 31%; height: 4.2%; transform: translateX(-50%); border-radius: 99px; background: #06090d; content: ""; }
.guest-device__screen { position: relative; width: 100%; height: 100%; border-radius: 41px; background: var(--surface); overflow: hidden; }
.guest-status { position: relative; z-index: 4; display: flex; align-items: center; justify-content: space-between; height: 38px; padding: 10px 22px 0; color: inherit; font-size: clamp(7px, 2.8cqw, 11px); font-weight: 800; letter-spacing: .02em; }
.guest-lang { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 28px; padding: 0 9px; border-radius: 99px; background: rgba(255,255,255,.16); color: #fff; font-size: clamp(8px, 3.2cqw, 12px); font-weight: 800; }
.guest-brand-row { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 7px 18px 0; }
.guest-brand-row .brand-symbol { width: clamp(20px, 8cqw, 30px); height: clamp(20px, 8cqw, 30px); }
.guest-brand-row .brand-word { color: #fff; font-size: clamp(12px, 4.4cqw, 17px); }
.guest-brand-row .brand-lockup { gap: 6px; }
.guest-device--qr .guest-device__screen { display: flex; flex-direction: column; background: var(--grad-brand); color: #fff; }
.guest-qr__pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.075) 1px, transparent 1px); background-size: 22px 22px; }
.guest-qr__pattern::after { position: absolute; top: -12%; right: -28%; width: 88%; aspect-ratio: 1; border: 13cqw solid rgba(255,255,255,.045); border-radius: 50%; content: ""; }
.guest-qr__content { position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; justify-content: center; gap: clamp(12px, 5cqw, 20px); padding: 12px 22px; }
.guest-property-icon { display: grid; place-items: center; width: clamp(52px,19cqw,74px); aspect-ratio: 1; border-radius: 22px; background: linear-gradient(135deg,#5ec8c0,#2f8f8a); box-shadow: 0 15px 38px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.25); }
.guest-property-icon .icon { width: 48%; height: 48%; }
.guest-overline { display: block; margin-bottom: 5px; color: rgba(255,255,255,.61); font-size: clamp(7px,2.9cqw,11px); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.guest-qr__content > div > strong { display: block; color: #fff; font-family: var(--font-display); font-size: clamp(21px, 8cqw, 30px); line-height: 1.12; letter-spacing: -.03em; }
.guest-qr__content > div > p { margin: 9px 0 0; color: rgba(255,255,255,.78); font-size: clamp(10px, 3.8cqw, 14px); line-height: 1.45; }
.guest-stay-card { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 12px; padding: 14px 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.1); }
.guest-stay-card i { background: rgba(255,255,255,.18); }
.guest-stay-card span, .guest-stay-card strong { display: block; }
.guest-stay-card span { color: rgba(255,255,255,.62); font-size: clamp(7px,2.8cqw,10px); }
.guest-stay-card strong { color: #fff; font-size: clamp(9px,3.2cqw,12px); }
.guest-stay-card small { grid-column: 1 / -1; display: flex; align-items: center; gap: 5px; padding-top: 4px; color: rgba(255,255,255,.72); font-size: clamp(7px,2.6cqw,10px); }
.guest-qr__footer { position: relative; z-index: 1; padding: 10px 20px 26px; }
.guest-primary { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 45px; border-radius: 10px; background: #fff; color: var(--primary); font-size: clamp(10px,3.4cqw,13px); font-weight: 800; }
.guest-qr__footer > p { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 9px 0 0; color: rgba(255,255,255,.68); font-size: clamp(6px,2.5cqw,9px); text-align: center; }

.guest-device--home .guest-device__screen { background: var(--surface); }
.guest-home__header { position: relative; height: 19%; padding: 0 16px 12px; background: var(--grad-brand); color: #fff; overflow: hidden; }
.guest-home__header::after { position: absolute; right: -50px; bottom: -70px; width: 190px; height: 190px; border: 38px solid rgba(255,255,255,.05); border-radius: 50%; content: ""; }
.guest-home__header .guest-status { margin: 0 -16px; }
.guest-heading { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 5px; }
.guest-heading strong, .guest-heading span { display: block; }
.guest-heading strong { color: #fff; font-family: var(--font-display); font-size: clamp(13px,5cqw,19px); line-height: 1.2; }
.guest-heading span { color: rgba(255,255,255,.72); font-size: clamp(8px,3cqw,11px); }
.guest-expiry { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: 10px; }
.guest-expiry > span { display: inline-flex; align-items: center; gap: 4px; padding: 4px 8px; border-radius: 99px; background: rgba(255,255,255,.16); font-size: clamp(6px,2.6cqw,10px); font-weight: 800; }
.guest-expiry small { color: rgba(255,255,255,.68); font-size: clamp(6px,2.3cqw,9px); }
.guest-home__scroll { height: 71%; padding: 14px 14px 76px; overflow: hidden; }
.guest-ai-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 13px; border-radius: 18px; background: var(--grad-ai); box-shadow: 0 9px 24px rgba(20,90,220,.28); }
.guest-ai-face { display: grid; place-items: center; width: clamp(38px,14cqw,52px); aspect-ratio: 1; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; background: linear-gradient(158deg,#2f80e8,#0a4fc0); }
.guest-ai-face img { width: 76%; }
.guest-ai-card strong { display: block; color: #fff; font-family: var(--font-display); font-size: clamp(9px,3.9cqw,14px); }
.guest-ai-card p { margin: 2px 0 0; color: rgba(206,230,255,.86); font-size: clamp(6px,2.6cqw,10px); line-height: 1.3; }
.guest-ai-card > .icon { color: #fff; }
.guest-section-title { display: flex; align-items: center; gap: 5px; margin: 13px 0 8px; color: var(--primary); font-size: clamp(7px,3cqw,11px); }
.guest-section-title strong { color: var(--ink); font-family: var(--font-display); font-size: clamp(9px,3.6cqw,13px); }
.guest-section-title span { color: var(--ink-3); font-size: clamp(6px,2.3cqw,9px); }
.guest-section-title--included { color: var(--success); }
.guest-categories { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
.guest-category { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: clamp(68px,24cqw,90px); padding: 10px; border-radius: 15px; color: #fff; background-size: cover; background-position: center; overflow: hidden; }
.guest-category::before { position: absolute; inset: 0; background: linear-gradient(200deg,rgba(6,14,28,.08),rgba(6,14,28,.75)); content: ""; }
.guest-category--experiences { background-image: url("/assets/guest/experiencias.jpg"); }
.guest-category--clean { background-image: url("/assets/guest/limpieza.jpg"); }
.guest-category--transport { grid-column: 1 / -1; min-height: clamp(48px,18cqw,68px); background-image: url("/assets/guest/transporte.jpg"); background-position: 50% 62%; }
.guest-category > span, .guest-category > div { position: relative; z-index: 1; }
.guest-category > span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; background: rgba(255,255,255,.23); }
.guest-category strong, .guest-category small { display: block; color: #fff; line-height: 1.15; }
.guest-category strong { font-family: var(--font-display); font-size: clamp(8px,3.3cqw,12px); }
.guest-category small { margin-top: 2px; color: rgba(255,255,255,.85); font-size: clamp(6px,2.3cqw,8px); }
.guest-service-card { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 8px; padding: 8px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-1); }
.guest-service-photo { width: 46px; aspect-ratio: 1; border-radius: 12px; background: linear-gradient(rgba(0,0,0,.08),rgba(0,0,0,.08)), url("/assets/guest/limpieza.jpg") center/cover; }
.guest-service-card strong { display: block; color: var(--ink); font-size: clamp(7px,3cqw,11px); }
.guest-service-card p { margin: 1px 0; font-size: clamp(5px,2.1cqw,8px); line-height: 1.25; }
.guest-service-card small { color: var(--ink-3); font-size: clamp(5px,2cqw,7px); }
.guest-service-card > span { padding: 3px 6px; border-radius: 99px; background: var(--success-050); color: var(--success); font-size: clamp(5px,2.1cqw,8px); font-weight: 800; }
.guest-tabs { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(5,1fr); align-items: center; height: 10%; padding: 5px 5px 12px; border-top: 1px solid var(--ghost); background: rgba(255,255,255,.96); }
.guest-tabs > span { display: flex; min-width: 0; flex-direction: column; align-items: center; gap: 2px; color: var(--ink-3); }
.guest-tabs > span:first-child { color: var(--primary); }
.guest-tabs small { max-width: 100%; font-size: clamp(5px,2cqw,8px); font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.guest-orb { position: relative; transform: translateY(-13px); }
.guest-orb img { width: clamp(34px,13cqw,48px); aspect-ratio: 1; padding: 6px; border: 3px solid #fff; border-radius: 50%; background: linear-gradient(158deg,#2f80e8,#0a4fc0); box-shadow: 0 8px 20px rgba(20,90,220,.42); }
.guest-orb small { color: var(--orange-dk); }

/* Shared CTA and footer */
.cta-band { padding: 82px 0; background: var(--grad-brand); color: #fff; }
.cta-band__inner { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 60px; }
.cta-band h2 { max-width: 760px; margin-bottom: 14px; color: #fff; font-size: clamp(2.2rem,4vw,4rem); }
.cta-band p { max-width: 720px; margin: 0; color: rgba(255,255,255,.7); }
.cta-band .button { min-width: 230px; }

.site-footer { padding: 78px 0 26px; background: #091b38; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3,1fr); gap: 48px; padding-bottom: 56px; }
.footer-brand > a { text-decoration: none; }
.brand-lockup--footer .brand-word { color: #fff; }
.footer-brand p { max-width: 360px; margin: 22px 0 18px; color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-brand > span { color: var(--orange); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid h2 { margin-bottom: 18px; color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid > div:not(.footer-brand) a { color: rgba(255,255,255,.62); font-size: .82rem; text-decoration: none; }
.footer-grid > div:not(.footer-brand) a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.48); font-size: .72rem; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom span[aria-disabled] { color: rgba(255,255,255,.35); font-size: .72rem; cursor: not-allowed; }

/* AI page */
.ai-core { position: relative; display: grid; place-items: center; width: min(100%, 520px); aspect-ratio: 1; margin: auto; }
.ai-core__rings, .ai-core__rings i { position: absolute; inset: 0; border: 1px solid rgba(156,203,255,.25); border-radius: 50%; }
.ai-core__rings i:nth-child(2) { inset: 12%; border-style: dashed; }
.ai-core__rings i:nth-child(3) { inset: 25%; }
.ai-core__orb { position: relative; z-index: 1; display: grid; place-items: center; width: 34%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: linear-gradient(158deg,#2f80e8,#0a4fc0); box-shadow: 0 0 80px rgba(24,119,242,.55), inset 0 8px 16px rgba(255,255,255,.28); }
.ai-core__orb img { width: 75%; }
.ai-core__track { --orbit-duration: 12s; --orbit-direction: normal; --orbit-delay: -2s; --glow-delay: -1s; position: absolute; z-index: 2; inset: 3%; border-radius: 50%; animation: vivid-orbit-spin var(--orbit-duration) linear infinite var(--orbit-direction); animation-delay: var(--orbit-delay); }
.ai-core__track--two { --orbit-duration: 10s; --orbit-direction: reverse; --orbit-delay: -5.4s; --glow-delay: -2.7s; inset: 14%; }
.ai-core__track--three { --orbit-duration: 8s; --orbit-delay: -3.6s; --glow-delay: -1.8s; inset: 25%; }
.ai-core__node { position: absolute; display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 99px; background: rgba(255,255,255,.1); color: #fff; font-size: .7rem; font-weight: 800; backdrop-filter: blur(10px); }
.ai-core__track .ai-core__node { top: 0; left: 50%; transform: translate(-50%,-50%); animation: vivid-orbit-counter var(--orbit-duration) linear infinite var(--orbit-direction), vivid-orbit-badge-glow 2.2s ease-in-out infinite; animation-delay: var(--orbit-delay), var(--glow-delay); }
.process-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; list-style: none; }
.process-grid li { min-height: 340px; padding: 26px 22px; border: 1px solid var(--ghost); border-radius: var(--radius-lg); background: #fff; }
.process-grid__number { display: block; margin-bottom: 38px; color: var(--orange-dk); font-size: .7rem; font-weight: 800; }
.process-grid .icon-tile { margin-bottom: 24px; }
.process-grid h3 { font-size: 1.4rem; }
.process-grid p { margin: 0; font-size: .85rem; }
.process-grid__approval { background: var(--primary-700) !important; }
.process-grid__approval h3 { color: #fff; }
.process-grid__approval p { color: rgba(255,255,255,.68); }
.process-grid__approval .icon-tile { background: var(--orange); color: #fff; }
.ai-agent { background: var(--surface-alt); }
.ai-agent__grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 86px; }
.ai-agent__intro h2 { margin-bottom: 24px; }
.ai-agent__intro > p { margin-bottom: 28px; }
.ai-prompt { padding: 22px; border-radius: var(--radius); background: var(--grad-ai); color: #fff; }
.ai-prompt > span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 16px; border-radius: 50%; background: rgba(255,255,255,.12); color: var(--orange); }
.ai-prompt p { margin-bottom: 6px; color: #fff; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
.ai-prompt small { color: rgba(255,255,255,.66); }
.agent-actions { display: grid; gap: 12px; }
.agent-actions article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-1); }
.agent-actions article > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--primary-050); color: var(--primary); }
.agent-actions h3 { margin-bottom: 6px; }
.agent-actions p { margin: 0; font-size: .86rem; }
.approval-section { background: #fff; }
.approval-panel { display: grid; grid-template-columns: auto minmax(0,1fr) minmax(280px,.7fr); align-items: center; gap: 34px; padding: 44px; border: 1px solid rgba(61,155,0,.2); border-radius: var(--radius-xl); background: linear-gradient(135deg,#fff,var(--success-050)); }
.approval-panel__mark { display: grid; place-items: center; width: 78px; height: 78px; border-radius: 22px; background: var(--success); color: #fff; }
.approval-panel__mark .icon { width: 38px; height: 38px; }
.approval-panel h2 { margin-bottom: 10px; font-size: clamp(2rem,3.5vw,3.4rem); }
.approval-panel p { margin: 0; }
.approval-panel__checks { display: grid; gap: 9px; }
.approval-panel__checks span { display: flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: .82rem; font-weight: 700; }
.approval-panel__checks .icon { color: var(--success); }
.future-section { background: var(--navy-900); color: #fff; }
.future-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.future-heading h2 { margin: 0; color: #fff; }
.future-heading h2 em { color: #9ccbff; }
.future-heading > p { margin: 0; color: rgba(255,255,255,.67); }
.future-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.future-grid article { padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.future-grid article > span { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 28px; border-radius: 14px; background: var(--grad-cta); color: #fff; }
.future-grid h3 { color: #fff; }
.future-grid p { margin: 0; color: rgba(255,255,255,.65); font-size: .86rem; }

/* Platform */
.section-nav { position: sticky; z-index: 10; top: var(--header-h); background: rgba(255,255,255,.94); border-bottom: 1px solid var(--ghost); backdrop-filter: blur(14px); }
.section-nav .container { display: flex; gap: 22px; padding-block: 13px; overflow-x: auto; scrollbar-width: none; }
.section-nav a { flex: 0 0 auto; color: var(--ink-2); font-size: .72rem; font-weight: 800; text-decoration: none; }
.section-nav a:hover { color: var(--primary); }
.split-feature { display: grid; grid-template-columns: minmax(0,.8fr) minmax(450px,1.2fr); align-items: center; gap: 80px; }
.split-feature__copy h2 { margin-bottom: 24px; }
.split-feature__copy > p { margin-bottom: 30px; }
.detail-list { display: grid; gap: 18px; }
.detail-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.detail-list > div > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--primary-050); color: var(--primary); }
.detail-list h3 { margin-bottom: 3px; font-size: 1rem; }
.detail-list p { margin: 0; font-size: .82rem; }
.shot-pair { position: relative; display: flex; align-items: center; justify-content: center; min-height: 630px; }
.shot-pair .product-shot { position: absolute; width: 320px; }
.shot-pair .product-shot:first-child { left: 0; transform: rotate(-3deg); }
.shot-pair .product-shot:last-child { right: 0; transform: translateY(36px) rotate(3deg); }
.shot-pair .product-shot__viewport { max-height: 500px; }
.zones-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); align-items: center; gap: 80px; }
.zones-grid h2 { margin-bottom: 20px; }
.zone-cloud { display: flex; flex-wrap: wrap; align-content: center; gap: 11px; min-height: 230px; }
.zone-cloud span { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 99px; background: #fff; box-shadow: var(--shadow-1); color: var(--ink-2); font-weight: 700; }
.zone-cloud .icon { color: var(--primary); }
.modes-section { background: #fff; }
.mode-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.mode-grid article { position: relative; min-height: 380px; padding: 30px; border: 1px solid var(--ghost); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; }
.mode-grid__index { position: absolute; top: 25px; right: 27px; color: var(--primary-100); font-family: var(--font-display); font-size: 3rem; font-weight: 800; }
.mode-grid article > p { margin: 22px 0 5px; color: var(--primary); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mode-grid h3 { font-size: 1.7rem; }
.mode-grid ol { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 32px; list-style: none; }
.mode-grid ol li { padding: 7px 10px; border-radius: 99px; background: #fff; box-shadow: var(--shadow-1); color: var(--ink-2); font-size: .7rem; font-weight: 700; }
.mode-grid__urgent { background: var(--primary-700) !important; }
.mode-grid__urgent .mode-grid__index { color: rgba(255,255,255,.08); }
.mode-grid__urgent .icon-tile { background: var(--orange); color: #fff; }
.mode-grid__urgent > p { color: var(--orange) !important; }
.mode-grid__urgent h3 { color: #fff; }
.mode-grid__urgent ol li { background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); box-shadow: none; }
.address-section { padding: 56px 0; background: var(--surface-alt); }
.address-panel { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 30px; padding: 36px 40px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-1); }
.address-panel__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; background: var(--primary-050); color: var(--primary); }
.address-panel__icon .icon { width: 30px; height: 30px; }
.address-panel h2 { margin-bottom: 10px; font-size: clamp(1.8rem,3.2vw,3.1rem); }
.address-panel p:last-child { margin: 0; }
.emergency-section { background: var(--navy-900); color: #fff; }
.emergency-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(340px,1.15fr); align-items: center; gap: 86px; }
.emergency-copy h2 { color: #fff; }
.emergency-copy h2 em { color: #9ccbff; }
.emergency-copy > p { color: rgba(255,255,255,.67); }
.emergency-examples { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.emergency-examples span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; color: rgba(255,255,255,.72); font-size: .72rem; }
.product-shot--dark { width: min(100%,470px); margin: auto; }
.product-shot--dark .product-shot__viewport { max-height: 530px; }
.budget-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.budget-grid article { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 30px; border: 1px solid var(--ghost); border-radius: var(--radius-lg); background: #fff; }
.budget-grid article > span { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--purple-050); color: var(--purple); }
.budget-grid article:last-child > span { background: var(--success-050); color: var(--success); }
.budget-grid h3 { margin-bottom: 8px; }
.budget-grid p:last-child { margin: 0; font-size: .87rem; }
.wide-shot { display: grid; place-items: center; margin-top: 42px; }
.wide-shot .product-shot { width: min(100%,760px); }
.wide-shot .product-shot__viewport { max-height: 520px; }
.evidence-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1.2fr); align-items: center; gap: 84px; }
.evidence-copy h2 { margin-bottom: 24px; }
.evidence-copy > p { margin-bottom: 28px; }
.tracking-stack { position: relative; display: grid; place-items: center; }
.tracking-stack .product-shot { width: min(100%,660px); }
.tracking-stack .product-shot__viewport { max-height: 480px; }
.tracking-stack .product-shot__viewport img { object-position: center; }
.evidence-note { position: absolute; right: -22px; bottom: 36px; display: grid; grid-template-columns: 42px 1fr; gap: 12px; max-width: 280px; padding: 16px; border-radius: 15px; background: #fff; box-shadow: var(--shadow-2); }
.evidence-note > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--success-050); color: var(--success); }
.evidence-note strong { font-size: .8rem; }
.evidence-note p { margin: 2px 0 0; font-size: .7rem; line-height: 1.35; }
.operations-group { background: #fff; }
.operations-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.operations-grid article { min-height: 300px; padding: 28px; border: 1px solid var(--ghost); border-radius: var(--radius-lg); background: var(--surface); }
.operations-grid article > span { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 36px; border-radius: 14px; background: var(--primary-050); color: var(--primary); }
.operations-grid h3 { font-size: 1.45rem; }
.operations-grid p:not(.overline) { margin-bottom: 0; }
.operations-grid small { display: block; margin-top: 12px; color: var(--orange-dk); font-weight: 700; }
.wide-shot--orders .product-shot { width: min(100%,790px); }
.wide-shot--orders .product-shot__viewport { max-height: 500px; }

/* Managers */
.manager-signal { background: var(--primary-700); color: #fff; }
.manager-signal__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.manager-signal__grid > div { padding: 24px 30px; border-left: 1px solid rgba(255,255,255,.12); }
.manager-signal__grid > div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.manager-signal strong, .manager-signal span { display: block; }
.manager-signal strong { color: #fff; font-family: var(--font-display); font-size: 1.55rem; }
.manager-signal span { color: rgba(255,255,255,.65); font-size: .72rem; }
.benefit-bento { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-auto-rows: minmax(220px,auto); gap: 14px; }
.benefit-bento article { display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; border: 1px solid var(--ghost); border-radius: var(--radius-lg); background: #fff; }
.benefit-bento article > span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: auto; border-radius: 14px; background: var(--primary-050); color: var(--primary); }
.benefit-bento h3 { margin: 24px 0 7px; font-size: 1.35rem; }
.benefit-bento p { margin: 0; font-size: .84rem; }
.benefit-bento__large { grid-column: span 2; display: grid !important; grid-template-columns: 70px 1fr; align-items: end; gap: 26px; background: var(--primary-700) !important; }
.benefit-bento__large > span { margin: 0 !important; background: var(--orange) !important; color: #fff !important; }
.benefit-bento__large .overline { color: var(--orange); }
.benefit-bento__large h3 { margin-top: 8px; color: #fff; font-size: 2rem; }
.benefit-bento__large p { color: rgba(255,255,255,.68); }
.benefit-bento__urgent { background: linear-gradient(135deg,#fff,var(--error-050)) !important; }
.benefit-bento__urgent > span { background: var(--error-050) !important; color: var(--error) !important; }
.portfolio-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr); align-items: center; gap: 86px; }
.portfolio-grid h2 { margin-bottom: 22px; }
.audience-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.audience-tags span { padding: 8px 11px; border-radius: 99px; background: #fff; box-shadow: var(--shadow-1); color: var(--ink-2); font-size: .72rem; font-weight: 700; }
.portfolio-grid .product-shot { margin: auto; }
.horizontal-steps { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; list-style: none; }
.horizontal-steps li { min-height: 250px; padding: 22px; border-top: 3px solid var(--primary-100); border-radius: 0 0 var(--radius) var(--radius); background: var(--surface); }
.horizontal-steps li > span { color: var(--orange-dk); font-size: .7rem; font-weight: 800; }
.horizontal-steps h3 { margin: 42px 0 8px; }
.horizontal-steps p { margin: 0; font-size: .82rem; }
.manager-flow__actions { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.coverage-section { padding-top: 20px; background: #fff; }
.coverage-panel { display: grid; grid-template-columns: minmax(0,.65fr) minmax(0,1.35fr); align-items: center; gap: 60px; padding: 46px; border-radius: var(--radius-xl); background: var(--navy-900); color: #fff; overflow: hidden; }
.coverage-panel h2 { color: #fff; font-size: clamp(2rem,3.6vw,3.5rem); }
.coverage-panel p { margin: 0; color: rgba(255,255,255,.65); }
.coverage-map { position: relative; min-height: 330px; border: 1px solid rgba(255,255,255,.12); border-radius: 50% 45% 42% 48%; background: radial-gradient(circle at 62% 48%,rgba(24,119,242,.5),transparent 46%), rgba(255,255,255,.04); }
.coverage-map i { position: absolute; inset: 13%; border: 1px dashed rgba(255,255,255,.13); border-radius: inherit; }
.coverage-map span { position: absolute; top: var(--y); left: var(--x); transform: translate(-50%,-50%); padding: 5px 8px; border-radius: 99px; background: #fff; color: var(--primary-700); font-size: .57rem; font-weight: 800; white-space: nowrap; }
.coverage-map span::before { position: absolute; top: 50%; left: 50%; z-index: -1; width: 18px; height: 18px; transform: translate(-50%,-50%); border-radius: 50%; background: var(--orange); content: ""; opacity: .7; }
.related-concierge { background: var(--surface); }
.related-concierge__inner { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 70px; }
.related-concierge__inner h2 { margin-bottom: 18px; }
.related-concierge__cards { display: grid; gap: 10px; }
.related-concierge__cards span { display: flex; align-items: center; gap: 12px; padding: 17px 18px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-1); color: var(--ink-2); font-weight: 700; }
.related-concierge__cards .icon { color: var(--primary); }

/* Providers */
.provider-ribbon { background: var(--orange); }
.provider-ribbon .container { display: grid; grid-template-columns: repeat(6,1fr); }
.provider-ribbon span { display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 74px; border-left: 1px solid rgba(255,255,255,.28); color: var(--primary-700); font-size: .72rem; font-weight: 800; }
.provider-ribbon span:last-child { border-right: 1px solid rgba(255,255,255,.28); }
.provider-feature-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.provider-feature-grid article { min-height: 260px; padding: 26px; border: 1px solid var(--ghost); border-radius: var(--radius-lg); background: #fff; }
.provider-feature-grid article > span { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 38px; border-radius: 14px; background: var(--primary-050); color: var(--primary); }
.provider-feature-grid h3 { font-size: 1.35rem; }
.provider-feature-grid p { margin: 0; font-size: .84rem; }
.provider-flow__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: 80px; }
.provider-flow__grid h2 { margin-bottom: 34px; }
.vertical-steps { position: relative; display: grid; gap: 8px; list-style: none; }
.vertical-steps::before { position: absolute; top: 22px; bottom: 22px; left: 20px; width: 1px; background: var(--primary-100); content: ""; }
.vertical-steps li { position: relative; z-index: 1; display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 13px 0; }
.vertical-steps li > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-size: .64rem; font-weight: 800; }
.vertical-steps h3 { margin-bottom: 2px; font-size: 1rem; }
.vertical-steps p { margin: 0; font-size: .8rem; }
.provider-flow__visual { position: relative; display: grid; place-items: center; }
.provider-flow__visual .product-shot { width: 320px; }
.provider-status-card { position: absolute; right: -18px; bottom: 40px; display: grid; gap: 6px; width: 230px; padding: 17px; border-radius: 15px; background: #fff; box-shadow: var(--shadow-2); }
.provider-status-card > div { display: grid; grid-template-columns: 25px 1fr; align-items: center; gap: 8px; }
.provider-status-card > div > span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--primary-050); color: var(--primary); font-size: .58rem; font-weight: 800; }
.provider-status-card strong { font-size: .73rem; }
.provider-status-card > i { width: 1px; height: 8px; margin-left: 12px; background: var(--primary-100); }
.provider-beta { padding: 70px 0; background: #fff; }
.provider-beta__panel { display: grid; grid-template-columns: 220px minmax(0,1fr) auto; align-items: center; gap: 42px; padding: 38px; border-radius: var(--radius-xl); background: var(--primary-700); color: #fff; }
.provider-beta__counter strong, .provider-beta__counter span { display: block; }
.provider-beta__counter strong { color: #fff; font-family: var(--font-display); font-size: 2.8rem; line-height: 1; }
.provider-beta__counter span { margin-top: 5px; color: rgba(255,255,255,.6); font-size: .64rem; }
.provider-beta__counter > div { height: 6px; margin-top: 14px; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; }
.provider-beta__counter i { display: block; height: 100%; background: var(--orange); }
.provider-beta h2 { margin-bottom: 8px; color: #fff; font-size: clamp(1.8rem,3vw,3rem); }
.provider-beta p { margin: 0; color: rgba(255,255,255,.65); }
.provider-future { padding-top: 30px; }
.provider-future__grid { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 30px; padding: 36px; border: 1px solid var(--ghost); border-radius: var(--radius-lg); background: var(--surface); }
.provider-future__icon { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 20px; background: var(--primary-050); color: var(--primary); }
.provider-future h2 { margin-bottom: 6px; font-size: clamp(1.8rem,3vw,2.8rem); }
.provider-future p { margin: 0; }
.provider-future a { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-weight: 800; text-decoration: none; white-space: nowrap; }

/* Concierge */
.page-concierge .page-intro__grid { grid-template-columns: minmax(0,.8fr) minmax(500px,1.2fr); gap: 52px; }
.concierge-explanation { background: #fff; }
.concierge-explanation .section-heading > p { max-width: 760px; }
.concierge-steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin-top: 64px; list-style: none; }
.concierge-steps li { padding: 22px; border-top: 2px solid var(--primary-100); background: var(--surface); }
.concierge-steps li > span { color: var(--orange-dk); font-size: .68rem; font-weight: 800; }
.concierge-steps h3 { margin: 28px 0 5px; }
.concierge-steps p { margin: 0; font-size: .8rem; }
.experience-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.experience-grid article { display: flex; align-items: center; gap: 12px; min-height: 110px; padding: 18px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-1); }
.experience-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; background: var(--primary-050); color: var(--primary); }
.experience-grid h3 { margin: 0; font-size: .96rem; }
.pm-concierge-section { background: #fff; }
.pm-concierge-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(330px,.95fr); align-items: center; gap: 90px; }
.pm-concierge-copy h2 { margin-bottom: 22px; }
.pm-concierge-copy > p { margin-bottom: 28px; }
.pm-concierge-notice { display: grid; grid-template-columns: 38px 1fr; gap: 12px; margin-top: 28px; padding: 14px; border-radius: 13px; background: var(--warn-050); }
.pm-concierge-notice > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: #fff; color: var(--amber); }
.pm-concierge-notice p { margin: 0; color: var(--amber); font-size: .78rem; }
.product-shot--concierge-admin { width: 340px; margin: auto; transform: rotate(2deg); }
.product-shot--concierge-admin .product-shot__viewport { max-height: 520px; }
.guest-ai-section { padding-top: 0; background: #fff; }
.guest-ai-panel { display: grid; grid-template-columns: 90px minmax(0,1fr) minmax(260px,.6fr); align-items: center; gap: 30px; padding: 38px; border-radius: var(--radius-xl); background: var(--grad-ai); color: #fff; }
.guest-ai-panel__orb { display: grid; place-items: center; width: 82px; aspect-ratio: 1; border: 3px solid rgba(255,255,255,.7); border-radius: 50%; background: linear-gradient(158deg,#2f80e8,#0a4fc0); }
.guest-ai-panel__orb img { width: 74%; }
.guest-ai-panel h2 { margin-bottom: 8px; color: #fff; font-size: clamp(1.8rem,3.3vw,3.2rem); }
.guest-ai-panel p { margin: 0; color: rgba(255,255,255,.68); }
.guest-ai-panel__steps { display: grid; gap: 9px; }
.guest-ai-panel__steps span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.78); font-size: .78rem; font-weight: 700; }
.guest-ai-panel__steps .icon { color: var(--orange); }

/* Tutorial */
.tutorial-page { background: #fff; }
.tutorial-tabs { max-width: 1120px; margin: 0 auto; }
.tab-list { display: inline-flex; gap: 6px; margin-bottom: 28px; padding: 5px; border-radius: 13px; background: var(--surface-alt); }
.tab-list button { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 9px 16px; border: 0; border-radius: 9px; background: transparent; color: var(--ink-2); font-weight: 800; cursor: pointer; }
.tab-list button[aria-selected="true"] { background: #fff; color: var(--primary); box-shadow: var(--shadow-1); }
.tutorial-panel { display: grid; grid-template-columns: minmax(0,.82fr) minmax(380px,1.18fr); gap: 36px; }
.tutorial-steps { display: grid; align-content: start; gap: 7px; }
.tutorial-step { display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 13px; padding: 14px; border: 1px solid transparent; border-radius: 14px; background: var(--surface); text-align: left; cursor: pointer; }
.tutorial-step > span:first-child { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: #fff; color: var(--primary); font-size: .65rem; font-weight: 800; }
.tutorial-step strong, .tutorial-step small { display: block; }
.tutorial-step strong { color: var(--ink); font-size: .86rem; line-height: 1.3; }
.tutorial-step small { margin-top: 3px; color: var(--ink-3); font-size: .7rem; line-height: 1.35; }
.tutorial-step.is-active { border-color: var(--primary-200); background: var(--primary-050); }
.tutorial-step.is-active > span:first-child { background: var(--primary); color: #fff; }
.tutorial-preview { padding: 14px; border-radius: var(--radius-lg); background: var(--navy-900); }
.tutorial-preview__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 54px; padding: 6px 8px 14px; }
.tutorial-preview__head > strong { color: #fff; font-size: .78rem; text-align: right; }
.tutorial-preview-label { display: inline-flex; align-items: center; gap: 6px; color: #9ccbff; font-size: .67rem; font-weight: 800; }
.tutorial-preview__device { position: relative; display: grid; place-items: center; height: 590px; border-radius: 17px; background: var(--surface); overflow: hidden; }
.tutorial-preview__device > img { width: 100%; height: 100%; object-fit: contain; object-position: top center; }
.how-summary { background: var(--surface-alt); }
.how-summary__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.how-summary article { padding: 34px; border-radius: var(--radius-lg); background: #fff; }
.how-summary article > span { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 34px; border-radius: 15px; background: var(--primary-050); color: var(--primary); }
.how-summary h2 { margin-bottom: 16px; font-size: clamp(1.8rem,3vw,3rem); }

/* Plans */
.plan-stack { position: relative; width: min(100%,520px); min-height: 390px; margin: auto; }
.plan-stack > div { position: absolute; display: grid; grid-template-columns: 1fr auto; align-items: center; width: 78%; padding: 22px 24px; border: 1px solid var(--ghost); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-2); }
.plan-stack > div:nth-child(1) { top: 6%; left: 0; transform: rotate(-3deg); }
.plan-stack > div:nth-child(2) { top: 34%; right: 0; z-index: 2; transform: rotate(2deg); background: var(--primary-700); color: #fff; }
.plan-stack > div:nth-child(3) { bottom: 2%; left: 6%; transform: rotate(-1deg); }
.plan-stack span, .plan-stack small { display: block; }
.plan-stack span { font-family: var(--font-display); font-weight: 800; }
.plan-stack strong { grid-row: span 2; color: var(--primary); font-family: var(--font-display); font-size: 2.3rem; }
.plan-stack small { color: var(--ink-3); font-size: .7rem; }
.plan-stack > div:nth-child(2) strong { color: var(--orange); }
.plan-stack > div:nth-child(2) small { color: rgba(255,255,255,.6); }
.plans-main { background: #fff; }
.plans-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.plan-card { display: flex; min-height: 520px; flex-direction: column; padding: 32px; border: 1px solid var(--ghost); border-radius: var(--radius-lg); background: var(--surface); }
.plan-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 45px; }
.plan-card__tag { padding: 5px 9px; border-radius: 99px; background: #fff; color: var(--ink-3); font-size: .65rem; font-weight: 800; }
.plan-card h2 { margin-bottom: 12px; font-size: clamp(2rem,3vw,3.1rem); }
.plan-card__ai { display: block; margin-bottom: 28px; color: var(--primary); }
.plan-card .check-list { margin-bottom: 30px; }
.plan-card .button { align-self: flex-start; margin-top: auto; }
.plan-card--featured { background: var(--primary-700); }
.plan-card--featured h2 { color: #fff; }
.plan-card--featured .overline, .plan-card--featured .plan-card__ai { color: var(--orange); }
.plan-card--featured .plan-card__tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.plan-card--featured .check-list li { color: rgba(255,255,255,.7); }
.plan-card--featured .check-list li::before { background: rgba(255,255,255,.1); color: #fff; }
.plan-card--enterprise { background: linear-gradient(145deg,#fff,var(--primary-050)); }
.plan-continuity { padding-top: 20px; background: #fff; }
.plan-continuity__panel { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 30px; padding: 38px; border-radius: var(--radius-lg); background: var(--surface-alt); }
.plan-continuity__panel > div:first-child { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; background: #fff; color: var(--primary); }
.plan-continuity h2 { margin-bottom: 4px; font-size: clamp(1.8rem,3vw,2.8rem); }
.plan-continuity p { margin: 0; }
.plan-continuity a { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-weight: 800; text-decoration: none; white-space: nowrap; }

/* Access */
.access-page { background: #fff; }
.access-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.access-card { display: flex; min-height: 760px; flex-direction: column; padding: 34px; border: 1px solid var(--ghost); border-radius: var(--radius-xl); background: var(--surface); overflow: hidden; }
.access-card__art { position: relative; display: grid; place-items: center; height: 160px; margin: -34px -34px 34px; background: var(--primary-050); overflow: hidden; }
.access-card__art > span { position: relative; z-index: 1; display: grid; place-items: center; width: 76px; height: 76px; border-radius: 22px; background: #fff; color: var(--primary); box-shadow: var(--shadow-2); }
.access-card__art > span .icon { width: 34px; height: 34px; }
.access-card__art i { position: absolute; width: 180px; height: 180px; border: 25px solid rgba(0,78,163,.06); border-radius: 50%; }
.access-card__art i:nth-of-type(1) { left: -70px; }
.access-card__art i:nth-of-type(2) { right: -60px; bottom: -110px; }
.access-card__art i:nth-of-type(3) { top: -130px; right: 20%; }
.access-card h2 { margin-bottom: 18px; font-size: clamp(2rem,3.2vw,3.2rem); }
.access-card > p:not(.overline) { margin-bottom: 26px; }
.access-card .check-list { margin-bottom: 28px; }
.access-card__meta { display: grid; gap: 7px; margin-bottom: 28px; }
.access-card__meta span { display: flex; align-items: center; gap: 7px; color: var(--ink-3); font-size: .72rem; font-weight: 700; }
.access-card .button { align-self: flex-start; margin-top: auto; }
.access-card--provider { background: var(--primary-700); }
.access-card--provider .access-card__art { background: var(--orange); }
.access-card--provider .access-card__art > span { color: var(--primary-700); }
.access-card--provider .overline { color: var(--orange); }
.access-card--provider h2 { color: #fff; }
.access-card--provider > p { color: rgba(255,255,255,.68); }
.access-card--provider .check-list li { color: rgba(255,255,255,.72); }
.access-card--provider .check-list li::before { background: rgba(255,255,255,.1); color: #fff; }
.beta-meter { margin-bottom: 28px; padding: 18px; border-radius: 14px; background: rgba(255,255,255,.08); }
.beta-meter > div:first-child { display: flex; align-items: baseline; justify-content: space-between; }
.beta-meter strong { color: #fff; font-family: var(--font-display); font-size: 1.7rem; }
.beta-meter span { color: rgba(255,255,255,.6); font-size: .7rem; }
.beta-meter > div:nth-child(2) { height: 5px; margin: 10px 0; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; }
.beta-meter i { display: block; height: 100%; background: var(--orange); }
.beta-meter small { color: var(--orange); font-size: .64rem; font-weight: 800; }
.access-help { padding-top: 20px; background: #fff; }
.access-help__inner { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 26px; padding: 34px; border-radius: var(--radius-lg); background: var(--success-050); }
.access-help__inner > span { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 17px; background: var(--success); color: #fff; }
.access-help h2 { margin-bottom: 4px; font-size: clamp(1.7rem,3vw,2.7rem); }
.access-help p { margin: 0; }
.access-help a { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-weight: 800; text-decoration: none; white-space: nowrap; }

/* FAQ */
.faq-page { background: #fff; }
.faq-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); align-items: start; gap: 70px; }
.faq-layout aside { position: sticky; top: calc(var(--header-h) + 28px); padding: 26px; border-radius: var(--radius-lg); background: var(--surface-alt); }
.faq-aside__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 28px; border-radius: 15px; background: #fff; color: var(--primary); }
.faq-layout aside h2 { margin-bottom: 12px; font-size: 2rem; }
.faq-layout aside p { font-size: .84rem; }
.faq-layout aside a { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-size: .78rem; font-weight: 800; text-decoration: none; }
.faq-list { border-top: 1px solid var(--ghost-strong); }
.faq-list details { border-bottom: 1px solid var(--ghost-strong); }
.faq-list summary { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 20px; padding: 26px 4px; color: var(--ink); font-family: var(--font-display); font-size: 1.16rem; font-weight: 800; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--primary); font-size: 1.35rem; font-weight: 500; transition: transform .18s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { padding: 0 48px 26px 4px; }
.faq-list details p { margin: 0; }

/* 404 */
.not-found { display: grid; min-height: 100svh; place-items: center; padding: 32px; background: radial-gradient(circle at 70% 20%, rgba(24,119,242,.16), transparent 34%), var(--deep); color: #fff; text-align: center; }
.not-found > div { width: min(100%, 620px); }
.not-found img { width: 92px; height: 92px; object-fit: contain; margin-bottom: 18px; }
.not-found h1 { max-width: 580px; margin: 0 auto 18px; color: #fff; font-size: clamp(2.7rem,8vw,5.4rem); }
.not-found p:not(.overline) { max-width: 480px; margin: 0 auto 30px; color: rgba(255,255,255,.72); }
.not-found .button { margin-inline: auto; }

/* Responsive */
@media (max-width: 1160px) {
  :root { --header-h: 70px; }
  .site-header { backdrop-filter: none; }
  .desktop-nav { display: none; }
  .site-header__inner { gap: 18px; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .page-intro__grid, .home-hero__grid { gap: 48px; }
  .home-hero h1 { font-size: clamp(3.2rem,6vw,5rem); }
  .process-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .process-grid__approval { grid-column: span 2; }
  .page-concierge .page-intro__grid { grid-template-columns: minmax(0,.75fr) minmax(440px,1.25fr); }
  .guest-showcase--intro .guest-device { width: 47%; }
}

@media (max-width: 920px) {
  .container { width: min(var(--container), calc(100% - 36px)); }
  .section { padding: 88px 0; }
  .page-intro { min-height: 0; padding: 42px 0 74px; }
  .page-intro__grid, .page-concierge .page-intro__grid, .home-hero__grid, .section-heading--split, .ai-story__grid, .concierge-home__grid, .ai-agent__grid, .future-heading, .split-feature, .zones-grid, .emergency-grid, .evidence-grid, .portfolio-grid, .provider-flow__grid, .pm-concierge-grid, .related-concierge__inner { grid-template-columns: 1fr; }
  .page-intro__copy { max-width: 760px; }
  .page-intro__visual { width: min(100%,650px); margin: 0 auto; }
  .home-hero { min-height: 0; padding-top: 62px; }
  .home-hero__copy { max-width: 760px; }
  .home-hero__visual { min-height: 650px; }
  .product-shot--hero { width: 360px; }
  .floating-card--top { left: 8%; }
  .floating-card--bottom { right: 8%; }
  .signal-rail__grid { grid-template-columns: repeat(3,1fr); }
  .signal-rail__grid > div { border-bottom: 1px solid rgba(255,255,255,.12); }
  .signal-rail__grid > div:nth-child(4), .signal-rail__grid > div:nth-child(5) { grid-column: span 1; }
  .audience-panel { min-height: 480px; }
  .feature-index-grid, .provider-feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .concierge-home__grid { gap: 58px; }
  .concierge-home__visual { order: 2; }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-grid__approval { grid-column: auto; }
  .approval-panel { grid-template-columns: auto 1fr; }
  .approval-panel__checks { grid-column: 1 / -1; }
  .future-grid { grid-template-columns: 1fr; }
  .shot-pair { width: min(100%,620px); margin: auto; }
  .evidence-note { right: 0; }
  .horizontal-steps { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .coverage-panel { grid-template-columns: 1fr; }
  .provider-beta__panel { grid-template-columns: 180px 1fr; }
  .provider-beta__panel .button { grid-column: 1 / -1; justify-self: start; }
  .provider-future__grid { grid-template-columns: auto 1fr; }
  .provider-future__grid > a { grid-column: 2; }
  .guest-showcase--intro { min-height: 520px; }
  .guest-showcase--intro .guest-device { width: 44%; }
  .experience-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .guest-ai-panel { grid-template-columns: 70px 1fr; }
  .guest-ai-panel__steps { grid-column: 1 / -1; grid-template-columns: repeat(3,1fr); }
  .tutorial-panel { grid-template-columns: 1fr; }
  .tutorial-preview { max-width: 680px; margin: auto; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 500px; }
  .access-grid { grid-template-columns: 1fr; }
  .access-card { min-height: 700px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-layout aside { position: static; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2,1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.7rem,14vw,4.2rem); }
  h2 { font-size: clamp(2.05rem,10vw,3.25rem); }
  .header-actions .header-cta { display: none; }
  .brand-symbol { width: 34px; height: 34px; }
  .brand-word { font-size: 1.14rem; }
  .page-intro { padding-top: 28px; }
  .breadcrumbs { margin-bottom: 38px; }
  .page-intro__grid { gap: 52px; }
  .page-intro__copy h1 { font-size: clamp(2.65rem,13vw,4rem); }
  .page-intro__copy > p { font-size: .98rem; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .home-hero { padding-top: 32px; }
  .home-hero .eyebrow { margin-bottom: 16px; }
  .home-hero h1 { margin-bottom: 18px; font-size: clamp(2.55rem,12vw,3.6rem); }
  .hero-lead { margin-bottom: 16px; line-height: 1.55; }
  .hero-statement { margin-bottom: 18px; }
  .hero-trust { display: grid; }
  .home-hero__visual { min-height: 590px; }
  .product-shot--hero { width: min(82%,330px); }
  .floating-card { min-width: 185px; padding: 11px 12px; }
  .floating-card--top { top: 8%; left: 0; }
  .floating-card--bottom { right: 0; bottom: 10%; }
  .signal-rail__grid { grid-template-columns: repeat(2,1fr); }
  .signal-rail__grid > div { min-height: 96px; padding: 18px; }
  .signal-rail__grid > div:first-child { grid-column: 1 / -1; }
  .section-heading--split { gap: 20px; }
  .comparison-grid, .audience-panels, .feature-index-grid, .route-cards, .mode-grid, .budget-grid, .operations-grid, .benefit-bento, .provider-feature-grid, .how-summary__grid, .access-grid { grid-template-columns: 1fr; }
  .comparison-card { padding: 25px; }
  .comparison-card .check-list { grid-template-columns: 1fr; }
  .audience-panel { min-height: 500px; padding: 28px; }
  .audience-panel__link { left: 28px; }
  .feature-index-grid a { min-height: 150px; }
  .guest-device { border-radius: 39px; }
  .guest-device__screen { border-radius: 33px; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 30px; }
  .cta-band .button { min-width: 0; width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 300px; }
  .approval-panel { grid-template-columns: 1fr; padding: 28px; }
  .future-heading { gap: 20px; }
  .section-nav .container { width: 100%; padding-inline: 14px; }
  .split-feature, .evidence-grid { gap: 50px; }
  .shot-pair { min-height: 570px; }
  .shot-pair .product-shot { width: 265px; }
  .shot-pair .product-shot:first-child { left: 0; }
  .shot-pair .product-shot:last-child { right: 0; }
  .zone-cloud { min-height: 0; }
  .mode-grid article { min-height: 340px; padding: 25px; }
  .address-panel { grid-template-columns: 1fr; padding: 28px; }
  .address-panel .button { width: 100%; }
  .emergency-grid { gap: 48px; }
  .budget-grid article { grid-template-columns: 48px 1fr; padding: 24px; }
  .budget-grid article > span { width: 46px; height: 46px; }
  .evidence-note { position: relative; right: auto; bottom: auto; margin-top: -20px; }
  .operations-grid article { min-height: 260px; }
  .manager-signal__grid { grid-template-columns: 1fr; }
  .manager-signal__grid > div { border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
  .benefit-bento__large { grid-column: auto; display: flex !important; }
  .benefit-bento__large > span { margin-bottom: auto !important; }
  .horizontal-steps { grid-template-columns: 1fr; }
  .horizontal-steps li { min-height: 180px; }
  .horizontal-steps h3 { margin-top: 28px; }
  .manager-flow__actions { flex-direction: column; }
  .coverage-panel { padding: 28px; }
  .coverage-map { min-height: 270px; }
  .related-concierge__inner { gap: 40px; }
  .provider-ribbon .container { width: 100%; grid-template-columns: repeat(3,1fr); }
  .provider-ribbon span { min-height: 62px; }
  .provider-flow__grid { gap: 50px; }
  .provider-status-card { right: 0; }
  .provider-beta__panel { grid-template-columns: 1fr; padding: 28px; }
  .provider-beta__panel .button { grid-column: auto; width: 100%; }
  .provider-future__grid { grid-template-columns: 1fr; }
  .provider-future__grid > a { grid-column: auto; white-space: normal; }
  .guest-showcase--intro { min-height: 630px; }
  .guest-showcase--intro .guest-device { position: absolute; width: min(72%,280px); }
  .guest-showcase--intro .guest-device:first-child { left: 0; transform: translateY(70px) rotate(-4deg); }
  .guest-showcase--intro .guest-device:last-child { right: 0; transform: translateY(-30px) rotate(4deg); }
  .guest-showcase--full { flex-direction: column; align-items: center; }
  .concierge-steps, .experience-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .guest-ai-panel { grid-template-columns: 1fr; padding: 28px; }
  .guest-ai-panel__steps { grid-column: auto; grid-template-columns: 1fr; }
  .tab-list { width: 100%; }
  .tab-list button { flex: 1; justify-content: center; padding-inline: 8px; font-size: .75rem; }
  .tutorial-preview__head { align-items: flex-start; flex-direction: column; }
  .tutorial-preview__head > strong { text-align: left; }
  .tutorial-preview__device { height: 510px; }
  .plan-stack { min-height: 330px; }
  .plan-stack > div { width: 88%; padding: 18px; }
  .plan-card { min-height: 0; padding: 26px; }
  .plan-continuity__panel, .access-help__inner { grid-template-columns: 1fr; }
  .plan-continuity__panel a, .access-help__inner a { white-space: normal; }
  .access-card { min-height: 0; padding: 26px; }
  .access-card__art { margin: -26px -26px 28px; }
  .faq-list summary { font-size: 1rem; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 380px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .home-hero h1 { font-size: 2.45rem; }
  .home-hero__visual { min-height: 540px; }
  .floating-card { min-width: 165px; }
  .floating-card strong { font-size: .7rem; }
  .guest-showcase--intro .guest-device { width: 76%; }
  .concierge-steps, .experience-grid { grid-template-columns: 1fr; }
  .provider-ribbon span { font-size: .62rem; }
  .tutorial-preview__device { height: 450px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
}

/* Motion system */
.site-header::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; transform: scaleX(var(--scroll-progress, 0)); transform-origin: left; background: linear-gradient(90deg, var(--orange), var(--blue)); box-shadow: 0 0 16px rgba(24,119,242,.38); content: ""; }

.button:not(.button--text) { position: relative; isolation: isolate; overflow: hidden; }
.button:not(.button--text)::before { position: absolute; z-index: -1; top: -120%; bottom: -120%; left: -42%; width: 34%; transform: translateX(-220%) rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent); content: ""; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.button:not(.button--text):hover::before { transform: translateX(520%) rotate(18deg); }

html.motion-ready [data-motion] { --motion-enter: translate3d(0, 34px, 0); opacity: 0; filter: blur(7px); transform: var(--motion-enter); transition-property: opacity, transform, filter; transition-duration: .72s, .88s, .68s; transition-delay: var(--motion-delay, 0ms); transition-timing-function: ease, cubic-bezier(.16,1,.3,1), ease; will-change: opacity, transform, filter; }
html.motion-ready [data-motion="fade"] { --motion-enter: translate3d(0, 0, 0); }
html.motion-ready [data-motion="zoom"] { --motion-enter: translate3d(0, 22px, 0) scale(.92); }
html.motion-ready [data-motion="slide-left"] { --motion-enter: translate3d(-54px, 12px, 0) rotate(-1.2deg); }
html.motion-ready [data-motion="slide-right"] { --motion-enter: translate3d(54px, 12px, 0) rotate(1.2deg); }
html.motion-ready [data-motion="pop"] { --motion-enter: translate3d(0, 22px, 0) scale(.82) rotate(-2deg); }
html.motion-ready [data-motion].is-visible { opacity: 1; filter: blur(0); transform: none; }
html.motion-ready [data-motion].motion-settled { transition-delay: 0ms; will-change: auto; }

html.motion-ready [data-parallax] { transform: translate3d(var(--pointer-x, 0px), calc(var(--parallax-y, 0px) + var(--pointer-y, 0px)), 0); transition: transform .12s linear; will-change: transform; }
html.motion-ready [data-motion][data-parallax]:not(.is-visible) { transform: var(--motion-enter); }

html.motion-ready [data-motion][data-tilt].is-visible { transform: perspective(1000px) translateY(var(--tilt-lift, 0px)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transform-style: preserve-3d; backface-visibility: hidden; }
html.motion-ready [data-tilt].motion-settled { transition: transform .18s ease, box-shadow .22s ease; }
html.motion-ready [data-tilt]:hover { --tilt-lift: -5px; }

.home-hero::before, .page-intro::before { transform-origin: center; animation: motion-grid-breathe 14s ease-in-out infinite alternate; }
.home-hero__glow { animation: motion-glow-drift 11s ease-in-out infinite alternate; }
.hero-orbit--one { animation: motion-orbit 28s linear infinite; }
.hero-orbit--two { animation: motion-orbit-reverse 19s linear infinite; }
.product-shot--hero { animation: motion-device-float 6.2s ease-in-out infinite; }
.page-intro__visual > .product-shot, .product-shot--concierge-admin { animation: motion-device-float 7.5s ease-in-out infinite; }
.floating-card--top { animation: motion-card-float 5.2s ease-in-out infinite; }
.floating-card--bottom { animation: motion-card-float 5.2s 1.1s ease-in-out infinite reverse; }
.guest-showcase .guest-device:first-child, .concierge-home__visual .guest-device { animation: motion-device-float 7.4s ease-in-out infinite; }
.guest-showcase .guest-device:last-child { animation: motion-device-float 7.4s 1.2s ease-in-out infinite reverse; }
.guest-orb img, .guest-ai-face img, .guest-ai-panel__orb img { animation: motion-ai-pulse 3.4s ease-in-out infinite; }
.eyebrow .icon { animation: motion-icon-pulse 3s ease-in-out infinite; }

.comparison-card--after::before { position: absolute; z-index: 0; top: -30%; bottom: -30%; left: -45%; width: 34%; transform: skewX(-18deg); background: linear-gradient(90deg, transparent, rgba(91,196,37,.12), transparent); content: ""; pointer-events: none; }
.motion-ready .comparison-card--after.is-visible::before { animation: motion-card-sweep 1.15s .45s cubic-bezier(.2,.8,.2,1) both; }
.comparison-card > *, .audience-panel > *, .plan-card > *, .access-card > * { position: relative; z-index: 1; }

.ai-steps li, .process-grid li, .horizontal-steps li, .tutorial-step { position: relative; overflow: hidden; }
.ai-steps li::after, .process-grid li::after, .horizontal-steps li::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--orange), var(--blue)); content: ""; transition: transform .8s cubic-bezier(.16,1,.3,1) var(--motion-delay, 0ms); }
.motion-ready .ai-steps li.is-visible::after, .motion-ready .process-grid li.is-visible::after, .motion-ready .horizontal-steps li.is-visible::after { transform: scaleX(1); }
.tutorial-step::after { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; transform: scaleY(0); transform-origin: top; background: linear-gradient(var(--orange), var(--blue)); content: ""; transition: transform .38s cubic-bezier(.16,1,.3,1); }
.tutorial-step.is-active::after { transform: scaleY(1); }

.cta-band { position: relative; isolation: isolate; overflow: hidden; }
.cta-band::before, .cta-band::after { position: absolute; z-index: -1; width: 420px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.cta-band::before { top: -250px; right: -70px; box-shadow: inset 0 0 0 70px rgba(255,255,255,.025), inset 0 0 0 140px rgba(255,255,255,.02); animation: motion-cta-orbit 12s ease-in-out infinite alternate; }
.cta-band::after { bottom: -330px; left: -100px; width: 500px; box-shadow: inset 0 0 0 90px rgba(245,158,11,.035); animation: motion-cta-orbit 15s 1s ease-in-out infinite alternate-reverse; }
.cta-band__inner { position: relative; z-index: 1; }

.mobile-menu[aria-hidden="false"] { animation: motion-menu-backdrop .28s ease both; }
.mobile-menu[aria-hidden="false"] nav > * { opacity: 0; animation: motion-menu-item .42s cubic-bezier(.16,1,.3,1) forwards; }
.mobile-menu[aria-hidden="false"] nav > *:nth-child(2) { animation-delay: 35ms; }
.mobile-menu[aria-hidden="false"] nav > *:nth-child(3) { animation-delay: 70ms; }
.mobile-menu[aria-hidden="false"] nav > *:nth-child(4) { animation-delay: 105ms; }
.mobile-menu[aria-hidden="false"] nav > *:nth-child(5) { animation-delay: 140ms; }
.mobile-menu[aria-hidden="false"] nav > *:nth-child(6) { animation-delay: 175ms; }
.mobile-menu[aria-hidden="false"] nav > *:nth-child(7) { animation-delay: 210ms; }
.mobile-menu[aria-hidden="false"] nav > *:nth-child(8) { animation-delay: 245ms; }
.mobile-menu[aria-hidden="false"] nav > *:nth-child(9) { animation-delay: 280ms; }
.mobile-menu[aria-hidden="false"] nav > *:nth-child(10) { animation-delay: 315ms; }

.tutorial-panel.is-switching { animation: motion-panel-switch .48s cubic-bezier(.16,1,.3,1) both; }
.tutorial-preview__device.is-switching img { animation: motion-preview-switch .58s cubic-bezier(.16,1,.3,1) both; }
.faq-list details[open] > div { animation: motion-faq-open .38s cubic-bezier(.16,1,.3,1) both; }

/* Vivid motion scenes */
.icon--spark, .icon--star, .eyebrow .icon.icon--spark, .eyebrow .icon.icon--star { transform-origin: center; animation: vivid-star-twinkle 1.65s cubic-bezier(.4,0,.2,1) infinite; }
.eyebrow { position: relative; }
.eyebrow:has(.icon--spark)::after { position: absolute; top: -13px; left: 13px; color: var(--orange); filter: drop-shadow(0 0 8px rgba(245,158,11,.9)); font-size: .72rem; content: "✦"; animation: vivid-star-particle 2.2s .35s ease-in-out infinite; }

.page-intro--dark, .cta-band, .future-section, .emergency-section, .manager-signal, .coverage-panel {
  background-color: var(--navy-900);
  background-image: linear-gradient(125deg,#081d44 0%,#0b3474 27%,#0758b4 49%,#10295d 72%,#071936 100%);
  background-size: 260% 260%;
  animation: vivid-gradient-flow 13s ease-in-out infinite;
}
.audience-panel--provider, .ai-steps__approval, .process-grid__approval, .mode-grid__urgent, .benefit-bento__large {
  background-image: linear-gradient(125deg,#05346d 0%,#0869d3 32%,#0a356d 62%,#081f49 100%) !important;
  background-size: 260% 260% !important;
  animation: vivid-gradient-flow 10s ease-in-out infinite;
}
.comparison-card--after, .plan-card--enterprise {
  background-image: linear-gradient(125deg,#fff 0%,#eaffdf 28%,#dfffd0 50%,#f7fff3 72%,#fff 100%);
  background-size: 260% 260%;
  animation: vivid-gradient-flow 11s ease-in-out infinite;
}
.benefit-bento__urgent {
  background-image: linear-gradient(125deg,#fff 0%,#fff0ed 30%,#ffe2dd 50%,#fff8f6 72%,#fff 100%) !important;
  background-size: 260% 260% !important;
  animation: vivid-gradient-flow 9s ease-in-out infinite;
}
.guest-device--qr .guest-device__screen, .guest-home__header, .guest-ai-card, .guest-ai-panel {
  background-image: linear-gradient(125deg,#071f4c 0%,#075fc5 32%,#294fc9 54%,#08468e 73%,#061b45 100%);
  background-size: 260% 260%;
  animation: vivid-gradient-flow 10s ease-in-out infinite;
}

.icon-tile, .agent-actions article > span, .budget-grid article > span, .approval-panel__mark,
.future-grid article > span, .operations-grid article > span, .benefit-bento article > span,
.address-panel__icon, .evidence-note > span, .guest-property-icon, .guest-category > span {
  --vivid-glow: rgba(24,119,242,.44);
  position: relative;
  isolation: isolate;
  box-shadow: 0 0 0 0 var(--vivid-glow), 0 8px 24px rgba(24,119,242,.18);
  animation: vivid-badge-glow 2.8s ease-in-out infinite;
}
.icon-tile::after, .agent-actions article > span::after, .budget-grid article > span::after,
.approval-panel__mark::after, .future-grid article > span::after, .operations-grid article > span::after,
.benefit-bento article > span::after, .address-panel__icon::after, .evidence-note > span::after {
  position: absolute;
  z-index: -1;
  inset: -7px;
  border: 1px solid color-mix(in srgb, currentColor 42%, transparent);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  animation: vivid-halo-ring 2.8s ease-out infinite;
}
.guest-property-icon::after, .guest-category > span::after { position: absolute; z-index: -1; inset: -7px; border: 1px solid color-mix(in srgb,currentColor 42%,transparent); border-radius: inherit; content: ""; pointer-events: none; animation: vivid-halo-ring 2.8s ease-out infinite; }
.process-grid__approval .icon-tile, .mode-grid__urgent .icon-tile, .future-grid article > span,
.benefit-bento__large > span { --vivid-glow: rgba(245,158,11,.56); }
.approval-panel__mark, .budget-grid article:last-child > span, .evidence-note > span { --vivid-glow: rgba(61,155,0,.5); }

.audience-tags span, .zone-cloud span, .emergency-examples span, .related-concierge__cards span,
.plan-card__tag, .provider-ribbon span, .guest-lang, .comparison-card__label span {
  animation: vivid-pill-glow 3.1s ease-in-out infinite;
}
.audience-tags span:nth-child(2n), .zone-cloud span:nth-child(2n), .emergency-examples span:nth-child(2n),
.related-concierge__cards span:nth-child(2n) { animation-delay: -1.5s; }

.ai-core__rings { animation: vivid-core-breathe 4.2s ease-in-out infinite; }
.ai-core__rings i:nth-child(1) { animation: vivid-ring-pulse 3.4s ease-in-out infinite; }
.ai-core__rings i:nth-child(2) { animation: vivid-ring-rotate 18s linear infinite; }
.ai-core__rings i:nth-child(3) { animation: vivid-ring-pulse 2.7s -1.1s ease-in-out infinite reverse; }
.ai-core__orb { animation: vivid-core-energy 3.2s ease-in-out infinite; }
.ai-core__orb::before, .ai-core__orb::after { position: absolute; inset: -18%; border: 1px solid rgba(156,203,255,.48); border-radius: 50%; content: ""; animation: vivid-core-wave 2.8s ease-out infinite; }
.ai-core__orb::after { animation-delay: 1.4s; }
.ai-core__node { box-shadow: 0 0 0 1px rgba(156,203,255,.12), 0 0 28px rgba(75,157,255,.52); }
.ai-core__node .icon { color: #cce6ff; filter: drop-shadow(0 0 7px #72b6ff); }

.process-grid li { --card-delay: 0s; animation: vivid-card-energy 7s var(--card-delay) ease-in-out infinite; }
.process-grid li:nth-child(2) { --card-delay: -5.6s; }
.process-grid li:nth-child(3) { --card-delay: -4.2s; }
.process-grid li:nth-child(4) { --card-delay: -2.8s; }
.process-grid li:nth-child(5) { --card-delay: -1.4s; }
.process-grid__approval { --card-energy: rgba(245,158,11,.56); }

.ai-prompt { position: relative; isolation: isolate; overflow: hidden; background-image: linear-gradient(118deg,#071f4c 0%,#075fc5 32%,#294fc9 54%,#08468e 73%,#061b45 100%); background-size: 280% 280%; box-shadow: 0 18px 44px rgba(7,73,164,.28); animation: vivid-gradient-flow 8s ease-in-out infinite, vivid-blue-panel-glow 3.6s ease-in-out infinite; }
.ai-prompt::before { position: absolute; z-index: -1; inset: -80% -35%; transform: translateX(-55%) rotate(22deg); background: linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent); content: ""; animation: vivid-panel-sweep 4.8s ease-in-out infinite; }
.ai-prompt > span { --vivid-glow: rgba(245,158,11,.68); position: relative; box-shadow: 0 0 0 0 var(--vivid-glow), 0 0 30px rgba(245,158,11,.38); animation: vivid-badge-glow 2.15s ease-in-out infinite; }
.agent-actions article { --agent-delay: 0s; border: 1px solid transparent; animation: vivid-agent-row 6s var(--agent-delay) ease-in-out infinite; }
.agent-actions article:nth-child(2) { --agent-delay: -4s; }
.agent-actions article:nth-child(3) { --agent-delay: -2s; }

.approval-panel { position: relative; isolation: isolate; overflow: hidden; background-image: linear-gradient(125deg,#fff 0%,#ecffe4 28%,#dfffd3 48%,#f8fff5 68%,#fff 100%); background-size: 260% 260%; box-shadow: 0 20px 56px rgba(61,155,0,.12); animation: vivid-gradient-flow 10s ease-in-out infinite, vivid-green-panel-glow 4s ease-in-out infinite; }
.approval-panel::before { position: absolute; z-index: -1; top: -70%; right: -10%; width: 46%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(91,196,37,.23),transparent 68%); content: ""; animation: vivid-approval-orb 6s ease-in-out infinite; }
.approval-panel__mark::before { position: absolute; z-index: -1; inset: -3px; border: 2px solid rgba(91,196,37,.68); border-radius: inherit; content: ""; animation: vivid-approval-ring 2.4s ease-out infinite; }
.approval-panel__checks .icon { filter: drop-shadow(0 0 5px rgba(61,155,0,.55)); animation: vivid-check-pop 2.4s ease-in-out infinite; }
.approval-panel__checks span:nth-child(2) .icon { animation-delay: -.8s; }
.approval-panel__checks span:nth-child(3) .icon { animation-delay: -1.6s; }

.budget-grid article { position: relative; isolation: isolate; overflow: hidden; border-color: rgba(24,119,242,.16); background: linear-gradient(112deg,#fff 0%,#fff 36%,#eaf3ff 49%,#fff 62%,#fff 100%); background-size: 280% 100%; animation: vivid-budget-card 6s ease-in-out infinite; }
.budget-grid article:last-child { border-color: rgba(61,155,0,.18); background-image: linear-gradient(112deg,#fff 0%,#fff 36%,#edffe7 49%,#fff 62%,#fff 100%); animation-delay: -3s; }
.budget-grid article::before { position: absolute; z-index: -1; inset: -45%; transform: translateX(-65%) rotate(18deg); background: linear-gradient(90deg,transparent,rgba(24,119,242,.11),transparent); content: ""; animation: vivid-panel-sweep 5.4s ease-in-out infinite; }
.budget-grid article:last-child::before { background: linear-gradient(90deg,transparent,rgba(91,196,37,.14),transparent); animation-delay: -2.7s; }

.coverage-panel { box-shadow: 0 24px 70px rgba(8,47,107,.28); animation: vivid-gradient-flow 12s ease-in-out infinite, vivid-blue-panel-glow 4.8s ease-in-out infinite; }
.coverage-map { isolation: isolate; background-size: 210% 210%; box-shadow: inset 0 0 70px rgba(24,119,242,.18), 0 0 46px rgba(24,119,242,.17); animation: vivid-map-energy 8s ease-in-out infinite; }
.coverage-map::before { position: absolute; z-index: -1; inset: 6%; border: 1px solid rgba(156,203,255,.2); border-top-color: rgba(156,203,255,.78); border-radius: inherit; content: ""; animation: vivid-ring-rotate 11s linear infinite; }
.coverage-map::after { position: absolute; z-index: -1; top: 22%; left: 42%; width: 34%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(55,143,255,.38),transparent 68%); filter: blur(5px); content: ""; animation: vivid-map-orb 6s ease-in-out infinite; }
.coverage-map i { z-index: 0; transform-origin: center; animation: vivid-ring-rotate 16s linear infinite reverse; }
.coverage-map span { --destination-delay: 0s; z-index: 2; box-shadow: 0 0 0 0 rgba(245,158,11,.58), 0 8px 25px rgba(24,119,242,.25); animation: vivid-destination 4s var(--destination-delay) ease-in-out infinite; }
.coverage-map span:nth-of-type(2) { --destination-delay: -.8s; }
.coverage-map span:nth-of-type(3) { --destination-delay: -1.6s; }
.coverage-map span:nth-of-type(4) { --destination-delay: -2.4s; }
.coverage-map span:nth-of-type(5) { --destination-delay: -3.2s; }
.coverage-map span::before { filter: drop-shadow(0 0 8px rgba(245,158,11,.9)); animation: vivid-map-ping 2s var(--destination-delay) ease-out infinite; }

@keyframes motion-grid-breathe {
  from { transform: translate3d(-.6%, -.4%, 0) scale(1.015); }
  to { transform: translate3d(.8%, .6%, 0) scale(1.035); }
}
@keyframes motion-glow-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(.98); opacity: .72; }
  to { transform: translate3d(3%, 2%, 0) scale(1.04); opacity: 1; }
}
@keyframes motion-orbit { to { transform: rotate(360deg); } }
@keyframes motion-orbit-reverse { to { transform: rotate(-360deg); } }
@keyframes motion-device-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -11px; }
}
@keyframes motion-card-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}
@keyframes motion-ai-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(24,119,242,0)); scale: 1; }
  50% { filter: drop-shadow(0 8px 16px rgba(24,119,242,.24)); scale: 1.045; }
}
@keyframes motion-icon-pulse {
  0%, 100% { scale: 1; }
  50% { scale: 1.16; }
}
@keyframes motion-card-sweep {
  from { transform: translateX(0) skewX(-18deg); opacity: 0; }
  25% { opacity: 1; }
  to { transform: translateX(540%) skewX(-18deg); opacity: 0; }
}
@keyframes motion-cta-orbit {
  from { transform: translate3d(-20px, 10px, 0) rotate(-8deg); }
  to { transform: translate3d(25px, -18px, 0) rotate(12deg); }
}
@keyframes motion-menu-backdrop {
  from { opacity: 0; backdrop-filter: blur(0); }
  to { opacity: 1; backdrop-filter: blur(18px); }
}
@keyframes motion-menu-item {
  from { opacity: 0; transform: translate3d(22px, 8px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes motion-panel-switch {
  from { opacity: .3; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes motion-preview-switch {
  from { opacity: .16; filter: blur(7px); transform: translate3d(0, 16px, 0) scale(.975); }
  to { opacity: 1; filter: blur(0); transform: none; }
}
@keyframes motion-faq-open {
  from { opacity: 0; transform: translate3d(0, -8px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes vivid-star-twinkle {
  0%, 100% { transform: rotate(-12deg) scale(.82); filter: drop-shadow(0 0 2px rgba(245,158,11,.4)); opacity: .72; }
  38% { transform: rotate(8deg) scale(1.42); filter: drop-shadow(0 0 7px rgba(245,158,11,1)) drop-shadow(0 0 15px rgba(255,202,91,.82)); opacity: 1; }
  58% { transform: rotate(18deg) scale(1.08); filter: drop-shadow(0 0 12px rgba(245,158,11,.92)); opacity: .95; }
}
@keyframes vivid-star-particle {
  0%, 100% { transform: translate3d(-2px,5px,0) rotate(0) scale(.45); opacity: 0; }
  42% { transform: translate3d(7px,-7px,0) rotate(100deg) scale(1.35); opacity: 1; }
  70% { transform: translate3d(13px,-11px,0) rotate(170deg) scale(.78); opacity: .45; }
}
@keyframes vivid-gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  45% { background-position: 100% 18%; }
  72% { background-position: 62% 100%; }
}
@keyframes vivid-badge-glow {
  0%, 100% { scale: 1; box-shadow: 0 0 0 0 var(--vivid-glow), 0 8px 22px rgba(24,119,242,.14); filter: brightness(1); }
  50% { scale: 1.09; box-shadow: 0 0 0 8px transparent, 0 0 34px var(--vivid-glow), 0 12px 30px rgba(24,119,242,.25); filter: brightness(1.1); }
}
@keyframes vivid-halo-ring {
  0% { transform: scale(.78); opacity: 0; }
  28% { opacity: .88; }
  100% { transform: scale(1.38); opacity: 0; }
}
@keyframes vivid-pill-glow {
  0%, 100% { box-shadow: 0 3px 10px rgba(24,119,242,.08); filter: brightness(1); }
  50% { box-shadow: 0 0 0 3px rgba(24,119,242,.08), 0 0 24px rgba(24,119,242,.28); filter: brightness(1.08); }
}
@keyframes vivid-orbit-spin { to { transform: rotate(360deg); } }
@keyframes vivid-orbit-counter { to { rotate: -360deg; } }
@keyframes vivid-orbit-badge-glow {
  0%, 100% { scale: 1; box-shadow: 0 0 0 1px rgba(156,203,255,.12), 0 0 20px rgba(75,157,255,.32); filter: brightness(.96); }
  50% { scale: 1.16; box-shadow: 0 0 0 5px rgba(156,203,255,.08), 0 0 42px rgba(75,157,255,.85); filter: brightness(1.2); }
}
@keyframes vivid-core-breathe {
  0%, 100% { scale: .98; opacity: .72; }
  50% { scale: 1.035; opacity: 1; }
}
@keyframes vivid-ring-pulse {
  0%, 100% { transform: scale(.96); border-color: rgba(156,203,255,.17); box-shadow: 0 0 0 rgba(24,119,242,0); }
  50% { transform: scale(1.035); border-color: rgba(156,203,255,.54); box-shadow: 0 0 30px rgba(24,119,242,.2); }
}
@keyframes vivid-ring-rotate { to { transform: rotate(360deg); } }
@keyframes vivid-core-energy {
  0%, 100% { scale: 1; filter: saturate(1); box-shadow: 0 0 55px rgba(24,119,242,.46), inset 0 8px 16px rgba(255,255,255,.25); }
  50% { scale: 1.095; filter: saturate(1.25) brightness(1.1); box-shadow: 0 0 105px rgba(55,143,255,.88), 0 0 28px rgba(156,203,255,.6), inset 0 8px 22px rgba(255,255,255,.38); }
}
@keyframes vivid-core-wave {
  0% { transform: scale(.72); opacity: 0; }
  22% { opacity: .82; }
  100% { transform: scale(1.48); opacity: 0; }
}
@keyframes vivid-card-energy {
  0%, 13%, 38%, 100% { border-color: var(--ghost); box-shadow: 0 8px 22px rgba(9,35,78,.03); filter: brightness(1); }
  21% { border-color: rgba(24,119,242,.58); box-shadow: 0 0 0 4px rgba(24,119,242,.08), 0 18px 48px rgba(24,119,242,.28); filter: brightness(1.035); }
  27% { border-color: rgba(245,158,11,.48); box-shadow: 0 0 0 2px rgba(245,158,11,.08), 0 15px 38px rgba(24,119,242,.2); }
}
@keyframes vivid-blue-panel-glow {
  0%, 100% { box-shadow: 0 16px 40px rgba(7,73,164,.2); }
  50% { box-shadow: 0 0 0 3px rgba(84,160,255,.11), 0 22px 58px rgba(7,94,204,.4), 0 0 46px rgba(45,126,238,.2); }
}
@keyframes vivid-panel-sweep {
  0%, 16% { transform: translateX(-62%) rotate(22deg); opacity: 0; }
  34% { opacity: 1; }
  66%, 100% { transform: translateX(68%) rotate(22deg); opacity: 0; }
}
@keyframes vivid-agent-row {
  0%, 18%, 50%, 100% { border-color: transparent; box-shadow: var(--shadow-1); }
  30% { border-color: rgba(24,119,242,.42); box-shadow: 0 0 0 4px rgba(24,119,242,.07), 0 18px 42px rgba(24,119,242,.2); }
}
@keyframes vivid-green-panel-glow {
  0%, 100% { box-shadow: 0 18px 48px rgba(61,155,0,.1); }
  50% { box-shadow: 0 0 0 4px rgba(91,196,37,.09), 0 26px 64px rgba(61,155,0,.24), 0 0 50px rgba(91,196,37,.14); }
}
@keyframes vivid-approval-orb {
  0%, 100% { transform: translate3d(0,0,0) scale(.86); opacity: .42; }
  50% { transform: translate3d(-28%,48%,0) scale(1.25); opacity: 1; }
}
@keyframes vivid-approval-ring {
  0% { transform: scale(.78); opacity: 0; }
  24% { opacity: .9; }
  100% { transform: scale(1.68); opacity: 0; }
}
@keyframes vivid-check-pop {
  0%, 100% { transform: scale(.85); filter: drop-shadow(0 0 2px rgba(61,155,0,.25)); }
  45% { transform: scale(1.28) rotate(-7deg); filter: drop-shadow(0 0 9px rgba(61,155,0,.82)); }
}
@keyframes vivid-budget-card {
  0%, 100% { background-position: 0% 50%; box-shadow: 0 12px 30px rgba(9,35,78,.04); }
  50% { background-position: 100% 50%; box-shadow: 0 0 0 3px rgba(24,119,242,.06), 0 22px 50px rgba(24,119,242,.15); }
}
@keyframes vivid-map-energy {
  0%, 100% { background-position: 30% 50%; border-color: rgba(255,255,255,.12); box-shadow: inset 0 0 70px rgba(24,119,242,.14), 0 0 32px rgba(24,119,242,.12); }
  50% { background-position: 90% 35%; border-color: rgba(156,203,255,.36); box-shadow: inset 0 0 100px rgba(24,119,242,.28), 0 0 58px rgba(24,119,242,.3); }
}
@keyframes vivid-map-orb {
  0%, 100% { transform: translate3d(-35%,35%,0) scale(.72); opacity: .35; }
  50% { transform: translate3d(70%,-24%,0) scale(1.35); opacity: .9; }
}
@keyframes vivid-destination {
  0%, 100% { transform: translate(-50%,-50%) translateY(0) scale(.94); box-shadow: 0 0 0 0 rgba(245,158,11,.42), 0 7px 20px rgba(24,119,242,.18); filter: brightness(.96); }
  45% { transform: translate(-50%,-50%) translateY(-9px) scale(1.12); box-shadow: 0 0 0 7px transparent, 0 0 28px rgba(245,158,11,.5), 0 12px 32px rgba(24,119,242,.4); filter: brightness(1.15); }
}
@keyframes vivid-map-ping {
  0% { transform: translate(-50%,-50%) scale(.4); opacity: 0; }
  28% { opacity: .9; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .site-header::after { display: none; }
  html.motion-ready [data-motion], html.motion-ready [data-parallax], html.motion-ready [data-tilt] { opacity: 1 !important; filter: none !important; transform: none !important; translate: none !important; }
}
