/* ============================================================
   GETREALIGFOLLOWERS — "Night Shift" design system
   Accent: saffron #FFB020 (CTAs, selected card, index numbers,
   H1 speed clause ONLY). Trust green #2FBF71 strictly for
   stars/ticks/live dot. Canvas deep navy, light flips for
   reviews/FAQ. Sora display + Manrope body.
   ============================================================ */

:root {
  --navy: #0D1524;
  --panel: #141F33;
  --panel-2: #18253d;
  --line: #24314B;
  --ink: #F2F4F8;
  --ink-soft: #A8B3C7;
  --ink-faint: #8494B0;
  --saffron: #FFB020;
  --saffron-deep: #E69A0A;
  --green: #2FBF71;
  --light: #F6F7F9;
  --light-panel: #FFFFFF;
  --light-line: #E4E7EC;
  --ink-on-light: #12151A;
  --soft-on-light: #4A5158;
  --faint-on-light: #6C7584;
  --display: 'Sora', sans-serif;
  --body: 'Manrope', sans-serif;
  --r: 16px;
  --r-lg: 24px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-cta: 0 8px 24px rgba(255, 176, 32, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-variant-numeric: tabular-nums;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--navy);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.num, .stat-n, .pkg-price, .buy-price, .strip-price { font-variant-numeric: tabular-nums; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; }

/* ---------- type ---------- */
.h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h1 em { font-style: normal; color: var(--saffron); display: block; }
.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.sec-light .h2, .sec-light h3 { color: var(--ink-on-light); }
.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.sec-sub { max-width: 560px; margin: 14px auto 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 12px;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
  min-height: 48px;
  cursor: pointer;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--saffron); color: #221600; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--saffron-deep); }
.btn-sm { padding: 11px 18px; font-size: 14px; min-height: 44px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.quiet-link {
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.quiet-link:hover { color: var(--ink); border-color: var(--ink-faint); }

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 300;
  background: var(--saffron); color: #221600;
  font-family: var(--display); font-weight: 700; font-size: 14px;
  padding: 12px 18px; border-radius: 0 0 12px 12px;
  transition: top 160ms var(--ease-out);
}
.skip-link:focus { top: 0; }

*:focus-visible { outline: 2px solid var(--saffron); outline-offset: 2px; }
.sec-light *:focus-visible { outline-color: #B87700; }

/* ---------- announcement bar ---------- */
.annc { background: #0A101C; border-bottom: 1px solid var(--line); }
.annc-in {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 40px; max-width: none; padding: 4px 20px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft); flex-wrap: wrap;
}
.annc-new {
  background: var(--saffron); color: #221600; border-radius: 20px;
  font-family: var(--display); font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.08em; padding: 2px 9px;
}
.annc-cta {
  color: var(--saffron); font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em;
  border: 1.5px solid rgba(255, 176, 32, 0.5); border-radius: 20px; padding: 3px 12px;
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.annc-cta:hover { background: rgba(255, 176, 32, 0.12); border-color: var(--saffron); }
.annc-short { display: none; }

/* ---------- header / nav ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 21, 36, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr-in {
  display: flex; align-items: center; gap: 18px;
  min-height: 62px; max-width: none; padding: 0 clamp(20px, 2.5vw, 44px);
}
.logo { display: inline-flex; align-items: center; gap: 5px; }
.logo-mark { width: 27px; height: 27px; flex: 0 0 auto; transform: translateY(-1.5px); }
.logo-word {
  font-family: var(--display); font-weight: 800; font-size: 20px; line-height: 1;
  letter-spacing: -0.02em; color: var(--ink); white-space: nowrap;
}
.lw-ig { color: var(--saffron); }
.lw-com { color: var(--saffron); }
.nav { display: flex; gap: 15px; margin: 0 auto; }   /* brand left | nav centered | cta right */
.nav a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap; transition: color 160ms var(--ease-out);
}
.nav a:hover { color: var(--ink); }
.hdr-cta { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 40px; min-width: 44px; padding: 0 12px; border-radius: 11px;
  background: transparent; border: 1px solid var(--line); color: var(--ink-soft);
  cursor: pointer; transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.cart-btn:hover { color: var(--ink); border-color: var(--ink-faint); }
.cart-btn:active { transform: scale(0.95); }
.cart-btn svg { width: 19px; height: 19px; }
.cart-count {
  display: none; align-items: center; justify-content: center;
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px;
  background: var(--saffron); color: #221600;
  font-size: 11.5px; font-weight: 800; line-height: 1;
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 18px; border-radius: 11px;
  font-family: var(--display); font-size: 14px; font-weight: 700;
  color: var(--saffron); border: 1.5px solid var(--saffron); text-decoration: none;
  transition: background 160ms var(--ease-out), transform 140ms var(--ease-out);
}
.btn-outline:hover { background: rgba(255, 176, 32, 0.1); }
.btn-outline:active { transform: scale(0.97); }
.tick-in { animation: tickfade 500ms ease; }
@keyframes tickfade { from { opacity: 0; } to { opacity: 1; } }

/* header responsive */
@media (max-width: 1020px) {
  .nav { display: none; }
  .hdr-in { justify-content: space-between; }
  .hdr-cta { margin-left: auto; }
}
@media (max-width: 760px) {
  .hdr .btn-outline { display: none; }
}
@media (max-width: 640px) {
  .annc-in { font-size: 11px; gap: 7px; flex-wrap: nowrap; min-height: 34px; white-space: nowrap; padding: 4px 12px; }
  .annc-full { display: none; }
  .annc-short { display: inline; }
  .annc-new { font-size: 9px; padding: 2px 7px; flex: none; }
  .annc-cta { font-size: 10px; padding: 2.5px 9px; flex: none; }
  .logo-word { font-size: 18px; }
  .logo-mark { width: 24px; height: 24px; }
  .hdr-in { min-height: 54px; padding: 0 12px; }
  .cart-btn { height: 38px; padding: 0 11px; }
}
@media (max-width: 360px) {
  .annc-in { font-size: 10px; gap: 5px; }
  .annc-new { display: none; }
  .annc-short { overflow: hidden; text-overflow: ellipsis; }
}

/* ---------- hero ---------- */
.hero { padding: clamp(48px, 8vw, 88px) 0 24px; text-align: center; position: relative; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% -5%, rgba(255, 176, 32, 0.07), transparent 65%),
    radial-gradient(ellipse 45% 38% at 82% 8%, rgba(47, 92, 191, 0.10), transparent 70%);
  pointer-events: none;
}
.hero-in { position: relative; max-width: 920px; }
.hero-sub { max-width: 640px; margin: 22px auto 0; font-size: 17.5px; }
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-top: 30px; flex-wrap: wrap;
}
.rating-row {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
}
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; fill: var(--green); }
.rating-copy { font-size: 14.5px; color: var(--ink-soft); }
.rating-copy strong { color: var(--ink); }
.micro-reassure { font-size: 13px; color: var(--ink-faint); margin-top: 12px; }

/* hero package strip */
.hero-strip {
  margin: 40px auto 0;
  max-width: 780px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(4, 8, 16, 0.45);
  overflow: hidden;
  text-align: left;
}
.strip-tabs { display: flex; border-bottom: 1px solid var(--line); }
.strip-tab {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 8px 12px;
  color: var(--ink-faint);
  border-bottom: 2px solid transparent;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.strip-tab:hover { color: var(--ink-soft); }
.strip-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--saffron);
  background: rgba(255, 176, 32, 0.04);
}
.pglyph { width: 21px; height: 21px; margin-bottom: 3px; }
.strip-tab-name { font-family: var(--display); font-weight: 600; font-size: 14px; }
.strip-tab-count { font-size: 11.5px; color: var(--ink-faint); }
.strip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
}
.strip-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 14px 14px;
  text-align: center;
  transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out);
  background: var(--panel-2);
}
.strip-card:hover { border-color: var(--ink-faint); transform: translateY(-2px); }
.strip-card:active { transform: scale(0.97); }
.strip-card.is-pop { border-color: var(--saffron); background: rgba(255, 176, 32, 0.06); }
/* stack the card's rows (they are <span>s — inline by default would mash together) */
.strip-qty, .strip-svc, .strip-price, .strip-per, .strip-eta { display: block; }
.strip-badge {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--saffron); color: #221600;
  font-family: var(--display); font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 8px;
  white-space: nowrap;
}
.strip-qty { font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--ink); }
.strip-svc { font-size: 12px; color: var(--ink-faint); margin-top: 1px; }
.strip-price { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); margin-top: 8px; }
.strip-card.is-pop .strip-price { color: var(--saffron); }
.strip-per { font-size: 11.5px; color: var(--ink-faint); margin-top: 2px; }
.strip-eta { font-size: 11px; color: var(--ink-faint); margin-top: 7px; padding-top: 7px; border-top: 1px dashed var(--line); }
.strip-foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-top: 1px solid var(--line);
  padding: 11px 16px;
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-faint);
}
.strip-foot .tick { width: 14px; height: 14px; color: var(--green); flex: 0 0 auto; }

