/* =========================================================
   OMEGA DIGITAL — v2 Design System
   Soft sand background, deep-navy primary, electric cobalt
   accent, coral secondary. Light, premium, conversion-ready.
   ========================================================= */

/* -------------------- TOKENS -------------------- */
:root {
  /* Colour */
  --bg:           #F5F2EC;   /* soft sand */
  --bg-elev:      #FFFFFF;   /* white card surface */
  --bg-elev-2:    #EDE7D9;   /* deeper sand panel */
  --fg:           #0A1F4A;   /* deep navy — primary text */
  --fg-muted:     #5C6B8A;   /* muted blue-grey */
  --fg-dim:       #9DA8BD;
  --accent:       #2747D6;   /* electric cobalt */
  --accent-deep:  #1B33A8;   /* hover / gradient pair */
  --accent-ink:   #FFFFFF;   /* text colour on accent */
  --warm:         #FF5A3C;   /* coral, used sparingly */
  --gold:         #E8B547;   /* star/rating gold */
  --line:         rgba(10, 31, 74, 0.10);
  --line-strong:  rgba(10, 31, 74, 0.22);
  --shadow-sm:    0 1px 2px rgba(10, 31, 74, 0.04), 0 4px 12px rgba(10, 31, 74, 0.04);
  --shadow:       0 2px 6px rgba(10, 31, 74, 0.06), 0 14px 40px rgba(10, 31, 74, 0.08);

  /* Type */
  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Sizing */
  --container:   1320px;
  --gutter:      clamp(20px, 4vw, 56px);
  --radius-sm:   6px;
  --radius:      14px;
  --radius-lg:   24px;

  /* Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:    180ms;
  --dur:         420ms;
  --dur-slow:    900ms;
}

/* -------------------- RESET -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* -------------------- TYPOGRAPHY -------------------- */
.t-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.t-eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--fg);
}

