/* ThoughtfulEyes — site.css
   BRAND-LOCKED. Values below are carried over verbatim from the WordPress
   theme (assets/css/landing.css): cyan #00adef (Pantone 299C), ink #231f20,
   grey #939597, Poppins. Do not substitute.
   One stylesheet, no framework, no build step. */

:root {
  /* --- brand, locked --- */
  --cyan: #00adef;
  --cyan-dark: #0090c9;
  --ink: #231f20;
  --grey: #939597;

  /* --- derived surfaces, from the theme --- */
  --paper: #ffffff;
  --paper-soft: #f6f9fc;
  --card: #ffffff;
  --dark: #11161c;
  --dark-2: #161b22;
  --line: #e3e8ee;
  --body: #46505c;
  --body-soft: #56606c;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 24px -12px rgba(20,32,48,.20);
  --shadow-lg: 0 18px 50px -20px rgba(20,32,48,.28);
  --wrap: 1200px;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  /* aliases kept so existing markup keeps working */
  --ink-soft: var(--body-soft);
  --ink-faint: var(--grey);
  --line-strong: #d3dbe5;
  --accent: var(--cyan);
  --accent-hover: var(--cyan-dark);
  --accent-soft: rgba(0,173,239,.09);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--cyan-dark); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.08; letter-spacing: -.025em; font-weight: 700; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.1rem); line-height: 1.02; letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.15rem; letter-spacing: -.012em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 780px; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 12px 18px; z-index: 999; border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 80px; position: relative; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; margin-left: auto; align-items: center; }
