/* =============================================================
   cally — styles
   Type:   General Sans (body)  +  Fraunces (display)
   Vibe:   editorial · refined · cool cyan paper · twilight depth · coral signal
   Palette: twilight → french → teal → blue-green → turquoise → aqua → frosted → cyan
            (small details only in coral)
   ============================================================= */

:root {
  /* twilight / ink scale (replaces former navy) */
  --ink:        #03045e;       /* deep twilight — primary dark */
  --ink-2:      #023e8a;       /* french blue */
  --ink-3:      #0077b6;       /* bright teal-blue */
  --ink-5:      #4d5894;       /* muted twilight */

  /* paper (pure white surfaces) */
  --paper:      #ffffff;       /* white — primary surface */
  --paper-cool: #F5F7FA;       /* near-white off tone for cards & highlight bands */
  --paper-2:    #EAEEF3;       /* slightly more tonal for footer */
  --line:       rgba(3,4,94,.10);
  --line-2:     rgba(3,4,94,.06);
  --line-dark:  rgba(255,255,255,.10);

  /* primary blues */
  --blue:       #0096c7;       /* blue-green — primary accent */
  --blue-2:     #00b4d8;       /* turquoise (mesh-only) */
  --blue-soft:  #DCE4F0;       /* pale blue-grey */

  /* "warm" slot — WHITE on dark, used for contrast highlights */
  --peach:      #ffffff;
  --peach-soft: rgba(255,255,255,.84);
  --magenta:    #00b4d8;       /* turquoise — atmospheric meshes only */
  --magenta-2:  #0096c7;

  /* the only "different" detail color — DARK RICH EMERALD */
  --coral:      #0A6B47;       /* signal green — live-dot, italic em, beliebt, CTA accent */
  --coral-2:    #0E835A;

  /* text */
  --text:       #03045e;       /* twilight for body */
  --text-2:     #3a4276;
  --text-light: rgba(255,255,255,.88);
  --text-light-2: rgba(255,255,255,.66);

  /* misc */
  --radius:     22px;
  --radius-sm:  12px;
  --radius-lg:  34px;
  --shadow-sm:  0 1px 0 rgba(3,4,94,.05),  0 10px 28px -22px rgba(3,4,94,.30);
  --shadow:     0 1px 0 rgba(3,4,94,.05),  0 30px 60px -36px rgba(3,4,94,.34);
  --shadow-lg:  0 1px 0 rgba(3,4,94,.05),  0 60px 100px -48px rgba(3,4,94,.46);

  --word-space-serif: 0.10em;

  /* fonts */
  --sans: "General Sans", "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* serif word-spacing: applied wherever Fraunces is used */
.h2, .display, .display--xl, .display em, .display--xl em,
.card__title, .row__title, .step__title,
.usecase h3, .plan__name, .plan__amount,
.metric__num, .acc__item summary, .foot__tag,
.phone__name, .logo, .editorial__word, .brand__word {
  word-spacing: var(--word-space-serif);
}

/* ---------- reset ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" on, "cv11" on;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 14px;
}
.skip:focus { left: 12px; top: 12px; z-index: 9999; }

/* ---------- containers ---------- */

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---------- type ---------- */

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 26px;
}
.h2--light { color: #fff; }

.display {
  font-family: var(--serif);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(46px, 6.6vw, 100px);
  line-height: .94;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 16px 0 20px;
  word-spacing: 0.10em;
}
.display em {
  font-style: italic;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
  color: var(--peach);
}
.display__line2 {
  display: block;
  margin-top: 4px;
}
.display__line2 em {
  margin-right: 18px;
}

.display--xl {
  font-size: clamp(64px, 11vw, 168px);
  line-height: .88;
  color: var(--ink);
}
.display--xl em { color: var(--coral); }

.lede {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 58ch;
}
.lede--light { color: var(--text-light); }

.muted { color: var(--text-2); }
.mono  { font-family: var(--mono); font-size: .9em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 6px;
}
.kicker__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(16,216,138,.22);
  animation: pulseDot 1.6s ease-in-out infinite;
}
.kicker--light { color: var(--blue-2); }

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,216,138,.22); }
  50%      { box-shadow: 0 0 0 7px rgba(10,107,71,.06); }
}

/* ---------- buttons ---------- */

.btn {
  --bg: var(--ink);
  --fg: #fff;
  --bd: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 24px -16px rgba(3,4,94,.5); }

