@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("assets/fonts/Sora-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/DMSans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/InstrumentSerif-Regular-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/InstrumentSerif-Italic-latin.woff2") format("woff2");
}

:root {
  --paper: #fbf8f2;
  --paper-deep: #f2eadf;
  --card: rgba(255, 253, 248, 0.88);
  --white: #fffdf8;
  --ink: #241f1b;
  --ink-soft: #302722;
  --muted: #746a63;
  --line: rgba(66, 45, 34, 0.14);
  --line-dark: rgba(255, 248, 239, 0.14);
  --plum: #74324f;
  --plum-dark: #432433;
  --rose: #d64a64;
  --coral: #f06a4d;
  --amber: #f2b544;
  --amber-light: #ffd98a;
  --olive: #87904c;
  --moss: #55613c;
  --shadow: 0 22px 70px rgba(78, 47, 31, 0.11);
  --soft-shadow: 0 12px 30px rgba(78, 47, 31, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1240px;
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--ink);
  background: #ffd4dc;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  border-radius: 8px;
  background: var(--plum);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-paper,
.section-deep-paper,
.section-plum,
.section-ink {
  position: relative;
  overflow: clip;
}

.section-paper { background: var(--paper); }
.section-deep-paper { background: var(--paper-deep); }
.section-plum { color: var(--white); background: var(--plum); }
.section-ink { color: var(--white); background: var(--ink); }

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--plum), var(--rose) 45%, var(--amber));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ink);
  transition: background 300ms ease, border-color 300ms ease, transform 400ms var(--ease-out), box-shadow 300ms ease;
}

.site-header::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: rgba(66, 45, 34, 0.09);
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.88);
  box-shadow: 0 8px 30px rgba(78, 47, 31, 0.06);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.site-header.is-hidden { transform: translateY(-110%); }

.nav-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), 1360px);
  height: var(--header-height);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.brand-mark {
  --logo-frame-color: var(--plum);
  --logo-moment-color: var(--rose);
  width: 30px;
  height: 30px;
  overflow: visible;
}

.brand-mark__frame { fill: none; stroke: var(--logo-frame-color); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark__moment { fill: var(--logo-moment-color); transform-box: fill-box; transform-origin: center; }
.js .brand-mark--motion .brand-mark__frame { stroke-dasharray: 160; stroke-dashoffset: 160; animation: header-mark-reveal 680ms var(--ease-in-out) 80ms forwards; }
.js .brand-mark--motion .brand-mark__moment { opacity: 0; transform: translate(13px,-13px); animation: header-moment-enter 440ms var(--ease-out) 560ms forwards; }

@keyframes header-mark-reveal { to { stroke-dashoffset: 0; } }
@keyframes header-moment-enter {
  70% { opacity: 1; transform: translate(-1px,1px); }
  100% { opacity: 1; transform: translate(0,0); }
}

.brand-word-accent { color: var(--rose); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: rgba(36, 31, 27, 0.64);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 550;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

.desktop-nav a:hover { color: var(--plum); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.desktop-cta { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.button:hover { transform: translateY(-2px); }

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease-out);
}

.button:hover svg { transform: translateX(3px); }
.button--small { min-height: 38px; padding: 10px 17px; font-size: 11px; }

.button--plum {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 8px 22px rgba(116, 50, 79, 0.16);
}

.button--plum:hover,
.button--rose:hover {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 36px rgba(240, 106, 77, 0.2);
}

.button--rose {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 12px 32px rgba(214, 74, 100, 0.2);
}

.button--paper {
  color: var(--plum);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(59, 25, 40, 0.13);
}

.button--paper:hover { color: var(--plum); background: var(--amber-light); }

.button--amber {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 14px 38px rgba(242, 181, 68, 0.2);
}

.button--amber:hover { color: var(--white); background: var(--coral); }

.button--outline {
  color: var(--plum);
  border-color: rgba(116, 50, 79, 0.25);
  background: rgba(255, 253, 248, 0.4);
}

.button--outline:hover { border-color: var(--rose); background: rgba(214, 74, 100, 0.06); }

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 248, 239, 0.3);
  background: transparent;
}

.button--ghost:hover { border-color: var(--amber-light); background: rgba(255, 248, 239, 0.08); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 250ms var(--ease-out);
}

.menu-toggle span:nth-child(2) { transform: translateY(-4px); }
.menu-toggle span:nth-child(3) { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  height: 100dvh;
  padding: calc(var(--header-height) + 30px) 24px 30px;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(214, 74, 100, 0.16), transparent 32%),
    radial-gradient(circle at 15% 82%, rgba(242, 181, 68, 0.17), transparent 36%),
    rgba(251, 248, 242, 0.98);
}

.mobile-menu nav {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
}

.mobile-menu nav > a:not(.button) {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 8vw, 38px);
  letter-spacing: -0.05em;
}

.mobile-menu .button { margin-top: 26px; }

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 32%, rgba(214, 74, 100, 0.13), transparent 28%),
    radial-gradient(circle at 94% 84%, rgba(242, 181, 68, 0.16), transparent 25%),
    radial-gradient(circle at 6% 20%, rgba(135, 144, 76, 0.12), transparent 27%),
    linear-gradient(145deg, var(--white) 0%, var(--paper) 52%, #f8eee5 100%);
}

.hero::after,
.section-plum::after,
.section-ink::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.hero-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(116, 50, 79, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 50, 79, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-bloom {
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-bloom--rose { top: 12%; right: 2%; background: rgba(214, 74, 100, 0.09); }
.hero-bloom--amber { bottom: -31%; left: -13%; background: rgba(242, 181, 68, 0.11); }

.hero-dots i {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0.55;
}

.hero-dots i:nth-child(1) { top: 19%; right: 45%; background: var(--coral); }
.hero-dots i:nth-child(2) { top: 14%; right: 40%; width: 5px; height: 5px; background: var(--amber); }
.hero-dots i:nth-child(3) { top: 28%; right: 48%; width: 4px; height: 4px; background: var(--olive); }
.hero-dots i:nth-child(4) { top: 37%; right: 39%; width: 4px; height: 4px; background: var(--rose); }

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 800px;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: clamp(50px, 7vw, 112px);
  padding-top: calc(var(--header-height) + 55px);
  padding-bottom: 70px;
}

.hero-copy { max-width: 700px; }

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow { margin-bottom: 26px; }

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 5px rgba(135, 144, 76, 0.1), 0 0 18px rgba(135, 144, 76, 0.4);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot { 50% { opacity: 0.45; transform: scale(0.75); } }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(54px, 5.9vw, 88px);
  font-weight: 430;
  line-height: 0.98;
  letter-spacing: -0.072em;
}