.h-display { font-family: var(--font-display); font-weight: 600; font-size: clamp(54px, 10vw, 168px); line-height: 0.92; letter-spacing: -0.035em; }
.h-1 { font-size: clamp(40px, 6vw, 88px); line-height: 0.96; letter-spacing: -0.03em; }
.h-2 { font-size: clamp(32px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.025em; }
.h-3 { font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1;  letter-spacing: -0.015em; font-weight: 600; }
.h-4 { font-size: clamp(20px, 1.8vw, 24px); line-height: 1.2;  font-weight: 600; }

p { margin: 0 0 1em; }
p.lead { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--fg); }
.muted { color: var(--fg-muted); }
.italic-display { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.stat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.stat sup { font-size: 0.4em; vertical-align: top; padding-left: 6px; color: var(--accent); font-weight: 500; }

/* -------------------- LAYOUT -------------------- */
.container { width: 100%; max-width: var(--container); padding-left: var(--gutter); padding-right: var(--gutter); margin: 0 auto; }
.container-wide { max-width: 1560px; }
.container-narrow { max-width: 880px; }

.section { padding: clamp(72px, 10vw, 160px) 0; }
.section-tight { padding: clamp(48px, 6vw, 96px) 0; }

.grid { display: grid; gap: clamp(20px, 2vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 24px; }

/* -------------------- BUTTONS -------------------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-ink);
  --btn-bd: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(10, 31, 74, 0.10);
}
.btn:hover { transform: translateY(-2px); background: var(--accent-deep); border-color: var(--accent-deep); box-shadow: 0 6px 20px rgba(39, 71, 214, 0.30); }
.btn .arrow { transition: transform var(--dur-fast) var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  --btn-bd: var(--line-strong);
  box-shadow: none;
}
.btn-ghost:hover { --btn-bg: var(--fg); --btn-fg: #FFFFFF; --btn-bd: var(--fg); background: var(--fg); color: #FFFFFF; }

.btn-warm {
  --btn-bg: var(--warm);
  --btn-fg: #FFFFFF;
  --btn-bd: var(--warm);
}
.btn-warm:hover { background: #E64A2D; border-color: #E64A2D; box-shadow: 0 6px 20px rgba(255, 90, 60, 0.30); }

.btn-outline-accent {
  --btn-bg: transparent;
  --btn-fg: var(--accent);
  --btn-bd: var(--accent);
  box-shadow: none;
}
.btn-outline-accent:hover { background: var(--accent); color: var(--accent-ink); }

.btn-lg { padding: 22px 32px; font-size: 16px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  color: var(--fg);
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease);
}
.link-arrow:hover { color: var(--accent); }
.link-arrow .arrow { transition: transform var(--dur-fast) var(--ease); }
.link-arrow:hover .arrow { transform: translate(3px, -3px); }

/* -------------------- NAV -------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245, 242, 236, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav__logo .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); display: inline-block; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--fg); position: relative; padding: 6px 0; }
.nav__links a:hover { color: var(--accent); }
.nav__links a.is-active { color: var(--accent); }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
}
.nav__phone:hover { color: var(--accent); }
.nav__phone .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; box-shadow: 0 0 0 4px rgba(39, 71, 214, 0.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(39,71,214,0.18); } 50% { box-shadow: 0 0 0 8px rgba(39,71,214,0); } }

.nav__toggle { display: none; }
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 14px; font-weight: 500;
  }
  .nav__toggle .bars { width: 18px; height: 12px; position: relative; }
  .nav__toggle .bars::before, .nav__toggle .bars::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--fg); }
  .nav__toggle .bars::before { top: 2px; }
  .nav__toggle .bars::after  { bottom: 2px; }
  .nav.is-open .nav__menu { display: flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 24px var(--gutter);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .nav.is-open { background: var(--bg); border-bottom-color: var(--line); }
}

/* -------------------- FOOTER -------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: var(--bg);
}
.footer__big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 64px;
  color: var(--fg);
}
.footer__big a { color: var(--accent); }
.footer__big a:hover { text-decoration: underline; text-underline-offset: 6px; }
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.footer__col h4 { font-size: 13px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-muted); font-weight: 500; margin-bottom: 18px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { font-size: 15px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  flex-wrap: wrap;
}
@media (max-width: 880px) { .footer__cols { grid-template-columns: 1fr 1fr; } }

/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  padding: clamp(140px, 18vw, 220px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero__eyebrow { margin-bottom: 32px; }
.hero__title { margin-bottom: 32px; }
.hero__sub { max-width: 640px; color: var(--fg-muted); font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; margin-bottom: 40px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__glow {
  position: absolute;
  inset: auto -10% -40% auto;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(39, 71, 214, 0.18) 0%, rgba(39, 71, 214, 0) 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* -------------------- MARQUEE -------------------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  background: var(--bg-elev-2);
}
.marquee__track { display: flex; gap: 64px; width: max-content; animation: marquee 40s linear infinite; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--fg);
}
.marquee__item .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; }
.marquee__item--accent { color: var(--accent); font-style: italic; font-weight: 400; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------- BENTO / CARDS -------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bento .card { grid-column: span 3; }
.bento .card--lg { grid-column: span 4; grid-row: span 2; }
.bento .card--md { grid-column: span 3; }
.bento .card--sm { grid-column: span 2; }
@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card, .bento .card--lg, .bento .card--md, .bento .card--sm { grid-column: span 1; grid-row: auto; }
}
@media (max-width: 640px) { .bento { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow); }

.card--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.card--accent h1, .card--accent h2, .card--accent h3, .card--accent h4 { color: var(--accent-ink); }
.card--accent .muted { color: rgba(255, 255, 255, 0.78); }
.card--accent:hover { background: var(--accent-deep); }

.card--ink {
  background: var(--fg);
  color: #FFFFFF;
  border-color: var(--fg);
}
.card--ink h1, .card--ink h2, .card--ink h3, .card--ink h4 { color: #FFFFFF; }
.card--ink .muted { color: rgba(255, 255, 255, 0.7); }

.card--warm {
  background: var(--warm);
  color: #FFFFFF;
  border-color: var(--warm);
}
.card--warm h1, .card--warm h2, .card--warm h3, .card--warm h4 { color: #FFFFFF; }
.card--warm .muted { color: rgba(255, 255, 255, 0.78); }

.card__index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card--accent .card__index { color: rgba(255, 255, 255, 0.7); }
.card--ink .card__index { color: rgba(255, 255, 255, 0.6); }
.card--warm .card__index { color: rgba(255, 255, 255, 0.78); }
.card__title { font-size: clamp(24px, 2.4vw, 36px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 14px; font-weight: 600; }
.card__body { color: var(--fg-muted); font-size: 15px; line-height: 1.55; margin-bottom: 28px; }
.card--accent .card__body { color: rgba(255, 255, 255, 0.85); }
.card--ink .card__body { color: rgba(255, 255, 255, 0.75); }
.card--warm .card__body { color: rgba(255, 255, 255, 0.88); }
.card__cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; }

/* -------------------- LOGO STRIP -------------------- */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: var(--radius);
  overflow: hidden;
}
.logos__item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.logos__item:hover { color: var(--fg); background: var(--bg); }
@media (max-width: 900px) { .logos { grid-template-columns: repeat(3, 1fr); } }

/* -------------------- STATS -------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats__item { background: var(--bg-elev); padding: clamp(28px, 3vw, 44px); }
.stats__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 8px;
}
.stats__label { color: var(--fg-muted); font-size: 14px; line-height: 1.4; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* -------------------- TWO-UP -------------------- */
.two-up { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 5vw, 96px); align-items: start; }
@media (max-width: 900px) { .two-up { grid-template-columns: 1fr; } }