.btn--dark   { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--light  { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--coral  { --bg: var(--coral); --fg: #fff; --bd: var(--coral); }
.btn--ghost  { --bg: transparent; --fg: var(--ink); --bd: rgba(3,4,94,.18); }
.btn--ghost:hover { --bd: var(--ink); }
.btn--phantom{ --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.30); }
.btn--phantom:hover { --bd: #fff; }
.btn--lg     { height: 52px; padding: 0 24px; font-size: 16px; }
.btn--wide   { width: 100%; justify-content: center; }

.link {
  font-size: 14.5px;
  color: var(--ink);
  padding: 4px 6px;
}
.link:hover { color: var(--blue); }

/* (ticker removed) */

@keyframes scroll-l {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- nav (floating pill) ---------- */

.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding: 14px 20px 0;
  pointer-events: none;
  color: var(--ink);
}
.nav__inner {
  pointer-events: auto;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 8px 8px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 18px 40px -22px rgba(3,4,94,.45);
  transition: background .25s ease, border-color .25s ease;
}
.nav.is-scrolled .nav__inner {
  background: rgba(255,255,255,.92);
  border-color: rgba(3,4,94,.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 18px 36px -22px rgba(3,4,94,.28);
}
.nav .brand,
.nav .brand__mark,
.nav__links a,
.nav .link { color: var(--ink); }
.nav .btn--dark { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.nav .btn--ghost { --bg: transparent; --fg: var(--ink); --bd: rgba(3,4,94,.18); }
.nav .btn {
  height: 38px;
  padding: 0 16px;
  font-size: 14px;
}
.nav__links {
  display: flex;
  gap: 26px;
  justify-self: center;
  font-size: 14.5px;
  color: var(--ink);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 10px; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr; }
  .nav__cta { justify-self: end; }
  .nav__cta .btn--ghost { display: none; }
  .nav__cta .link { display: none; }
}

/* brand */
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--ink);
  font-weight: 600;
}
.brand__mark { width: 22px; height: 22px; color: var(--ink); }
.brand__word {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.025em;
}
.brand__dot { color: var(--coral); }

/* ---------- HERO ---------- */

.hero {
  position: relative;
  isolation: isolate;
  margin-top: -68px;
  padding: 96px 0 0;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
}
.mesh {
  position: absolute;
  filter: blur(60px);
  opacity: .85;
  border-radius: 50%;
}
.mesh--blue {
  width: 78%; height: 90%;
  left: -10%; top: -20%;
  background: radial-gradient(closest-side, rgba(2,62,138,.95), rgba(2,62,138,0) 70%);
  animation: drift1 22s ease-in-out infinite;
}
.mesh--magenta {
  width: 60%; height: 70%;
  right: -10%; top: 10%;
  background: radial-gradient(closest-side, rgba(0,180,216,.78), rgba(0,180,216,0) 70%);
  animation: drift2 26s ease-in-out infinite;
}
.mesh--peach {
  width: 46%; height: 56%;
  left: 30%; bottom: -10%;
  background: radial-gradient(closest-side, rgba(72,202,228,.62), rgba(72,202,228,0) 70%);
  animation: drift3 30s ease-in-out infinite;
}

@keyframes drift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-30px, 40px) scale(1.1); }
}
@keyframes drift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20px,-30px) scale(1.05); }
}

.grain {
  position: absolute; inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .35;
  background-image:
    radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.18) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
}
.grain--dark { opacity: .22; }

.hero__inner {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 36px 28px 24px;
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
}

.hero__copy { max-width: 720px; }

.hero h1 {
  margin: 14px 0 18px;
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 10px;
}

.hero__trust { margin-top: 18px; }
.rating {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--text-light);
  font-size: 14px;
}
.stars { display: inline-flex; gap: 1px; }
.stars svg { fill: var(--peach); /* sky-aqua */ }

/* live-call card */

.callcard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  color: var(--text-light);
  width: 100%;
  max-width: 380px;
  justify-self: end;
  position: relative;
}
@media (max-width: 1080px) {
  .callcard { justify-self: start; max-width: 480px; }
}