h1 em,
h2 em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 em {
  color: var(--rose);
  background: linear-gradient(90deg, var(--plum), var(--rose) 52%, var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 570;
  transition: color 180ms ease;
}

.text-link:hover { color: var(--rose); }
.text-link .link-arrow,
.text-link > span { transition: transform 220ms var(--ease-out); }
.text-link:hover .link-arrow,
.text-link:hover > span { transform: translate(2px, -2px); }

.text-link--plum { padding-bottom: 6px; border-bottom: 1px solid rgba(116, 50, 79, 0.18); }
.text-link--light { color: var(--amber-light); padding-bottom: 6px; border-bottom: 1px solid rgba(255, 217, 138, 0.22); }
.text-link--light:hover { color: var(--white); }

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: rgba(36, 31, 27, 0.48);
  font-size: 11px;
}

.hero-note::before { width: 20px; height: 1px; content: ""; background: var(--rose); }

.hero-visual {
  --pointer-x: 0deg;
  --pointer-y: 0deg;
  position: relative;
  min-height: 600px;
  perspective: 1200px;
}

.console-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 74, 100, 0.18), rgba(242, 181, 68, 0.06) 42%, transparent 68%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
}

.console-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(116, 50, 79, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.console-orbit--outer { width: 580px; height: 580px; animation: orbit-spin 26s linear infinite; }
.console-orbit--inner { width: 505px; height: 505px; animation: orbit-spin 18s linear infinite reverse; }

.console-orbit span {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 18px var(--coral);
}

.console-orbit--inner span { background: var(--amber); box-shadow: 0 0 18px var(--amber); }

@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.call-console {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(100%, 458px);
  min-height: 550px;
  padding: 20px 22px 22px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 240, 207, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 106, 77, 0.22), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(242, 181, 68, 0.09), transparent 35%),
    linear-gradient(145deg, #7d3857 0%, var(--plum) 35%, var(--plum-dark) 100%);
  box-shadow: 0 32px 90px rgba(88, 39, 57, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) rotateX(var(--pointer-y)) rotateY(var(--pointer-x));
  transform-style: preserve-3d;
  transition: transform 600ms var(--ease-out);
}

.call-console::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.09), transparent 34%, transparent 72%, rgba(242, 181, 68, 0.08));
}

.call-console__topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  color: rgba(255, 248, 239, 0.58);
  border-bottom: 1px solid rgba(255, 248, 239, 0.15);
  font-family: "Sora", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.call-console__topline > span:first-child { display: flex; align-items: center; gap: 9px; color: #fff0cf; }
.call-console__topline .live-dot { background: var(--amber); box-shadow: 0 0 0 5px rgba(242, 181, 68, 0.09), 0 0 18px rgba(242, 181, 68, 0.5); }
.mono { font-variant-numeric: tabular-nums; }
.mono b { color: rgba(255, 248, 239, 0.82); font-weight: 500; }

.caller-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 0 12px;
}

.caller-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--amber-light);
  border: 1px solid rgba(255, 217, 138, 0.25);
  border-radius: 50%;
  background: rgba(242, 181, 68, 0.08);
}

.caller-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.caller-row div:nth-child(2) span,
.caller-row div:nth-child(2) strong { display: block; }
.caller-row div:nth-child(2) span { color: rgba(255, 248, 239, 0.5); font-size: 9px; }
.caller-row div:nth-child(2) strong { margin-top: 2px; font-family: "Sora", sans-serif; font-size: 12px; font-weight: 520; }

.language-chip {
  padding: 5px 8px;
  color: rgba(255, 248, 239, 0.72);
  border: 1px solid rgba(255, 248, 239, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Sora", sans-serif;
  font-size: 8px;
}

.caller-quote {
  position: relative;
  z-index: 2;
  padding: 12px 15px;
  color: rgba(255, 248, 239, 0.72);
  border: 1px solid rgba(255, 248, 239, 0.11);
  border-radius: 12px 12px 12px 3px;
  background: rgba(255, 255, 255, 0.045);
  font-family: "Instrument Serif", serif;
  font-size: 15px;
  font-style: italic;
}

.voice-stage {
  position: relative;
  display: grid;
  width: 95px;
  height: 95px;
  margin: 15px auto 0;
  place-items: center;
}

.voice-rings,
.voice-rings i { position: absolute; inset: 0; border-radius: 50%; }
.voice-rings i { border: 1px solid rgba(242, 181, 68, 0.28); animation: voice-ring 3s ease-out infinite; }
.voice-rings i:nth-child(2) { animation-delay: 1s; }
.voice-rings i:nth-child(3) { animation-delay: 2s; }

@keyframes voice-ring {
  0% { opacity: 0.65; transform: scale(0.56); }
  85%, 100% { opacity: 0; transform: scale(1.22); }
}

.voice-mark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 217, 138, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 240, 207, 0.19), rgba(214, 74, 100, 0.17));
  box-shadow: 0 0 42px rgba(242, 181, 68, 0.15), inset 0 0 22px rgba(255, 240, 207, 0.06);
}

