:root {
  --ambient-warm: #f5f1eb;
  --ambient-cool: #edf3f8;
  --ambient-lilac: #eeeaf5;
  --glass: rgba(255, 255, 255, .54);
  --glass-dense: rgba(255, 255, 255, .7);
  --glass-light: rgba(255, 255, 255, .38);
  --glass-border: rgba(255, 255, 255, .68);
  --glass-highlight: rgba(255, 255, 255, .92);
  --ink: #111217;
  --ink-soft: #30323a;
  --muted: #656975;
  --accent: #263a78;
  --accent-hover: #344d96;
  --accent-soft: rgba(38, 58, 120, .11);
  --hairline: rgba(17, 18, 23, .09);
  --blur: blur(34px);
  --saturate: saturate(155%);
  --radius-card: 26px;
  --radius-small: 14px;
  --radius-pill: 999px;
  --shadow-glass: 0 20px 70px rgba(39, 48, 75, .11), inset 0 1px 0 var(--glass-highlight);
  --shadow-glass-raised: 0 30px 90px rgba(39, 48, 75, .16), inset 0 1px 0 rgba(255,255,255,.98), inset 0 -1px 0 rgba(38,58,120,.05);
  --glass-ease: cubic-bezier(.22, .8, .22, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--ambient-warm);
  background-image:
    radial-gradient(ellipse 82% 62% at 12% 8%, rgba(173, 199, 232, .5) 0%, transparent 64%),
    radial-gradient(ellipse 66% 56% at 88% 76%, rgba(214, 193, 235, .36) 0%, transparent 63%),
    radial-gradient(ellipse 58% 48% at 58% 34%, rgba(255, 229, 190, .44) 0%, transparent 59%);
  background-attachment: fixed;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, .72), transparent 24%),
    radial-gradient(circle at 18% 70%, rgba(118, 161, 211, .18), transparent 32%);
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { text-wrap: balance; }
:is(a, button):focus-visible { outline: 3px solid rgba(38,58,120,.62); outline-offset: 3px; }

.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .42));
  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-highlight);
  box-shadow: var(--shadow-glass);
  backdrop-filter: var(--blur) var(--saturate);
  -webkit-backdrop-filter: var(--blur) var(--saturate);
  border-radius: var(--radius-card);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 20px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .74);
  border-top-color: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 42px rgba(44, 54, 82, .1), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-radius: 24px;
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 1px 14% auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.98), transparent);
}
.site-header.scrolled { background: rgba(255, 255, 255, .76); box-shadow: 0 12px 38px rgba(44, 54, 82, .14), inset 0 1px 0 rgba(255,255,255,.96); }
.brand { display: inline-flex; gap: 10px; align-items: center; font-weight: 680; letter-spacing: -.03em; font-size: 1.06rem; }
.brand-mark { width: 32px; height: 32px; object-fit: contain; }
.site-header nav { display: flex; align-items: center; gap: 28px; font-size: .88rem; color: var(--muted); }
.site-header nav a { transition: color .16s ease; }
.site-header nav a:hover { color: var(--ink); }
.nav-cta { padding: 12px 18px; color: white !important; background: var(--accent); border-radius: var(--radius-pill); box-shadow: 0 8px 24px rgba(38,58,120,.2); }
.nav-cta:hover { background: var(--accent-hover); }
.menu-button { display: none; border: 0; background: transparent; padding: 12px; }
.menu-button span { display: block; width: 22px; height: 1px; margin: 6px 0; background: var(--ink); }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.04fr .86fr;
  align-items: center;
  gap: 7vw;
  padding: 142px max(6vw, calc((100vw - 1280px) / 2)) 108px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
}
.hero-media::before {
  width: min(52vw, 760px);
  aspect-ratio: 1;
  right: -8vw;
  top: 4vh;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.92), rgba(167,196,229,.48) 38%, rgba(191,172,222,.28) 66%, transparent 72%);
}
.hero-media::after {
  width: 40vw;
  height: 28vw;
  left: 12vw;
  bottom: -16vw;
  background: rgba(255, 222, 181, .35);
}
.hero-copy { max-width: 680px; z-index: 2; }
.eyebrow { margin: 0 0 18px; color: var(--muted); font-size: .78rem; font-weight: 520; letter-spacing: 0; }
.eyebrow span { display: inline-block; width: 24px; height: 1px; margin-right: 10px; vertical-align: middle; background: var(--accent); }
h1 { margin: 0; font-size: clamp(3.7rem, 7.3vw, 7.1rem); line-height: .92; letter-spacing: -.072em; font-weight: 640; }
h1 em, h2 em { color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; }
.hero-lead { max-width: 585px; margin: 30px 0 0; color: var(--ink-soft); font-size: clamp(1.06rem, 1.5vw, 1.24rem); line-height: 1.56; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-pill);
  font-size: .94rem;
  font-weight: 640;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--accent); box-shadow: 0 12px 32px rgba(38,58,120,.22); }
.button-primary:hover { background: var(--accent-hover); box-shadow: 0 16px 38px rgba(38,58,120,.28); }
.button-ghost { position: relative; overflow: hidden; background: rgba(255,255,255,.5); box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 10px 30px rgba(44,54,82,.08); backdrop-filter: blur(22px) saturate(145%); -webkit-backdrop-filter: blur(22px) saturate(145%); }
.button-ghost::before { content: ""; position: absolute; width: 48%; height: 200%; top: -55%; left: -62%; pointer-events: none; background: linear-gradient(100deg, transparent, rgba(255,255,255,.72), transparent); transform: rotate(18deg); transition: left .55s var(--glass-ease); }
.button-ghost:hover { background: rgba(255,255,255,.74); }
.button-ghost:hover::before { left: 116%; }

