/* ============================================================
   Go2Msg — palette
   ============================================================ */
:root {
  --deep-crimson:    #26a69a;   /* primary brand · teal */
  --midnight-violet: #263238;   /* dark heading/text · charcoal */
  --bg-deep:         #002b26;   /* dark section background · deep teal */
  --charcoal:        #5a6770;   /* muted body text · derived mid-gray */
  --tea-green:       #43a047;   /* secondary brand · green (use sparingly) */
  --tea-green-2:     #eaf2ed;   /* pastel · soft mint-tinted off-white */
  --cream:           #efe4c8;   /* warm cream · dark-section text accents */
  --amber:           #c87b3a;   /* warm pop · small highlights, complements teal */

  --ink:        #263238;
  --paper:      #fbfaf7;
  --paper-soft: #f5f0e3;   /* warm cream tint for soft sections */
  --line:       #e2ddd0;   /* warm-tinted divider */

  --shadow-sm: 0 1px 2px rgba(38,50,56,.06), 0 2px 6px rgba(38,50,56,.04);
  --shadow-md: 0 8px 24px rgba(38,50,56,.10), 0 2px 4px rgba(38,50,56,.06);
  --shadow-lg: 0 24px 60px rgba(0,43,38,.20), 0 6px 12px rgba(38,50,56,.08);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
h1 em, h2 em { font-style: italic; color: var(--deep-crimson); }
.section-dark h1 em, .section-dark h2 em { color: var(--cream); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

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

.center { text-align: center; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--deep-crimson);
  color: #fff;
  box-shadow: 0 6px 14px rgba(38,166,154,.32);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(38,166,154,.40); }
.btn-outline {
  border-color: var(--midnight-violet);
  color: var(--midnight-violet);
  background: transparent;
}
.btn-outline:hover { background: var(--midnight-violet); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--midnight-violet);
}
.btn-ghost:hover { background: rgba(38,50,56,.07); }
.btn-link {
  padding: 12px 4px;
  color: var(--midnight-violet);
  background: transparent;
  border-radius: 0;
}
.btn-link:hover { color: var(--deep-crimson); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* "Coming Soon" hover note on not-yet-live buttons */
.trial-soon { position: relative; }
.trial-soon::after {
  content: attr(data-note);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--midnight-violet);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 11px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 60;
}
.trial-soon::before {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--midnight-violet);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
  z-index: 60;
}
.trial-soon:hover::after,
.trial-soon:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.trial-soon:hover::before,
.trial-soon:focus-visible::before { opacity: 1; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--midnight-violet);
}
.primary-nav { flex: 1; }
.primary-nav ul {
  display: flex;
  gap: 28px;
}
.primary-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--midnight-violet);
}
.primary-nav a:hover { color: var(--deep-crimson); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions .phone {
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 500;
}
.header-actions .phone:hover { color: var(--deep-crimson); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 64px 0 96px;
  background:
    radial-gradient(1100px 500px at 85% -10%, var(--tea-green-2) 0%, transparent 55%),
    radial-gradient(900px 500px at -10% 110%, rgba(38,166,154,.12) 0%, transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--deep-crimson);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--deep-crimson);
}
.eyebrow-dark { color: var(--midnight-violet); }
.eyebrow-dark::before { background: var(--midnight-violet); }
.eyebrow-light { color: var(--cream); }
.eyebrow-light::before { background: var(--cream); }

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  margin-bottom: 20px;
}
.lede {
  font-size: 19px;
  color: var(--charcoal);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--charcoal);
  font-size: 14px;
}
.hero-trust strong {
  display: block;
  color: var(--midnight-violet);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

/* Hero artwork: phone mockup + floating stat cards */
.hero-art {
  position: relative;
  height: 520px;
}
/* Hero artwork: chat-window mock matching the real product UI */
.chat-window {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg-deep);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: rgba(255,255,255,.92);
  font-size: 13.5px;
}
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}
.chat-contact strong {
  display: block;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}
