/* ==========================================================================
   Effiqo AI — static design system
   Ported 1:1 from the "Effiqo VSL Home" design. Values are the design's own;
   inline styles were lifted into classes without retuning.
   ========================================================================== */

/* --- Roboto, self-hosted ------------------------------------------------ */
@font-face { font-family: Roboto; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/roboto-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/roboto-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: Roboto; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/roboto-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: Roboto; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/roboto-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: Roboto; font-style: normal; font-weight: 900; font-display: swap; src: url("../fonts/roboto-latin-900-normal.woff2") format("woff2"); }

/* --- Tokens ------------------------------------------------------------- */
:root {
  --ink: #1b2126;
  --mute: #6a757c;
  --line: #d9e0e7;
  --line-2: #e9eef2;
  --tint: #f4f7fa;
  --ground: #e6ebf0;
  --panel: #ffffff;
  --cyan: #00a8cc;
  --cyan-br: #22d3ee;
  --cyan-dk: #007f9c;
  --pink: #ff2d78;
  --pink-dk: #c2135a;
  --wide: 1160px;
  --gut: clamp(24px, 5vw, 64px);
  --sec: clamp(56px, 7vw, 96px);
}

/* --- Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: Roboto, "Noto Sans", system-ui, sans-serif;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: Roboto, "Noto Sans", system-ui, sans-serif; }
a { color: var(--cyan-dk); text-decoration: none; }
a:hover { color: var(--ink); }
img { display: block; max-width: 100%; }
input, select, button { font-family: inherit; }
::selection { background: var(--cyan-br); color: var(--ink); }
:focus-visible { outline: 2px solid var(--cyan-dk); outline-offset: 3px; }

@keyframes ringpulse {
  0%, 100% { opacity: .2; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.12); }
}

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 12px 20px; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); color: #fff; }
.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;
}

/* --- Page shell --------------------------------------------------------- */
.page {
  background: var(--ground);
  color: var(--ink);
  overflow-x: hidden;
}
.section { max-width: var(--wide); margin: 0 auto; padding: var(--sec) var(--gut) 0; }
.section-last { padding: var(--sec) var(--gut); }
.center { text-align: center; }

/* --- Nav ---------------------------------------------------------------- */
.nav { background: var(--panel); border-bottom: 1px solid var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: var(--wide); margin: 0 auto; padding: 16px var(--gut);
}
.nav-inner .nav-note { margin-left: auto; }
.nav-inner .btn { margin-left: 20px; }
/* Section jump-links — the header doubles as the page's table of contents. */
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); margin-left: auto; }
.nav-links a {
  position: relative; font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mute); padding: 6px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--cyan-br); transition: right .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
/* Header lockup — the same mark + wordmark pairing as the footer, scaled down. */
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand img { width: 30px; height: 34px; object-fit: contain; flex: none; }
.brand b {
  font-size: 22px; font-weight: 900; letter-spacing: -.02em; color: var(--ink);
}
.nav-note {
  font-size: 10px; font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: var(--mute); white-space: nowrap;
}

/* --- Eyebrows and labels ------------------------------------------------ */
.eyebrow {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--cyan-dk);
}
.eyebrow-pink { color: var(--pink-dk); }
.eyebrow-sub {
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute);
}
.label {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--mute);
}
.label-cyan { color: var(--cyan-dk); }
.label-pink { color: var(--pink-dk); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  font-family: inherit; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); background: var(--cyan-br); border: 0;
  cursor: pointer; transition: .25s; display: inline-block; text-align: center;
}
.btn:hover { background: var(--cyan); color: var(--ink); }
.btn-lg { font-size: 13px; padding: 21px 48px; }
.btn-md { font-size: 12px; padding: 19px 40px; }
.btn-sm { font-size: 12px; padding: 18px 34px; }
.btn-xs { font-size: 11px; padding: 15px 30px; }
.btn-form { font-size: 13px; padding: 20px 40px; align-self: flex-start; }
.btn-pink { color: #fff; background: var(--pink); }
.btn-pink:hover { background: var(--pink-dk); color: #fff; }

/* --- Hero --------------------------------------------------------------- */
.hero-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--cyan-dk);
  border: 1px solid var(--cyan-br); padding: 11px 20px;
}
.hero-title {
  font-size: clamp(32px, 5.6vw, 62px); font-weight: 900; line-height: 1.04;
  letter-spacing: -.038em; margin: clamp(20px, 2.6vw, 32px) auto 0; max-width: 20ch;
}
.hero-title span { color: var(--cyan); }
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px); font-weight: 400; line-height: 1.65;
  color: var(--mute); margin: 20px auto 0; max-width: 58ch;
}
.hero-figure { margin: clamp(26px, 3vw, 40px) auto 0; max-width: 900px; }
.hero-line {
  font-size: clamp(19px, 2.2vw, 28px); font-weight: 400; line-height: 1.3;
  letter-spacing: -.022em; margin: clamp(26px, 3vw, 38px) auto 0; max-width: 36ch;
}
.hero-line span { font-weight: 900; color: var(--cyan-dk); }
.hero-cta {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: clamp(22px, 2.6vw, 32px);
}
.hero-cta-note {
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--mute);
}