.booking-demo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(470px, 100%);
  justify-self: end;
  z-index: 3;
  padding: 25px;
  box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255,255,255,.18);
  transition: transform .38s var(--glass-ease), box-shadow .38s var(--glass-ease);
}
.booking-demo::before { content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(118deg, rgba(255,255,255,.68) 0%, transparent 22%, transparent 68%, rgba(174,196,235,.16) 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,1), inset 1px 0 0 rgba(255,255,255,.55); }
.booking-demo::after { content: ""; position: absolute; z-index: -2; width: 230px; height: 230px; right: -88px; bottom: -105px; pointer-events: none; border-radius: 48% 52% 62% 38%; background: radial-gradient(circle at 34% 30%, rgba(255,255,255,.82), rgba(155,190,229,.36) 38%, rgba(206,179,229,.2) 66%, transparent 72%); filter: blur(2px); transition: transform .7s var(--glass-ease); }
.demo-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 17px; border-bottom: 1px solid var(--hairline); }
.mini-label { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 520; letter-spacing: .03em; }
.demo-head h2 { margin: 4px 0 0; font-size: 1.34rem; letter-spacing: -.04em; }
.live-badge { flex: 0 0 auto; display: flex; align-items: center; gap: 6px; padding: 7px 10px; color: var(--ink-soft); background: rgba(255,255,255,.46); border: 1px solid rgba(255,255,255,.74); border-radius: var(--radius-pill); font-size: .72rem; }
.live-badge i { width: 7px; height: 7px; background: var(--accent-hover); border-radius: 50%; box-shadow: 0 0 0 4px rgba(38,58,120,.09); }
.service-row { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; margin: 18px 0; padding: 14px; background: rgba(255,255,255,.44); border: 1px solid rgba(255,255,255,.7); border-radius: var(--radius-small); }
.service-icon { width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--accent); border-radius: 11px; font-family: Georgia, serif; font-style: italic; }
.service-row strong, .service-row span { display: block; }
.service-row strong { font-size: .88rem; }
.service-row span { margin-top: 2px; color: var(--muted); font-size: .74rem; }
.service-price { color: var(--ink) !important; font-size: .7rem !important; }
.date-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.date-option, .times button { border: 1px solid rgba(255,255,255,.75); background: rgba(255,255,255,.46); border-radius: 12px; cursor: pointer; transition: background .16s ease, color .16s ease, transform .16s ease; }
.date-option { min-height: 66px; display: grid; place-content: center; gap: 1px; }
.date-option span { color: var(--muted); font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.date-option strong { font-size: 1rem; }
.date-option:hover, .times button:hover { background: rgba(255,255,255,.76); transform: translateY(-1px); }
.date-option.active, .times button.active { color: white; background: var(--accent); border-color: transparent; box-shadow: 0 8px 20px rgba(38,58,120,.2); }
.date-option.active span { color: white; }
.times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 9px 0 16px; }
.times button { min-height: 42px; font-size: .78rem; }
.confirm-button { width: 100%; min-height: 50px; border: 0; border-radius: var(--radius-pill); cursor: pointer; color: white; background: var(--accent); box-shadow: 0 10px 26px rgba(38,58,120,.22); font-weight: 640; font-size: .85rem; }
.confirm-button:hover { background: var(--accent-hover); }
.success-message { display: none; align-items: center; gap: 12px; min-height: 50px; padding: 7px 12px; color: var(--ink); background: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.78); border-radius: var(--radius-small); }
.success-message.show { display: flex; animation: pop .25s ease; }
.success-message > span { display: grid; place-items: center; width: 28px; height: 28px; color: white; background: var(--accent); border-radius: 50%; font-weight: 800; }
.success-message strong, .success-message small { display: block; }
.success-message strong { font-size: .82rem; }
.success-message small { margin-top: 1px; color: var(--muted); }
@keyframes pop { from { opacity: 0; transform: translateY(4px); } }
.scroll-cue { position: absolute; bottom: 34px; left: max(6vw, calc((100vw - 1280px) / 2)); display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .68rem; }
.scroll-cue i { width: 44px; height: 1px; background: rgba(17,18,23,.4); }

.proof-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: -30px auto 0;
  min-height: 136px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, .75fr) 1.4fr;
  align-items: stretch;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.66);
  border-top-color: rgba(255,255,255,.92);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
}
.proof-strip::before { content: ""; position: absolute; inset: 1px 12% auto; height: 1px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,1), transparent); }
.proof-strip > div, .proof-strip > p { display: flex; flex-direction: column; justify-content: center; padding: 22px 26px; border: 1px solid rgba(255,255,255,.5); border-radius: 16px; background: rgba(255,255,255,.22); box-shadow: inset 0 1px 0 rgba(255,255,255,.74); }
.proof-strip > div:first-of-type { background: rgba(255,255,255,.54); border-color: rgba(255,255,255,.78); box-shadow: 0 10px 28px rgba(44,54,82,.07), inset 0 1px 0 rgba(255,255,255,.96); }
.proof-strip > div:nth-of-type(2) { background: rgba(255,255,255,.34); }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { font-size: 1.6rem; letter-spacing: -.04em; }
.proof-strip span { margin-top: 5px; color: var(--muted); font-size: .76rem; }
.proof-strip p { margin: 0; color: var(--ink-soft); font-size: .94rem; background: linear-gradient(120deg, rgba(255,255,255,.38), rgba(255,255,255,.16)); }