/* -------------------- STEPS -------------------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: clamp(24px, 3vw, 64px);
  align-items: start;
  padding: clamp(28px, 3vw, 44px) 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num { font-family: var(--font-mono); font-size: 14px; color: var(--accent); letter-spacing: 0.18em; padding-top: 8px; }
.step__title { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 36px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: var(--fg); }
.step__body { color: var(--fg-muted); margin-top: 14px; max-width: 60ch; }
.step__icon { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); letter-spacing: 0.18em; text-transform: uppercase; }
@media (max-width: 700px) { .step { grid-template-columns: 56px 1fr; } .step__icon { display: none; } }

/* -------------------- FAQ -------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--fg);
}
.faq__q .plus { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--fg); }
.faq__q .plus::before { width: 22px; height: 1.5px; }
.faq__q .plus::after  { width: 1.5px; height: 22px; transition: transform var(--dur) var(--ease); }
.faq__item.is-open .faq__q .plus::after { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; color: var(--fg-muted); transition: max-height var(--dur) var(--ease), padding var(--dur) var(--ease); }
.faq__item.is-open .faq__a { max-height: 400px; padding: 0 0 28px; }

/* -------------------- FORMS -------------------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg-elev);
  color: var(--fg);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 17px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-dim); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(39, 71, 214, 0.15); }
.field textarea { resize: vertical; min-height: 120px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .field-row { grid-template-columns: 1fr; } }

/* -------------------- BLOG -------------------- */
.post-card { display: grid; gap: 18px; padding: 28px 0; border-top: 1px solid var(--line); }
.post-card:first-child { border-top: 0; }
.post-card__meta {
  display: flex; gap: 16px; align-items: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted);
}
.post-card__cat { color: var(--accent); }
.post-card__title { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 40px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; color: var(--fg); }
.post-card__title a:hover { color: var(--accent); }
.post-card__excerpt { color: var(--fg-muted); max-width: 60ch; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1000px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .post-grid { grid-template-columns: 1fr; } }