/* --- Video frames ------------------------------------------------------- */
.frame {
  position: relative; display: grid; place-items: center; cursor: pointer;
  overflow: hidden; background: var(--panel); border: 1px solid var(--line);
  width: 100%; padding: 0; text-align: inherit; color: inherit; font: inherit;
}
.frame:hover { border-color: var(--cyan); }
.frame-pink:hover { border-color: var(--pink); }
.frame-16x9 { aspect-ratio: 16 / 9; }
.frame-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 56px 56px;
}
.frame-agent .frame-grid { background-size: 52px 52px; }
.frame-body { position: relative; z-index: 2; display: grid; place-items: center; gap: 20px; padding: 24px; }
.frame-agent .frame-body { gap: 18px; }
.frame-orb {
  position: relative; width: clamp(72px, 8vw, 96px); aspect-ratio: 1;
  display: grid; place-items: center; background: var(--cyan-br); border-radius: 50%;
}
.frame-agent .frame-orb { width: 82px; }
.frame-orb::after {
  content: ""; position: absolute; inset: -20px;
  border: 1px solid var(--cyan-br); border-radius: 50%;
  animation: ringpulse 3.6s ease-in-out infinite;
}
.frame-agent .frame-orb::after { inset: -18px; }
.frame-orb-pink { background: var(--pink); }
.frame-orb-pink::after { border-color: var(--pink); }
.frame-label {
  font-size: 10px; font-weight: 700; letter-spacing: .32em;
  text-transform: uppercase; color: var(--ink); text-align: center;
}
.frame-agent .frame-label { letter-spacing: .28em; }
.frame-meta {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  display: flex; gap: 12px; justify-content: space-between; padding: 14px 18px;
  border-top: 1px solid var(--line);
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute);
  background: var(--panel);
}

/* The video sits under the plate from the start so its poster is the preview.
   Frame and footage are both 16:9, so `contain` fills without cropping. */
.frame video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: var(--ink);
}
/* A light veil keeps the orb and labels legible over the poster art. */
.frame-poster .frame-grid { display: none; }
.frame-poster::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgb(246 249 252 / 62%); transition: background .25s;
}
.frame-poster:hover::before { background: rgb(246 249 252 / 44%); }

/* Playing state: plate furniture steps aside, the footage takes the frame. */
.frame.is-playing { cursor: default; }
.frame.is-playing::before,
.frame.is-playing .frame-grid,
.frame.is-playing .frame-body,
.frame.is-playing .frame-meta { display: none; }

/* --- Card grids --------------------------------------------------------- */
.grid { display: grid; gap: 20px; margin-top: clamp(26px, 3vw, 40px); }
.grid-290 { grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }
.grid-280 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid-320 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }

.card { background: var(--panel); border: 1px solid var(--line); }
.card-step { border-top: 3px solid var(--cyan-br); padding: 26px 22px; transition: .25s; }
.card-step-pink { border-top-color: var(--pink); }
.card-step:hover { background: var(--tint); border-color: var(--cyan); }
.card-step-num { font-size: 10px; font-weight: 700; letter-spacing: .2em; color: var(--cyan-dk); }
.card-step-num-pink { color: var(--pink-dk); }
.card-step h3 {
  font-size: 19px; font-weight: 700; line-height: 1.25;
  letter-spacing: -.015em; margin-top: 14px;
}
.card-step p { margin-top: 10px; font-size: 15px; font-weight: 400; line-height: 1.6; color: var(--mute); }