.flow-section, .audience-section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 158px 0 120px; }
.section-heading { display: grid; grid-template-columns: 1fr .72fr; column-gap: 70px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .control-copy h2, .final-cta h2 { margin: 0; font-size: clamp(2.8rem, 5.5vw, 5.3rem); line-height: .98; letter-spacing: -.065em; font-weight: 620; }
.section-heading > p:last-child { margin: 0 0 6px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.flow-visual {
  position: relative;
  height: min(650px, 58vw);
  min-height: 510px;
  margin-top: 76px;
  overflow: hidden;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 36px;
  box-shadow: 0 28px 90px rgba(44,54,82,.1), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}
.flow-visual::before { content: ""; position: absolute; width: 58%; aspect-ratio: 1; right: -10%; top: -28%; opacity: .78; border-radius: 45% 55% 62% 38%; background: radial-gradient(circle at 38% 40%, rgba(255,255,255,.86), rgba(174,199,230,.31) 42%, rgba(210,190,232,.16) 64%, transparent 72%); filter: blur(5px); }
.flow-visual::after { content: ""; position: absolute; left: 18%; right: 18%; top: 50%; border-top: 1px dashed rgba(38,58,120,.35); }
.flow-node { position: absolute; isolation: isolate; z-index: 2; width: 230px; min-height: 160px; padding: 19px; overflow: hidden; transition: box-shadow .3s var(--glass-ease), background .3s ease, transform .3s var(--glass-ease); }
.flow-node::after { content: ""; position: absolute; z-index: -1; width: 110px; height: 110px; right: -45px; top: -48px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.9), rgba(170,198,231,.22) 55%, transparent 72%); }
.flow-node:nth-of-type(1) { background: rgba(255,255,255,.68); }
.flow-node:nth-of-type(2) { background: rgba(255,255,255,.54); }
.flow-node:nth-of-type(3) { background: rgba(255,255,255,.42); }
.flow-node span { float: right; color: var(--accent); font-size: .72rem; font-weight: 650; }
.flow-node strong, .flow-node small { display: block; }
.flow-node strong { margin-top: 46px; font-size: .95rem; }
.flow-node small { margin-top: 4px; color: var(--muted); font-size: .74rem; }
.node-one { left: 6%; top: 19%; border-radius: 24px 24px 24px 9px; }
.node-two { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.node-three { right: 6%; bottom: 18%; border-radius: 24px 9px 24px 24px; }

.control-section {
  position: relative;
  padding: 94px 20px 150px;
  background:
    radial-gradient(ellipse 60% 70% at 8% 44%, rgba(161,194,228,.34), transparent 64%),
    radial-gradient(ellipse 54% 64% at 94% 56%, rgba(218,194,235,.3), transparent 65%);
}
.control-shell { width: min(1280px, 100%); margin: 0 auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; padding: 72px; }
.control-copy { display: flex; flex-direction: column; justify-content: center; }
.control-copy h2 { font-size: clamp(2.6rem, 4.3vw, 4.7rem); }
.control-copy > p:not(.eyebrow) { margin: 24px 0 28px; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.control-copy ul { margin: 0; padding: 0; list-style: none; color: var(--ink-soft); }
.control-copy li { margin: 0; padding: 11px 0; border-top: 1px solid var(--hairline); font-size: .9rem; }
.control-copy li:last-child { border-bottom: 1px solid var(--hairline); }
.control-copy li span { margin-right: 9px; color: var(--accent); }
.calendar-panel { position: relative; isolation: isolate; min-height: 505px; padding: 24px; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.6), rgba(255,255,255,.34)); border: 1px solid rgba(255,255,255,.76); border-radius: 20px; box-shadow: 0 18px 48px rgba(44,54,82,.08), inset 0 1px 0 rgba(255,255,255,1); backdrop-filter: blur(18px) saturate(135%); -webkit-backdrop-filter: blur(18px) saturate(135%); }
.calendar-panel::before { content: ""; position: absolute; z-index: -1; width: 260px; height: 260px; right: -130px; top: -145px; border-radius: 50%; background: radial-gradient(circle, rgba(176,202,232,.38), rgba(215,193,234,.16) 54%, transparent 72%); }
.calendar-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline); }
.calendar-top small, .calendar-top strong { display: block; }
.calendar-top small { color: var(--muted); font-size: .68rem; font-weight: 600; }
.calendar-top strong { margin-top: 3px; font-size: 1rem; }
.calendar-arrows { display: flex; gap: 6px; }
.calendar-arrows button { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.7); background: rgba(255,255,255,.5); border-radius: 10px; cursor: pointer; }
.calendar-grid { display: grid; grid-template-columns: 28px repeat(4, 1fr); min-width: 520px; }
.time-labels { padding-top: 57px; display: grid; grid-template-rows: repeat(5, 67px); color: var(--muted); font-size: .62rem; }
.day-column { position: relative; display: grid; grid-template-rows: 52px repeat(5, 67px); border-left: 1px solid var(--hairline); background-image: repeating-linear-gradient(to bottom, transparent 0 66px, rgba(17,18,23,.055) 66px 67px); }
.day-column > strong { text-align: center; color: var(--muted); font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.day-column > strong b { display: block; margin-top: 3px; color: var(--ink); font-size: .85rem; }
.day-column.current > strong b { width: 28px; height: 28px; margin: 2px auto 0; line-height: 28px; color: white; background: var(--accent); border-radius: 9px; }
.day-column article { position: relative; grid-row: calc(var(--start) + 1) / span var(--span); margin: 4px; padding: 9px; min-width: 0; overflow: hidden; color: var(--ink); background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.38)); border: 1px solid rgba(255,255,255,.82); border-radius: 10px; box-shadow: 0 5px 14px rgba(44,54,82,.06), inset 0 1px 0 rgba(255,255,255,.95); font-size: .68rem; transition: transform .2s var(--glass-ease), box-shadow .2s ease; }
.day-column article::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: rgba(38,58,120,.22); }
.day-column article.blue { color: var(--accent); background: linear-gradient(145deg, rgba(225,235,249,.82), rgba(205,218,243,.48)); border-color: rgba(255,255,255,.78); }
.day-column article small { display: block; color: var(--muted); font-size: .58rem; }

.audience-section { padding-top: 120px; }
.section-heading.compact { display: block; }
.audience-grid { margin-top: 64px; display: grid; grid-template-columns: 1.12fr .94fr .94fr; gap: 16px; }
.audience-card { position: relative; isolation: isolate; min-height: 410px; padding: 30px; overflow: hidden; background: rgba(255,255,255,.44); border: 1px solid rgba(255,255,255,.64); border-top-color: rgba(255,255,255,.9); border-radius: 28px 28px 28px 10px; box-shadow: 0 16px 52px rgba(44,54,82,.08), inset 0 1px 0 rgba(255,255,255,.82); backdrop-filter: blur(25px) saturate(145%); -webkit-backdrop-filter: blur(25px) saturate(145%); transition: transform .32s var(--glass-ease), background .25s ease, box-shadow .32s var(--glass-ease); }
.audience-card::before { content: ""; position: absolute; z-index: -1; width: 230px; height: 230px; right: -112px; top: -110px; border-radius: 44% 56% 61% 39%; background: radial-gradient(circle at 32% 32%, rgba(255,255,255,.86), rgba(163,195,231,.28) 43%, rgba(216,191,234,.12) 65%, transparent 72%); transition: transform .7s var(--glass-ease); }
.audience-card::after { content: ""; position: absolute; z-index: 2; inset: 1px 18% auto; height: 1px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,.98), transparent); }
.audience-card:nth-child(2) { background: rgba(255,255,255,.38); }
.audience-card:nth-child(2) { border-radius: 10px 28px 28px 28px; }
.audience-card:nth-child(2)::before { right: auto; left: -115px; top: 35%; background: radial-gradient(circle at 62% 44%, rgba(255,255,255,.82), rgba(223,192,225,.25) 46%, transparent 70%); }
.audience-card:nth-child(3) { background: rgba(255,255,255,.32); border-radius: 28px 10px 28px 28px; }
.audience-card:nth-child(3)::before { top: auto; bottom: -125px; background: radial-gradient(circle at 38% 30%, rgba(255,255,255,.84), rgba(189,207,231,.28) 46%, transparent 70%); }
.audience-card > * { position: relative; z-index: 1; }
.audience-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.6); box-shadow: var(--shadow-glass-raised); }
.audience-card:hover::before { transform: translate(-10px, 10px) scale(1.08) rotate(7deg); }
.audience-card > span { display: inline-grid; place-items: center; width: 40px; height: 40px; color: var(--accent); background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.7); border-radius: 12px; font-size: .7rem; font-weight: 650; }
.line-icon { margin: 48px 0 42px; color: var(--accent); font-size: 2.3rem; }
.audience-card h3 { margin: 0 0 13px; font-size: 1.5rem; letter-spacing: -.04em; }
.audience-card p { color: var(--muted); font-size: .89rem; line-height: 1.6; }
.audience-card ul { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; padding: 18px 0 0; margin: 0; border-top: 1px solid var(--hairline); }
.audience-card li { padding: 6px 9px; color: var(--ink-soft); background: rgba(255,255,255,.48); border: 1px solid rgba(255,255,255,.68); border-radius: var(--radius-pill); font-size: .66rem; }