.post-tile {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.post-tile:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.post-tile__img {
  height: 200px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #DCD6C8, #C9C2B0);
  position: relative;
  overflow: hidden;
}
.post-tile__img--accent { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); }
.post-tile__img--warm { background: linear-gradient(135deg, var(--warm), #E64A2D); }
.post-tile__img--ink { background: linear-gradient(135deg, var(--fg), #1B3470); }
.post-tile__img::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.10), transparent 60%);
}
.post-tile__title { font-family: var(--font-display); font-size: 22px; line-height: 1.15; letter-spacing: -0.015em; font-weight: 600; color: var(--fg); }
.post-tile__excerpt { color: var(--fg-muted); font-size: 14px; }

/* Filter chips */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  background: var(--bg-elev);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.chip:hover { border-color: var(--fg); }
.chip.is-active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* Article body */
.article-body { max-width: 720px; margin: 0 auto; font-size: 18px; line-height: 1.7; color: #1F2A4A; }
.article-body h2 { font-size: clamp(28px, 3vw, 42px); margin: 48px 0 18px; line-height: 1.1; color: var(--fg); }
.article-body h3 { font-size: clamp(22px, 2vw, 28px); margin: 32px 0 14px; line-height: 1.2; color: var(--fg); }
.article-body p { margin: 0 0 22px; }
.article-body a { color: var(--accent); border-bottom: 1px solid rgba(39, 71, 214, 0.4); }
.article-body a:hover { border-bottom-color: var(--accent); }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg);
  font-weight: 500;
  font-style: italic;
}
.article-body ul, .article-body ol { margin: 0 0 22px 0; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body code { font-family: var(--font-mono); font-size: 0.92em; background: var(--bg-elev-2); padding: 2px 7px; border-radius: 4px; }
.article-body pre { background: var(--fg); color: #FFFFFF; border: 1px solid var(--line); padding: 20px; border-radius: var(--radius); overflow-x: auto; margin: 24px 0; }
.article-body img { border-radius: var(--radius); margin: 32px 0; }
.article-body hr { border: 0; border-top: 1px solid var(--line); margin: 48px 0; }
.article-body figcaption { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); text-align: center; margin-top: 12px; }

.article-toc { font-size: 14px; }
.article-toc h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 14px; font-weight: 500; }
.article-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.article-toc a { color: var(--fg-muted); display: block; padding-left: 12px; border-left: 1px solid var(--line); transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.article-toc a:hover, .article-toc a.is-active { color: var(--accent); border-left-color: var(--accent); }

/* -------------------- HELPERS -------------------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; } .mb-12 { margin-bottom: 48px; } .mb-16 { margin-bottom: 64px; }
.mt-12 { margin-top: 48px; } .mt-16 { margin-top: 64px; }
.no-wrap { white-space: nowrap; }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-elev);
}
.tag--accent { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.tag--warm { color: #FFFFFF; background: var(--warm); border-color: var(--warm); }
.tag--gold { color: var(--fg); background: var(--gold); border-color: var(--gold); }

/* -------------------- LP-SPECIFIC: TRUST + REVIEWS -------------------- */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.stars svg { width: 18px; height: 18px; fill: var(--gold); }

.review-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid; gap: 16px;
}
.review-card__quote { font-family: var(--font-display); font-size: 18px; line-height: 1.4; letter-spacing: -0.01em; color: var(--fg); font-weight: 500; }
.review-card__author { display: flex; gap: 12px; align-items: center; padding-top: 12px; border-top: 1px solid var(--line); }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); flex-shrink: 0; }
.review-card__name { font-weight: 600; font-size: 14px; }
.review-card__role { color: var(--fg-muted); font-size: 13px; }

.trust-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.trust-strip__item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fg-muted); font-weight: 500; }
.trust-strip__item strong { color: var(--fg); font-weight: 700; }

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 12px 12px 24px;
  background: var(--fg);
  color: #FFFFFF;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease);
  max-width: calc(100% - 32px);
}
.sticky-cta.is-on { transform: translateX(-50%) translateY(0); }
.sticky-cta__txt { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta__txt strong { color: var(--accent); display: inline-block; }
@media (max-width: 600px) { .sticky-cta__txt { display: none; } .sticky-cta { padding: 10px 10px 10px 20px; } }

/* Hero LP form */
.lp-form {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow);
}
.lp-form h3 { margin-bottom: 6px; }
.lp-form__sub { color: var(--fg-muted); font-size: 14px; margin: 0 0 24px; }

/* Big "X reviews" badge for hero */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.review-badge__rating { font-weight: 700; font-size: 16px; color: var(--fg); }
.review-badge__count { color: var(--fg-muted); font-size: 13px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Cursor accent */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 71, 214, 0.06) 0%, rgba(39, 71, 214, 0) 60%);
  transform: translate(-50%, -50%);
  transition: opacity var(--dur) var(--ease);
  opacity: 0;
}
.cursor-glow.is-on { opacity: 1; }
@media (max-width: 900px) { .cursor-glow { display: none; } }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