/* Section headings */
.h2-44 { font-size: clamp(26px, 3.6vw, 44px); font-weight: 900; line-height: 1.06; letter-spacing: -.032em; margin: 14px auto 0; max-width: 26ch; }
.h2-48 { font-size: clamp(26px, 3.8vw, 48px); font-weight: 900; line-height: 1.04; letter-spacing: -.036em; margin: 14px auto 0; max-width: 22ch; }
.h2-50 { font-size: clamp(26px, 4vw, 50px); font-weight: 900; line-height: 1.02; letter-spacing: -.038em; margin: 14px auto 0; max-width: 24ch; }


/* --- The gap ------------------------------------------------------------ */
.gap-panel { background: var(--panel); border: 1px solid var(--line); }
.gap-head {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: clamp(28px, 3.2vw, 48px) clamp(24px, 3vw, 44px) 0; text-align: center;
}
.gap-head h2 {
  font-size: clamp(26px, 3.8vw, 48px); font-weight: 900; line-height: 1.02;
  letter-spacing: -.038em; max-width: 22ch;
}
.gap-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 0; margin-top: clamp(26px, 3vw, 40px);
}
.gap-cell { padding: clamp(24px, 2.8vw, 40px) clamp(24px, 3vw, 44px); border-top: 1px solid var(--line-2); }
.gap-cell + .gap-cell { border-left: 1px solid var(--line-2); }
.gap-num {
  display: block; font-size: clamp(30px, 3.4vw, 44px); font-weight: 900; line-height: .8;
  letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 1px var(--line);
}
.gap-cell p { margin-top: 20px; font-size: clamp(16px, 1.5vw, 19px); font-weight: 400; line-height: 1.7; color: var(--mute); }
.gap-foot {
  border-top: 3px solid var(--cyan-br); background: var(--tint);
  padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 44px); text-align: center;
}
.gap-foot p {
  margin: 0 auto; max-width: 26ch; font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400; line-height: 1.14; letter-spacing: -.03em;
}
.gap-foot span { font-weight: 900; color: var(--cyan-dk); }

/* --- The data ----------------------------------------------------------- */
.data-intro {
  margin: 16px auto 0; font-size: 16px; font-weight: 400; line-height: 1.7;
  color: var(--mute); max-width: 64ch;
}
.stat { padding: 28px 24px; }
.stat-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--cyan-dk); }
.stat-value {
  display: block; font-size: clamp(48px, 6vw, 76px); font-weight: 900; line-height: .9;
  letter-spacing: -.05em; margin-top: 14px; font-feature-settings: 'tnum' 1;
}
.stat-value span { font-weight: 300; color: var(--cyan); }
.stat p { margin-top: 18px; font-size: 15px; font-weight: 400; line-height: 1.65; color: var(--mute); }
.data-close {
  margin: clamp(24px, 2.8vw, 36px) auto 0; font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400; line-height: 1.5; letter-spacing: -.018em; max-width: 64ch;
}
.data-close span { color: var(--cyan-dk); font-weight: 700; }
.data-source {
  display: block; margin-top: 14px; font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--mute);
}