.chat-contact span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(38,166,154,.18);
  color: var(--deep-crimson);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .02em;
}
.chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 18px;
  overflow: hidden;
}
.msg {
  max-width: 78%;
  padding: 10px 14px 8px;
  border-radius: 14px;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.msg p { margin: 0 0 4px; font-size: 13.5px; }
.msg-author {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}
.msg-them {
  align-self: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.05);
  color: #fff;
  border-bottom-left-radius: 4px;
}
.msg-us {
  align-self: flex-end;
  background: var(--deep-crimson);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.msg-meta {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-align: right;
}
.msg-them .msg-meta { color: rgba(255,255,255,.45); }
.msg-us   .msg-meta { color: rgba(255,255,255,.75); }
.msg-meta .check { letter-spacing: -1px; margin-left: 4px; color: var(--cream); }
.chat-composer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}
.composer-icons {
  display: inline-flex;
  gap: 8px;
  color: rgba(255,255,255,.45);
}
.composer-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 6px;
  background: rgba(0,0,0,.15);
  color: rgba(255,255,255,.4);
  font-size: 12.5px;
  font-style: italic;
}
.composer-send {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: var(--deep-crimson);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
}
.composer-send:hover { background: #1e8d83; }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.card-stat { top: 180px; left: 0; }
.card-stat.alt { top: auto; bottom: 168px; right: 0; left: auto; background: var(--cream); border-color: transparent; }
.stat-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-crimson);
  line-height: 1;
}
.card-stat.alt .stat-num { color: var(--midnight-violet); }
.stat-label {
  font-size: 12px;
  color: var(--charcoal);
  display: block;
  margin-top: 4px;
}

/* ============================================================
   Generic sections
   ============================================================ */
.section { padding: 96px 0; }
.section-soft { background: var(--paper-soft); }
.section-dark {
  background: var(--bg-deep);
  color: #efe9da;
}
.section-dark .section-head h2,
.section-dark .section-sub { color: #fff; }
.section-head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 16px;
}
.section-head.light h2 { color: #fff; }
.section-sub {
  font-size: 18px;
  color: var(--charcoal);
}
.section-dark .section-sub { color: rgba(255,255,255,.75); }

/* ============================================================
   Card grids
   ============================================================ */
.card-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}
.card-grid.four  { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.icon-tile {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--tea-green-2);
  color: var(--midnight-violet);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--charcoal);
  font-size: 15.5px;
}

/* Dark cards (AI Employee) */
.dark-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}
.dark-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  color: var(--cream);
  letter-spacing: .15em;
}
.dark-card h3 {
  font-size: 1.4rem;
  margin: 14px 0 12px;
  color: #fff;
}
.dark-card p {
  color: rgba(255,255,255,.75);
  font-size: 15.5px;
  margin-bottom: 24px;
}
.dark-card p strong { color: var(--cream); }
.dark-link {
  color: var(--tea-green-2);
  font-weight: 600;
  font-size: 14px;
}
.dark-link:hover { color: #fff; }

/* ============================================================
   Social proof
   ============================================================ */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.badge {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.badge span {
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--deep-crimson);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 4px;
  margin-bottom: 10px;
}
.badge strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  color: var(--midnight-violet);
}
.badge em {
  font-style: normal;
  font-size: 12px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ============================================================
   Testimonials
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.quote-feature {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.quote-feature::before {
  content: "\201C";
  position: absolute;
  top: -16px; left: 24px;
  font-family: 'Fraunces', serif;
  font-size: 110px;
  line-height: 1;
  color: var(--deep-crimson);
  opacity: .2;
}
.quote-feature blockquote {
  margin: 0 0 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--midnight-violet);
}
.quote-feature figcaption strong {
  display: block;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
.quote-feature figcaption span {
  color: var(--charcoal);
  font-size: 14px;
}
.stat-tile {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: #fff;
}
.stat-tile.crimson { background: var(--deep-crimson); }
.stat-tile.violet  { background: var(--bg-deep); }
.stat-tile .big {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--cream);
}
.stat-tile.violet .big { color: var(--amber); }
.stat-tile p { font-size: 15.5px; opacity: .92; }
.stat-tile cite {
  display: block;
  font-style: normal;
  margin-top: 18px;
  font-size: 13px;
  opacity: .7;
}

.video-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card {
  display: block;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.thumb {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  position: relative;
}
.play {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.92);
  color: var(--deep-crimson);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  padding-left: 3px;
  box-shadow: var(--shadow-md);
}
.play.big { width: 72px; height: 72px; font-size: 22px; }
.video-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 16px 18px 4px;
}
.video-card p {
  color: var(--charcoal);
  font-size: 14px;
  margin: 0 18px 18px;
}