.final-cta { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; padding: 120px 20px; text-align: center; }
.cta-ambient { position: absolute; inset: 0; background: radial-gradient(ellipse 62% 56% at 50% 50%, rgba(177,199,232,.58), rgba(223,204,237,.28) 48%, transparent 72%); }
.cta-ambient::before { content: ""; position: absolute; width: min(76vw, 980px); aspect-ratio: 1.8; left: 50%; top: 50%; transform: translate(-50%, -50%); background: rgba(255,255,255,.25); border-radius: 50%; filter: blur(46px); }
.cta-content { position: relative; isolation: isolate; z-index: 2; max-width: 880px; padding: 72px 56px; overflow: hidden; background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.72); border-top-color: rgba(255,255,255,.96); border-radius: 34px; box-shadow: 0 26px 90px rgba(44,54,82,.13), inset 0 1px 0 rgba(255,255,255,.94); backdrop-filter: blur(36px) saturate(155%); -webkit-backdrop-filter: blur(36px) saturate(155%); }
.cta-content::before { content: ""; position: absolute; z-index: -1; width: 430px; height: 250px; left: -135px; top: -135px; border-radius: 50%; background: radial-gradient(circle at 55% 62%, rgba(255,255,255,.9), rgba(163,196,231,.22) 48%, transparent 72%); transform: rotate(-14deg); }
.cta-content::after { content: ""; position: absolute; inset: 1px 15% auto; height: 1px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,1), transparent); }
.final-cta h2 { font-size: clamp(3rem, 6vw, 6.2rem); }
.final-cta p:not(.eyebrow) { max-width: 560px; margin: 25px auto 32px; color: var(--muted); font-size: 1.05rem; }

footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 132px;
  margin: 0 auto 20px;
  padding: 30px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 22px;
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  font-size: .75rem;
}
footer p { text-align: center; }
footer > div { display: flex; justify-content: flex-end; gap: 23px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (hover: hover) and (pointer: fine) {
  .booking-demo:hover { transform: translateY(-5px) rotateX(.35deg); box-shadow: var(--shadow-glass-raised), 0 0 0 1px rgba(255,255,255,.3); }
  .booking-demo:hover::after { transform: translate(-14px, -8px) scale(1.08) rotate(8deg); }
  .flow-node:hover { background: rgba(255,255,255,.74); box-shadow: var(--shadow-glass-raised); }
  .node-one:hover, .node-three:hover { transform: translateY(-5px); }
  .node-two:hover { transform: translate(-50%, calc(-50% - 5px)); }
  .day-column article:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 24px rgba(44,54,82,.12), inset 0 1px 0 rgba(255,255,255,1); }
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .glass-card, .site-header, .button-ghost, .proof-strip, .flow-visual, .audience-card, .cta-content, footer { background: rgba(255,255,255,.92); }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 145px; gap: 58px; }
  .booking-demo { justify-self: start; margin-left: 8vw; }
  .proof-strip { grid-template-columns: repeat(3, 1fr); }
  .proof-strip > p { grid-column: 1 / -1; border-top: 1px solid var(--hairline); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 26px; max-width: 650px; }
  .control-shell { grid-template-columns: 1fr; padding: 50px; }
  .calendar-panel { min-height: 490px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-card:last-child { grid-column: 1 / -1; min-height: 330px; }
}

@media (max-width: 700px) {
  :root { --blur: blur(24px); --radius-card: 18px; }
  .site-header { top: 10px; height: 58px; border-radius: 19px; }
  .site-header nav { position: absolute; display: none; top: 64px; left: 0; right: 0; padding: 12px; flex-direction: column; align-items: stretch; gap: 0; background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.78); border-radius: 18px; box-shadow: 0 16px 44px rgba(44,54,82,.14); backdrop-filter: blur(24px) saturate(145%); -webkit-backdrop-filter: blur(24px) saturate(145%); }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 12px; border-bottom: 1px solid var(--hairline); }
  .menu-button { display: block; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); padding: 118px 20px 110px; overflow: hidden; }
  .hero-media::before { width: 120vw; right: -50vw; top: 26%; }
  .hero-media::after { width: 90vw; height: 60vw; left: -20vw; bottom: -12vw; }
  h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 auto; }
  .booking-demo { margin: 0; padding: 18px; }
  .demo-head h2 { font-size: 1.13rem; }
  .live-badge { display: none; }
  .service-row { padding: 12px; }
  .date-picker, .times { gap: 5px; }
  .scroll-cue { display: none; }
  .proof-strip { margin-top: -42px; grid-template-columns: 1fr; padding: 8px; }
  .proof-strip > div, .proof-strip > p { padding: 20px 18px; border-right: 0; border-bottom: 1px solid var(--hairline); }
  .proof-strip > p { grid-column: auto; border-bottom: 0; }
  .flow-section, .audience-section { width: calc(100% - 32px); padding: 112px 0 80px; }
  .section-heading h2, .control-copy h2, .final-cta h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .flow-visual { height: 760px; margin-top: 50px; border-radius: 22px; }
  .flow-visual::before { width: 118%; right: -54%; top: -11%; }
  .flow-visual::after { left: 50%; right: auto; top: 18%; bottom: 18%; border-top: 0; border-left: 1px dashed rgba(38,58,120,.35); }
  .flow-node { width: calc(100% - 32px); left: 16px; right: auto; }
  .node-one { top: 54px; }
  .node-two { top: 50%; transform: translateY(-50%); }
  .node-three { bottom: 20px; }
  .control-section { padding: 70px 16px 100px; }
  .control-shell { padding: 30px 20px; gap: 40px; }
  .calendar-panel { overflow-x: auto; padding: 18px; }
  .calendar-grid { min-width: 490px; }
  .audience-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .audience-card:last-child { grid-column: auto; }
  .audience-card { min-height: 360px; }
  .final-cta { min-height: 640px; padding: 72px 16px; }
  .cta-content { padding: 54px 22px; border-radius: 22px; }
  .final-cta p:not(.eyebrow) { font-size: .95rem; }
  footer { padding: 32px 20px; grid-template-columns: 1fr; gap: 18px; }
  footer p { margin: 0; text-align: left; }
  footer > div { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .glass-card, .site-header, .button-ghost, .proof-strip, .flow-visual, .audience-card, .cta-content, footer { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,.92); }
}

/* Liquid Glass: neutral material that borrows color from the page beneath it. */
:root {
  --liquid-surface: rgba(255,255,255,.075);
  --liquid-surface-hover: rgba(255,255,255,.12);
  --liquid-border-top: rgba(255,255,255,.72);
  --liquid-border-side: rgba(255,255,255,.25);
  --liquid-border-bottom: rgba(17,18,23,.09);
  --liquid-filter: blur(28px) saturate(180%) brightness(1.04);
  --liquid-filter-heavy: blur(40px) saturate(190%) brightness(1.05);
  --liquid-shadow: 0 14px 44px rgba(17,18,23,.1), inset 0 1px 0 rgba(255,255,255,.7), inset 0 -1px 0 rgba(17,18,23,.06);
}