.callcard__head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
  color: var(--text-light);
}
.callcard__label { font-weight: 500; color: #fff; }
.callcard__time {
  margin-left: auto;
  font-family: var(--mono); font-size: 12px;
  color: var(--text-light-2);
}

.livedot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(10,107,71,.30);
  animation: pulseDot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.livedot--dark { background: var(--coral); box-shadow: 0 0 0 4px rgba(16,216,138,.22); }

.wave {
  display: flex; align-items: end; gap: 4px;
  height: 60px;
  margin: 16px 2px;
}
.wave span {
  flex: 1;
  background: linear-gradient(180deg, var(--blue-soft), var(--blue));
  border-radius: 4px;
  height: 18%;
  animation: wave 1.4s ease-in-out infinite;
}
.wave span:nth-child(odd)  { animation-duration: 1.7s; }
.wave span:nth-child(3n)   { animation-duration: 1.1s; }
.wave span:nth-child(5n)   { animation-duration: 2.0s; }
.wave span:nth-child(2)    { animation-delay: -.10s; }
.wave span:nth-child(3)    { animation-delay: -.20s; }
.wave span:nth-child(4)    { animation-delay: -.05s; }
.wave span:nth-child(5)    { animation-delay: -.35s; }
.wave span:nth-child(6)    { animation-delay: -.18s; }
.wave span:nth-child(7)    { animation-delay: -.45s; }
.wave span:nth-child(8)    { animation-delay: -.30s; }
.wave span:nth-child(9)    { animation-delay: -.12s; }
.wave span:nth-child(10)   { animation-delay: -.40s; }
.wave span:nth-child(11)   { animation-delay: -.22s; }
.wave span:nth-child(12)   { animation-delay: -.50s; }
.wave span:nth-child(13)   { animation-delay: -.08s; }
.wave span:nth-child(14)   { animation-delay: -.28s; }
.wave span:nth-child(15)   { animation-delay: -.36s; }
.wave span:nth-child(16)   { animation-delay: -.04s; }
.wave span:nth-child(17)   { animation-delay: -.42s; }
.wave span:nth-child(18)   { animation-delay: -.16s; }
.wave span:nth-child(19)   { animation-delay: -.32s; }
.wave span:nth-child(20)   { animation-delay: -.08s; }

@keyframes wave {
  0%, 100% { height: 14%; }
  50%      { height: 92%; }
}

.callcard__form { display: grid; gap: 10px; }
.callcard__note {
  font-size: 11.5px;
  color: var(--text-light-2);
  margin-top: 2px;
}

/* fields (shared) */
.field { display: grid; gap: 6px; }
.field__label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.field input,
.field select {
  width: 100%;
  height: 42px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
  font: inherit;
  font-size: 15px;
  padding: 0 2px;
  outline: 0;
}
.field input::placeholder { color: rgba(255,255,255,.45); }
.field select { color: #fff; appearance: none; padding-right: 22px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='white' stroke-opacity='.7' stroke-width='1.4' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 4px center; }
.field select option { color: #111; }
.field input:focus,
.field select:focus { border-bottom-color: var(--blue-2); }

/* On light bg, field text and borders flip */
.demo .field input,
.demo .field select {
  color: var(--ink);
  border-bottom-color: var(--line);
}
.demo .field input::placeholder { color: rgba(3,4,94,.36); }
.demo .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%2303045e' stroke-opacity='.55' stroke-width='1.4' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
}
.demo .field input:focus,
.demo .field select:focus { border-bottom-color: var(--blue); }
.demo .field__label { color: var(--blue); }

/* ---------- logos ---------- */

.logos {
  position: relative;
  padding: 28px 28px 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1260px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  flex-wrap: wrap;
}
.logos__caption {
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light-2);
  flex-shrink: 0;
}
.logos__row {
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  align-items: center;
}
.logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-variation-settings: "opsz" 80;
  font-size: 22px;
  color: rgba(255,255,255,.62);
  letter-spacing: -0.01em;
}
.logo--lg { font-size: 30px; color: var(--ink); opacity: .55; }

/* ---------- COMPARE ---------- */

.compare {
  background: var(--paper);
  padding: 120px 0;
  position: relative;
}
.compare__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .compare__grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  border-radius: var(--radius);
  padding: 30px;
  background: var(--paper-cool);
  border: 1px solid var(--line);
  min-height: 460px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__tag {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 30px;
}
.card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.card__desc {
  font-size: 15.5px;
  color: var(--text-2);
  margin: 0 0 22px;
}
.bullets {
  list-style: none;
  margin: 0 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
}
.bullets li {
  position: relative;
  padding-left: 26px;
  line-height: 1.45;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(3,4,94,.10);
}
.bullets--minus li::after {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 6px; height: 1.4px;
  background: var(--ink);
  opacity: .55;
}
.bullets--check li::before { background: var(--peach); }
.bullets--check li::after {
  content: "";
  position: absolute;
  left: 3px; top: 8px;
  width: 8px; height: 4px;
  border-left: 1.6px solid var(--ink);
  border-bottom: 1.6px solid var(--ink);
  transform: rotate(-45deg);
}