/* ============================================================
   Resources
   ============================================================ */
.resource-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--deep-crimson);
}
.resource-card .tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--midnight-violet);
  background: var(--tea-green-2);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--midnight-violet);
}
.resource-card p {
  color: var(--charcoal);
  font-size: 15px;
}
.resource-card .arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--midnight-violet);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 16px;
  transition: background .2s ease;
}
.resource-card:hover .arrow {
  background: var(--deep-crimson);
  color: #fff;
}

/* ============================================================
   CEO section
   ============================================================ */
.ceo-grid {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.ceo-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 35%, var(--tea-green-2) 0%, transparent 55%),
    linear-gradient(180deg, var(--deep-crimson), var(--midnight-violet));
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.ceo-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.3;
  margin: 0 0 24px;
  color: #fff;
}
.ceo-attr {
  color: var(--cream);
  font-size: 15px;
}
.ceo-attr strong { color: #fff; }

/* ============================================================
   Final CTA band
   ============================================================ */
.cta-band {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(200,230,210,.25), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(38,166,154,.40), transparent 60%),
    var(--bg-deep);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
  color: #fff;
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,.7);
  padding: 72px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand .brand { color: #fff; }
.footer-brand p {
  margin-top: 14px;
  max-width: 280px;
  color: rgba(255,255,255,.65);
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  transition: background .15s ease;
}
.social a:hover { background: var(--deep-crimson); }
.site-footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a:hover { color: #fff; }
.legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.legal-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.legal-row a:hover { color: #fff; }

/* ============================================================
   Legal pages (terms / privacy)
   ============================================================ */
.legal-page { background: var(--paper); }
.legal-hero {
  padding: 80px 0 32px;
  background:
    radial-gradient(800px 320px at 50% 0%, var(--tea-green-2) 0%, transparent 60%),
    var(--paper);
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}
.legal-hero .legal-updated {
  font-size: 14px;
  color: var(--charcoal);
  letter-spacing: .04em;
}
.legal-shell {
  width: min(760px, 100% - 48px);
  margin: 0 auto;
  padding: 24px 0 96px;
}
.legal-notice {
  background: var(--tea-green-2);
  border-left: 4px solid var(--deep-crimson);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 15px;
  color: var(--midnight-violet);
  margin-bottom: 48px;
}
.legal-shell section { margin-bottom: 36px; }
.legal-shell section h2 {
  font-size: 1.45rem;
  color: var(--midnight-violet);
  margin: 0 0 14px;
}
.legal-shell section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--midnight-violet);
  margin: 18px 0 8px;
}
.legal-shell section p,
.legal-shell section li {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.legal-shell section ul {
  list-style: disc;
  padding-left: 22px;
}
.legal-shell section ul li { margin-bottom: 6px; }
.legal-shell a {
  color: var(--deep-crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-shell a:hover { color: var(--midnight-violet); }
.legal-toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.legal-toc h2 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 12px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 32px;
}
.legal-toc li {
  font-size: 14.5px;
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .legal-toc ol { columns: 1; }
}

/* ============================================================
   Article / resource pages
   ============================================================ */
.article-page { background: var(--paper); }
.article-hero {
  padding: 72px 0 40px;
  background:
    radial-gradient(900px 360px at 50% 0%, var(--tea-green-2) 0%, transparent 60%),
    var(--paper);
}
.article-hero .container { width: min(820px, 100% - 48px); }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.article-back:hover { color: var(--deep-crimson); }
.article-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--midnight-violet);
  background: var(--tea-green-2);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.article-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}
.article-dek {
  font-size: 19px;
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 660px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--charcoal);
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

.article-shell {
  width: min(760px, 100% - 48px);
  margin: 0 auto;
  padding: 16px 0 88px;
}
.article-shell h2 {
  font-size: 1.7rem;
  color: var(--midnight-violet);
  margin: 48px 0 16px;
}
.article-shell h2:first-child { margin-top: 8px; }
.article-shell h3 {
  font-size: 1.2rem;
  color: var(--midnight-violet);
  margin: 32px 0 10px;
}
.article-shell p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.article-shell > p:first-of-type {
  font-size: 19px;
  color: var(--midnight-violet);
}
.article-shell ul, .article-shell ol {
  padding-left: 24px;
  margin: 0 0 22px;
}
.article-shell ul { list-style: disc; }
.article-shell ol { list-style: decimal; }
.article-shell li {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.article-shell a {
  color: var(--deep-crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-shell a:hover { color: var(--midnight-violet); }
.article-shell strong { color: var(--midnight-violet); }
/* Buttons inside article prose keep their own styling, not link styling */
.article-shell a.btn { text-decoration: none; }
.article-shell a.btn-primary { color: #fff; }
.article-shell a.btn-primary:hover { color: #fff; }

/* Pull-callout */
.callout {
  background: var(--tea-green-2);
  border-left: 4px solid var(--deep-crimson);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.callout p { margin: 0; color: var(--midnight-violet); font-size: 16.5px; }
.callout p + p { margin-top: 10px; }

/* Numbered step blocks */
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.step:last-of-type { border-bottom: 1px solid var(--line); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--deep-crimson);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 19px;
}
.step h3 { margin: 4px 0 8px; }
.step p:last-child { margin-bottom: 0; }

/* Interactive checklist */
.article-shell ul.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}
.checklist li {
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.checklist label {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 4px;
  cursor: pointer;
}
.checklist input { display: none; }
.checklist .box {
  width: 24px; height: 24px;
  border: 2px solid var(--line);
  border-radius: 7px;
  display: grid; place-items: center;
  margin-top: 1px;
  transition: background .15s ease, border-color .15s ease;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.checklist .box::after { content: "✓"; opacity: 0; transition: opacity .15s ease; }
.checklist input:checked + .box {
  background: var(--deep-crimson);
  border-color: var(--deep-crimson);
}
.checklist input:checked + .box::after { opacity: 1; }
.checklist .ck-text { font-size: 16.5px; line-height: 1.6; color: var(--ink); }
.checklist .ck-text strong { display: block; color: var(--midnight-violet); }
.checklist input:checked ~ .ck-text { color: var(--charcoal); }

/* Comparison / reference table */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 15.5px;
}
.compare th, .compare td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}
.compare thead th {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  color: var(--midnight-violet);
  background: var(--paper-soft);
  border-bottom: 2px solid var(--line);
}
.compare tbody th {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--midnight-violet);
  width: 32%;
}
.compare td { color: var(--ink); }
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; }
.table-note { font-size: 13.5px; color: var(--charcoal); margin: -12px 0 28px; }

/* FAQ list */
.faq { margin: 8px 0 28px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 32px 14px 0;
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--midnight-violet);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--deep-crimson);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 16px; color: var(--charcoal); font-size: 16px; }

/* Inline article CTA */
.article-cta {
  background: var(--bg-deep);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 56px 0 8px;
  color: #fff;
}
.article-cta h2 { color: #fff; margin: 0 0 10px; font-size: 1.7rem; }
.article-cta p { color: rgba(255,255,255,.78); margin: 0 0 24px; }

/* Related links footer */
.article-related { border-top: 1px solid var(--line); padding-top: 36px; margin-top: 56px; }
.article-related h2 { font-size: 1.3rem; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) {
  .related-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .article-cta { padding: 32px 24px; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid.four  { grid-template-columns: repeat(2, 1fr); }
  .video-row       { grid-template-columns: repeat(2, 1fr); }
  .quote-grid      { grid-template-columns: 1fr 1fr; }
  .quote-feature   { grid-column: 1 / -1; }
  .footer-grid     { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .header-row { flex-wrap: wrap; gap: 16px; }
  .primary-nav { order: 3; flex-basis: 100%; }
  .primary-nav ul { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .header-actions .phone { display: none; }

  .hero { padding: 48px 0 72px; }
  .hero-grid     { grid-template-columns: 1fr; gap: 48px; }
  .hero-art      { height: 460px; }
  .section       { padding: 64px 0; }
  .section-head  { margin-bottom: 40px; }

  .card-grid.three,
  .card-grid.four  { grid-template-columns: 1fr; }
  .video-row       { grid-template-columns: 1fr; }
  .quote-grid      { grid-template-columns: 1fr; }
  .proof-grid      { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}