body {
  background-image:
    linear-gradient(128deg, rgba(174,196,222,.28), transparent 34%, rgba(255,255,255,.2) 52%, rgba(213,199,226,.2) 78%, transparent),
    linear-gradient(22deg, rgba(244,222,194,.24), transparent 42%, rgba(238,243,248,.3));
}
body::before { background: linear-gradient(112deg, rgba(255,255,255,.34), transparent 38%, rgba(132,164,203,.08) 68%, rgba(255,255,255,.24)); }

.glass-card,
.audience-card,
.cta-content {
  background: var(--liquid-surface);
  border-top: 1px solid var(--liquid-border-top);
  border-right: 1px solid var(--liquid-border-side);
  border-bottom: 1px solid var(--liquid-border-bottom);
  border-left: 1px solid var(--liquid-border-side);
  box-shadow: var(--liquid-shadow);
  backdrop-filter: var(--liquid-filter);
  -webkit-backdrop-filter: var(--liquid-filter);
}

.site-header {
  background: rgba(255,255,255,.085);
  border-top: 1px solid rgba(255,255,255,.76);
  border-right: 1px solid rgba(255,255,255,.24);
  border-bottom: 1px solid rgba(17,18,23,.09);
  border-left: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 10px 32px rgba(17,18,23,.1), inset 0 1px 0 rgba(255,255,255,.66), inset 0 -1px 0 rgba(17,18,23,.05);
  backdrop-filter: var(--liquid-filter-heavy);
  -webkit-backdrop-filter: var(--liquid-filter-heavy);
}
.site-header.scrolled { background: rgba(255,255,255,.14); box-shadow: 0 12px 38px rgba(17,18,23,.13), inset 0 1px 0 rgba(255,255,255,.72), inset 0 -1px 0 rgba(17,18,23,.06); }

.hero-media::before,
.hero-media::after { inset: 0; width: auto; height: auto; aspect-ratio: auto; border-radius: 0; filter: none; }
.hero-media::before { background: linear-gradient(118deg, rgba(255,255,255,.22), transparent 34%, rgba(180,199,222,.12) 62%, rgba(255,255,255,.18)); }
.hero-media::after { top: auto; height: 38%; background: linear-gradient(to top, rgba(255,255,255,.18), transparent); }

.button-ghost { background: rgba(255,255,255,.08); border-top-color: rgba(255,255,255,.7); border-bottom-color: rgba(17,18,23,.09); box-shadow: inset 0 1px 0 rgba(255,255,255,.62), inset 0 -1px 0 rgba(17,18,23,.05), 0 8px 24px rgba(17,18,23,.08); backdrop-filter: blur(18px) saturate(170%) brightness(1.04); -webkit-backdrop-filter: blur(18px) saturate(170%) brightness(1.04); }
.button-ghost:hover { background: rgba(255,255,255,.14); }

.booking-demo { box-shadow: var(--liquid-shadow); transition: background .22s ease, box-shadow .22s ease; }
.booking-demo::before { background: linear-gradient(112deg, rgba(255,255,255,.24), transparent 18%, transparent 72%, rgba(255,255,255,.08)); box-shadow: inset 1px 1px 0 rgba(255,255,255,.62), inset -1px -1px 0 rgba(17,18,23,.05); }
.booking-demo::after { z-index: -1; inset: 1px 14% auto; width: auto; height: 1px; right: 14%; bottom: auto; border-radius: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.92), transparent); filter: none; }
.live-badge,
.service-row,
.date-option,
.times button,
.success-message { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.36); box-shadow: inset 0 1px 0 rgba(255,255,255,.42), inset 0 -1px 0 rgba(17,18,23,.04); }
.date-option:hover,
.times button:hover { background: rgba(255,255,255,.2); }

.proof-strip { background: rgba(255,255,255,.055); border-top: 1px solid rgba(255,255,255,.68); border-right: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(17,18,23,.08); border-left: 1px solid rgba(255,255,255,.22); box-shadow: var(--liquid-shadow); backdrop-filter: blur(22px) saturate(175%) brightness(1.03); -webkit-backdrop-filter: blur(22px) saturate(175%) brightness(1.03); }
.proof-strip > div,
.proof-strip > p { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.22); border-bottom-color: rgba(17,18,23,.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.38); }
.proof-strip > div:first-of-type { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.3); border-top-color: rgba(255,255,255,.62); box-shadow: 0 7px 22px rgba(17,18,23,.06), inset 0 1px 0 rgba(255,255,255,.56); }
.proof-strip > div:nth-of-type(2) { background: rgba(255,255,255,.06); }
.proof-strip p { background: rgba(255,255,255,.025); }

.flow-visual { background: rgba(255,255,255,.035); box-shadow: 0 22px 70px rgba(17,18,23,.08), inset 0 1px 0 rgba(255,255,255,.52), inset 0 -1px 0 rgba(17,18,23,.05); backdrop-filter: blur(18px) saturate(165%) brightness(1.03); -webkit-backdrop-filter: blur(18px) saturate(165%) brightness(1.03); }
.flow-visual::before { inset: 0; width: auto; aspect-ratio: auto; right: 0; top: 0; opacity: 1; border-radius: inherit; background: linear-gradient(115deg, rgba(255,255,255,.14), transparent 32%, rgba(255,255,255,.04) 66%, rgba(255,255,255,.11)); filter: none; }
.flow-node::after { inset: 1px 16% auto; width: auto; height: 1px; right: 16%; top: 1px; border-radius: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.84), transparent); }
.flow-node:nth-of-type(1) { background: rgba(255,255,255,.1); }
.flow-node:nth-of-type(2) { background: rgba(255,255,255,.075); }
.flow-node:nth-of-type(3) { background: rgba(255,255,255,.055); }

.control-section { background: linear-gradient(112deg, rgba(181,202,225,.12), transparent 34%, rgba(216,202,229,.1) 72%, transparent); }
.calendar-panel { background: rgba(255,255,255,.055); border-top: 1px solid rgba(255,255,255,.72); border-right: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(17,18,23,.09); border-left: 1px solid rgba(255,255,255,.3); box-shadow: var(--liquid-shadow); backdrop-filter: var(--liquid-filter); -webkit-backdrop-filter: var(--liquid-filter); }
.calendar-panel::before { inset: 0; width: auto; height: auto; right: 0; top: 0; border-radius: inherit; background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 28%, transparent 74%, rgba(255,255,255,.035)); }
.calendar-arrows button { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.3); box-shadow: inset 0 1px 0 rgba(255,255,255,.4); }
.day-column article { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.26); border-top-color: rgba(255,255,255,.62); border-bottom-color: rgba(17,18,23,.07); box-shadow: 0 5px 14px rgba(17,18,23,.06), inset 0 1px 0 rgba(255,255,255,.48); transition: background .2s ease, box-shadow .2s ease; }
.day-column article.blue { background: rgba(38,58,120,.1); border-color: rgba(255,255,255,.34); }