/* --- Agents (Elise / Xavier) -------------------------------------------- */
.agent-head { border-top: 2px solid var(--cyan-br); padding-top: clamp(22px, 2.6vw, 32px); }
.agent-head-pink { border-top-color: var(--pink); }
.agent-tags {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 12px 20px;
}
.agent-intro {
  margin: 18px auto 0; font-size: clamp(16px, 1.6vw, 20px); font-weight: 400;
  line-height: 1.6; color: var(--mute); max-width: 68ch;
}
.agent-intro span { color: var(--ink); font-weight: 700; }
.agent-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: clamp(24px, 3.4vw, 56px); margin-top: clamp(26px, 3vw, 40px); align-items: stretch;
}
.agent-media { height: 100%; }
.agent-media figure { margin: 0; }
.agent-media-stick { position: sticky; top: 24px; }
/* Invite + CTA close out the benefit panel they belong to. */
.agent-cta {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-2);
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.agent-cta p { font-size: 15px; font-weight: 400; line-height: 1.55; color: var(--mute); }
.agent-pain { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.agent-pain p {
  margin-top: 12px; font-size: 16px; font-weight: 400; line-height: 1.55;
}
.agent-does { margin-top: 26px; }
.agent-list { margin-top: 8px; }
.agent-list div {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line-2);
}
.agent-list b { font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--cyan-dk); }
.agent-list-pink b { color: var(--pink-dk); }
.agent-list span { font-size: 16px; font-weight: 400; line-height: 1.55; }
.agent-benefit {
  margin-top: 28px; border: 1px solid var(--cyan-br); background: var(--panel);
  padding: clamp(22px, 2.4vw, 32px);
}
.agent-benefit-pink { border-color: var(--pink); }
.agent-benefit > p {
  margin-top: 13px; font-size: clamp(17px, 1.8vw, 23px); font-weight: 400;
  line-height: 1.36; letter-spacing: -.022em;
}
/* --- Grid-fill closing block ------------------------------------------- */
/* Section 01 runs 7 cards, leaving empty cells on the last row.
   The closing line and CTA occupy that space instead of sitting below. */
.step-fill {
  background: var(--panel); border: 1px solid var(--line);
  border-top: 3px solid var(--cyan-br);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; gap: 22px; padding: clamp(24px, 2.6vw, 34px);
}
.step-fill p { font-size: clamp(17px, 1.8vw, 22px); font-weight: 400; line-height: 1.5; }
@media (min-width: 1000px) { .step-fill { grid-column: span 2; } }

/* --- The difference ----------------------------------------------------- */
.compare-card { padding: clamp(24px, 2.6vw, 34px); border-top: 3px solid var(--line); }
.compare-card-cyan { border-top-color: var(--cyan-br); }
.compare-card span { display: block; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); }
.compare-card-cyan span { color: var(--cyan-dk); }
.compare-card p { margin-top: 14px; font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--mute); }
.table-wrap {
  margin-top: clamp(26px, 3vw, 40px); background: var(--panel); border: 1px solid var(--line);
  padding: clamp(20px, 2.4vw, 32px); overflow-x: auto;
}
.compare-table { width: 100%; min-width: 600px; border-collapse: collapse; }
.compare-table th {
  text-align: left; font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute);
  padding: 0 0 12px; border-bottom: 2px solid var(--ink);
}
.compare-table th + th { width: 22%; padding: 0 0 12px 20px; }
.compare-table th + th + th { width: 26%; color: var(--cyan-dk); }
.compare-table td { font-size: 15px; padding: 17px 20px; border-bottom: 1px solid var(--line-2); color: var(--mute); }
.compare-table td:first-child {
  font-size: 17px; font-weight: 400; line-height: 1.4;
  padding: 17px 20px 17px 0; color: var(--ink);
}
.compare-table td:last-child { font-weight: 700; color: var(--ink); }
.compare-table td:last-child span { font-weight: 400; color: var(--pink-dk); }
.compare-table tr:last-child td { border-bottom: 2px solid var(--ink); }
.compare-close {
  margin-top: 20px; background: var(--panel); border: 1px solid var(--line);
  border-left: 4px solid var(--pink); padding: clamp(26px, 3vw, 40px); text-align: center;
}
.compare-close p {
  margin: 0 auto; max-width: 52ch; font-size: clamp(18px, 2vw, 26px);
  font-weight: 400; line-height: 1.4; letter-spacing: -.022em;
}
.compare-close span { font-weight: 900; }

/* --- What you get ------------------------------------------------------- */
.outcome { padding: 24px 22px; }
.outcome span { font-size: 10px; font-weight: 700; letter-spacing: .2em; color: var(--cyan-dk); }
.outcome-pink span { color: var(--pink-dk); }
.outcome p { margin-top: 14px; font-size: 17px; font-weight: 400; line-height: 1.45; }
.outcome-close {
  margin: clamp(28px, 3.2vw, 44px) auto 0; max-width: 44ch; text-align: center;
  font-size: clamp(19px, 2.2vw, 28px); font-weight: 400; line-height: 1.3; letter-spacing: -.025em;
}
.outcome-close span { font-weight: 900; }