.card--solid {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.card--solid .card__tag {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  color: var(--peach);
}
.card--solid .card__title { color: #fff; }
.card--solid .card__desc  { color: var(--text-light); }
.card--solid .bullets li  { color: #fff; }
.card--solid .bullets--check li::before { background: var(--peach); }

.card__sticker {
  position: absolute;
  bottom: 26px; right: 26px;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--ink);
  display: grid; place-items: center;
  text-align: center;
  font-size: 11px; letter-spacing: .08em;
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
  transform: rotate(-12deg);
  box-shadow: 0 20px 38px -16px rgba(3,4,94,.36);
}
.card__sticker em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 19px;
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: -0.01em;
}

/* ---------- DEMO ---------- */

.demo {
  background: var(--paper);
  padding: 80px 0 130px;
}
.demo__container { padding-bottom: 0; }
.demo__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) { .demo__grid { grid-template-columns: 1fr; } }

.demo__visual {
  position: relative;
  padding: 14px;
  background:
    radial-gradient(120% 80% at 50% 35%, rgba(0,119,182,.22), transparent 60%),
    radial-gradient(100% 70% at 80% 80%, rgba(0,180,216,.22), transparent 60%),
    radial-gradient(80% 60% at 20% 80%, rgba(72,202,228,.35), transparent 60%),
    var(--paper-cool);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 540px;
  display: grid;
  place-items: center;
}

.phone {
  width: 280px;
  background: var(--ink);
  border-radius: 38px;
  padding: 18px 16px 22px;
  border: 1px solid #0a1366;
  box-shadow: 0 50px 100px -36px rgba(3,4,94,.55), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
}
.phone__notch {
  width: 86px; height: 22px;
  background: #010135;
  border-radius: 14px;
  margin: 0 auto 16px;
}
.phone__screen { color: #fff; }
.phone__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--peach);
}
.phone__avatar {
  text-align: center;
  margin: 18px 0 14px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.phone__avatar svg { margin-bottom: 4px; }
.phone__name {
  font-family: var(--serif);
  font-size: 26px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: #fff;
}
.phone__role {
  font-size: 11px;
  color: var(--text-light-2);
}

.phone__transcript {
  margin: 10px 0 18px;
  display: grid; gap: 8px;
}
.bubble {
  font-size: 12.5px;
  line-height: 1.35;
  padding: 9px 12px;
  border-radius: 14px;
  max-width: 90%;
}
.bubble--in {
  background: rgba(255,255,255,.08);
  color: var(--text-light);
  justify-self: start;
  border-bottom-left-radius: 4px;
}
.bubble--out {
  background: var(--blue);
  color: #fff;
  justify-self: end;
  border-bottom-right-radius: 4px;
}
.bubble--typing {
  background: rgba(255,255,255,.08);
  display: inline-flex; gap: 4px; align-items: center;
  padding: 10px 12px;
  border-bottom-left-radius: 4px;
  width: max-content;
}
.bubble--typing i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--peach);
  animation: typing 1.2s ease-in-out infinite;
}
.bubble--typing i:nth-child(2) { animation-delay: .15s; }
.bubble--typing i:nth-child(3) { animation-delay: .30s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30%           { transform: translateY(-3px); opacity: 1; }
}