.audience-card { transition: background .22s ease, box-shadow .22s ease; }
.audience-card::before { inset: 0; width: auto; height: auto; right: 0; top: 0; bottom: 0; left: 0; border-radius: inherit; background: linear-gradient(124deg, rgba(255,255,255,.13), transparent 25%, transparent 72%, rgba(255,255,255,.035)); transition: none; }
.audience-card:nth-child(2) { background: rgba(255,255,255,.06); }
.audience-card:nth-child(2)::before { inset: 0; background: linear-gradient(242deg, rgba(255,255,255,.11), transparent 28%, transparent 74%, rgba(255,255,255,.025)); }
.audience-card:nth-child(3) { background: rgba(255,255,255,.045); }
.audience-card:nth-child(3)::before { inset: 0; background: linear-gradient(156deg, rgba(255,255,255,.1), transparent 24%, transparent 68%, rgba(255,255,255,.03)); }
.audience-card > span,
.audience-card li { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.28); box-shadow: inset 0 1px 0 rgba(255,255,255,.4); }

.cta-ambient { background: linear-gradient(126deg, rgba(182,201,223,.16), rgba(255,255,255,.08) 46%, rgba(215,202,228,.13)); }
.cta-ambient::before { inset: 12% 8%; width: auto; aspect-ratio: auto; left: 8%; top: 12%; transform: none; background: linear-gradient(110deg, transparent, rgba(255,255,255,.2), transparent); border-radius: 0; filter: blur(42px); }
.cta-content { background: rgba(255,255,255,.065); backdrop-filter: var(--liquid-filter-heavy); -webkit-backdrop-filter: var(--liquid-filter-heavy); }
.cta-content::before { inset: 0; width: auto; height: auto; left: 0; top: 0; border-radius: inherit; background: linear-gradient(116deg, rgba(255,255,255,.13), transparent 28%, transparent 74%, rgba(255,255,255,.035)); transform: none; }

footer { background: rgba(255,255,255,.05); border-top-color: rgba(255,255,255,.6); border-bottom-color: rgba(17,18,23,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.5); backdrop-filter: blur(20px) saturate(165%) brightness(1.03); -webkit-backdrop-filter: blur(20px) saturate(165%) brightness(1.03); }

@media (hover: hover) and (pointer: fine) {
  .booking-demo:hover,
  .audience-card:hover { transform: none; background: var(--liquid-surface-hover); box-shadow: 0 18px 52px rgba(17,18,23,.14), inset 0 1px 0 rgba(255,255,255,.74), inset 0 -1px 0 rgba(17,18,23,.06); }
  .booking-demo:hover::after,
  .audience-card:hover::before { transform: none; }
  .flow-node:hover { background: rgba(255,255,255,.13); box-shadow: 0 16px 46px rgba(17,18,23,.13), inset 0 1px 0 rgba(255,255,255,.7), inset 0 -1px 0 rgba(17,18,23,.06); }
  .node-one:hover,
  .node-three:hover { transform: none; }
  .node-two:hover { transform: translate(-50%, -50%); }
  .day-column article:hover { transform: none; background: rgba(255,255,255,.24); box-shadow: 0 8px 22px rgba(17,18,23,.1), inset 0 1px 0 rgba(255,255,255,.56); }
}

@media (max-width: 700px) {
  :root { --liquid-filter: blur(18px) saturate(160%) brightness(1.03); --liquid-filter-heavy: blur(24px) saturate(170%) brightness(1.04); }
  .hero-media::before { inset: 0; width: auto; right: 0; top: 0; }
  .hero-media::after { inset: auto 0 0; width: auto; height: 38%; left: 0; bottom: 0; }
  .flow-visual::before { inset: 0; width: auto; right: 0; top: 0; }
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .glass-card, .site-header, .button-ghost, .proof-strip, .flow-visual, .audience-card, .cta-content, footer { background: rgba(245,245,247,.92); border: 1px solid rgba(17,18,23,.1); }
}

@media (prefers-reduced-motion: reduce) {
  .glass-card, .site-header, .button-ghost, .proof-strip, .flow-visual, .audience-card, .cta-content, footer { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(245,245,247,.92); }
}

/* Liquid Retina Launchers */
.launcher-stage {
  height: 650px;
  min-height: 650px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.14fr .93fr .93fr;
  gap: 16px;
  align-items: stretch;
}
.launcher-stage::before { z-index: -1; }
.launcher-stage::after { display: none; }
.feature-launcher,
.feature-launcher.node-one,
.feature-launcher.node-two,
.feature-launcher.node-three {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  transform: none;
  appearance: none;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  transition: background .32s var(--glass-ease), box-shadow .32s var(--glass-ease), transform .45s var(--glass-ease);
}
.feature-launcher:nth-of-type(2) { border-radius: 12px 28px 28px 28px; }
.feature-launcher:nth-of-type(3) { border-radius: 28px 12px 28px 28px; }
.feature-launcher::before { content: ""; position: absolute; z-index: 4; inset: 1px 12% auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.94), transparent); pointer-events: none; }
.feature-launcher::after { content: ""; position: absolute; z-index: -1; inset: 0; width: auto; height: auto; border-radius: inherit; background: linear-gradient(126deg, rgba(255,255,255,.17), transparent 28%, transparent 72%, rgba(255,255,255,.04)); pointer-events: none; }
.launcher-index { position: absolute; z-index: 5; top: 22px; right: 22px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--accent); background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.38); border-radius: 13px; box-shadow: inset 0 1px 0 rgba(255,255,255,.55); font-size: .68rem; font-weight: 650; }
.launcher-scene { position: absolute; z-index: 1; inset: 0 0 164px; display: block; color: var(--ink); overflow: hidden; border-bottom: 1px solid rgba(17,18,23,.06); }
.launcher-copy { position: absolute; z-index: 3; inset: auto 0 0; min-height: 176px; display: block; padding: 24px 24px 26px; background: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.36); }
.launcher-copy small { display: block; margin: 0 0 7px; color: var(--muted); font-size: .7rem; font-weight: 520; }
.launcher-copy strong { display: block; margin: 0; font-size: clamp(1.18rem, 1.6vw, 1.52rem); line-height: 1.08; letter-spacing: -.045em; font-weight: 620; }
.launcher-copy > i { position: absolute; left: 24px; right: 24px; bottom: 21px; display: flex; justify-content: space-between; align-items: center; color: var(--accent); font-size: .76rem; font-style: normal; font-weight: 620; }
.launcher-copy > i b { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(38,58,120,.16); border-radius: 50%; font-weight: 500; transition: transform .3s var(--glass-ease); }