/* --- Book a call + form ------------------------------------------------- */
/* Copy on top, form beneath — the form gets the full measure. */
.apply {
  border-top: 2px solid var(--ink); padding-top: clamp(24px, 2.8vw, 36px);
  display: flex; flex-direction: column; gap: clamp(28px, 3.4vw, 48px);
}
.apply h2 {
  font-size: clamp(28px, 4.6vw, 56px); font-weight: 900; line-height: 1.02;
  letter-spacing: -.038em; margin-top: 14px; max-width: 30ch;
}
.apply h2 span { font-weight: 400; color: var(--mute); }
/* Two columns of copy fill the measure instead of leaving the right half empty. */
.apply-copy {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 16px clamp(28px, 4vw, 56px); margin-top: 24px;
}
.apply-copy p { font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--mute); }
/* No panel, no label, no promise line — the embed stands on its own. */
.form-panel { display: block; }
.form-embed { width: 100%; border: 0; display: block; min-height: 640px; }
.form-note { font-size: 12px; line-height: 1.5; color: var(--mute); }

/* --- Footer ------------------------------------------------------------- */
.footer { background: var(--ground); border-top: 1px solid var(--line); }
.footer-inner {
  max-width: var(--wide); margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) var(--gut);
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  text-align: center;
}
.footer-brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); }
.footer-brand img { width: 44px; height: 50px; object-fit: contain; flex: none; }
.footer-brand b {
  font-size: clamp(26px, 3vw, 34px); font-weight: 900;
  letter-spacing: -.02em; color: var(--ink);
}
.footer-tagline {
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cyan-dk); margin-top: -8px;
}
.footer-inner > p {
  max-width: 62ch; font-size: 16px; font-weight: 400;
  line-height: 1.7; color: var(--mute);
}
.footer-links { display: flex; align-items: center; gap: 16px; font-size: 15px; }
.footer-links a { color: var(--cyan-dk); font-weight: 500; }
.footer-links a:hover { color: var(--ink); }
.footer-links i { color: var(--line); font-style: normal; }


/* --- Thank-you pages ---------------------------------------------------- */
.ty-head {
  border-top: 2px solid var(--cyan-br); padding-top: clamp(22px, 2.6vw, 32px);
  text-align: center;
}
/* The funnel pages lead on this line, so it carries more weight than a
   mid-page eyebrow does. */
.ty-head .eyebrow { font-size: 13px; font-weight: 900; letter-spacing: .26em; }
.ty-head-ink { border-top-color: var(--ink); }
.ty-title {
  font-size: clamp(30px, 4.6vw, 56px); font-weight: 900; line-height: 1.02;
  letter-spacing: -.038em; margin: 14px auto 0; max-width: 26ch;
}
.ty-lede {
  margin: 20px auto 0; font-size: clamp(16px, 1.6vw, 20px); font-weight: 400;
  line-height: 1.65; color: var(--mute); max-width: 72ch;
}
.ty-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(24px, 3.4vw, 48px); margin-top: clamp(26px, 3vw, 40px); align-items: start;
}
/* Two peer cards side by side read better squared off to the same height.
   The stacked-block margin must not apply to grid siblings, or the second
   card drops 20px below the first. */