.phone__controls {
  display: flex; gap: 10px; justify-content: center;
  padding-top: 4px;
}
.phone__btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 0;
  color: #fff;
  display: grid; place-items: center;
}
.phone__btn--hang { background: var(--coral); color: #fff; transform: rotate(135deg); }
.phone__btn:hover { background: rgba(255,255,255,.18); }
.phone__btn--hang:hover { background: var(--coral-2); }

.demo__form {
  display: grid; gap: 14px;
  max-width: 460px;
}
.demo__intro {
  font-size: 16px;
  color: var(--text-2);
  margin: 0 0 10px;
}
.demo__legal {
  font-size: 12px;
  color: var(--text-2);
  margin: 0;
}
.demo__legal a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- EDITORIAL ---------- */

.editorial {
  background: var(--paper);
  padding: 60px 0 130px;
  position: relative;
}
.editorial__inner { text-align: center; }
.editorial__head {
  margin: 30px auto 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
  max-width: 1100px;
}
.editorial__word { display: inline-block; line-height: .9; }
.editorial__word--em { color: var(--coral); }
.editorial__visual {
  width: clamp(120px, 14vw, 200px);
  height: clamp(120px, 14vw, 200px);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  background:
    radial-gradient(70% 70% at 50% 50%, rgba(0,180,216,.55), rgba(0,180,216,0) 70%),
    radial-gradient(60% 60% at 50% 50%, rgba(2,62,138,.55), rgba(2,62,138,0) 70%),
    var(--ink);
  box-shadow: 0 30px 80px -36px rgba(3,4,94,.5);
}
.orb {
  position: relative;
  width: 60%; height: 60%;
  display: grid; place-items: center;
}
.orb__core {
  width: 30%; height: 30%;
  border-radius: 50%;
  background: var(--peach); /* sky-aqua */
  box-shadow: 0 0 24px rgba(72,202,228,.85);
  animation: pulse 1.6s ease-in-out infinite;
}
.orb__ring {
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  animation: orbring 2.4s ease-out infinite;
}
.orb__ring--2 { animation-delay: 1.2s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}
@keyframes orbring {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.4); opacity: 0;  }
}

.editorial__sub {
  max-width: 56ch;
  margin: 0 auto 60px;
  font-size: 17px;
  color: var(--text-2);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: left;
}
@media (max-width: 980px) { .metrics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .metrics { grid-template-columns: 1fr; } }

.metric {
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid; gap: 8px;
}
.metric__num {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.metric__num b { font-weight: 400; }
.metric__num i { font-style: italic; font-size: .42em; color: var(--text-2); margin-left: 4px; font-weight: 350; }
.metric__label { color: var(--text-2); font-size: 13.5px; }

/* ---------- HIGHLIGHTS ---------- */

.highlights {
  background: var(--paper-cool);
  padding: 130px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.highlights__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .highlights__head { grid-template-columns: 1fr; gap: 20px; } }

.rows { display: grid; gap: 0; }
.row {
  display: grid;
  grid-template-columns: 70px 1fr 1.4fr;
  align-items: start;
  gap: 32px;
  padding: 36px 8px;
  border-top: 1px solid var(--line);
  position: relative;
}
.row:last-child { border-bottom: 1px solid var(--line); }
.row__index {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: .12em;
  padding-top: 6px;
}
.row__title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.row__desc { color: var(--text-2); font-size: 15.5px; margin: 0; }
.row__media {
  display: flex; justify-content: flex-end; gap: 10px;
  align-items: center;
}
.dot {
  width: 18px; height: 18px; border-radius: 50%;
  box-shadow: 0 6px 14px -6px rgba(3,4,94,.4);
}
.dot--blue  { background: var(--blue); }
.dot--peach { background: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }
.dot--coral { background: var(--coral); }
.dot--ink   { background: var(--ink); }

@media (max-width: 800px) {
  .row { grid-template-columns: 50px 1fr; gap: 16px; }
  .row__desc { grid-column: 2; }
  .row__media { grid-column: 2; justify-content: flex-start; }
}

/* ---------- STACK / PIPELINE ---------- */

.stack {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 140px 0 140px;
  overflow: hidden;
}
.stack__bg { position: absolute; inset: 0; opacity: .55; }
.stack__mesh-a { left: -10%; top: -10%; }
.stack__mesh-b { right: -10%; bottom: -20%; }

.stack__steps {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
@media (max-width: 1080px) { .stack__steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .stack__steps { grid-template-columns: 1fr; } }

.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  display: grid; gap: 14px;
  align-content: start;
  min-height: 280px;
  position: relative;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-3px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); }

.step__num {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--peach);
}
.step__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.10);
  color: var(--peach);
}
.step__icon svg { width: 18px; height: 18px; }
.step__title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.step__desc { color: var(--text-light); font-size: 14.5px; margin: 0; }
.step__ms {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-light-2);
  padding-top: 4px;
  border-top: 1px solid var(--line-dark);
}

/* ---------- USECASES ---------- */

.usecases {
  background: var(--paper);
  padding: 130px 0;
}
.usecase__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .usecase__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .usecase__grid { grid-template-columns: 1fr; } }

.usecase {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 240px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.usecase::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(60% 80% at 100% 0%, rgba(0,150,199,.14), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.usecase:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ink); }
.usecase:hover::before { opacity: 1; }