.scene-booking { padding: 74px 28px 24px; }
.scene-month { display: block; margin-bottom: 22px; color: var(--muted); font-size: .72rem; font-style: normal; text-align: center; }
.mini-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; font-style: normal; }
.mini-days b { height: 44px; display: grid; place-items: center; color: var(--muted); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; font-size: .72rem; font-weight: 550; }
.mini-days b.selected { color: white; background: var(--accent); border-color: transparent; box-shadow: 0 8px 22px rgba(38,58,120,.2); }
.mini-slot { width: 74%; min-height: 48px; margin: 22px auto 0; padding: 0 12px 0 16px; display: flex; align-items: center; justify-content: space-between; color: var(--ink-soft); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35); border-radius: 15px; box-shadow: inset 0 1px 0 rgba(255,255,255,.48); font-size: .78rem; font-style: normal; }
.mini-slot b { display: grid; place-items: center; width: 25px; height: 25px; color: white; background: var(--accent); border-radius: 50%; font-size: .68rem; }

.scene-availability { padding: 75px 32px 28px; }
.week-bars { height: 150px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; align-items: end; font-style: normal; }
.week-bars b { position: relative; height: 74%; overflow: hidden; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.28); border-radius: 10px; }
.week-bars b::after { content: ""; position: absolute; inset: auto 4px 4px; height: 48%; background: rgba(38,58,120,.15); border-radius: 6px; }
.week-bars b:nth-child(2) { height: 96%; }
.week-bars b:nth-child(2)::after { height: 27%; background: var(--accent); }
.week-bars b:nth-child(3) { height: 61%; }
.week-bars b:nth-child(4) { height: 83%; }
.week-bars b:nth-child(5) { height: 69%; }
.optimal-slot { min-height: 42px; margin-top: 20px; display: flex; align-items: center; justify-content: center; color: var(--accent); background: rgba(255,255,255,.1); border: 1px solid rgba(38,58,120,.17); border-radius: 13px; font-size: .7rem; font-style: normal; font-weight: 620; }

.scene-automation { padding: 72px 30px 24px; }
.mini-timeline { position: relative; display: grid; gap: 10px; padding-left: 22px; font-style: normal; }
.mini-timeline::before { content: ""; position: absolute; left: 5px; top: 12px; bottom: 12px; width: 1px; background: rgba(17,18,23,.16); }
.mini-timeline b { position: relative; min-height: 52px; padding: 9px 10px; color: var(--ink-soft); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.3); border-radius: 12px; font-size: .69rem; font-weight: 550; }
.mini-timeline b::before { content: ""; position: absolute; left: -22px; top: 19px; width: 7px; height: 7px; background: var(--accent); border: 3px solid rgba(245,245,247,.88); border-radius: 50%; }
.mini-timeline em { display: block; margin-bottom: 2px; color: var(--muted); font-size: .58rem; font-style: normal; font-weight: 500; }

@media (hover: hover) and (pointer: fine) {
  .feature-launcher:hover { transform: translateY(-5px); background: rgba(255,255,255,.13); box-shadow: 0 22px 64px rgba(17,18,23,.14), inset 0 1px 0 rgba(255,255,255,.78), inset 0 -1px 0 rgba(17,18,23,.06); }
  .feature-launcher:hover .launcher-copy > i b { transform: rotate(8deg) scale(1.07); }
  .feature-launcher.node-two:hover { transform: translateY(-5px); }
}

.scene-booking .selected { animation: launcher-date 4.8s ease-in-out infinite; }
.scene-booking .mini-slot { animation: launcher-slot 4.8s ease-in-out infinite; }
.week-bars b:nth-child(2)::after { animation: launcher-availability 5.2s ease-in-out infinite; }
.mini-timeline b { animation: launcher-flow 5.4s ease-in-out infinite; }
.mini-timeline b:nth-child(2) { animation-delay: .35s; }
.mini-timeline b:nth-child(3) { animation-delay: .7s; }
@keyframes launcher-date { 0%, 18%, 100% { transform: scale(1); } 28% { transform: scale(1.08); } }
@keyframes launcher-slot { 0%, 34% { opacity: .38; transform: translateY(5px); } 46%, 88% { opacity: 1; transform: none; } 100% { opacity: .38; } }
@keyframes launcher-availability { 0%, 20%, 100% { opacity: .42; } 38%, 82% { opacity: 1; } }
@keyframes launcher-flow { 0%, 22%, 100% { opacity: .48; } 36%, 76% { opacity: 1; } }

body.dialog-open { overflow: hidden; }
.feature-dialog {
  width: min(1140px, calc(100% - 48px));
  height: min(760px, calc(100dvh - 60px));
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: rgba(245,245,247,.76);
  border-top: 1px solid rgba(255,255,255,.9);
  border-right: 1px solid rgba(255,255,255,.44);
  border-bottom: 1px solid rgba(17,18,23,.12);
  border-left: 1px solid rgba(255,255,255,.44);
  border-radius: 32px;
  box-shadow: 0 38px 120px rgba(17,18,23,.28), inset 0 1px 0 rgba(255,255,255,.82);
  backdrop-filter: blur(44px) saturate(180%) brightness(1.03);
  -webkit-backdrop-filter: blur(44px) saturate(180%) brightness(1.03);
}
.feature-dialog[open] { animation: dialog-enter .52s var(--glass-ease); }
.feature-dialog::backdrop { background: rgba(17,18,23,.25); backdrop-filter: blur(18px) saturate(120%); -webkit-backdrop-filter: blur(18px) saturate(120%); }
.dialog-close { position: absolute; z-index: 10; top: 18px; right: 18px; width: 46px; height: 46px; display: grid; place-items: center; cursor: pointer; color: var(--ink); background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.54); border-radius: 50%; box-shadow: inset 0 1px 0 rgba(255,255,255,.7); font-size: 1.45rem; font-weight: 300; }
.feature-dialog-content { height: 100%; display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; padding: 18px; }
.feature-dialog-copy { padding: 68px 38px 44px; display: flex; flex-direction: column; align-items: flex-start; }
.feature-dialog-copy > p:first-child { margin: 0 0 18px; color: var(--muted); font-size: .76rem; }
.feature-dialog-copy h2 { margin: 0; max-width: 13ch; font-size: clamp(2.5rem, 4.2vw, 4.7rem); line-height: .95; letter-spacing: -.066em; font-weight: 620; }
.feature-dialog-copy h2:focus { outline: none; }
.dialog-rule { width: 42px; height: 1px; margin: 30px 0 25px; background: var(--accent); }
.feature-dialog-copy > p:not(:first-child) { max-width: 52ch; margin: 0; color: var(--ink-soft); font-size: .96rem; line-height: 1.65; }
.feature-dialog-copy .button { margin-top: auto; }
.feature-world { min-width: 0; margin: 54px 0 0; padding: 26px; overflow: auto; background: rgba(255,255,255,.25); border-top: 1px solid rgba(255,255,255,.8); border-right: 1px solid rgba(255,255,255,.4); border-bottom: 1px solid rgba(17,18,23,.08); border-left: 1px solid rgba(255,255,255,.4); border-radius: 24px; box-shadow: 0 18px 54px rgba(17,18,23,.1), inset 0 1px 0 rgba(255,255,255,.58); }
.world-top { min-height: 58px; display: flex; justify-content: space-between; gap: 22px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--hairline); }
.world-top span { color: var(--muted); font-size: .72rem; }
.world-top b { font-size: .76rem; font-weight: 620; text-align: right; }
.choice-group { margin: 22px 0 0; padding: 0; border: 0; }
.choice-group legend { width: 100%; margin-bottom: 10px; color: var(--muted); font-size: .69rem; }
.explorer-choice { min-height: 44px; margin: 0 5px 6px 0; padding: 0 14px; cursor: pointer; color: var(--ink-soft); background: rgba(255,255,255,.32); border: 1px solid rgba(255,255,255,.62); border-radius: 13px; box-shadow: inset 0 1px 0 rgba(255,255,255,.6); font-size: .76rem; }
.explorer-choice.active { color: white; background: var(--accent); border-color: transparent; box-shadow: 0 8px 22px rgba(38,58,120,.2); }
.journey-result { min-height: 68px; margin-top: 20px; padding: 10px 14px; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.34); border: 1px solid rgba(255,255,255,.62); border-radius: 16px; }
.journey-result > span { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--accent); border-radius: 50%; }
.journey-result strong, .journey-result small { display: block; }
.journey-result strong { font-size: .8rem; }
.journey-result small { margin-top: 2px; color: var(--muted); font-size: .66rem; }