.voice-mark svg { width: 30px; overflow: visible; }
.arrival-motion-frame { fill: none; stroke: #fff0cf; stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; }
.arrival-motion-moment { fill: var(--amber); transform-box: fill-box; transform-origin: center; }

.js .arrival-motion-frame { stroke-dasharray: 160; stroke-dashoffset: 160; }
.js .arrival-motion-moment { opacity: 0; transform: translate(13px,-13px); }
.js .hero-visual.is-visible .arrival-motion-frame { animation: arrival-frame-reveal 1.05s var(--ease-in-out) 280ms forwards; }
.js .hero-visual.is-visible .arrival-motion-moment { animation: arrival-moment-enter 720ms var(--ease-out) 1.05s forwards; }

@keyframes arrival-frame-reveal { to { stroke-dashoffset: 0; } }
@keyframes arrival-moment-enter {
  70% { opacity: 1; transform: translate(-1px,1px); }
  100% { opacity: 1; transform: translate(0,0); }
}

.waveform {
  position: relative;
  z-index: 2;
  display: flex;
  height: 29px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
}

.waveform i {
  display: block;
  width: 2px;
  height: var(--wave-height, 8px);
  border-radius: 999px;
  background: linear-gradient(to top, rgba(240, 106, 77, 0.26), var(--amber-light));
  transform-origin: center;
  animation: waveform 0.85s ease-in-out infinite alternate;
  animation-delay: var(--wave-delay, 0ms);
}

@keyframes waveform {
  from { opacity: 0.35; transform: scaleY(0.35); }
  to { opacity: 0.95; transform: scaleY(1); }
}

.agent-caption {
  position: relative;
  z-index: 2;
  min-height: 19px;
  margin: 1px 0 13px;
  color: rgba(255, 248, 239, 0.82);
  font-family: "Instrument Serif", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.call-progress {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 248, 239, 0.14);
  border-bottom: 1px solid rgba(255, 248, 239, 0.14);
  list-style: none;
}

.call-progress li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: rgba(255, 248, 239, 0.35);
  font-family: "Sora", sans-serif;
  font-size: 8px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 350ms ease;
}

.call-progress li:not(:last-child)::after {
  position: absolute;
  top: 10px;
  right: -14%;
  width: 28%;
  height: 1px;
  content: "";
  background: rgba(255, 248, 239, 0.15);
}

.call-progress li span { color: rgba(255, 248, 239, 0.3); font-size: 7px; }
.call-progress li.is-active,
.call-progress li.is-complete,
.call-progress li.is-active span,
.call-progress li.is-complete span { color: var(--amber-light); }

.booking-ticket {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 217, 138, 0.22);
  border-radius: 14px;
  background: rgba(255, 248, 239, 0.07);
  transition: transform 500ms var(--ease-out), border-color 500ms ease, box-shadow 500ms ease;
}

.booking-ticket.is-confirmed { border-color: rgba(255, 217, 138, 0.52); box-shadow: 0 0 34px rgba(242, 181, 68, 0.11); transform: translateY(-2px); }

.ticket-date {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: rgba(242, 181, 68, 0.11);
  line-height: 1;
}

.ticket-date span { color: var(--amber-light) !important; font-size: 7px !important; }
.ticket-date strong { margin: 0 !important; color: var(--white); font-size: 15px !important; }
.booking-ticket > div:nth-child(2) span,
.booking-ticket > div:nth-child(2) strong { display: block; }
.booking-ticket > div:nth-child(2) span { color: rgba(255, 248, 239, 0.52); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.booking-ticket > div:nth-child(2) strong { margin-top: 2px; font-family: "Sora", sans-serif; font-size: 11px; font-weight: 530; }

.ticket-check {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--plum);
  border-radius: 50%;
  background: var(--amber);
  font-size: 11px;
}

.signal-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--white);
  border: 1px solid rgba(116, 50, 79, 0.16);
  border-radius: 10px;
  background: rgba(62, 34, 47, 0.92);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
  font-family: "Sora", sans-serif;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-card span { color: rgba(255, 248, 239, 0.55); }
.signal-card strong { color: var(--amber-light); font-weight: 600; }
.signal-card--intent { top: 19%; left: -5%; }
.signal-card--calendar { right: -3%; bottom: 12%; }

.capability-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.capability-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

.capability-strip > div:first-child { padding-left: 0; }
.capability-strip > div:last-child { border-right: 0; }
.capability-strip span { grid-row: 1 / 3; color: var(--rose); font-family: "Sora", sans-serif; font-size: 8px; }
.capability-strip strong { font-family: "Sora", sans-serif; font-size: 11px; font-weight: 570; }
.capability-strip small { color: var(--muted); font-size: 10px; }

.problem,
.outcomes,
.solutions-preview,
.control-preview { padding: 145px 0; }

.section-heading { max-width: 830px; margin-bottom: 66px; }

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.69fr);
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.product-preview__copy h2,
.channels-copy h2,
.status-copy h2,
.control-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 18px 0 0;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 440;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.section-heading h2 em,
.channels-copy h2 em,
.control-copy h2 em,
.faq-heading h2 em { color: var(--rose); }