.usecase__emoji {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper-cool);
  display: grid; place-items: center;
  font-size: 22px;
  color: var(--ink);
}
.usecase h3 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  color: var(--ink);
}
.usecase p { font-size: 14.5px; color: var(--text-2); margin: 0; }
.usecase__metric {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
  letter-spacing: .04em;
}

/* ---------- INTEGRATIONS / marquee ---------- */

.integrations {
  background: var(--paper);
  padding: 100px 0 130px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.marquee {
  margin: 56px 0 0;
  display: flex;
  gap: 60px;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: scroll-l 44s linear infinite;
  flex-shrink: 0;
  padding-right: 60px;
}

/* ---------- PRICING ---------- */

.pricing {
  background: var(--paper-cool);
  padding: 130px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plans {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px 30px 30px;
  display: grid;
  gap: 22px;
  align-content: start;
}
.plan--feature {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plan__sticker {
  position: absolute;
  top: -14px; right: 28px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

.plan__head { display: grid; gap: 4px; }
.plan__name {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.plan--feature .plan__name { color: #fff; }
.plan__caption {
  font-size: 13px;
  color: var(--text-2);
}
.plan--feature .plan__caption { color: var(--text-light-2); }

.plan__price { display: grid; gap: 4px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan--feature .plan__price { border-color: var(--line-dark); }
.plan__amount {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.plan--feature .plan__amount { color: #fff; }
.plan__amount i { font-size: .35em; color: var(--text-2); font-style: normal; margin-left: 4px; }
.plan--feature .plan__amount i { color: var(--text-light-2); }
.plan__note { font-size: 12.5px; color: var(--text-2); }
.plan--feature .plan__note { color: var(--text-light-2); }

.plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid; gap: 10px;
  font-size: 14.5px;
}
.plan__list li {
  position: relative;
  padding-left: 22px;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 4px;
  border-left: 1.6px solid var(--ink);
  border-bottom: 1.6px solid var(--ink);
  transform: rotate(-45deg);
}
.plan--feature .plan__list li::before { border-color: var(--peach); }

/* ---------- FAQ ---------- */

.faq {
  background: var(--paper);
  padding: 130px 0;
}
.faq__container { max-width: 980px; }

.acc {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.acc__item {
  border-bottom: 1px solid var(--line);
}
.acc__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 4px 26px;
  display: grid;
  grid-template-columns: 1fr 22px;
  align-items: center;
  gap: 18px;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__plus {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper-cool);
  flex-shrink: 0;
  transition: background .2s ease, transform .25s ease;
}
.acc__plus::before, .acc__plus::after {
  content: ""; position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 1.4px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.acc__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc__item[open] .acc__plus { background: var(--ink); }
.acc__item[open] .acc__plus::before,
.acc__item[open] .acc__plus::after { background: #fff; }
.acc__item[open] .acc__plus::after { transform: translate(-50%, -50%) rotate(0deg); }

.acc__body { padding: 0 4px 26px; max-width: 80ch; }
.acc__body p { margin: 0; color: var(--text-2); font-size: 16px; line-height: 1.55; }

/* ---------- FINAL CTA ---------- */

.finalcta {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: #fff;
  padding: 140px 0 150px;
  overflow: hidden;
  text-align: center;
}
.finalcta__bg { position: absolute; inset: 0; z-index: -1; }
.finalcta .display--xl em { color: var(--coral); }
.finalcta__inner .lede { margin: 0 auto 28px; }
.finalcta__inner .hero__ctas { justify-content: center; }
.finalcta .display--xl { color: #fff; }

/* ---------- FOOTER ---------- */

.foot {
  background: var(--paper-2);
  color: var(--ink);
  padding: 72px 0 56px;
}
.foot__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
.brand--md { gap: 14px; }
.brand--md .brand__mark { width: 40px; height: 40px; }
.brand--md .brand__word { font-size: 38px; letter-spacing: -0.03em; }
.foot__tag {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
  color: var(--ink);
}
.foot__email {
  font-size: 14.5px;
  color: var(--ink);
  margin: 0;
}
.foot__copy {
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 14px;
  margin-bottom: 0;
  letter-spacing: .02em;
}

/* ---------- REVEAL ANIM ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* staggered: animate each child span individually */
[data-reveal-stagger] > span,
[data-reveal-stagger] > em {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) skewY(2deg);
  transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1);
}
[data-reveal-stagger].is-in > span,
[data-reveal-stagger].is-in > em {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: .03s; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: .12s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: .21s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: .30s; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: .39s; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: .48s; }

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