.nav-links a {
  color: var(--body); text-decoration: none; font-size: .96rem; font-weight: 500;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a[aria-current="page"] { color: var(--cyan); border-bottom-color: var(--cyan); }
.nav-links a.btn { color: #fff; border-bottom: 2px solid var(--cyan); }
.nav-links a.btn:hover { color: #fff; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0;
  cursor: pointer; padding: 8px; width: 42px; height: 40px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 24px; height: 2px; background: var(--ink); margin: 0 auto; position: relative;
}
.nav-toggle span::before { content: ""; position: absolute; top: -7px; }
.nav-toggle span::after { content: ""; position: absolute; top: 7px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-inner { height: 80px; }
  .nav-links {
    position: absolute; top: 80px; left: -32px; right: -32px; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    flex-direction: column; gap: 0; padding: 8px 32px 20px; display: none; align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav-links a.btn { margin-top: 14px; justify-content: center; border-bottom: 2px solid var(--cyan); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--cyan); color: #fff; text-decoration: none;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: .98rem;
  border: 2px solid var(--cyan); cursor: pointer; transition: .2s ease;
  font-family: inherit; white-space: nowrap; line-height: 1.3;
  box-shadow: 0 12px 26px -10px rgba(0,173,239,.6);
}
.btn:hover { background: var(--cyan-dark); border-color: var(--cyan-dark); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 1.04rem; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none;
}
.btn-ghost:hover { background: transparent; color: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 28px; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-ink { background: var(--dark); color: #fff; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink p { color: rgba(255,255,255,.6); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cyan); margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--cyan); display: inline-block; flex: none; }
.section-ink .eyebrow { color: var(--cyan); }
.lede { font-size: 1.1rem; color: var(--body-soft); max-width: 620px; }
.section-ink .lede { color: rgba(255,255,255,.6); }
@media (max-width: 720px) { .section { padding: 64px 0; } .wrap { padding: 0 20px; } }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 90px;
  background:
    radial-gradient(1100px 560px at 82% -10%, rgba(0,173,239,.13), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--paper-soft) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 18px 0 24px; }
.hero h1 .accent { color: var(--cyan); }
.hero .lede { font-size: 1.18rem; color: #4b5560; max-width: 520px; }
.tagline {
  display: inline-flex; align-items: center; gap: 10px; font-size: .74rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px;
}
.tagline .dot { width: 24px; height: 2px; background: var(--cyan); border-radius: 0; flex: none; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } .hero { padding: 40px 0 56px; } }

/* ---------- Feature strip ---------- */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 56px; padding-top: 30px; border-top: 1px solid var(--line); }
.strip > div { background: transparent; padding: 0; }
.strip strong { display: block; font-size: 1.7rem; font-weight: 700; letter-spacing: -.03em; color: var(--ink); margin-bottom: 4px; }
.strip span { color: var(--grey); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 760px) { .strip { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 18px; margin-top: 48px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow); transition: .2s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(0,173,239,.4); }
.card .kicker {
  font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.card .kicker::before { content: ""; width: 16px; height: 1px; background: var(--cyan); flex: none; }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .45em; }
.card p { color: var(--body-soft); font-size: .95rem; line-height: 1.6; margin: 0; }
.section-ink .card { background: var(--dark-2); border-color: #232c39; }
.section-ink .card:hover { border-color: rgba(0,173,239,.5); }
.section-ink .card h3 { color: #fff; }
.section-ink .card p { color: rgba(255,255,255,.55); }
@media (max-width: 960px) { .cards-4, .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .cards-2, .cards-3, .cards-4 { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; box-shadow: var(--shadow); transition: .2s;
}
.stat:hover { transform: translateX(5px); }
.stat b { display: block; font-size: 2.2rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.stat span { color: var(--body-soft); font-size: .95rem; margin-top: 6px; display: block; }
.section-ink .stat { background: var(--dark-2); border-color: #232c39; border-left-color: var(--cyan); }
.section-ink .stat b { color: #fff; }
.section-ink .stat span { color: rgba(255,255,255,.55); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 54px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow); }
.step .num { font-size: 3.4rem; font-weight: 700; letter-spacing: -.05em; color: #e7edf3; line-height: 1; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .3em; }
.step .when { font-size: .72rem; font-weight: 600; color: var(--cyan); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.step p { font-size: .92rem; color: var(--body-soft); line-height: 1.6; margin: 0; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Chat demo ---------- */
.demo { background: #0e1217; border-radius: 34px; padding: 13px; box-shadow: var(--shadow-lg); border: 1px solid #232a33; max-width: 380px; margin-inline: auto; }
.demo-tabs { display: flex; background: #0e1217; border-radius: 20px 20px 0 0; overflow: hidden; margin-bottom: 8px; }
.demo-tab {
  flex: 1; padding: 9px 6px; background: transparent; border: 0; border-bottom: 2px solid transparent;
  font-family: inherit; font-size: .78rem; font-weight: 600; color: #6d7783; cursor: pointer;
}
.demo-tab[aria-selected="true"] { color: var(--cyan); border-bottom-color: var(--cyan); }
.demo-panel { background: #f2f5f8; border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
.demo-head { background: var(--ink); color: #fff; padding: 22px 18px 16px; display: flex; align-items: center; justify-content: space-between; }
.demo-head .who { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .85rem; color: var(--cyan); }
.demo-head .live { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); display: inline-block; animation: tePulse 1.4s infinite; flex: none; }
@keyframes tePulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
.demo-head .time { font-size: .78rem; color: #c7ccd2; }
.demo-body { padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 300px; }
.demo-meta {
  background: rgba(0,173,239,.09); border: 1px solid rgba(0,173,239,.25); color: var(--cyan-dark);
  font-size: .72rem; text-align: center; border-radius: 7px; padding: 7px; margin: 0;
}
.bubble { max-width: 86%; padding: 10px 13px; border-radius: 14px; font-size: .85rem; line-height: 1.45; }
.bubble.them { background: #fff; color: var(--ink); border: 1px solid #e4e9ef; border-bottom-left-radius: 4px; align-self: flex-start; box-shadow: var(--shadow); }
.bubble.us { background: var(--cyan); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.demo-foot { padding: 13px 16px; background: var(--ink); color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 500; }
.demo-foot .tick { color: var(--cyan); font-weight: 700; }
.demo-panel[hidden] { display: none; }

/* ---------- Marquee / ticker ---------- */
.marquee { background: var(--ink); overflow: hidden; padding: 15px 0; border-top: 1px solid #2a3340; border-bottom: 1px solid #2a3340; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: slide 28s linear infinite; white-space: nowrap; }
.marquee span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: #8b95a1; padding: 0 30px; font-weight: 500; }
.marquee span::before { content: "→ "; color: var(--cyan); font-weight: 700; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Compare ---------- */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.compare .card { border-top: 3px solid var(--line); }
.compare .card.is-us { border-top-color: var(--cyan); }
.compare .card.is-you { border-top-color: var(--ink); }
@media (max-width: 860px) { .compare { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 38px 30px;
  display: flex; flex-direction: column; box-shadow: var(--shadow); position: relative; transition: .2s;
}
.plan:hover { transform: translateY(-6px); }
.plan.featured { background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); transform: translateY(-12px); }
.plan.featured:hover { transform: translateY(-18px); }
.plan.featured h3 { color: #fff; }
.plan .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: #fff; font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; margin: 6px 0 8px; }
.plan .price { font-size: 2.5rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.plan.featured .price { color: var(--cyan); }
.plan .price small { font-size: .86rem; font-weight: 500; color: var(--grey); letter-spacing: 0; }
.plan.featured .price small { color: rgba(255,255,255,.5); }
.plan .who { font-size: .86rem; color: var(--grey); margin: 6px 0 24px; }
.plan.featured .who { color: rgba(255,255,255,.5); }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.plan li { position: relative; padding: 11px 0 11px 26px; font-size: .92rem; color: var(--body); border-bottom: 1px solid var(--line); }
.plan.featured li { color: rgba(255,255,255,.72); border-bottom-color: rgba(255,255,255,.08); }
.plan li::before { content: "→"; position: absolute; left: 0; top: 11px; color: var(--cyan); font-weight: 700; }
.plan .btn { width: 100%; }
.plan:not(.featured) .btn { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.plan:not(.featured) .btn:hover { background: var(--ink); color: #fff; }
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; } .plan.featured { transform: none; } .plan.featured:hover { transform: translateY(-6px); } }

/* ---------- Detail list ---------- */
.detail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 36px; margin-top: 44px; }
.detail > div { border-top: 2px solid var(--line); padding-top: 20px; }
.detail h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .35em; }
.detail p { color: var(--body-soft); font-size: .95rem; line-height: 1.65; margin: 0; }
@media (max-width: 700px) { .detail { grid-template-columns: 1fr; } }

/* ---------- Callout ---------- */
.callout {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--cyan);
  border-radius: 0 12px 12px 0; padding: 18px 24px; margin: 34px 0; box-shadow: var(--shadow);
}
.callout.warm { border-left-color: var(--grey); }
.callout p { margin: 0; color: var(--body-soft); font-size: .95rem; }
.callout strong { color: var(--ink); }
.section-ink .callout { background: var(--dark-2); border-color: #232c39; border-left-color: var(--cyan); }
.section-ink .callout p { color: rgba(255,255,255,.62); }
.section-ink .callout strong { color: #fff; }

/* ---------- Maths block ---------- */
.maths { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 44px; box-shadow: var(--shadow); }
.maths-row { display: flex; justify-content: space-between; gap: 20px; padding: 15px 28px; border-bottom: 1px solid var(--line); font-size: .96rem; color: var(--body); }
.maths-row span:last-child { white-space: nowrap; font-weight: 600; color: var(--ink); }
.maths-row:last-child { border-bottom: 0; background: rgba(0,173,239,.07); font-weight: 700; }
.maths-row:last-child span:last-child { color: var(--cyan-dark); }

/* ---------- CTA band ---------- */
.cta {
  background: radial-gradient(900px 480px at 50% -20%, rgba(0,173,239,.22), transparent 60%), var(--ink);
  color: #fff; padding: 96px 0; text-align: center;
}
.cta h2 { color: #fff; margin-bottom: 18px; max-width: 22ch; margin-inline: auto; }
.cta p { color: rgba(255,255,255,.62); font-size: 1.08rem; max-width: 620px; margin: 0 auto 36px; line-height: 1.75; }
.cta .btn { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.cta .btn:hover { background: var(--cyan-dark); border-color: var(--cyan-dark); }
/* Base rule first — .fineprint is used outside .cta too (House Voice). */
.fineprint { color: var(--grey); font-size: .87rem; margin-top: 22px; }
.cta .fineprint { color: rgba(255,255,255,.45); font-size: .87rem; margin-top: 22px; }

/* ---------- Forms ---------- */
.form { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 500; font-size: .9rem; color: var(--body); margin-bottom: 6px; }
.field .hint { font-weight: 400; color: var(--grey); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; background: var(--paper-soft); border: 1px solid var(--line);
  border-radius: 10px; font-family: inherit; font-size: .95rem; color: var(--ink); outline: none; transition: .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); background: #fff; }
.field textarea { min-height: 104px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form .btn { width: 100%; margin-top: 4px; }
.form-note { font-size: .85rem; color: var(--grey); margin-top: 14px; text-align: center; }

/* ---------- Booking ---------- */
.booking { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; min-height: 640px; }
.booking-fallback { padding: 46px 30px; text-align: center; color: var(--body-soft); }
.tick-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.tick-list li { position: relative; padding-left: 28px; color: var(--body-soft); font-size: .96rem; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; font-size: 1.1rem; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: start; }
.split-even { grid-template-columns: 1fr 1fr; }
@media (max-width: 960px) { .split, .split-even { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.3rem; font-weight: 700; letter-spacing: -.01em; margin: 36px 0 12px; }
.prose h3 { font-size: 1.04rem; font-weight: 600; margin: 22px 0 8px; }
.prose p { color: var(--body); margin: 0 0 14px; font-size: 1rem; line-height: 1.7; }
.prose ul { color: var(--body); margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose li { line-height: 1.6; }
.prose a { color: var(--cyan); font-weight: 500; }
.prose .updated { color: var(--grey); font-size: .9rem; margin: 0 0 30px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #aeb6c0; padding: 60px 0 30px; font-size: .94rem; }
.footer a { color: #aeb6c0; text-decoration: none; }
.footer a:hover { color: var(--cyan); }
.footer-top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: center; padding-bottom: 34px; border-bottom: 1px solid #232c39; }
.footer .brand img { height: 42px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.footer-bottom { padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; font-size: .85rem; color: #6b7480; }
@media (max-width: 680px) { .footer-top { flex-direction: column; align-items: flex-start; } }

/* ---------- Consent ---------- */
.consent {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; z-index: 200;
  background: var(--ink); color: rgba(255,255,255,.75); padding: 20px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); font-size: .92rem; display: none;
}
.consent.show { display: block; }
.consent p { margin: 0 0 14px; }
.consent a { color: var(--cyan); }
.consent-actions { display: flex; gap: 10px; }
.consent button {
  font-family: inherit; font-size: .89rem; font-weight: 600; padding: 10px 20px;
  border-radius: 999px; cursor: pointer; border: 2px solid rgba(255,255,255,.25);
  background: transparent; color: rgba(255,255,255,.8); transition: .2s;
}
.consent button:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.consent button.primary { background: var(--cyan); color: #fff; border-color: var(--cyan); }
.consent button.primary:hover { background: var(--cyan-dark); border-color: var(--cyan-dark); }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Overnight-gap calculator (/paying-for-leads/) ---------- */
.calc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 44px; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; box-shadow: var(--shadow-lg); background: #fff;
}
.calc-inputs { padding: 34px 32px; background: var(--paper-soft); border-right: 1px solid var(--line); }
.calc-field { margin-bottom: 26px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field label { display: block; font-size: .92rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.calc-field label span { font-weight: 400; color: var(--grey); }
.calc-control { display: flex; align-items: center; gap: 16px; }
.calc-control input[type="range"] {
  flex: 1; -webkit-appearance: none; appearance: none; height: 4px;
  background: var(--line); border-radius: 999px; outline: none; padding: 0; border: 0;
}
.calc-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--cyan); cursor: pointer; border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,173,239,.5);
}
.calc-control input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--cyan);
  cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,173,239,.5);
}
.calc-control input[type="range"]:focus-visible { outline: 3px solid var(--cyan); outline-offset: 6px; }
.calc-control output {
  min-width: 82px; text-align: right; font-weight: 700; font-size: 1.05rem;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.calc-out { padding: 34px 32px; display: flex; flex-direction: column; }
.calc-headline { margin-bottom: 22px; }
.calc-label { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.calc-headline strong {
  display: block; font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 700;
  letter-spacing: -.035em; line-height: 1; color: var(--cyan); font-variant-numeric: tabular-nums;
}
.calc-sub { display: block; font-size: .95rem; color: var(--body-soft); margin-top: 8px; }
.calc-out .maths { margin-top: 0; box-shadow: none; border-radius: 12px; }
.calc-out .maths-row { padding: 11px 18px; font-size: .9rem; }
.calc-out .maths-row em { color: var(--grey); font-style: normal; }
.calc-note {
  margin: 18px 0 0; font-size: .92rem; color: var(--body-soft);
  padding-top: 16px; border-top: 1px solid var(--line);
}
.calc-note strong { color: var(--ink); }
.no-js .calc-inputs { display: none; }
@media (max-width: 860px) {
  .calc { grid-template-columns: 1fr; }
  .calc-inputs { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 24px; }
  .calc-out { padding: 28px 24px; }
}

/* ---------- Dual-tone wordmark ----------
   Brand rule: "Thoughtful" in ink (white on dark), "Eyes" always cyan.
   Cyan never inverts. See BRAND-GUIDELINES.md. */
.brand-word { font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.brand-word span { color: var(--cyan); }
.footer .brand-word, .section-ink .brand-word, .cta .brand-word { color: #fff; }
.footer .brand-word span, .section-ink .brand-word span, .cta .brand-word span { color: var(--cyan); }

/* ---------- Nav CTA ----------
   `.nav-links a` (0,1,1) was beating `.btn` (0,1,0) and flattening the button
   to 6px of vertical padding. This rule (0,2,1) restores proper breathing room. */
.nav-links a.btn {
  padding: 12px 28px;
  border: 2px solid var(--cyan);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .nav-links a.btn { padding: 14px 28px; }
}

/* ---------- Social ---------- */
.social {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  color: #aeb6c0; text-decoration: none; font-size: .92rem; font-weight: 500;
  border: 1px solid #2c3038; border-radius: 999px; padding: 8px 16px; transition: .2s;
}
.social:hover { color: var(--cyan); border-color: var(--cyan); }
.social svg { flex: none; }

/* ---------- WhatsApp click-to-chat ----------
   The front door to the WhatsApp agent. Sits above the consent notice
   and gets out of the way of it on small screens. */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; text-decoration: none;
  padding: 13px 20px 13px 17px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; line-height: 1;
  box-shadow: 0 10px 28px -8px rgba(37,211,102,.55), 0 2px 6px rgba(0,0,0,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(37,211,102,.65), 0 2px 6px rgba(0,0,0,.14);
}
.wa-float svg { flex: none; }
.consent.show ~ .wa-float,
.wa-float { bottom: 20px; }
@media (max-width: 620px) {
  .wa-float { right: 14px; bottom: 14px; padding: 12px 16px 12px 14px; font-size: .9rem; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 620px) {
  body:has(.consent.show) .wa-float { bottom: 190px; }
}

/* ---------- House Voice: the same sentence, twice ----------
   Two quotes side by side inside a .section-ink block. The divider is a
   border on the first child rather than a gap, so the two read as one
   comparison rather than two unrelated cards. */
.vs { display: grid; grid-template-columns: 1fr 1fr; margin-top: 44px; }
.vs > div { padding: 0 34px; }
.vs > div:first-child { border-right: 1px solid rgba(255,255,255,.12); padding-left: 0; }
.vs > div:last-child { padding-right: 0; }
.vs .tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  display: block; margin-bottom: 16px;
}
.vs .tag.generic { color: var(--grey); }
.vs .tag.yours { color: var(--cyan); }
.vs blockquote { margin: 0; font-size: 1.2rem; line-height: 1.5; font-weight: 500; }
.vs blockquote.generic { color: #8c96a2; }
.vs blockquote.yours { color: #fff; }
@media (max-width: 760px) {
  .vs { grid-template-columns: 1fr; }
  .vs > div { padding: 0; }
  .vs > div:first-child {
    border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12);
    padding-bottom: 28px; margin-bottom: 28px;
  }
}

/* Price line under a House Voice card. Sits on its own rule so the card
   above it can stay plain body copy. */
.card .price-line {
  display: block; margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line); font-size: .95rem; font-weight: 600; color: var(--ink);
}
.card .price-line b { color: var(--cyan); font-weight: 700; }
.section-ink .card .price-line { border-top-color: #232c39; color: rgba(255,255,255,.75); }