.section-heading > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.heading-aside { align-self: end; }
.heading-aside p { max-width: 480px; margin-bottom: 25px; color: var(--muted); font-size: 16px; line-height: 1.75; }

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-item {
  position: relative;
  min-height: 315px;
  padding: 35px 34px 31px;
  border-right: 1px solid var(--line);
  transition: background 300ms ease, transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.problem-item:last-child { border-right: 0; }
.problem-item:hover { z-index: 2; background: var(--card); box-shadow: var(--shadow); transform: translateY(-7px); }
.problem-index { position: absolute; top: 25px; right: 27px; color: rgba(116, 50, 79, 0.35); font-family: "Sora", sans-serif; font-size: 8px; }

.problem-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 52px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.problem-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.problem-icon--rose { color: var(--rose); background: rgba(214, 74, 100, 0.07); border-color: rgba(214, 74, 100, 0.18); }
.problem-icon--olive { color: var(--olive); background: rgba(135, 144, 76, 0.08); border-color: rgba(135, 144, 76, 0.2); }
.problem-icon--amber { color: #ba7d16; background: rgba(242, 181, 68, 0.1); border-color: rgba(242, 181, 68, 0.25); }
.problem-item h3 { margin-bottom: 12px; font-size: 21px; font-weight: 560; letter-spacing: -0.045em; }
.problem-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.product-preview { padding: 150px 0; background: linear-gradient(135deg, #3d2530 0%, var(--plum) 48%, #4e2b37 100%); }
.section-grain { position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 60px 60px; }

.product-preview__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.79fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: 105px;
}

.kicker--amber { color: var(--amber-light); }
.product-preview__copy h2 em,
.status-copy h2 em,
.final-cta h2 em { color: var(--amber-light); }
.product-preview__copy > p { max-width: 500px; margin: 27px 0 33px; color: rgba(255, 248, 239, 0.66); font-size: 16px; line-height: 1.8; }

.loop-board {
  padding: 27px;
  border: 1px solid rgba(255, 248, 239, 0.15);
  border-radius: 27px;
  background: rgba(43, 21, 31, 0.38);
  box-shadow: 0 28px 70px rgba(43, 17, 29, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.loop-board__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 248, 239, 0.13);
  color: rgba(255, 248, 239, 0.48);
  font-family: "Sora", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.loop-board__top span:last-child { display: flex; align-items: center; gap: 7px; color: var(--amber-light); }
.loop-board__top i { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 12px var(--amber); }

.loop-steps { display: grid; margin: 20px 0; padding: 0; list-style: none; }

.loop-steps li {
  position: relative;
  display: grid;
  min-height: 70px;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 248, 239, 0.09);
  border-radius: 11px;
  transition: background 400ms ease, transform 400ms var(--ease-out);
}

.loop-steps li:last-child { border-bottom: 0; }
.loop-steps li.is-active { background: rgba(255, 248, 239, 0.08); transform: translateX(5px); }
.loop-steps li > span { color: rgba(255, 217, 138, 0.52); font-family: "Sora", sans-serif; font-size: 8px; }
.loop-steps strong,
.loop-steps small { display: block; }
.loop-steps strong { font-family: "Sora", sans-serif; font-size: 13px; font-weight: 540; }
.loop-steps small { margin-top: 2px; color: rgba(255, 248, 239, 0.45); font-size: 10px; }
.loop-steps li > i { width: 7px; height: 7px; border: 1px solid rgba(255, 217, 138, 0.32); border-radius: 50%; transition: background 400ms ease, box-shadow 400ms ease; }
.loop-steps li.is-active > i { background: var(--amber); box-shadow: 0 0 14px rgba(242, 181, 68, 0.5); }

.loop-outcome {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255, 217, 138, 0.18);
  border-radius: 14px;
  background: rgba(242, 181, 68, 0.07);
}

.loop-outcome__icon { display: grid; width: 38px; height: 38px; place-items: center; color: var(--amber-light); border-radius: 11px; background: rgba(242, 181, 68, 0.1); }
.loop-outcome__icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.loop-outcome span,
.loop-outcome strong { display: block; }
.loop-outcome span { color: rgba(255, 248, 239, 0.42); font-size: 8px; text-transform: uppercase; }
.loop-outcome strong { margin-top: 2px; font-family: "Sora", sans-serif; font-size: 11px; font-weight: 520; }

.outcomes .section-heading p { color: var(--muted); }

.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }

.outcome-card {
  position: relative;
  min-height: 420px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: transform 350ms var(--ease-out), box-shadow 350ms ease, border-color 350ms ease;
}

.outcome-card:hover { border-color: rgba(116, 50, 79, 0.25); box-shadow: var(--shadow); transform: translateY(-6px); }
.outcome-card::after { position: absolute; right: -75px; bottom: -90px; width: 230px; height: 230px; content: ""; border-radius: 50%; opacity: 0.14; filter: blur(5px); }
.outcome-card--rose::after { background: var(--rose); }
.outcome-card--olive::after { background: var(--olive); }
.outcome-card--amber::after { background: var(--amber); }

.outcome-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 72px; }
.outcome-card__top span { color: rgba(116, 50, 79, 0.45); font-family: "Sora", sans-serif; font-size: 8px; }
.outcome-card__top i { width: 9px; height: 9px; border-radius: 50%; }
.outcome-card--rose .outcome-card__top i { background: var(--rose); box-shadow: 0 0 16px rgba(214,74,100,.35); }
.outcome-card--olive .outcome-card__top i { background: var(--olive); box-shadow: 0 0 16px rgba(135,144,76,.35); }
.outcome-card--amber .outcome-card__top i { background: var(--amber); box-shadow: 0 0 16px rgba(242,181,68,.35); }
.outcome-card h3 { margin-bottom: 15px; font-size: 27px; font-weight: 470; line-height: 1.15; letter-spacing: -0.05em; }
.outcome-card > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.mini-signal,
.mini-tasks,
.mini-calendar { position: absolute; z-index: 2; right: 30px; bottom: 30px; left: 30px; }

.mini-signal { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 12px 13px; border: 1px solid rgba(214,74,100,.17); border-radius: 11px; background: rgba(255,253,248,.62); font-family: "Sora", sans-serif; font-size: 8px; }
.mini-signal span { color: var(--muted); }
.mini-signal strong { font-weight: 560; }
.mini-signal i { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }

.mini-tasks { display: grid; gap: 6px; }
.mini-tasks span { display: flex; align-items: center; justify-content: space-between; padding: 9px 11px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,253,248,.62); color: var(--muted); font-size: 9px; }
.mini-tasks b { color: var(--moss); font-family: "Sora", sans-serif; font-size: 7px; text-transform: uppercase; }

.mini-calendar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 13px; border: 1px solid rgba(242,181,68,.22); border-radius: 11px; background: rgba(255,253,248,.62); font-family: "Sora", sans-serif; font-size: 8px; }
.mini-calendar span { color: var(--muted); }
.mini-calendar i { height: 7px; border-radius: 999px; background: var(--amber); }
.mini-calendar strong { color: #9b6a16; font-weight: 570; }

.channels { padding: 145px 0; }
.channels::before { position: absolute; top: -220px; right: -180px; width: 600px; height: 600px; content: ""; border-radius: 50%; background: rgba(214,74,100,.08); filter: blur(95px); }

.channels-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, .83fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 110px;
}

.channels-copy > p { max-width: 510px; margin: 27px 0 30px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.channel-stack { display: grid; gap: 12px; }

.channel-card {
  display: grid;
  min-height: 138px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 19px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,253,248,.52);
  transition: transform 300ms var(--ease-out), background 300ms ease, box-shadow 300ms ease;
}