/* ---------- trust band ---------- */
.trustband { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 48px; background: rgba(20, 31, 51, 0.4); }
.trustband-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px 20px;
}
.tchip {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  text-align: center;
}
.tchip svg { width: 18px; height: 18px; color: var(--ink-soft); flex: 0 0 auto; }

/* ---------- sections ---------- */
.sec { padding: clamp(44px, 4vw, 64px) 0; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto clamp(36px, 5vw, 54px); }
.sec-head.sec-head--left { text-align: left; max-width: none; margin-left: 0; margin-right: 0; }
.sec-head--left .sec-sub { margin-left: 0; }
.sec-light { background: var(--light); color: var(--soft-on-light); }
.sec-light .eyebrow { color: var(--faint-on-light); }
.sec-light + .sec-light { padding-top: 0; }

/* ---------- packages ---------- */
.pkg-plat-tabs {
  display: flex; justify-content: center; gap: 6px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 18px;
}
.plat-tab {
  font-family: var(--display); font-weight: 600; font-size: 14.5px;
  color: var(--ink-faint);
  padding: 10px 22px;
  border-radius: 10px;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out);
  min-height: 44px;
}
.plat-tab:hover { color: var(--ink-soft); }
.plat-tab.is-active { background: var(--saffron); color: #221600; }
.pkg-svc-tabs { display: flex; justify-content: center; gap: 18px; margin-bottom: 30px; flex-wrap: wrap; }
.svc-tab {
  font-weight: 600; font-size: 14px;
  color: var(--ink-faint);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
  min-height: 44px;
}
.svc-tab:hover { color: var(--ink-soft); }
.svc-tab.is-active { color: var(--ink); border-bottom-color: var(--saffron); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.pkg-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 18px 18px;
  text-align: center;
  transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out);
}
.pkg-card:hover { border-color: var(--ink-faint); transform: translateY(-3px); }
.pkg-card:active { transform: scale(0.98); }
.pkg-card.is-pop { border-color: var(--saffron); background: linear-gradient(180deg, rgba(255, 176, 32, 0.08), rgba(255, 176, 32, 0.02)); }
.pkg-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--saffron); color: #221600;
  font-family: var(--display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 8px;
  white-space: nowrap;
}
.pkg-qty { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--ink); letter-spacing: -0.01em; }
.pkg-svc { font-size: 13px; color: var(--ink-faint); }
.pkg-price { font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--ink); margin-top: 12px; }
.pkg-card.is-pop .pkg-price { color: var(--saffron); }
.pkg-per { font-size: 12px; color: var(--ink-faint); margin-top: 3px; }
.pkg-save {
  display: inline-block;
  font-size: 11.5px; font-weight: 700;
  color: var(--green);
  background: rgba(47, 191, 113, 0.1);
  border: 1px solid rgba(47, 191, 113, 0.25);
  padding: 2px 8px;
  border-radius: 8px;
  margin-top: 8px;
}
.pkg-eta {
  font-size: 12px; color: var(--ink-soft);
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.pkg-btn {
  margin-top: 14px;
  width: 100%;
  font-family: var(--display); font-weight: 700; font-size: 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 11px 0;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
  min-height: 44px;
}
.pkg-card:hover .pkg-btn { border-color: var(--saffron); color: var(--saffron); }
.pkg-card.is-pop .pkg-btn { background: var(--saffron); border-color: var(--saffron); color: #221600; }
.pkg-btn:active { transform: scale(0.97); }
.pkg-note { text-align: center; font-size: 13.5px; color: var(--ink-faint); max-width: 560px; margin: 26px auto 0; }
/* display-only sold-out filler — squares off the grid, never clickable */
.pkg-card.pkg-sold {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-style: dashed; background: rgba(20, 31, 51, 0.4); cursor: not-allowed;
}
.pkg-card.pkg-sold:hover { border-color: var(--line); transform: none; }
.pkg-card.pkg-sold .pkg-qty, .pkg-card.pkg-sold .pkg-svc { color: var(--ink-faint); }
.pkg-sold-msg {
  margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line);
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint);
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 4vw, 46px);
}
/* Open ruled columns — no boxes; the numeral is the design */
.step { border-top: 1px solid var(--line); padding-top: 20px; }
.step-n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(38px, 4.4vw, 54px); line-height: 1;
  color: var(--line);
  margin-bottom: 12px;
}
.step h3 { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 14.5px; max-width: 40ch; }
.step-chip {
  display: inline-block;
  margin-top: 13px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-faint);
}
.step-chip::before { content: "· "; color: var(--saffron); }