.ty-grid-even { align-items: stretch; }
.ty-grid-even .ty-block + .ty-block { margin-top: 0; }
.ty-grid-even .ty-block { display: flex; flex-direction: column; }
.ty-grid-even .ty-block figure { margin-top: auto; }
.calendar-panel { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--cyan-br); }
.calendar-meta {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--line-2);
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute);
}
.calendar-panel iframe { width: 100%; border: 0; display: block; min-height: 720px; }
.ty-block { background: var(--panel); border: 1px solid var(--line); padding: clamp(22px, 2.4vw, 32px); }
.ty-block + .ty-block { margin-top: 20px; }
.ty-block h2 {
  font-size: clamp(20px, 2vw, 26px); font-weight: 900; line-height: 1.14;
  letter-spacing: -.028em; margin-top: 13px;
}
.ty-block p { margin-top: 12px; font-size: 15px; font-weight: 400; line-height: 1.65; color: var(--mute); }
.ty-list { margin: 8px 0 0; padding: 0; list-style: none; }
.ty-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line-2);
  font-size: 16px; font-weight: 400; line-height: 1.55;
}
.ty-list li::before {
  content: counter(ty-item, decimal-leading-zero); counter-increment: ty-item;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--cyan-dk);
}
.ty-list { counter-reset: ty-item; }
.ty-proof-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px; margin-top: clamp(26px, 3vw, 40px);
}
.ty-quote {
  background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--cyan-br);
  padding: clamp(26px, 3vw, 40px); margin: clamp(26px, 3vw, 40px) 0 0;
}
.ty-quote p { font-size: clamp(18px, 2vw, 26px); font-weight: 400; line-height: 1.4; letter-spacing: -.022em; max-width: 52ch; }
.ty-quote strong { font-weight: 900; }
.ty-quote cite {
  display: block; margin-top: 16px; font-size: 10px; font-weight: 500; font-style: normal;
  letter-spacing: .22em; text-transform: uppercase; color: var(--mute);
}
/* One centred card carrying the single next step. */
.ty-solo {
  background: var(--panel); border: 1px solid var(--line);
  border-top: 3px solid var(--cyan-br);
  max-width: 860px; margin: clamp(26px, 3vw, 40px) auto 0;
  padding: clamp(28px, 3.2vw, 46px); text-align: center;
}
.ty-solo h2 {
  font-size: clamp(24px, 3vw, 38px); font-weight: 900; line-height: 1.06;
  letter-spacing: -.032em; margin: 14px auto 0; max-width: 24ch;
}
.ty-solo > p {
  margin: 16px auto 0; max-width: 60ch;
  font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--mute);
}

/* Newsletter: a hosted embed, framed and centred. */
.newsletter {
  background: var(--panel); border: 1px solid var(--line);
  border-top: 3px solid var(--cyan-br);
  max-width: 860px; margin: clamp(26px, 3vw, 40px) auto 0;
  padding: clamp(28px, 3.2vw, 46px); text-align: center;
}
.newsletter > p {
  margin: 14px auto 0; max-width: 58ch;
  font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--mute);
}
.newsletter-embed {
  width: 100%; border: 0; display: block; margin-top: 22px; min-height: 436px;
}

/* --- Responsive --------------------------------------------------------- */
/* The note and the section links are the first things to go once the brand
   and the CTA need the room — cramped two-line links read worse than none. */
@media (max-width: 940px) {
  .nav-note,
  .nav-links { display: none; }
}

@media (max-width: 760px) {
  .agent-media figure { position: static; }
  .gap-cell + .gap-cell { border-left: 0; }

  /* Stacked, the argument reads first: pain, then what the agent does, then
     the demo and the benefit that follow from it. */
  .agent-grid .agent-media { order: 2; }

  /* The comparison table stops being a table and becomes one card per row,
     so nothing has to scroll sideways to be read. Each card states the
     criterion, then the two answers as labelled rows — with Effiqo's answer
     tinted and weighted, since that contrast is the whole point of the table. */
  .table-wrap {
    padding: 0; border: 0; background: transparent; overflow-x: visible;
  }
  .compare-table { min-width: 0; display: block; }
  .compare-table thead { display: none; }
  .compare-table tbody { display: block; }
  .compare-table tr {
    display: block; background: var(--panel);
    border: 1px solid var(--line); border-top: 3px solid var(--cyan-br);
    padding: 0; margin-bottom: 14px;
  }
  .compare-table td:first-child {
    display: block; font-size: 16px; font-weight: 700; line-height: 1.35;
    color: var(--ink); padding: 16px 20px;
    border-bottom: 1px solid var(--line-2);
  }
  .compare-table td + td {
    display: flex; align-items: baseline; gap: 6px;
    padding: 11px 20px; border: 0; font-size: 15px;
  }
  /* auto margin pins the label left and keeps the answer intact on the right */
  .compare-table td + td::before {
    content: attr(data-label); margin-right: auto; flex: none;
    font-size: 10px; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--mute);
  }
  .compare-table td:last-child {
    background: var(--tint); border-top: 1px solid var(--line-2);
    color: var(--ink); font-weight: 700;
  }
  .compare-table td:last-child::before { color: var(--cyan-dk); }
  .compare-table tr:last-child td { border-bottom: 0; }
  .compare-table tr:last-child td:first-child { border-bottom: 1px solid var(--line-2); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