.channel-card:hover { background: var(--card); box-shadow: var(--soft-shadow); transform: translateX(-5px); }
.channel-card--featured { border-color: rgba(116,50,79,.19); background: linear-gradient(105deg, rgba(116,50,79,.07), rgba(255,253,248,.58)); }
.channel-card__icon { display: grid; width: 54px; height: 54px; place-items: center; color: var(--plum); border-radius: 17px; background: rgba(116,50,79,.08); }
.channel-card__icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.channel-card div:nth-child(2) > span { color: var(--plum); font-family: "Sora", sans-serif; font-size: 8px; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.channel-card h3 { margin: 8px 0 0; font-size: 17px; font-weight: 510; letter-spacing: -.04em; }

.status-pill { padding: 7px 9px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; font-family: "Sora", sans-serif; font-size: 7px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.status-pill--now { display: flex; align-items: center; gap: 7px; color: var(--moss); border-color: rgba(135,144,76,.22); background: rgba(135,144,76,.07); }
.status-pill--now i { width: 5px; height: 5px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 9px rgba(135,144,76,.4); }

.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.solution-card {
  position: relative;
  min-height: 390px;
  padding: 31px 27px;
  border-right: 1px solid var(--line);
  transition: background 300ms ease, transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.solution-card:last-child { border-right: 0; }
.solution-card:hover { z-index: 2; background: var(--card); box-shadow: var(--shadow); transform: translateY(-7px); }
.solution-card__index { position: absolute; top: 26px; right: 25px; color: rgba(116,50,79,.35); font-family: "Sora", sans-serif; font-size: 8px; }

.solution-card__icon { display: grid; width: 60px; height: 60px; margin-bottom: 72px; place-items: center; border-radius: 19px; }
.solution-card__icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.solution-card__icon--rose { color: var(--rose); background: rgba(214,74,100,.08); }
.solution-card__icon--amber { color: #b87a12; background: rgba(242,181,68,.12); }
.solution-card__icon--olive { color: var(--moss); background: rgba(135,144,76,.11); }
.solution-card__icon--plum { color: var(--plum); background: rgba(116,50,79,.08); }
.solution-card h3 { margin-bottom: 13px; font-size: 20px; font-weight: 540; line-height: 1.2; letter-spacing: -.045em; }
.solution-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.solution-card__link { position: absolute; bottom: 29px; left: 27px; display: inline-flex; align-items: center; gap: 9px; color: var(--plum); font-family: "Sora", sans-serif; font-size: 9px; font-weight: 590; }
.solution-card__link b { font-size: 12px; transition: transform 200ms ease; }
.solution-card:hover .solution-card__link b { transform: translate(2px,-2px); }

.status-preview { padding: 145px 0; background: radial-gradient(circle at 84% 12%, rgba(214,74,100,.18), transparent 28%), radial-gradient(circle at 12% 88%, rgba(242,181,68,.09), transparent 27%), linear-gradient(145deg, #211d1a, #34252a 55%, var(--ink)); }
.status-glow { position: absolute; top: 50%; left: 18%; width: 600px; height: 600px; border-radius: 50%; background: rgba(116,50,79,.08); filter: blur(100px); transform: translate(-50%,-50%); }

.status-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(330px,.76fr) minmax(550px,1.2fr); align-items: center; gap: 100px; }
.status-copy > p { max-width: 500px; margin: 27px 0 30px; color: rgba(255,248,239,.58); font-size: 16px; line-height: 1.8; }
.status-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.status-panel { min-height: 425px; padding: 28px; border: 1px solid rgba(255,248,239,.14); border-radius: var(--radius-lg); background: radial-gradient(circle at 84% 12%, rgba(135,144,76,.16), transparent 32%), rgba(135,144,76,.04); }
.status-panel--next { background: radial-gradient(circle at 84% 12%, rgba(214,74,100,.18), transparent 32%), rgba(214,74,100,.03); }
.status-panel__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid rgba(255,248,239,.13); color: rgba(255,248,239,.48); font-family: "Sora", sans-serif; font-size: 8px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.status-panel__head span { display: flex; align-items: center; gap: 8px; color: #cbd28c; }
.status-panel--next .status-panel__head span { color: #ffb4c2; }
.status-panel--next .status-panel__head i { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 14px rgba(214,74,100,.45); }
.status-panel__head b { padding: 5px 7px; border: 1px solid rgba(255,248,239,.12); border-radius: 999px; font-size: 7px; font-weight: 600; }
.status-panel h3 { margin: 28px 0 23px; font-size: 27px; font-weight: 460; line-height: 1.17; letter-spacing: -.05em; }
.status-panel ul { display: grid; margin: 0; padding: 0; list-style: none; }
.status-panel li { position: relative; padding: 11px 0 11px 19px; border-bottom: 1px solid rgba(255,248,239,.08); color: rgba(255,248,239,.62); font-size: 12px; }
.status-panel li::before { position: absolute; top: 18px; left: 1px; width: 5px; height: 5px; content: ""; border-radius: 50%; background: var(--olive); }
.status-panel--next li::before { background: var(--rose); }

.control-layout { display: grid; grid-template-columns: minmax(500px,1fr) minmax(360px,.82fr); align-items: center; gap: 115px; }

.control-map { position: relative; min-height: 460px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: radial-gradient(circle at 50% 48%,rgba(214,74,100,.065),transparent 38%),var(--card); box-shadow: var(--shadow); }
.control-grid { position: absolute; inset: 0; opacity: .58; background-image: linear-gradient(rgba(116,50,79,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(116,50,79,.045) 1px,transparent 1px); background-size: 38px 38px; }
.control-map__topline { position: absolute; z-index: 4; top: 23px; right: 25px; left: 25px; display: flex; align-items: center; justify-content: space-between; color: rgba(36,31,27,.43); font-family: "Sora", sans-serif; font-size: 7px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.control-map__topline span:last-child { display: flex; align-items: center; gap: 7px; color: var(--moss); }
.control-map__topline i { width: 6px; height: 6px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 4px rgba(135,144,76,.1); }
.control-map::before,
.control-map::after { position: absolute; top: 50%; left: 50%; content: ""; border: 1px solid rgba(116,50,79,.15); border-radius: 50%; transform: translate(-50%,-50%); }
.control-map::before { width: 310px; height: 310px; }
.control-map::after { width: 194px; height: 194px; border-style: dashed; animation: map-spin 28s linear infinite; }
@keyframes map-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.control-node { position: absolute; z-index: 3; color: var(--ink); border: 1px solid rgba(116,50,79,.17); background: rgba(255,253,248,.96); box-shadow: var(--soft-shadow); font-family: "Sora", sans-serif; }
.control-node--caller,
.control-node--calendar { top: 50%; display: flex; width: 132px; height: 78px; align-items: center; gap: 10px; padding: 11px; border-radius: 21px; transform: translateY(-50%); }
.control-node--caller { left: 22px; }
.control-node--calendar { right: 22px; }
.control-node__icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; color: var(--plum); border-radius: 11px; background: rgba(214,74,100,.08); }
.control-node__icon svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.control-node__copy { min-width: 0; }
.control-node__copy small,
.control-node__copy strong { display: block; }
.control-node__copy small { margin-bottom: 3px; color: var(--muted); font-size: 6px; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; }
.control-node__copy strong { font-size: 8px; font-weight: 650; line-height: 1.25; }
.control-node--assistant { top: 50%; left: 50%; display: flex; width: 156px; height: 156px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; color: var(--white); border-color: rgba(255,217,138,.28); border-radius: 50%; background: radial-gradient(circle at 36% 27%,rgba(214,74,100,.34),transparent 40%),linear-gradient(145deg,var(--plum),#4a2736); box-shadow: 0 22px 48px rgba(116,50,79,.25),inset 0 1px 0 rgba(255,255,255,.08); transform: translate(-50%,-50%); }
.control-node--assistant svg {
  --logo-frame-color: #fff0cf;
  --logo-moment-color: var(--amber);
  width: 45px;
}
.control-node--assistant small { color: rgba(255,248,239,.5); font-size: 6px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.control-node--assistant strong { font-size: 9px; font-weight: 650; }

.control-line { position: absolute; z-index: 2; top: 50%; height: 1px; background: rgba(116,50,79,.24); }
.control-line--one { left: 154px; width: calc(50% - 232px); }
.control-line--two { right: 154px; width: calc(50% - 232px); }
.control-line i { position: absolute; top: -3px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 10px rgba(214,74,100,.52); animation: line-flow 2.6s linear infinite; }
.control-line--two i { animation-delay: 1.3s; }
@keyframes line-flow { to { left: calc(100% - 7px); } }

.control-badge { position: absolute; z-index: 4; bottom: 34px; left: 50%; display: flex; align-items: center; gap: 9px; padding: 10px 13px; color: var(--moss); border: 1px solid rgba(135,144,76,.25); border-radius: 999px; background: rgba(255,253,248,.96); box-shadow: var(--soft-shadow); font-family: "Sora", sans-serif; font-size: 8px; font-weight: 600; transform: translateX(-50%); }
.control-badge::before { position: absolute; bottom: 100%; left: 50%; width: 1px; height: 76px; content: ""; background: linear-gradient(to top,rgba(135,144,76,.45),rgba(116,50,79,.12)); }
.control-badge::after { position: absolute; bottom: calc(100% + 73px); left: calc(50% - 3px); width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--olive); box-shadow: 0 0 11px rgba(135,144,76,.45); }
.control-badge span { display: grid; width: 18px; height: 18px; place-items: center; color: var(--white); border-radius: 50%; background: var(--olive); }

.control-copy > p { margin: 27px 0 29px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.control-points { margin: 0 0 28px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.control-points li { display: grid; grid-template-columns: 37px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.control-points li > span { padding-top: 4px; color: var(--rose); font-family: "Sora", sans-serif; font-size: 8px; }
.control-points strong,
.control-points small { display: block; }
.control-points strong { font-family: "Sora", sans-serif; font-size: 12px; font-weight: 570; }
.control-points small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.faq-preview { padding: 20px 0 140px; }
.faq-layout { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(500px,1.12fr); align-items: start; gap: 120px; padding-top: 105px; border-top: 1px solid var(--line); }
.faq-heading { position: sticky; top: 135px; }
.faq-heading h2 { font-size: clamp(40px,4.2vw,60px); }
.faq-heading > p { margin: 23px 0 25px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font-family: "Sora", sans-serif; font-size: 15px; font-weight: 520; line-height: 1.4; letter-spacing: -.035em; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 26px; height: 26px; flex: 0 0 auto; border: 1px solid rgba(116,50,79,.2); border-radius: 50%; background: rgba(214,74,100,.05); }
.accordion summary span::before,
.accordion summary span::after { position: absolute; top: 50%; left: 50%; width: 8px; height: 1px; content: ""; background: var(--plum); transform: translate(-50%,-50%); transition: transform 250ms var(--ease-out); }
.accordion summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.accordion details > div p { max-width: 680px; margin: 0; padding: 0 50px 25px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.final-cta { padding: 145px 0; background: radial-gradient(circle at 50% 5%,rgba(242,181,68,.16),transparent 34%),radial-gradient(circle at 10% 90%,rgba(240,106,77,.19),transparent 27%),linear-gradient(135deg,#3b2330,var(--plum) 55%,#4e2837); }
.final-cta__glow { position: absolute; top: 50%; left: 50%; width: 900px; height: 540px; border-radius: 50%; background: radial-gradient(circle,rgba(242,181,68,.12),transparent 65%); transform: translate(-50%,-50%); }
.final-cta__inner { position: relative; z-index: 2; max-width: 900px; text-align: center; }
.final-cta h2 { margin-top: 22px; font-size: clamp(50px,7vw,88px); }
.final-cta p { margin: 27px auto 33px; color: rgba(255,248,239,.65); font-size: 17px; }
.final-actions { display: flex; align-items: center; justify-content: center; gap: 12px; }
.final-cta small { display: block; margin-top: 18px; color: rgba(255,248,239,.42); font-size: 9px; }

.site-footer { color: var(--white); background: #1c1916; }
.footer-main { display: grid; grid-template-columns: minmax(280px,1.7fr) repeat(3,minmax(130px,.65fr)); gap: 55px; padding-top: 68px; padding-bottom: 62px; border-bottom: 1px solid rgba(255,248,239,.12); }
.site-footer .brand { color: var(--white); }
.site-footer .brand-mark { --logo-frame-color: #fff0cf; --logo-moment-color: #fff0cf; }
.site-footer .brand-word-accent { color: var(--amber); }
.brand--footer { font-size: 20px; }
.brand--footer .brand-mark { width: 34px; height: 34px; }
.footer-brand p { max-width: 300px; margin: 20px 0 0; color: rgba(255,248,239,.5); font-size: 12px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column > span { margin-bottom: 8px; color: var(--amber-light); font-family: "Sora", sans-serif; font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { color: rgba(255,248,239,.52); font-size: 11px; transition: color 180ms ease; }
.footer-column a:hover { color: #ffd4dc; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 21px; padding-bottom: 21px; color: rgba(255,248,239,.3); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom div { display: flex; gap: 19px; }

.prototype-toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(calc(100% - 32px), 390px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--white);
  border: 1px solid rgba(255,217,138,.2);
  border-radius: 16px;
  background: rgba(55,31,42,.95);
  box-shadow: 0 20px 60px rgba(44,23,33,.25);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 280ms ease, transform 350ms var(--ease-out);
}

.prototype-toast.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.prototype-toast__icon { display: grid; width: 36px; height: 36px; place-items: center; color: var(--plum); border-radius: 11px; background: var(--amber); font-family: "Sora", sans-serif; }
.prototype-toast strong,
.prototype-toast small { display: block; }
.prototype-toast strong { font-family: "Sora", sans-serif; font-size: 11px; font-weight: 570; }
.prototype-toast small { margin-top: 2px; color: rgba(255,248,239,.55); font-size: 9px; }
.prototype-toast button { display: grid; width: 28px; height: 28px; padding: 0; place-items: center; color: rgba(255,248,239,.65); border: 0; background: transparent; cursor: pointer; font-size: 18px; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal--delay { transition-delay: 130ms; }
.js .reveal--delay-1 { transition-delay: 90ms; }
.js .reveal--delay-2 { transition-delay: 180ms; }
.js .reveal--delay-3 { transition-delay: 270ms; }

@media (max-width: 1140px) {
  .desktop-nav { gap: 21px; }
  .hero-layout { grid-template-columns: minmax(0,.95fr) minmax(410px,.85fr); gap: 52px; }
  .call-console { width: 425px; }
  .console-orbit--outer { width: 530px; height: 530px; }
  .console-orbit--inner { width: 470px; height: 470px; }
  .signal-card--intent { left: 0; }
  .signal-card--calendar { right: 0; }
  .product-preview__layout,
  .channels-layout,
  .status-layout,
  .control-layout { gap: 70px; }
  .faq-layout { gap: 75px; }
}

@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 40px),var(--container)); }
  .desktop-nav,
  .desktop-cta { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; width: calc(100% - 40px); }
  .menu-toggle { display: flex; }
  .site-header:not(.is-scrolled) { background: rgba(251,248,242,.76); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 145px; padding-bottom: 40px; }
  .hero-copy { max-width: 770px; }
  .hero-visual { width: min(100%,610px); min-height: 620px; margin: -10px auto 0; }
  .capability-strip { grid-template-columns: repeat(2,1fr); }
  .capability-strip > div { border-bottom: 1px solid var(--line); }
  .capability-strip > div:nth-child(2) { border-right: 0; }
  .capability-strip > div:first-child { padding-left: 24px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 28px; }
  .heading-aside { max-width: 650px; }
  .product-preview__layout,
  .channels-layout,
  .status-layout,
  .control-layout,
  .faq-layout { grid-template-columns: 1fr; }
  .product-preview__copy,
  .channels-copy,
  .status-copy,
  .control-copy,
  .faq-heading { max-width: 680px; }
  .loop-board,
  .channel-stack,
  .control-map { width: min(100%,700px); margin-inline: auto; }
  .solution-grid { grid-template-columns: repeat(2,1fr); }
  .solution-card:nth-child(2) { border-right: 0; }
  .solution-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .status-panels { max-width: 720px; }
  .faq-heading { position: static; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .problem-list { grid-template-columns: repeat(2,minmax(0,1fr)); border-bottom: 0; }
  .problem-item { border-bottom: 1px solid var(--line); }
  .problem-item:nth-child(2) { border-right: 0; }
  .problem-item:last-child { grid-column: 1 / -1; border-right: 0; }
  .outcome-grid { max-width: 680px; grid-template-columns: 1fr; margin-inline: auto; }
  .outcome-card { min-height: 360px; }
  .status-panels { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 48px),var(--container)); }
  .nav-shell { width: calc(100% - 48px); }
  h1 { font-size: clamp(43px,12.2vw,56px); line-height: 1.01; letter-spacing: -.065em; }
  .hero-layout { gap: 28px; padding-top: 112px; padding-bottom: 48px; }
  .hero-copy { max-width: none; }
  .eyebrow { margin-bottom: 20px; font-size: 9px; }
  .hero-lede { margin-bottom: 29px; font-size: 16px; line-height: 1.62; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-note { align-items: flex-start; margin-top: 22px; line-height: 1.5; }
  .hero-note::before { margin-top: 8px; flex: 0 0 auto; }
  .hero-visual { width: 100%; min-height: 510px; margin: 0; transform: none; }
  .console-halo { width: min(140vw,520px); height: min(140vw,520px); }
  .call-console { width: min(calc(100% - 16px),430px); min-height: 0; padding: 18px; }
  .signal-card { display: none; }
  .console-orbit--outer { width: min(135vw,500px); height: min(135vw,500px); }
  .console-orbit--inner { width: min(118vw,455px); height: min(118vw,455px); }
  .capability-strip { width: 100%; }
  .capability-strip > div { min-height: 82px; padding: 15px 14px; }
  .capability-strip > div:first-child { padding-left: 16px; }
  .capability-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
  .capability-strip strong { font-size: 10px; }
  .capability-strip small { display: none; }
  .problem,
  .outcomes,
  .solutions-preview,
  .control-preview,
  .channels,
  .product-preview,
  .status-preview { padding: 68px 0; }
  .product-preview,
  .status-preview { padding-block: 74px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2,
  .product-preview__copy h2,
  .channels-copy h2,
  .status-copy h2,
  .control-copy h2,
  .faq-heading h2 { font-size: clamp(36px,10.2vw,48px); line-height: 1.04; letter-spacing: -.058em; }
  .section-heading > p,
  .heading-aside p,
  .product-preview__copy > p,
  .channels-copy > p,
  .status-copy > p,
  .control-copy > p { font-size: 15px; line-height: 1.7; }
  .section-heading--split { gap: 22px; }
  .problem-list { grid-template-columns: 1fr; }
  .problem-item,
  .problem-item:last-child {
    display: grid;
    min-height: auto;
    grid-column: auto;
    grid-template-columns: 48px minmax(0,1fr);
    gap: 7px 15px;
    padding: 24px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .problem-item:last-child { border-bottom: 0; }
  .problem-index { display: none; }
  .problem-icon { width: 48px; height: 48px; grid-row: 1 / span 2; margin: 0; }
  .problem-item h3 { margin: 2px 0 0; }
  .problem-item p { grid-column: 2; }
  .product-preview__layout,
  .channels-layout,
  .status-layout,
  .control-layout { gap: 44px; }
  .loop-board { padding: 17px 14px; }
  .loop-steps li { grid-template-columns: 32px 1fr auto; padding-inline: 8px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 310px; padding: 24px; }
  .outcome-card__top { margin-bottom: 42px; }
  .mini-signal,
  .mini-tasks,
  .mini-calendar { right: 26px; bottom: 26px; left: 26px; }
  .channel-card { min-height: auto; grid-template-columns: 48px minmax(0,1fr); padding: 18px; }
  .channel-card__icon { width: 48px; height: 48px; border-radius: 15px; }
  .channel-card .status-pill { grid-column: 2; justify-self: start; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 52px minmax(0,1fr);
    column-gap: 16px;
    row-gap: 7px;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .solution-card:nth-child(3) { border-bottom: 1px solid var(--line); }
  .solution-card__index { display: none; }
  .solution-card__icon { width: 52px; height: 52px; grid-row: 1 / span 3; margin: 0; border-radius: 16px; }
  .solution-card h3 { grid-column: 2; margin: 1px 0 0; }
  .solution-card p { grid-column: 2; }
  .solution-card__link { position: static; grid-column: 2; margin-top: 3px; }
  .status-panels { grid-template-columns: 1fr; }
  .status-panel { min-height: auto; padding: 22px; }
  .status-panel h3 { margin: 22px 0 16px; }
  .status-panel li { padding-block: 9px; }
  .control-map { min-height: 300px; border-radius: var(--radius-lg); }
  .control-map__topline { top: 15px; right: 16px; left: 16px; font-size: 6px; }
  .control-map::before { width: 214px; height: 214px; }
  .control-map::after { width: 138px; height: 138px; }
  .control-node--caller,
  .control-node--calendar { top: 50%; width: 76px; height: 64px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; padding: 7px; border-radius: 17px; transform: translateY(-50%); }
  .control-node--caller { left: 10px; }
  .control-node--calendar { right: 10px; bottom: auto; left: auto; }
  .control-node__icon { width: 24px; height: 24px; border-radius: 8px; }
  .control-node__icon svg { width: 13px; }
  .control-node__copy { text-align: center; }
  .control-node__copy small { display: none; }
  .control-node__copy strong { font-size: 6px; }
  .control-node--assistant { width: 106px; height: 106px; gap: 4px; }
  .control-node--assistant svg { width: 34px; }
  .control-node--assistant small { display: none; }
  .control-node--assistant strong { font-size: 7px; }
  .control-line { display: none; }
  .control-badge { bottom: 16px; padding: 7px 10px; font-size: 7px; }
  .control-badge::before { height: 37px; }
  .control-badge::after { bottom: calc(100% + 34px); }
  .faq-preview { padding: 5px 0 68px; }
  .faq-layout { gap: 36px; padding-top: 62px; }
  .accordion summary { padding: 18px 0; font-size: 14px; }
  .accordion details > div p { padding-right: 0; }
  .final-cta { padding: 76px 0; }
  .final-cta h2 { font-size: clamp(40px,11vw,52px); line-height: 1.02; }
  .final-cta p { font-size: 15px; line-height: 1.65; }
  .final-actions { align-items: stretch; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }
  .prototype-toast { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 48px),var(--container)); }
  .nav-shell { width: calc(100% - 48px); }
  .hero-layout { padding-top: 104px; }
  .hero-visual { min-height: 490px; margin: 0; transform: none; }
  .call-console { width: calc(100% - 20px); min-height: 0; padding: 16px 14px; border-radius: 24px; }
  .call-console__topline { gap: 10px; }
  .capability-strip { grid-template-columns: repeat(2,1fr); }
  .capability-strip > div { min-height: 78px; }
  .capability-strip > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .capability-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
  .capability-strip strong { font-size: 10px; }
  .caller-quote { font-size: 14px; }
  .booking-ticket { padding: 10px; }
  .channel-card__icon { width: 47px; height: 47px; }
  .channel-card h3 { font-size: 15px; }
  .outcome-card { min-height: 320px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand,
  .footer-column:last-child { grid-column: auto; }
  .prototype-toast { grid-template-columns: auto 1fr; }
  .prototype-toast button { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .brand-mark--motion .brand-mark__frame { animation: none !important; stroke-dashoffset: 0 !important; }
  .js .brand-mark--motion .brand-mark__moment { animation: none !important; opacity: 1 !important; transform: none !important; }
  .js .arrival-motion-frame { stroke-dashoffset: 0 !important; }
  .js .arrival-motion-moment { opacity: 1 !important; transform: none !important; }
}