.availability-days { height: 236px; padding-top: 22px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; align-items: end; }
.availability-days button { height: 100%; min-width: 0; padding: 12px 6px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; color: var(--muted); background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.52); border-radius: 14px; font-size: .68rem; }
.availability-days button i { position: relative; height: 78%; overflow: hidden; background: rgba(17,18,23,.035); border-radius: 8px; }
.availability-days button i::after { content: ""; position: absolute; inset: auto 4px 4px; height: var(--fill); background: rgba(38,58,120,.14); border-radius: 5px; }
.availability-days button.active { color: var(--accent); border-color: rgba(38,58,120,.22); box-shadow: 0 10px 26px rgba(17,18,23,.08); }
.availability-days button.active i::after { background: var(--accent); }
.rule-list { display: grid; gap: 7px; margin-top: 18px; }
.rule-list button { min-height: 48px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.48); border-radius: 12px; font-size: .7rem; }
.rule-list button b { padding: 5px 8px; color: var(--muted); background: rgba(17,18,23,.045); border-radius: 8px; font-size: .62rem; font-weight: 550; }
.rule-list button[aria-pressed="true"] b { color: white; background: var(--accent); }
.suggestion-line { margin-top: 16px; display: flex; gap: 12px; align-items: center; }
.suggestion-line > span { width: 10px; height: 10px; flex: 0 0 auto; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 6px rgba(38,58,120,.08); }
.suggestion-line p { margin: 0; }
.suggestion-line strong, .suggestion-line small { display: block; }
.suggestion-line strong { font-size: .75rem; }
.suggestion-line small { margin-top: 2px; color: var(--muted); font-size: .64rem; }

.automation-world { padding-top: 22px; }
.automation-flow { position: relative; display: grid; gap: 10px; }
.automation-flow::before { content: ""; position: absolute; left: 21px; top: 24px; bottom: 24px; width: 1px; background: rgba(17,18,23,.14); }
.automation-flow article { position: relative; min-height: 74px; padding: 12px 14px 12px 52px; display: flex; align-items: center; justify-content: space-between; gap: 14px; background: rgba(255,255,255,.23); border: 1px solid rgba(255,255,255,.5); border-radius: 15px; transition: opacity .2s ease, transform .25s var(--glass-ease), box-shadow .2s ease; }
.automation-flow article > i { position: absolute; z-index: 2; left: 9px; width: 26px; height: 26px; display: grid; place-items: center; color: white; background: var(--accent); border-radius: 9px; font-size: .6rem; font-style: normal; }
.automation-flow article strong, .automation-flow article small { display: block; }
.automation-flow article strong { font-size: .76rem; }
.automation-flow article small { margin-top: 2px; color: var(--muted); font-size: .64rem; }
.automation-flow article > span { color: var(--muted); font-size: .61rem; }
.world-action { width: 100%; min-height: 50px; margin-top: 18px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; color: white; background: var(--accent); border: 0; border-radius: var(--radius-pill); font-size: .78rem; font-weight: 620; }
.automation-flow.running article { animation: automation-step 2.2s var(--glass-ease) both; }
.automation-flow.running article:nth-child(2) { animation-delay: .35s; }
.automation-flow.running article:nth-child(3) { animation-delay: .7s; }
.automation-flow.running article:nth-child(4) { animation-delay: 1.05s; }
@keyframes automation-step { 0% { opacity: .34; transform: translateY(5px); } 45%, 100% { opacity: 1; transform: none; box-shadow: 0 9px 24px rgba(17,18,23,.08); } }
@keyframes dialog-enter { from { opacity: 0; transform: translateY(18px) scale(.985); } }

@media (max-width: 980px) {
  .launcher-stage { height: auto; min-height: 0; grid-template-columns: 1fr; padding: 18px; }
  .feature-launcher, .feature-launcher.node-one, .feature-launcher.node-two, .feature-launcher.node-three { min-height: 430px; width: 100%; left: auto; right: auto; top: auto; bottom: auto; }
  .feature-dialog-content { grid-template-columns: 1fr; overflow: auto; }
  .feature-dialog-copy { min-height: 500px; }
  .feature-world { margin-top: 0; }
}

@media (max-width: 700px) {
  .launcher-stage { margin-top: 42px; padding: 10px; border-radius: 24px; }
  .feature-launcher, .feature-launcher.node-one, .feature-launcher.node-two, .feature-launcher.node-three { min-height: 420px; }
  .feature-dialog { position: fixed; inset: 0; width: 100%; height: 100%; margin: 0; border-radius: 0; border: 0; padding-bottom: env(safe-area-inset-bottom); }
  .feature-dialog-content { padding: 12px; gap: 12px; }
  .dialog-close { position: fixed; top: max(14px, env(safe-area-inset-top)); right: 14px; }
  .feature-dialog-copy { min-height: calc(100dvh - 24px); padding: 78px 16px 34px; }
  .feature-dialog-copy h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .feature-dialog-copy .button { margin-top: 34px; }
  .feature-world { margin: 0; padding: 18px; border-radius: 20px; }
  .world-top { align-items: flex-start; flex-direction: column; gap: 5px; }
  .world-top b { text-align: left; }
  .availability-days { height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  .scene-booking .selected,
  .scene-booking .mini-slot,
  .week-bars b:nth-child(2)::after,
  .mini-timeline b,
  .feature-dialog[open],
  .automation-flow.running article { animation: none !important; }
  .feature-launcher,
  .feature-launcher:hover,
  .feature-launcher * { transition: none !important; transform: none !important; }
}
