:root {
  --ink: #102a2a;
  --ink-soft: #3e5655;
  --forest: #173f3e;
  --forest-2: #0c3231;
  --mint: #b9f7df;
  --mint-strong: #80e8bf;
  --aqua: #caeef0;
  --lilac: #d8d2ff;
  --coral: #f5bda8;
  --paper: #f7f8f2;
  --paper-2: #eef2e9;
  --white: #ffffff;
  --line: rgba(16, 42, 42, 0.13);
  --shadow: 0 28px 80px rgba(17, 50, 49, 0.14);
  --shadow-soft: 0 16px 44px rgba(17, 50, 49, 0.09);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
img { max-width: 100%; }
::selection { color: var(--forest-2); background: var(--mint); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--forest-2);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #4fae91; outline-offset: 3px; }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 118px 0; }
.section-heading { margin-bottom: 54px; }
.section-heading h2, .config-copy h2, .demo-copy h2, .faq-heading h2, .contact-copy h2 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.section-heading p { color: var(--ink-soft); font-size: 18px; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.split-heading p { margin: 0 0 6px; }
.centered { max-width: 820px; margin-inline: auto; text-align: center; }
.centered p { max-width: 650px; margin: 20px auto 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #47706c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-kicker.light { color: var(--mint); }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(247, 248, 242, .86);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--mint);
  background: var(--forest);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(14, 54, 52, .18);
}
.brand-mark svg { width: 24px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.06; }
.brand-copy strong { font-size: 16px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: #718481; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { position: relative; color: #49605e; font-size: 14px; font-weight: 650; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--forest); transform: scaleX(0); transition: transform .25s; }
.desktop-nav a:hover::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; }
.button-small { min-height: 44px; padding: 12px 19px; font-size: 13px; }
.button-dark { color: white; background: var(--forest); box-shadow: 0 10px 26px rgba(23, 63, 62, .17); }
.button-dark:hover { background: var(--forest-2); box-shadow: 0 14px 32px rgba(23, 63, 62, .24); }
.button-accent { color: var(--forest-2); background: var(--mint-strong); box-shadow: 0 14px 32px rgba(65, 169, 127, .25); }
.button-accent:hover { background: #a1f0d1; box-shadow: 0 18px 42px rgba(65, 169, 127, .32); }
.button-light { color: var(--forest-2); background: white; }
.button-full { width: 100%; }
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 42px;
  background:
    linear-gradient(rgba(16, 42, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 42, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--paper), transparent 30%, transparent 70%, var(--paper)); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { top: -260px; right: -180px; width: 680px; height: 680px; background: radial-gradient(circle, rgba(185, 247, 223, .65), transparent 67%); }
.hero-glow-two { bottom: -230px; left: -280px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(202, 238, 240, .55), transparent 68%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; min-height: 650px; align-items: center; gap: 40px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 25px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 8px 13px;
  color: #355c58;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(16, 42, 42, .1);
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(17, 50, 49, .06);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pulse { position: relative; width: 8px; height: 8px; background: #50b28c; border-radius: 50%; }
.pulse::after { content: ""; position: absolute; inset: -5px; border: 1px solid #50b28c; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 0; transform: scale(.6); } 50% { opacity: .55; transform: scale(1); } }
.hero h1 { max-width: 670px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(56px, 6.4vw, 92px); font-weight: 400; line-height: .97; letter-spacing: -.06em; }
.hero h1 em { color: #397469; font-weight: 400; text-decoration: none; }
.hero-lead { max-width: 610px; margin: 26px 0 0; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.64; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #395956; font-size: 14px; font-weight: 720; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateY(4px); }
.hero-facts { display: flex; gap: 24px; margin: 32px 0 0; padding: 0; list-style: none; color: #5a706e; font-size: 12px; font-weight: 650; }
.hero-facts li { display: flex; align-items: center; gap: 6px; }
.hero-facts svg { width: 17px; color: #489b7b; stroke-width: 2.2; }

.hero-visual { position: relative; min-height: 640px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(23, 63, 62, .1); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 390px; height: 390px; border-style: dashed; animation: spin 50s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.phone-shell {
  position: relative;
  z-index: 2;
  width: 304px;
  height: 622px;
  padding: 9px;
  background: #122b2b;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 46px;
  box-shadow: 0 42px 90px rgba(13, 46, 44, .27), inset 0 0 0 1px #42625f;
  transform: rotate(2.2deg);
  transition: transform .5s var(--ease);
}
.hero-visual:hover .phone-shell { transform: rotate(0deg) translateY(-6px); }
.phone-top { position: absolute; z-index: 5; top: 16px; left: 50%; width: 88px; height: 22px; background: #122b2b; border-radius: 100px; transform: translateX(-50%); }
.phone-top span { position: absolute; top: 8px; right: 15px; width: 6px; height: 6px; background: #315150; border-radius: 50%; }
.phone-screen { position: relative; height: 100%; overflow: hidden; padding: 39px 16px 17px; background: #f5f8f3; border-radius: 38px; }
.app-head { display: flex; align-items: center; justify-content: space-between; }
.app-brand { display: flex; align-items: center; gap: 8px; }
.app-brand > span:last-child { display: flex; flex-direction: column; }
.app-brand b { font-size: 10px; }
.app-brand small { color: #738683; font-size: 7px; }
.app-logo { display: grid; width: 28px; height: 28px; place-items: center; color: var(--mint); background: var(--forest); border-radius: 9px; font-family: Georgia, serif; font-size: 13px; }
.avatar { display: grid; width: 26px; height: 26px; place-items: center; color: #45605d; background: var(--aqua); border-radius: 50%; font-size: 8px; font-weight: 800; }
.hello { margin: 20px 0 9px; color: #647a77; font-size: 9px; }
.next-visit { padding: 16px; color: white; background: linear-gradient(135deg, #275b56, #153d3b); border-radius: 20px; box-shadow: 0 15px 30px rgba(20, 61, 59, .16); }
.visit-label { display: flex; align-items: center; gap: 6px; color: #bcecd8; font-size: 7px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.visit-label i { width: 5px; height: 5px; background: var(--mint-strong); border-radius: 50%; }
.next-visit h3 { margin: 10px 0 2px; font-size: 13px; line-height: 1.2; }
.next-visit > p { margin: 0; color: #bdd1ce; font-size: 8px; }
.visit-meta { display: flex; align-items: center; gap: 7px; margin-top: 13px; font-size: 7px; }
.visit-meta span { padding: 5px 7px; background: rgba(255, 255, 255, .08); border-radius: 7px; }
.visit-meta .visit-detail { margin-left: auto; padding: 5px 8px; color: var(--forest); background: var(--mint); border: 0; border-radius: 7px; font-size: 7px; font-weight: 800; }
.quick-title { display: flex; align-items: center; justify-content: space-between; margin: 17px 1px 9px; font-size: 9px; }
.quick-title span { color: #60847e; font-size: 7px; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.quick-grid > div { display: grid; grid-template-columns: 31px 1fr; gap: 0 8px; align-items: center; padding: 10px; background: white; border: 1px solid #e2e9e2; border-radius: 13px; }
.quick-grid b { align-self: end; font-size: 8px; }
.quick-grid small { align-self: start; color: #81908f; font-size: 6px; }
.quick-icon { grid-row: 1 / 3; display: grid; width: 31px; height: 31px; place-items: center; border-radius: 10px; }
.quick-icon.blue { color: #3f7e7b; background: #dff2f2; }
.quick-icon.green { color: #4b8a70; background: #e0f6e9; }
.quick-icon svg { width: 16px; }
.app-banner { display: flex; align-items: center; justify-content: space-between; margin-top: 11px; padding: 13px; background: #ebe9ff; border-radius: 14px; }
.app-banner > span:first-child { display: flex; flex-direction: column; }
.app-banner small { color: #777391; font-size: 6px; }
.app-banner b { font-size: 9px; }
.progress-ring { display: grid; width: 35px; height: 35px; place-items: center; border: 4px solid #d1cdf5; border-top-color: #796fc5; border-radius: 50%; font-size: 7px; font-weight: 800; }
.app-nav { position: absolute; right: 12px; bottom: 11px; left: 12px; display: flex; justify-content: space-around; padding: 10px 5px 7px; background: rgba(255, 255, 255, .9); border: 1px solid #e1e8e2; border-radius: 17px; box-shadow: 0 8px 20px rgba(20, 50, 49, .08); }
.app-nav span { display: flex; min-width: 40px; flex-direction: column; align-items: center; color: #8a9996; font-size: 12px; }
.app-nav span.active { color: #347267; }
.app-nav small { margin-top: 2px; font-size: 5px; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(255, 255, 255, .88); border: 1px solid rgba(16, 42, 42, .1); border-radius: 16px; box-shadow: var(--shadow-soft); backdrop-filter: blur(13px); }
.floating-card-top { top: 104px; right: -8px; animation: float 5s ease-in-out infinite; }
.floating-card-bottom { bottom: 82px; left: -13px; animation: float 5s ease-in-out -2s infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }
.floating-card > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.floating-card strong { font-size: 10px; }
.floating-card small { margin-top: 3px; color: #788987; font-size: 8px; }
.floating-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; }
.floating-icon svg { width: 17px; }
.floating-icon-mint { color: #43826a; background: #ddf6e9; }
.floating-icon-lilac { color: #776db5; background: #e8e5ff; }
.specialization-picker { position: relative; z-index: 3; display: flex; align-items: center; gap: 20px; padding: 18px 20px; background: rgba(255, 255, 255, .7); border: 1px solid var(--line); border-radius: 20px; backdrop-filter: blur(12px); }
.specialization-picker > span { color: #617572; font-size: 12px; font-weight: 700; white-space: nowrap; }
.picker-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.picker-buttons button { min-height: 34px; padding: 7px 13px; color: #5b6d6b; background: transparent; border: 1px solid transparent; border-radius: 100px; cursor: pointer; font-size: 11px; font-weight: 720; transition: .2s; }
.picker-buttons button:hover { border-color: var(--line); }
.picker-buttons button.active { color: white; background: var(--forest); }

.marquee-section { overflow: hidden; padding: 20px 0; color: #45635f; background: var(--mint); border-block: 1px solid rgba(16, 42, 42, .1); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 28px; animation: marquee 36s linear infinite; }
.marquee-track span { font-family: Georgia, serif; font-size: 20px; font-style: italic; white-space: nowrap; }
.marquee-track i { width: 5px; height: 5px; background: #4e8476; border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

.product-section { background: white; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.journey-card { position: relative; overflow: hidden; min-height: 430px; padding: 32px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s var(--ease), box-shadow .35s; }
.journey-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.journey-card-featured { background: var(--forest); color: white; border-color: transparent; transform: translateY(-16px); }
.journey-card-featured:hover { transform: translateY(-22px); }
.journey-number { position: absolute; top: 24px; right: 25px; color: #91a19e; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.journey-icon { display: grid; width: 52px; height: 52px; place-items: center; color: #3e7e72; background: white; border: 1px solid var(--line); border-radius: 16px; }
.journey-icon svg { width: 25px; }
.journey-card-featured .journey-icon { color: var(--mint); background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .15); }
.journey-card h3 { margin: 56px 0 12px; font-family: Georgia, serif; font-size: 29px; font-weight: 400; letter-spacing: -.03em; }
.journey-card p { margin: 0; color: #607572; font-size: 14px; }
.journey-card-featured p { color: #b8cbc7; }
.journey-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 28px 0 0; padding: 0; list-style: none; }
.journey-card li { padding: 6px 9px; color: #526b68; background: white; border: 1px solid var(--line); border-radius: 100px; font-size: 10px; font-weight: 700; }
.journey-card-featured li { color: #d2e3df; background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .14); }

.capabilities-section { background: var(--paper-2); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(280px, auto); gap: 16px; }
.bento { position: relative; overflow: hidden; padding: 26px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr .82fr; gap: 30px; align-items: center; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.feature-badge { display: inline-flex; align-items: center; min-height: 25px; padding: 5px 9px; border-radius: 100px; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.feature-badge.ready { color: #28624e; background: #dff7e9; }
.feature-badge.option { color: #5d5791; background: #ebe9ff; }
.feature-badge.develop { color: #946044; background: #ffeadf; }
.card-icon { display: grid; width: 42px; height: 42px; place-items: center; color: #46756f; background: #f0f4ef; border-radius: 13px; }
.card-icon svg { width: 21px; }
.bento h3 { max-width: 470px; margin: 25px 0 9px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; line-height: 1.08; letter-spacing: -.03em; }
.bento p { max-width: 490px; margin: 0; color: #617572; font-size: 13px; }
.bento-booking { background: linear-gradient(135deg, white 55%, #dff4f1); }
.slot-demo { display: flex; gap: 8px; margin-top: 38px; }
.slot-demo span { min-width: 68px; padding: 9px 12px; text-align: center; background: rgba(255, 255, 255, .72); border: 1px solid var(--line); border-radius: 10px; font-size: 11px; font-weight: 700; }
.slot-demo span.selected { color: white; background: var(--forest); border-color: var(--forest); box-shadow: 0 9px 18px rgba(20, 63, 60, .18); }
.doctor-stack { display: flex; align-items: center; margin: 32px 0 0 10px; }
.doctor-stack span, .doctor-stack b { display: grid; width: 44px; height: 44px; margin-left: -10px; place-items: center; color: #456361; background: var(--aqua); border: 3px solid white; border-radius: 50%; font-size: 10px; }
.doctor-stack span:nth-child(2) { background: #e6defa; }
.doctor-stack span:nth-child(3) { background: #f8ddcf; }
.doctor-stack b { color: #607572; background: #eef1eb; }
.bento-loyalty { background: #e8e4ff; }
.loyalty-visual { margin-top: 27px; padding: 16px; background: rgba(255, 255, 255, .58); border: 1px solid rgba(74, 63, 135, .1); border-radius: 16px; }
.loyalty-visual div { display: flex; align-items: end; justify-content: space-between; }
.loyalty-visual span { color: #696287; font-size: 9px; }
.loyalty-visual b { font-size: 20px; }
.loyalty-visual i { display: block; height: 6px; margin-top: 13px; overflow: hidden; background: #d3cdf7; border-radius: 20px; }
.loyalty-visual i span { display: block; width: 68%; height: 100%; background: #8376cf; border-radius: inherit; }
.bento-care { background: linear-gradient(135deg, #fff, #f3faf5); }
.care-list { display: flex; flex-direction: column; gap: 8px; }
.care-list span { display: flex; align-items: center; gap: 10px; padding: 11px 12px; color: #647572; background: white; border: 1px solid var(--line); border-radius: 12px; font-size: 10px; font-weight: 700; }
.care-list i { display: grid; width: 22px; height: 22px; place-items: center; background: #eef2ec; border-radius: 50%; font-style: normal; }
.care-list span.done i { color: #31745c; background: #dff4e8; }
.care-list span.active { color: white; background: var(--forest); }
.care-list span.active i { color: var(--forest); background: var(--mint); }
.bento-ai { color: white; background: var(--forest); }
.bento-ai .card-icon { color: var(--mint); background: rgba(255, 255, 255, .09); }
.bento-ai p { color: #b8cbc7; }
.privacy-note { display: grid; grid-template-columns: auto 1fr; gap: 21px; align-items: start; margin-top: 20px; padding: 27px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.privacy-icon { display: grid; width: 54px; height: 54px; place-items: center; color: #40786f; background: #e5f5ec; border-radius: 17px; }
.privacy-icon svg { width: 25px; }
.privacy-note h3 { margin: 12px 0 5px; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }
.privacy-note p { max-width: 850px; margin: 0; color: #617572; font-size: 13px; }

.config-section { color: white; background: var(--forest-2); }
.config-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.config-copy h2 { max-width: 500px; }
.config-copy > p { max-width: 510px; color: #b9cbc8; font-size: 17px; }
.config-result { margin-top: 44px; padding: 21px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .13); border-radius: 18px; }
.config-result span { color: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.config-result strong { display: block; margin-top: 8px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.config-result p { margin: 5px 0 0; color: #b5c8c5; font-size: 12px; }
.config-card { padding: 30px; color: var(--ink); background: white; border-radius: var(--radius); box-shadow: 0 35px 80px rgba(0, 0, 0, .2); }
.config-card fieldset { margin: 0 0 25px; padding: 0; border: 0; }
.config-card legend { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; font-size: 12px; font-weight: 800; }
.config-card legend span { display: grid; width: 24px; height: 24px; place-items: center; color: #386a61; background: #e4f6ed; border-radius: 8px; font-size: 10px; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.choice-grid label, .choice-list label, .integration-choice { cursor: pointer; }
.choice-grid input, .choice-list input, .integration-choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label > span { display: grid; min-height: 43px; place-items: center; padding: 8px; color: #617572; background: #f4f6f1; border: 1px solid transparent; border-radius: 10px; font-size: 10px; font-weight: 700; text-align: center; }
.choice-grid input:checked + span { color: var(--forest); background: #e4f6ed; border-color: #8fd5b8; }
.choice-grid input:focus-visible + span, .choice-list input:focus-visible + span, .integration-choice input:focus-visible + span { outline: 3px solid #4fae91; outline-offset: 2px; }
.choice-list { display: grid; gap: 7px; }
.choice-list label > span, .integration-choice > span { position: relative; display: flex; flex-direction: column; min-height: 55px; justify-content: center; padding: 9px 42px 9px 13px; background: #f6f7f3; border: 1px solid transparent; border-radius: 11px; }
.choice-list label > span::after, .integration-choice > span::after { content: ""; position: absolute; top: 50%; right: 15px; width: 15px; height: 15px; border: 1px solid #aab7b4; border-radius: 50%; transform: translateY(-50%); }
.choice-list input:checked + span, .integration-choice input:checked + span { background: #e4f6ed; border-color: #8fd5b8; }
.choice-list input:checked + span::after { background: #408d70; border: 4px solid #dff4e9; box-shadow: 0 0 0 1px #408d70; }
.choice-list b, .integration-choice b { font-size: 11px; }
.choice-list small, .integration-choice small { color: #728481; font-size: 9px; }
.integration-choice { display: block; margin-bottom: 18px; }
.integration-choice > span::after { border-radius: 4px; }
.integration-choice input:checked + span::after { content: "✓"; display: grid; place-items: center; color: white; background: #408d70; border-color: #408d70; font-size: 10px; }
.config-status { min-height: 17px; margin: 9px 0 0; color: #47706c; font-size: 10px; text-align: center; }

.launch-section { background: white; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li { position: relative; padding: 34px 26px 0 0; }
.timeline li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; background: var(--mint-strong); border: 3px solid white; border-radius: 50%; box-shadow: 0 0 0 1px #7cc6aa; }
.timeline li > span { color: #9aa8a5; font-family: Georgia, serif; font-size: 36px; font-style: italic; }
.timeline small { display: block; margin-top: 25px; color: #4f8278; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.timeline h3 { margin: 8px 0 8px; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }
.timeline p { margin: 0; color: #647774; font-size: 12px; }

.demo-section { padding-top: 0; background: white; }
.demo-card { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; min-height: 480px; align-items: center; overflow: hidden; padding: 66px; color: white; background: var(--forest); border-radius: var(--radius-lg); }
.demo-card::after { content: ""; position: absolute; top: -220px; right: -160px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(185, 247, 223, .28), transparent 68%); border-radius: 50%; }
.demo-copy { position: relative; z-index: 2; }
.demo-copy h2 { font-size: clamp(42px, 4vw, 60px); }
.demo-copy p { max-width: 470px; color: #bed0cc; font-size: 15px; }
.demo-copy .button { margin-top: 20px; }
.demo-window { position: relative; z-index: 2; overflow: hidden; background: #f4f8f3; border: 7px solid rgba(255, 255, 255, .16); border-radius: 22px; box-shadow: 0 28px 60px rgba(0, 0, 0, .25); transform: rotate(2deg) translateY(40px); }
.browser-top { display: flex; align-items: center; gap: 6px; padding: 10px 13px; background: #e3ebe5; }
.browser-top i { width: 6px; height: 6px; background: #97aaa6; border-radius: 50%; }
.browser-top span { margin-left: 12px; color: #788985; font-size: 7px; }
.browser-content { min-height: 330px; padding-top: 62px; color: var(--ink); text-align: center; background: radial-gradient(circle at 50% 30%, #d9f0e7, #f4f8f3 55%); }
.browser-logo { display: grid; width: 58px; height: 58px; margin: auto; place-items: center; color: var(--mint); background: var(--forest); border-radius: 17px; font-family: Georgia, serif; font-size: 28px; box-shadow: 0 13px 28px rgba(20, 60, 58, .2); }
.browser-content h3 { margin: 15px 0 3px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.browser-content p { margin: 0; color: #687b78; font-size: 10px; }
.browser-button { display: inline-flex; margin-top: 24px; padding: 11px 22px; color: white; background: var(--forest); border-radius: 100px; font-size: 9px; font-weight: 800; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-heading { position: sticky; top: 130px; align-self: start; }
.faq-heading > p { max-width: 390px; color: #637774; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button { display: flex; width: 100%; min-height: 86px; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0; color: var(--ink); background: transparent; border: 0; cursor: pointer; text-align: left; }
.accordion-item button span { font-family: Georgia, serif; font-size: 21px; line-height: 1.25; }
.accordion-item button i { position: relative; width: 25px; height: 25px; flex: 0 0 25px; border: 1px solid #aab7b5; border-radius: 50%; }
.accordion-item button i::before, .accordion-item button i::after { content: ""; position: absolute; top: 11px; left: 6px; width: 11px; height: 1px; background: #4f6764; transition: transform .25s; }
.accordion-item button i::after { transform: rotate(90deg); }
.accordion-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.accordion-panel { overflow: hidden; }
.accordion-panel p { max-width: 680px; margin: -5px 55px 25px 0; color: #607370; font-size: 14px; }

.contact-section { position: relative; overflow: hidden; padding: 118px 0; color: white; background: #0a2c2b; }
.contact-glow { position: absolute; top: -300px; left: -250px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(83, 168, 140, .24), transparent 67%); border-radius: 50%; }
.contact-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.contact-copy h2 { max-width: 540px; }
.contact-copy > p { max-width: 510px; color: #b7c9c5; font-size: 17px; }
.contact-direct { display: flex; flex-direction: column; margin-top: 42px; }
.contact-direct span { color: #89a6a0; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.contact-direct a { margin-top: 6px; color: var(--mint); font-family: Georgia, serif; font-size: 22px; }
.lead-form { padding: 32px; color: var(--ink); background: white; border-radius: var(--radius); box-shadow: 0 34px 80px rgba(0, 0, 0, .25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form label:not(.consent) { display: block; margin-bottom: 13px; }
.lead-form label > span { display: block; margin: 0 0 6px 2px; color: #526865; font-size: 10px; font-weight: 800; }
.lead-form input, .lead-form textarea { width: 100%; color: var(--ink); background: #f4f6f2; border: 1px solid transparent; border-radius: 12px; outline: none; transition: border-color .2s, background .2s; }
.lead-form input { height: 49px; padding: 0 14px; }
.lead-form textarea { min-height: 110px; padding: 13px 14px; resize: vertical; }
.lead-form input:focus, .lead-form textarea:focus { background: white; border-color: #73b99e; box-shadow: 0 0 0 3px rgba(115, 185, 158, .13); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #9aa8a5; font-size: 12px; }
.consent { display: grid; grid-template-columns: 17px 1fr; gap: 9px; align-items: start; margin: 7px 0 21px; cursor: pointer; }
.consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: #397d66; }
.consent span { margin: 0 !important; color: #788986 !important; font-size: 9px !important; font-weight: 500 !important; }
.consent a { color: #397d66; text-decoration: underline; }
.form-footer { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 20px; }
.form-footer p { margin: 0; color: #59706c; font-size: 11px; }
.form-footer p[data-state="error"] { color: #a54535; }
.form-footer p[data-state="success"] { color: #267053; }
.lead-form button:disabled { cursor: wait; opacity: .65; transform: none; }

.site-footer { padding: 65px 0 22px; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.7fr .65fr .65fr; gap: 70px; }
.brand-footer .brand-mark { width: 38px; height: 38px; }
.footer-grid > div:first-child > p { max-width: 300px; margin: 20px 0 0; color: #6a7c79; font-size: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links span { margin-bottom: 4px; color: #879692; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: #506663; font-size: 12px; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { display: flex; gap: 22px; margin-top: 54px; padding-top: 20px; color: #82918e; border-top: 1px solid var(--line); font-size: 9px; }
.footer-bottom a { margin-left: auto; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: .93fr 1.07fr; }
  .hero-facts { flex-wrap: wrap; }
  .floating-card-top { right: -15px; }
  .floating-card-bottom { left: -5px; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .config-grid { gap: 48px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 680px); }
  .section { padding: 88px 0; }
  .site-header { padding: 12px 0; }
  .header-cta { display: none; }
  .menu-button { display: grid; width: 44px; height: 44px; place-content: center; gap: 6px; padding: 0; background: white; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; }
  .menu-button span { width: 18px; height: 1px; background: var(--ink); transition: transform .25s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 69px 16px auto; display: flex; max-height: 0; flex-direction: column; gap: 4px; overflow: hidden; padding: 0 17px; background: rgba(247, 248, 242, .98); border: 1px solid transparent; border-radius: 20px; opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .3s var(--ease); }
  .mobile-nav.is-open { max-height: 400px; padding-block: 17px; border-color: var(--line); box-shadow: var(--shadow); opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-nav > a:not(.button) { padding: 12px 7px; color: #49605d; font-weight: 700; }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { max-width: 700px; }
  .hero-lead { max-width: 620px; }
  .hero-facts { justify-content: center; }
  .hero-visual { min-height: 680px; }
  .specialization-picker { flex-direction: column; align-items: flex-start; }
  .split-heading, .config-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: 320px; }
  .journey-card-featured { transform: none; }
  .journey-card-featured:hover { transform: translateY(-6px); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large, .bento-wide { grid-column: span 2; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 45px; }
  .demo-card { grid-template-columns: 1fr; gap: 10px; padding: 45px; }
  .demo-window { transform: rotate(1deg) translateY(60px); }
  .faq-heading { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 24px); }
  .section { padding: 74px 0; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding-top: 112px; background-size: 52px 52px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 10px 16px; }
  .hero-visual { min-height: 610px; transform: scale(.9); margin: -20px -20px -40px; }
  .phone-shell { width: 286px; height: 586px; }
  .floating-card-top { right: -10px; }
  .floating-card-bottom { left: -6px; }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { width: 330px; height: 330px; }
  .specialization-picker { padding: 16px; }
  .picker-buttons button { padding-inline: 10px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .config-copy h2, .demo-copy h2, .faq-heading h2, .contact-copy h2 { font-size: clamp(39px, 12vw, 54px); }
  .journey-card { padding: 26px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento, .bento-large, .bento-wide { grid-column: auto; min-height: 265px; }
  .bento-wide { grid-template-columns: 1fr; }
  .slot-demo { flex-wrap: wrap; }
  .privacy-note { grid-template-columns: 1fr; }
  .config-card { padding: 20px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; border: 0; }
  .timeline li { padding: 0 0 0 45px; }
  .timeline li::before { top: 9px; left: 4px; }
  .timeline li::after { content: ""; position: absolute; top: 23px; bottom: -45px; left: 8px; width: 1px; background: var(--line); }
  .timeline li:last-child::after { display: none; }
  .timeline li > span { font-size: 28px; }
  .timeline small { margin-top: 8px; }
  .demo-card { width: calc(100% - 24px); padding: 32px 24px; border-radius: 25px; }
  .faq-section { padding-bottom: 45px; }
  .accordion-item button span { font-size: 18px; }
  .contact-section { padding: 78px 0; }
  .lead-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { align-items: stretch; flex-direction: column-reverse; }
  .form-footer .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-bottom { flex-wrap: wrap; }
  .footer-bottom a { width: 100%; margin-left: 0; }
}

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