/* ---------- overnight (night panel) ---------- */
#overnight { padding-top: 0; }
.night-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.night-viz {
  display: flex; align-items: center; justify-content: center;
  min-height: 340px;
  padding: clamp(24px, 3.2vw, 44px);
  background: linear-gradient(160deg, #101a2e, #0b1424);
}
.night-viz svg { width: 100%; height: auto; max-width: 470px; display: block; }
.night-copy { padding: clamp(32px, 4.5vw, 56px); }
.night-copy p { margin-top: 14px; font-size: 15.5px; max-width: 46ch; }
.night-list { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.night-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.night-list svg { width: 16px; height: 16px; color: var(--green); flex: 0 0 auto; }

/* ---------- stats band ---------- */
.statsband { background: #0A101C; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
/* Left baseline row — one big saffron lead numeral, the rest quiet with dividers */
.statsband-in {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: clamp(26px, 4vw, 54px);
  padding: clamp(30px, 4vw, 48px) 20px;
  text-align: left;
}
.stat-n {
  display: block;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat--lead .stat-n { font-size: clamp(46px, 6vw, 70px); color: var(--saffron); }
.stat + .stat { border-left: 1px solid var(--line); padding-left: clamp(20px, 3vw, 40px); }
.stat-l { font-size: 12.5px; font-weight: 600; color: var(--ink-faint); }

/* ---------- guarantees — H2 beside a borderless ledger ---------- */
.why-split {
  display: grid; grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(32px, 5vw, 68px); align-items: start;
  margin-bottom: clamp(38px, 6vw, 60px);
}
.why-head { text-align: left; }
.why-head p { margin: 12px 0 0; font-size: 15px; color: var(--ink-soft); }
.gl-row { border-top: 1px solid var(--line); padding: 18px 0; }
.gl-row:last-child { border-bottom: 1px solid var(--line); }
.gl-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.gl-head h3 { font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--ink); }
.gl-meta { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--saffron); white-space: nowrap; }
.gl-row p { font-size: 14px; color: var(--ink-soft); max-width: 54ch; margin-top: 5px; }

/* comparison table */
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r); }
.cmp { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14.5px; }
.cmp th, .cmp td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.cmp thead th { font-family: var(--display); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); background: rgba(10, 16, 28, 0.5); }
.cmp thead .cmp-us { color: var(--ink); }
.cmp tbody th { font-weight: 600; color: var(--ink-soft); width: 26%; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp .yes { color: var(--ink); font-weight: 600; }
.cmp .yes::before { content: '✓  '; color: var(--green); font-weight: 800; }
.cmp .no { color: var(--ink-faint); }
.cmp .no::before { content: '✕  '; color: #C24B5A; font-weight: 800; }

/* ---------- reviews ---------- */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.rev {
  background: var(--light-panel);
  border: 1px solid var(--light-line);
  border-radius: var(--r);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.rev-top { display: flex; align-items: center; gap: 11px; }
.ravatar {
  width: 38px; height: 38px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 13px;
  border-radius: 50%;
}
.rev-top strong { display: block; font-size: 14.5px; color: var(--ink-on-light); line-height: 1.2; }
.rev-date { font-size: 12px; color: var(--faint-on-light); }
.rev-stars { margin-left: auto; color: var(--green); font-size: 13px; letter-spacing: 1px; }
.rev p { font-size: 14.5px; color: var(--soft-on-light); flex: 1; }
.rev-item { font-size: 12px; font-weight: 600; color: var(--faint-on-light); border-top: 1px solid var(--light-line); padding-top: 11px; }
.rev-tick { width: 12px; height: 12px; color: var(--green); display: inline-block; vertical-align: -1.5px; margin-right: 5px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--light-panel);
  border: 1px solid var(--light-line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  color: var(--ink-on-light);
  padding: 18px 22px;
  min-height: 56px;
}
.faq-x { position: relative; width: 14px; height: 14px; flex: 0 0 auto; }
.faq-x::before, .faq-x::after {
  content: '';
  position: absolute; top: 50%; left: 0;
  width: 100%; height: 2px;
  background: var(--faint-on-light);
  border-radius: 2px;
  transition: transform 220ms var(--ease-out);
}
.faq-x::after { transform: rotate(90deg); }
.faq-item.open .faq-x::after { transform: rotate(0deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out);
}
.faq-a p { padding: 0 22px 20px; font-size: 15px; color: var(--soft-on-light); max-width: 62ch; }
.faq-item.open .faq-a { max-height: 420px; }

/* ---------- guide (long-form SEO copy — used by the landing pages) ---------- */
.guide-prose { max-width: 62ch; margin: 0 auto; }
.guide-prose h3 { font-size: 18px; margin: 30px 0 10px; color: var(--ink-on-light); }
.guide-prose h3:first-child { margin-top: 0; }
.guide-prose p { font-size: 15px; line-height: 1.7; color: var(--soft-on-light); margin: 0 0 14px; }
.guide-prose p strong { color: var(--ink-on-light); }
.guide-prose a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- finale ---------- */
.finale { padding: clamp(44px, 4vw, 64px) 0; }
.finale-panel {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
  padding: clamp(56px, 8vw, 96px) 24px;
  background: radial-gradient(ellipse 75% 130% at 50% 0%, #1a2942, #0f1a2e 72%);
}
.finale-panel::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0.7;
}
.finale-copy { position: relative; }
.finale-copy p { margin: 14px 0 26px; font-size: 17px; color: var(--ink-soft); }
.finale-copy .micro-reassure { margin-top: 18px; font-size: 13px; }

/* ---------- footer ---------- */
.ftr { border-top: 1px solid var(--line); background: #0A101C; padding: clamp(48px, 6vw, 72px) 0 36px; font-size: 14px; }
.ftr-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 44px;
}
.ftr-brand p { margin: 16px 0 20px; max-width: 30ch; font-size: 13.5px; color: var(--ink-faint); }
.payline { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; color: var(--ink-faint); font-size: 12.5px; font-weight: 600; }
.pay-badges { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.pay-badges img { height: 26px; width: auto; display: block; border-radius: 4px; }
.pay-note { display: inline-flex; align-items: center; gap: 7px; }
.pay-note svg { width: 15px; height: 15px; flex: 0 0 auto; }
.ftr-col h3 {
  font-family: var(--display); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.ftr-col a {
  display: block;
  color: var(--ink-faint);
  padding: 5px 0;
  font-size: 13.5px;
  transition: color 160ms var(--ease-out);
}
.ftr-col a:hover { color: var(--ink); }
.ftr-legal { border-top: 1px solid var(--line); padding-top: 26px; }
.ftr-legal p { font-size: 12px; color: var(--ink-faint); max-width: 88ch; margin-bottom: 8px; }

/* ---------- buy modal ---------- */
.modal-scrim, .cart-scrim {
  position: fixed; inset: 0;
  background: rgba(4, 8, 16, 0.8);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 200;
}
.modal-scrim.open, .cart-scrim.open { opacity: 1; pointer-events: auto; }
.buy-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  width: min(430px, calc(100vw - 32px));
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px 26px;
  z-index: 210;
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
  pointer-events: none;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.buy-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.modal-close {
  position: absolute; top: 10px; right: 12px;
  font-size: 24px; color: var(--ink-faint);
  width: 44px; height: 44px;
  border-radius: 10px;
  transition: color 160ms var(--ease-out);
}
.modal-close:hover { color: var(--ink); }
.buy-title { font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--ink); }
.buy-price-row { display: flex; align-items: baseline; gap: 10px; margin: 8px 0 20px; }
.buy-price { font-family: var(--display); font-weight: 800; font-size: 26px; color: var(--saffron); }
.buy-per { font-size: 13px; color: var(--ink-faint); }
.buy-label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 7px; }
.buy-input {
  width: 100%;
  font: 600 16px var(--body);
  color: var(--ink);
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.buy-input:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(255, 176, 32, 0.18); }
.buy-input.error { border-color: #C24B5A; box-shadow: 0 0 0 3px rgba(194, 75, 90, 0.18); }
.buy-help { font-size: 12.5px; color: var(--ink-faint); margin: 8px 0 18px; }
.uv-box { margin: -6px 0 14px; }
.uv-row { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; padding: 9px 12px; border-radius: 10px; background: var(--panel-2); color: var(--ink-soft); }
.uv-row svg { width: 15px; height: 15px; flex: 0 0 auto; }
.uv-ok { color: var(--green); background: rgba(47, 191, 113, 0.08); }
.uv-bad, .uv-warn { color: #E8828C; background: rgba(194, 75, 90, 0.08); }
.uv-spin { width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--line); border-top-color: var(--ink-faint); animation: uvspin 700ms linear infinite; flex: 0 0 auto; }
@keyframes uvspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .uv-spin { animation: none; } }
.buy-help.center { text-align: center; margin: 12px 0 0; }
.btn-block-quiet {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
  font-size: 13.5px;
}
.buy-checks {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.buy-checks li { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.buy-checks svg { width: 13px; height: 13px; color: var(--green); flex: 0 0 auto; }

/* ---------- order modal (popup + scraper) ---------- */
.om-overlay { position: fixed; inset: 0; z-index: 4000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(4, 8, 16, 0.8); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
.om-overlay.open { display: flex; }
.om-dialog { position: relative; width: 100%; max-width: 460px; max-height: 90vh; overflow: auto; background: var(--panel); color: var(--ink); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px 26px; box-shadow: 0 30px 80px rgba(4, 8, 16, 0.6); }
.om-close { position: absolute; top: 12px; right: 15px; background: transparent; border: none; color: var(--ink-faint); font-size: 26px; line-height: 1; cursor: pointer; width: 40px; height: 40px; }
.om-close:hover { color: var(--ink); }
.om-eyebrow { font-family: var(--display); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--ink-faint); }
.om-sum { font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin: 4px 0 18px; }
.om-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.om-field { display: flex; align-items: center; background: var(--navy); border: 1px solid var(--line); border-radius: 12px; padding: 0 6px 0 12px; overflow: hidden; transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out); }
.om-field:focus-within { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(255, 176, 32, 0.18); }
.om-prefix { color: var(--ink-faint); font-size: 15px; white-space: nowrap; }
.om-field input { flex: 1; min-width: 0; background: transparent; border: none; outline: none; color: var(--ink); font-size: 16px; font-weight: 600; padding: 13px 8px; }
.om-err { color: #E8828C; font-size: 13px; min-height: 18px; margin: 7px 2px 0; }
.om-next { width: 100%; margin-top: 12px; background: var(--saffron); color: #221600; border: none; border-radius: 12px; padding: 15px; font-family: var(--display); font-weight: 700; font-size: 15px; cursor: pointer; transition: background 160ms var(--ease-out), transform 140ms var(--ease-out), opacity 140ms; }
.om-next:hover:not(:disabled) { background: var(--saffron-deep); }
.om-next:active:not(:disabled) { transform: scale(0.98); }
.om-next:disabled { opacity: 0.4; cursor: not-allowed; }
.om-safe { text-align: center; font-size: 12px; color: var(--ink-faint); margin-top: 14px; }
.om-back { background: transparent; border: none; color: var(--ink-faint); font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 10px; }
.om-back:hover { color: var(--ink); }
.om-hint { font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; }
.om-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; min-height: 120px; }
@media (min-width: 720px) {
  .om-dialog.om-wide { max-width: 820px; }
  .om-dialog.om-wide .om-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}
.om-loading, .om-empty { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; color: var(--ink-soft); font-size: 14px; padding: 26px 10px; line-height: 1.5; }
.om-spin { width: 18px; height: 18px; border: 2px solid var(--line); border-top-color: var(--saffron); border-radius: 50%; animation: om-spin 0.8s linear infinite; flex-shrink: 0; }
@keyframes om-spin { to { transform: rotate(360deg); } }
.om-post { position: relative; aspect-ratio: 1; padding: 0; border: 2px solid transparent; border-radius: 12px; overflow: hidden; cursor: pointer; background: var(--panel-2); }
.om-post img { width: 100%; height: 100%; object-fit: cover; display: block; }
.om-post.om-post-noimg { background: linear-gradient(135deg, #1c2740, #141f33); }
.om-post-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 4px 6px; font-size: 10.5px; font-weight: 600; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, 0.78)); text-align: left; }
.om-post-check { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; border-radius: 50%; background: var(--saffron); color: #221600; display: none; align-items: center; justify-content: center; }
.om-post-check svg { width: 13px; height: 13px; }
.om-post.sel { border-color: var(--saffron); }
.om-post.sel .om-post-check { display: flex; }
.om-split { margin-top: 12px; padding: 11px 13px; border-radius: 11px; background: rgba(255, 176, 32, 0.1); border: 1px solid rgba(255, 176, 32, 0.3); color: var(--ink-soft); font-size: 13px; line-height: 1.45; text-align: center; }
.om-split b { color: var(--saffron); font-weight: 800; }
.om-split-cap { background: rgba(255, 255, 255, 0.05); border-color: var(--line); color: var(--ink-faint); }
.om-split-cap b { color: var(--ink); }
.om-pv { display: flex; align-items: center; gap: 11px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 176, 32, 0.4); border-radius: 12px; padding: 10px 12px; margin-top: 12px; }
.om-pv-msg { border-color: var(--line); color: var(--ink-soft); font-size: 13px; gap: 9px; }
.om-pv-bad { border-color: rgba(194, 75, 90, 0.4); color: #E8828C; }
.om-pv-bad b { color: var(--ink); }
.om-pv-av { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255, 176, 32, 0.45); }
.om-av-fallback { display: inline-flex; align-items: center; justify-content: center; background: var(--navy); color: var(--saffron); font-family: var(--display); font-weight: 800; font-size: 15px; }
.om-av-broken { visibility: hidden; }
.om-pv-id { flex: 1; min-width: 0; }
.om-pv-name { font-weight: 700; font-size: 14.5px; color: var(--ink); display: flex; align-items: center; gap: 5px; }
.om-pv-v { color: #3897F0; }
.om-pv-stat { font-size: 12.5px; color: var(--ink-soft); margin-top: 1px; }
.om-pv-ok { width: 22px; height: 22px; border-radius: 50%; background: var(--saffron); color: #221600; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.om-pv-msg .om-pv-ok, .om-pv-bad .om-pv-ok { display: none; }
.om-acct { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-size: 13px; color: var(--ink-soft); }
.om-acct-av { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1.5px solid var(--line); }
.om-acct-tx b { color: var(--ink); }

/* ---------- cart drawer ---------- */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 92vw);
  background: var(--panel);
  border-left: 1px solid var(--line);
  z-index: 210;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 300ms var(--ease-out), visibility 0s 300ms;
  display: flex; flex-direction: column;
  padding: 24px;
}
.cart-drawer.open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
.cart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cart-head h3 { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink); }
#cart-close { font-size: 26px; color: var(--ink-faint); width: 44px; height: 44px; }
#cart-items { flex: 1; overflow-y: auto; }
.cart-empty { color: var(--ink-faint); text-align: center; padding: 48px 0; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-info { flex: 1; }
.cart-item-title { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.cart-item-meta { font-size: 12.5px; color: var(--ink-faint); }
.cart-item-price { font-weight: 700; color: var(--ink); }
.cart-item-remove { font-size: 18px; color: var(--ink-faint); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-right: -12px; }
/* bulk-discount progress toward £20 → 10% off (backend-applied) */
.cart-progress { padding: 14px 0 2px; }
.cp-msg { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 8px; }
.cp-msg b { color: var(--ink); font-weight: 700; }
.cart-progress.is-hit .cp-msg { color: var(--green); }
.cart-progress.is-hit .cp-msg b { color: var(--green); }
.cp-bar { height: 5px; border-radius: 4px; background: var(--line); overflow: hidden; }
.cp-bar span {
  display: block; height: 100%; border-radius: 4px;
  background: var(--saffron);
  transition: width 300ms var(--ease-out);
}
.cart-progress.is-hit .cp-bar span { background: var(--green); }
.cart-totals { padding: 14px 0 4px; }
.cart-tline {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--ink-soft);
  padding: 4px 0;
}
.cart-tline .num { font-weight: 700; color: var(--ink); }
.cart-tline.is-disc { color: var(--green); }
.cart-tline.is-disc .num { color: var(--green); }
.cart-tline.is-total {
  margin-top: 6px; padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 15px; color: var(--ink);
}
.cart-tline.is-total span:first-child { font-weight: 600; }
.cart-tline.is-total .num { font-family: var(--display); font-size: 19px; }

/* ---------- mobile sticky buy-bar ---------- */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 16, 28, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(105%);
  transition: transform 260ms var(--ease-out);
}
.buybar.show { transform: translateY(0); }
.buybar-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.buybar-title { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar-price { font-size: 12px; color: var(--ink-faint); }
@media (max-width: 760px) {
  .buybar { display: flex; }
}

/* ---------- reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.rv.in { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .why-split { grid-template-columns: 1fr; gap: 22px; }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .ftr-grid { grid-template-columns: 1fr 1fr 1fr; }
  .night-panel { grid-template-columns: 1fr; }
  .night-viz { min-height: 0; padding: 28px 20px; }
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .step-n { font-size: 38px; }
  .statsband-in { row-gap: 18px; }
  .stat--lead { flex: 1 0 100%; }
  .stat + .stat { border-left: 0; padding-left: 0; }
  .stat:not(.stat--lead) { flex: 1; border-top: 1px solid var(--line); padding-top: 14px; }
  .trustband-in { grid-template-columns: repeat(2, 1fr); row-gap: 12px; }
  .tchip { justify-content: flex-start; text-align: left; font-size: 12.5px; }
  .strip-cards { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
  .strip-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2px 12px; text-align: left; padding: 14px 16px; }
  .strip-qty { grid-column: 1; grid-row: 1; font-size: 18px; }
  .strip-svc { grid-column: 2; grid-row: 1; margin: 0; }
  .strip-price { grid-column: 3; grid-row: 1; margin: 0; font-size: 16px; }
  .strip-per { grid-column: 3; grid-row: 2; margin: 0; text-align: right; }
  .strip-eta { grid-column: 1 / 3; grid-row: 2; margin: 2px 0 0; padding: 0; border: 0; }
  .strip-badge { left: auto; right: 12px; transform: none; top: -8px; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; gap: 16px; }
  .rev-grid { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .ftr-brand { grid-column: 1 / -1; }
  .buy-checks { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .pkg-plat-tabs { max-width: 100%; }
  .plat-tab { padding: 10px 13px; font-size: 13.5px; }
  .pkg-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pkg-card { padding: 20px 10px 12px; }
  .pkg-qty { font-size: 21px; }
  .pkg-price { font-size: 18px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
