/* ============================================================
   NDISify v4 premium design system
   Ink #06121F · Navy #0A2540 · Teal #7713C8 · Coral #7CC23A
   Aurora hero · product dashboard · bento grid · gradient type
   All animation gated behind prefers-reduced-motion.
   ============================================================ */

:root {
  --ink: #2A1745;
  --ink-2: #3A2160;
  --navy: #25103C;
  --navy-soft: #43286F;
  --teal: #9B6FE0;
  --teal-dark: #6A2D90;
  --coral: #57A630;
  --coral-dark: #468522;
  --amber: #D9A441;
  --purple: #6A2D90;
  --green: #8BC63F;
  --green-dark: #57A630;
  --bg: #FFFFFF;
  --bg-soft: #F3EFFA;
  --text: #2C2240;
  --text-light: #6B5E80;
  --white: #FFFFFF;
  --line: #E6DFF2;
  --glass: rgba(255,255,255,0.07);
  --glass-line: rgba(255,255,255,0.14);
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 12px 40px rgba(29,18,38, 0.10);
  --shadow-lg: 0 24px 70px rgba(29,18,38, 0.22);
  --font-head: 'Fraunces', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.14; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); font-weight: 800; margin-bottom: 0.8rem; letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin-bottom: 0.5rem; }
a { color: var(--teal-dark); }
img, svg { max-width: 100%; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 860px; }
.center { text-align: center; }
.section-lede { max-width: 700px; margin: 0 auto 2rem; color: var(--text-light); font-size: 1.13rem; }
.fine { font-size: 0.8rem; color: var(--text-light); }

section { padding: 6rem 0; }
.section-dark { background: linear-gradient(170deg, var(--ink) 0%, var(--navy) 60%, #4B2768 100%); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #DFD7E6; }
.section-dark .section-lede { color: #B4A5C1; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.85rem;
}
.section-dark .eyebrow { color: var(--teal); }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 300; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.hidden-field { position: absolute; left: -9999px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn .arr { display: inline-block; transition: transform 0.18s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(23,14,31,0.22); }
.btn:active { transform: translateY(0); }
.btn-cta {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  box-shadow: 0 8px 26px rgba(124,194,58,0.4);
}
.btn-cta::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%;
  width: 50%; transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.55s ease;
}
.btn-cta:hover::after { left: 130%; }
.btn-cta:hover { box-shadow: 0 14px 36px rgba(124,194,58,0.5); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost-light { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(255,255,255,0.45); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.08rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.btn-block { display: flex; width: 100%; }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(124,194,58,0.4); }
  50% { box-shadow: 0 8px 26px rgba(124,194,58,0.4), 0 0 0 14px rgba(124,194,58,0); }
}
.pulse { animation: ctaPulse 2.6s ease-out infinite; }

/* ---------- Announcement bar + countdown ---------- */
.announce {
  background: linear-gradient(90deg, var(--coral-dark), var(--coral));
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}
.announce p { margin: 0; }
.announce a { color: var(--white); font-weight: 700; }
.countdown { font-family: var(--font-head); font-weight: 800; }

/* ---------- Header + scroll progress ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.scroll-progress { position: absolute; bottom: -1px; left: 0; right: 0; height: 3px; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--teal), var(--coral)); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.7rem; padding-bottom: 0.7rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--navy); }
.logo em { font-style: normal; color: var(--teal-dark); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 0.93rem; }
.nav-links a:hover { color: var(--coral); }
@media (max-width: 940px) { .nav-links { display: none; } }

/* ---------- Hero: aurora + dot grid ---------- */
.hero {
  position: relative;
  background: var(--ink);
  padding: 4rem 0 2.75rem;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(42% 50% at 78% 18%, rgba(167,127,200,0.20) 0%, transparent 70%),
    radial-gradient(40% 48% at 10% 78%, rgba(109,47,160,0.22) 0%, transparent 70%),
    radial-gradient(30% 38% at 52% 45%, rgba(217,164,65,0.10) 0%, transparent 70%);
  animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(3%, 4%) scale(1.08); }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 35%, #000000 0%, transparent 100%);
  mask-image: radial-gradient(75% 75% at 50% 35%, #000000 0%, transparent 100%);
}
.hero-blobs { display: none; }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: center; }
.hero-grid > * { min-width: 0; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: var(--white); }
.hero h1 > span { display: block; }
.hero h1 .num {
  font-style: normal;
  background: linear-gradient(95deg, var(--amber), var(--coral));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(95deg, var(--teal), var(--green));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero .lede { font-size: 1.16rem; color: #DFD7E6; margin: 1.4rem 0 2rem; max-width: 580px; }
.hero .lede strong { color: var(--white); }
.hero .lede em { color: var(--teal); font-style: normal; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.7rem; }
.trust-strip { list-style: none; display: flex; gap: 1.3rem; flex-wrap: wrap; font-size: 0.9rem; font-weight: 600; color: #D0BCE0; }

/* Hero entrance: staggered rise */
@keyframes riseIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-line { animation: riseIn 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
.l1 { animation-delay: 0.05s; } .l2 { animation-delay: 0.16s; } .l3 { animation-delay: 0.3s; }
.l4 { animation-delay: 0.44s; } .l5 { animation-delay: 0.6s; } .l6 { animation-delay: 0.75s; } .l7 { animation-delay: 0.9s; }

/* ---------- Product dashboard ---------- */
.hero-card { display: flex; justify-content: center; perspective: 1200px; }
.dash-wrap {
  position: relative; width: 100%; max-width: 420px;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
  animation: riseIn 0.8s 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}
.dash {
  position: relative; z-index: 2;
  background: linear-gradient(170deg, rgba(16,34,54,0.92), rgba(8,20,35,0.96));
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 0 1.25rem 1.1rem;
  overflow: hidden;
}
.dash-glow {
  position: absolute; z-index: 1; left: 8%; right: 8%; bottom: -26px; height: 60px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(119,19,200,0.4), transparent 75%);
  filter: blur(18px);
}

.dash-chrome {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.8rem 0 0.7rem;
  border-bottom: 1px solid var(--glass-line);
  margin-bottom: 0.9rem;
}
.wdot { width: 10px; height: 10px; border-radius: 50%; }
.wr { background: #FF5F57; } .wy { background: #FEBC2E; } .wg { background: #8028C8; }
.dash-url {
  flex: 1; min-width: 0; text-align: center;
  font-size: 0.68rem; color: #B4A5C1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-line);
  border-radius: 999px; padding: 0.18rem 0.6rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-live {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-head); font-weight: 800; font-size: 0.58rem; letter-spacing: 0.1em;
  color: var(--teal); white-space: nowrap;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 0.9rem; }
.kpi {
  background: var(--glass); border: 1px solid var(--glass-line);
  border-radius: 12px; padding: 0.55rem 0.65rem;
  display: grid; gap: 0.1rem;
}
.kpi-label { font-size: 0.6rem; letter-spacing: 0.04em; text-transform: uppercase; color: #B4A5C1; font-weight: 700; }
.kpi-value { font-family: var(--font-head); font-weight: 900; font-size: 1.25rem; color: var(--white); line-height: 1.1; }
.kpi-value.teal { color: var(--teal); }
.kpi-value small { font-size: 0.7rem; color: #B4A5C1; font-weight: 700; }
.kpi-delta { font-size: 0.6rem; color: #B4A5C1; }
.kpi-delta.up { color: var(--green); font-weight: 700; }

.dash-chart { position: relative; margin-bottom: 0.9rem; }
.dash-chart svg { display: block; width: 100%; height: 88px; }
.chart-line {
  stroke-dasharray: 620; stroke-dashoffset: 620;
  animation: drawLine 2.2s 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.chart-area { opacity: 0; animation: fadeIn 0.9s 2.6s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.chart-dot { opacity: 0; transform-origin: center; transform-box: fill-box; animation: dotPop 0.5s 3s cubic-bezier(0.3, 1.6, 0.5, 1) forwards, dotPulse 2s 3.6s ease-in-out infinite; }
@keyframes dotPop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
.chart-cap { font-size: 0.62rem; color: #B4A5C1; margin: 0.3rem 0 0; }

.feed { list-style: none; display: grid; gap: 0.4rem; min-height: 122px; }
.feed-item {
  display: flex; align-items: center; gap: 0.55rem;
  background: var(--glass); border: 1px solid var(--glass-line);
  border-left: 3px solid var(--teal);
  border-radius: 10px; padding: 0.42rem 0.6rem;
  font-size: 0.74rem; color: #DFD7E6;
  animation: feedIn 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.feed-item .fi-icon { font-size: 0.9rem; }
.feed-item strong { color: var(--white); }
.feed-item .fi-src { margin-left: auto; font-size: 0.64rem; color: #B4A5C1; white-space: nowrap; }
@keyframes feedIn { from { opacity: 0; transform: translateY(-10px) scale(0.97); } to { opacity: 1; transform: none; } }
.feed-count { margin: 0.8rem 0 0; font-size: 0.82rem; color: #B4A5C1; }
.feed-count strong { font-family: var(--font-head); font-weight: 900; color: var(--green); font-size: 1.05rem; }
.feed-target { font-size: 0.72rem; }

/* Floating notification cards */
.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(23,14,31,0.35);
  padding: 0.55rem 0.8rem;
  font-size: 0.72rem; color: var(--text);
  line-height: 1.35;
}
.float-card strong { color: var(--navy); font-size: 0.74rem; }
.fc1 { top: -18px; right: -26px; animation: floatY 5s ease-in-out infinite, riseIn 0.6s 1.6s backwards; }
.fc2 { bottom: 34px; left: -34px; animation: floatY 6s 0.8s ease-in-out infinite, riseIn 0.6s 2s backwards; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 480px) { .fc1 { right: -6px; } .fc2 { left: -6px; } }

/* Stat counter strip */
.stat-strip {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 4rem;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 1.6rem;
  backdrop-filter: blur(6px);
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--teal); }
.stat-label { display: block; font-size: 0.85rem; color: #B4A5C1; max-width: 220px; margin: 0.25rem auto 0; }
.stat-source { position: relative; z-index: 1; font-size: 0.72rem; color: #5E7A99; text-align: right; margin-top: 0.5rem; }

/* ---------- News ticker ---------- */
.ticker {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  padding: 0.7rem 0;
}
.ticker-track {
  display: flex; gap: 2.2rem; width: max-content;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: #BC9ED4;
  animation: tick 38s linear infinite;
  white-space: nowrap;
}
.ticker-track span { flex-shrink: 0; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Standards band ---------- */
.cred-band {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  padding: 1.4rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.cred-band span {
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--navy);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 0.45rem 1rem; border-radius: 999px;
}

/* ---------- 7/14/90 timeline ---------- */
.journey { background: var(--bg); }
.timeline { position: relative; margin: 3.5rem 0 3.5rem; }
.tl-line {
  position: absolute; top: 7px; left: 6%; right: 6%;
  height: 4px; background: #DBD5E0; border-radius: 999px; overflow: hidden;
}
.tl-progress {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--green));
  border-radius: 999px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.6s cubic-bezier(0.3, 0.6, 0.2, 1);
}
.timeline.draw .tl-progress { transform: scaleX(1); }
.tl-steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tl-step { position: relative; padding-top: 2.1rem; opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.timeline.draw .tl-step { opacity: 1; transform: none; }
.timeline.draw .tl-step:nth-child(1) { transition-delay: 0.15s; }
.timeline.draw .tl-step:nth-child(2) { transition-delay: 0.65s; }
.timeline.draw .tl-step:nth-child(3) { transition-delay: 1.2s; }
.tl-dot {
  position: absolute; top: 0; left: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); border: 4px solid var(--teal);
  box-shadow: 0 0 0 6px rgba(119,19,200,0.16);
}
.tl-step:last-child .tl-dot { border-color: var(--green); box-shadow: 0 0 0 6px rgba(133,46,204,0.16); }
.tl-day {
  display: inline-block;
  font-family: var(--font-head); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: linear-gradient(135deg, var(--navy), var(--ink));
  padding: 0.28rem 0.85rem; border-radius: 999px; margin-bottom: 0.75rem;
}
.tl-step h3 { margin-bottom: 0.4rem; font-size: 1.18rem; }
.tl-step p { color: var(--text-light); font-size: 0.95rem; }
.tl-step strong { color: var(--navy); }
@media (max-width: 760px) {
  .tl-line { display: none; }
  .tl-steps { grid-template-columns: 1fr; }
  .tl-step { padding-top: 0; padding-left: 2.2rem; }
  .tl-dot { top: 4px; }
}

/* ---------- Bento grid ---------- */
.bento { margin-top: 1rem; }
.build-title { font-family: var(--font-head); font-weight: 800; color: var(--navy); text-align: center; font-size: 1.3rem; margin-bottom: 2rem; }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 860px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento-grid { grid-template-columns: 1fr; } }
.bento-tile {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bento-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal); }
.bento-tile h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.bento-tile p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.bt-icon { font-size: 1.7rem; display: block; margin-bottom: 0.6rem; }
.bt-wide { grid-column: span 2; display: grid; grid-template-columns: 130px 1fr; gap: 1.25rem; align-items: center; }
@media (max-width: 560px) { .bt-wide { grid-column: span 1; grid-template-columns: 1fr; } }
.bt-accent { grid-column: 1 / -1; background: linear-gradient(160deg, var(--navy), var(--ink)); border-color: var(--navy); display: flex; align-items: center; gap: 1.1rem; }
.bt-accent .bt-icon { margin-bottom: 0; }
.bt-accent h3 { color: var(--white); }
.bt-accent p { color: #B4A5C1; }
.bt-visual {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.6rem; display: grid; gap: 0.45rem;
  box-shadow: 0 4px 14px rgba(23,14,31,0.08);
}
.bt-chrome { display: flex; gap: 4px; }
.bt-chrome i { width: 6px; height: 6px; border-radius: 50%; background: #CEC6D4; }
.bt-line { height: 7px; border-radius: 4px; background: #E2EAF2; }
.bt-line.w60 { width: 60%; } .bt-line.w40 { width: 40%; }
.bt-cta { width: 46%; height: 14px; border-radius: 999px; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }

/* ---------- The 2026 shift ---------- */
.shift-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; margin: 2.5rem 0; }
.shift-card {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 1.7rem;
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.shift-card:hover { transform: translateY(-6px); border-color: var(--teal); background: rgba(255,255,255,0.09); }
.shift-date { font-family: var(--font-head); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
.shift-card h3 { color: var(--white); font-size: 1.12rem; margin-bottom: 0.5rem; }
.shift-card p { font-size: 0.94rem; }
.shift-src { font-size: 0.74rem !important; color: #5E7A99 !important; margin-top: 0.75rem; }
.shift-closer { max-width: 740px; margin: 0 auto; font-size: 1.15rem; }
.shift-closer strong { color: var(--teal); }

/* ---------- Double guarantee ---------- */
.offer { background: var(--bg-soft); }
.dguarantee {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.25rem; align-items: stretch;
  max-width: 1000px; margin: 2.75rem auto 0;
}
@media (max-width: 820px) { .dguarantee { grid-template-columns: 1fr; } .dg-plus { justify-self: center; } }
.dg-card {
  position: relative;
  background: linear-gradient(165deg, var(--navy) 0%, var(--ink) 100%);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
}
.dg-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 2px;
  background: linear-gradient(135deg, var(--teal), transparent 50%, var(--teal));
  -webkit-mask: linear-gradient(#000000 0 0) content-box, linear-gradient(#000000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.dg-card:last-of-type::before { background: linear-gradient(135deg, var(--green), transparent 50%, var(--green)); }
.dg-badge {
  display: inline-block;
  background: var(--teal); color: var(--ink);
  font-family: var(--font-head); font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.12em; padding: 0.32rem 0.95rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.dg-card:last-of-type .dg-badge { background: var(--green); }
.dg-card h3 { color: var(--white); font-size: 1.45rem; line-height: 1.3; margin-bottom: 0.6rem; }
.dg-num {
  background: linear-gradient(95deg, var(--amber), var(--coral));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.dg-card p { color: #DFD7E6; font-size: 0.97rem; margin: 0; }
.dg-card strong { color: var(--white); }
.dg-plus {
  align-self: center;
  font-family: var(--font-head); font-weight: 900; font-size: 2.4rem; color: var(--coral);
}

.offer-meta { max-width: 740px; margin: 2.75rem auto 0; text-align: center; }
.gbox-detail { margin: 0 0 1.6rem; border: 1px solid var(--line); border-radius: 12px; background: var(--white); text-align: left; }
.gbox-detail summary { color: var(--teal-dark); font-weight: 700; font-size: 0.92rem; padding: 0.85rem 1.15rem; cursor: pointer; }
.gbox-detail p { color: var(--text-light); font-size: 0.9rem; padding: 0 1.15rem 0.95rem; }
.offer-price { font-family: var(--font-head); font-size: 1.45rem; color: var(--navy); margin-bottom: 0.3rem; }
.offer-price strong { font-weight: 900; }
.offer-split { font-size: 0.9rem; color: var(--text-light); font-weight: 600; }
.offer-anchor { color: var(--text-light); font-size: 0.96rem; margin-bottom: 1.6rem; }
.gbox-capacity { font-size: 0.8rem; color: var(--text-light); margin-top: 1rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.6rem; margin: 3.25rem 0 1.5rem; align-items: start; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 2.2rem 1.9rem; display: flex; flex-direction: column; gap: 1rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--coral); position: relative;
  background: linear-gradient(180deg, #F4F2F5 0%, var(--white) 30%);
  box-shadow: 0 24px 70px rgba(124,194,58,0.18);
}
.badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: var(--white);
  font-family: var(--font-head); font-weight: 800; font-size: 0.8rem;
  padding: 0.32rem 1.15rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124,194,58,0.45);
}
.price-tag { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); }
.price .amount { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--navy); }
.price .monthly { color: var(--text-light); font-size: 0.92rem; }
.price-card ul { list-style: none; display: grid; gap: 0.5rem; font-size: 0.95rem; }
.price-card ul li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.price-guarantee { background: #EEE6F4; color: #4F2D6B; font-size: 0.88rem; font-weight: 600; padding: 0.85rem; border-radius: 10px; }
.price-guarantee.strong { background: linear-gradient(135deg, #5D0E9D, #0A2540); color: var(--white); }
.price-guarantee.strong strong { color: var(--amber); }
.price-card .btn { margin-top: auto; }
.pricing-note {
  background: #ECE9EE; border: 1px solid #EBD3A0; border-radius: var(--radius);
  text-align: center; color: var(--text); max-width: 900px; margin: 0 auto; padding: 1.15rem 1.5rem; font-size: 0.97rem;
}

/* ---------- Comparison table ---------- */
.compare { padding-top: 3.5rem; }
.table-wrap { overflow-x: auto; margin-top: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.compare table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 560px; }
.compare th, .compare td { padding: 1rem 1.25rem; text-align: left; font-size: 0.95rem; border-bottom: 1px solid #EDF1F5; }
.compare thead th { font-family: var(--font-head); background: var(--navy); color: var(--white); font-size: 0.9rem; }
.compare thead th.hl { background: var(--teal-dark); }
.compare tbody th { font-weight: 600; color: var(--navy); width: 34%; }
.compare td { color: var(--text-light); }
.compare td.hl { background: #F2E9FA; color: var(--navy); font-weight: 600; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }

/* ---------- Calculator ---------- */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-intro p { font-size: 1.1rem; }
.calc-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.1rem; box-shadow: var(--shadow-lg); display: grid; gap: 1.1rem; }
.calc-card .field label { color: var(--navy); }
.calc-results { background: var(--bg-soft); border-radius: var(--radius); padding: 1.35rem; display: grid; gap: 0.6rem; }
.calc-results p { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin: 0; color: var(--text); }
.calc-label { font-size: 0.9rem; color: var(--text-light); }
.calc-value { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.15rem; }
.calc-roi .calc-value { color: var(--green); font-size: 1.6rem; }
.calc-results .btn { margin-top: 0.5rem; }

/* ---------- Why / risk reversal ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.7rem; margin-top: 2.75rem; }
.why-item { position: relative; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.4rem 1.4rem; }
.why-num {
  position: absolute; top: -17px; left: 1.2rem;
  width: 37px; height: 37px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--white);
  font-family: var(--font-head); font-weight: 800;
  box-shadow: 0 5px 14px rgba(119,19,200,0.45);
}
.why-item h3 { font-size: 1.02rem; margin: 0.4rem 0; }
.why-item p { color: var(--text-light); font-size: 0.92rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); }
.faq h2 { margin-bottom: 2rem; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 0.75rem; box-shadow: 0 2px 10px rgba(23,14,31,0.05); }
.faq summary {
  font-family: var(--font-head); font-weight: 700; color: var(--navy);
  padding: 1.15rem 1.5rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--coral); flex-shrink: 0; transition: transform 0.25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.5rem 1.25rem; color: var(--text-light); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-intro > p { font-size: 1.1rem; color: var(--text-light); }
.contact-points { list-style: none; margin: 1.25rem 0; display: grid; gap: 0.5rem; font-weight: 600; color: var(--navy); }
.contact-alt { font-size: 0.95rem; }

.lead-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem; box-shadow: var(--shadow-lg); display: grid; gap: 1.1rem;
}
.field { display: grid; gap: 0.35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.field input, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 0.75rem 0.95rem; border: 2px solid #CEC6D4; border-radius: 11px; background: var(--white);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(119,19,200,0.15); outline: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #B9CBDC; padding: 3.75rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-logo em { font-style: normal; color: var(--teal); }
.site-footer a { color: var(--teal); }
.site-footer ul { list-style: none; display: grid; gap: 0.5rem; }
.site-footer .fine { color: #7E97AE; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; font-size: 0.85rem; color: #7E97AE; text-align: center; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 -4px 18px rgba(23,14,31,0.18);
  display: none;
}
@media (max-width: 700px) {
  .sticky-cta { display: block; padding: 0.55rem 0.9rem; }
  .sticky-cta .btn { padding-top: 0.7rem; padding-bottom: 0.7rem; font-size: 0.92rem; }
  body:has(.sticky-cta) { padding-bottom: 72px; }
}

/* ============================================================
   v5: hyperframe tour player, shimmer, photo bands, trust UI
   ============================================================ */

/* Shimmer on hero gradient text */
.hero h1 .num, .hero h1 .accent { background-size: 200% auto; animation: shimmer 6s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }

/* Animated gradient border on the featured pricing card */
.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, #F4F2F5 0%, var(--white) 30%) padding-box,
    linear-gradient(120deg, var(--coral), var(--purple), var(--teal), var(--coral)) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: borderFlow 7s linear infinite;
}
@keyframes borderFlow { from { background-position: 0 0, 0% 50%; } to { background-position: 0 0, 300% 50%; } }

/* ---------- Tour player ---------- */
.player {
  max-width: 780px; margin: 2.75rem auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}
.screen {
  position: relative; height: 300px; border-radius: 14px;
  background: linear-gradient(170deg, #101A45, var(--ink));
  overflow: hidden; border: 1px solid var(--glass-line);
}
.scene {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem;
  opacity: 0; transition: opacity 0.45s ease; pointer-events: none;
}
.scene.active { opacity: 1; }

/* Scene 1: search */
.sc-search {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--white); border-radius: 999px;
  padding: 0.7rem 1.2rem; width: min(420px, 86%);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.sc-type {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--navy);
  white-space: nowrap; overflow: hidden; width: 0;
  border-right: 2px solid var(--coral);
}
.scene.active .sc-type { animation: typing 1.4s 0.3s steps(22) forwards, caretBlink 0.7s step-end infinite; }
@keyframes typing { to { width: 21ch; } }
@keyframes caretBlink { 50% { border-color: transparent; } }
.sc-results { width: min(420px, 86%); display: grid; gap: 0.5rem; }
.sc-row { height: 34px; border-radius: 9px; background: rgba(255,255,255,0.08); opacity: 0; transform: translateY(8px); }
.sc-row.hit {
  display: flex; align-items: center; padding: 0 0.8rem;
  background: var(--white); color: var(--navy); font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 0 0 2px var(--teal);
}
.scene.active .sc-row { animation: rowIn 0.4s ease forwards; }
.scene.active .sc-row:nth-child(1) { animation-delay: 1.9s; }
.scene.active .sc-row:nth-child(2) { animation-delay: 2.2s; }
.scene.active .sc-row:nth-child(3) { animation-delay: 2.5s; }
@keyframes rowIn { to { opacity: 1; transform: none; } }

/* Scene 2: website converts */
.sc-site {
  position: relative; width: min(380px, 82%);
  background: var(--white); border-radius: 12px;
  padding: 1rem 1rem 1.2rem; display: grid; gap: 0.6rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.sc-chrome { display: flex; gap: 4px; }
.sc-chrome i { width: 7px; height: 7px; border-radius: 50%; background: #CEC6D4; }
.sc-line { height: 9px; border-radius: 5px; background: #D7D0DD; }
.sc-line.w70 { width: 70%; } .sc-line.w45 { width: 45%; }
.sc-btn {
  justify-self: start; border: none; cursor: default;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: var(--white);
  border-radius: 999px; padding: 0.5rem 1.15rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
}
.scene.active .sc-btn { animation: btnPress 0.4s 2.1s; }
@keyframes btnPress { 50% { transform: scale(0.92); box-shadow: 0 0 0 12px rgba(217,164,65,0.25); } }
.sc-cursor {
  position: absolute; width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid var(--navy); background: rgba(255,255,255,0.75);
  left: 32%; bottom: 14%; opacity: 0;
}
.scene.active .sc-cursor { animation: curMove 1.7s 0.5s ease-in-out forwards; }
@keyframes curMove {
  0% { opacity: 0; transform: translate(110px, 70px); }
  25% { opacity: 1; }
  100% { opacity: 1; transform: translate(0, 0); }
}

/* Scene 3: enquiry notifications */
.sc-phone { display: grid; gap: 0.8rem; width: min(360px, 82%); }
.sc-notif {
  background: var(--white); color: var(--navy);
  border-radius: 12px; padding: 0.75rem 1rem;
  font-weight: 700; font-size: 0.92rem; line-height: 1.4;
  box-shadow: 0 16px 38px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(-16px) scale(0.96);
}
.sc-notif small { font-weight: 400; color: var(--text-light); }
.scene.active .sc-notif { animation: notifIn 0.55s 0.4s cubic-bezier(0.2, 1.4, 0.4, 1) forwards; }
.scene.active .sc-notif.n2 { animation-delay: 1.4s; }
@keyframes notifIn { to { opacity: 1; transform: none; } }

/* Scene 4: guarantee met */
.sc-final { display: grid; justify-items: center; gap: 0.8rem; }
.sc-big { font-family: var(--font-head); font-weight: 800; font-size: 4.2rem; color: var(--white); line-height: 1; }
.sc-big small { font-size: 1.5rem; color: #B4A5C1; font-weight: 700; }
.scene.active .sc-big { animation: popIn 0.55s 0.3s cubic-bezier(0.2, 1.5, 0.4, 1) backwards; }
@keyframes popIn { from { opacity: 0; transform: scale(0.4); } }
.sc-check {
  background: rgba(118,61,164,0.14); border: 1px solid var(--green); color: var(--green);
  border-radius: 999px; padding: 0.45rem 1.05rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  opacity: 0;
}
.scene.active .sc-check { animation: rowIn 0.5s 1s ease forwards; }

/* Player controls */
.player-ui { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 0.4rem 0.2rem; }
.player-btn {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid var(--glass-line);
  color: var(--white); font-size: 0.85rem; cursor: pointer;
  transition: background 0.15s ease;
}
.player-btn:hover { background: rgba(255,255,255,0.2); }
.player-segs { flex: 1; display: flex; gap: 0.45rem; }
.seg {
  flex: 1; height: 5px; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.16); border-radius: 999px; overflow: hidden;
}
.seg span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--teal), var(--green)); }
.player-label {
  font-family: var(--font-head); font-weight: 700; font-size: 0.76rem; color: #B4A5C1;
  white-space: nowrap;
}
@media (max-width: 560px) { .player-label { display: none; } }

/* ---------- Photo bands ---------- */
.human-band {
  margin: 3.25rem auto 0; max-width: 1000px;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; box-shadow: var(--shadow-lg);
}
.human-band img { display: block; width: 100%; height: 340px; object-fit: cover; }
.human-band figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.8rem 1.5rem;
  background: linear-gradient(transparent, rgba(23,14,31,0.88));
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.08rem;
}
.contact-photo {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius); margin-top: 1.5rem;
  box-shadow: var(--shadow);
}

/* ---------- "What happens next" trust steps ---------- */
.next-steps {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.5rem; margin: 1.4rem 0;
}
.ns-title { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; font-size: 0.98rem; }
.next-steps ol { padding-left: 1.15rem; display: grid; gap: 0.5rem; font-size: 0.93rem; color: var(--text-light); }
.next-steps strong { color: var(--navy); }

/* ============================================================
   v6: light purple hero, light dashboard, triple guarantee
   ============================================================ */

/* Light hero */
.hero {
  background: linear-gradient(180deg, #F9F8FA 0%, #E7E3EA 100%);
  padding: 5rem 0 4rem;
}
.hero::before {
  inset: -10%;
  background:
    radial-gradient(38% 42% at 72% 8%, rgba(167,127,200,0.30) 0%, transparent 70%),
    radial-gradient(32% 36% at 12% 30%, rgba(87,166,48,0.12) 0%, transparent 70%),
    radial-gradient(44% 48% at 50% 105%, rgba(87,166,48,0.10) 0%, transparent 70%);
}
.hero::after {
  background-image: radial-gradient(circle, rgba(56,31,77,0.12) 1px, transparent 1px);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 30%, #000000 0%, transparent 100%);
  mask-image: radial-gradient(80% 80% at 50% 30%, #000000 0%, transparent 100%);
}
.hero-center { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.hero h1 { color: var(--ink); }
.hero h1 .num {
  background: linear-gradient(95deg, var(--teal-dark), var(--purple));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(95deg, var(--coral-dark), var(--teal-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero .lede { color: var(--text-light); margin: 1.4rem auto 2rem; max-width: 660px; }
.hero .lede strong { color: var(--ink); }
.hero-ctas { justify-content: center; }

/* Triple-guarantee process chips */
.process-chips {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem; margin-top: 1.7rem;
}
.process-chips li {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5rem 1.05rem;
  font-size: 0.84rem; color: var(--text-light);
  box-shadow: 0 3px 12px rgba(29,18,38,0.07);
}
.process-chips strong {
  font-family: var(--font-head); font-weight: 800; font-size: 0.78rem;
  color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.04em;
}
.process-chips em { font-style: normal; font-weight: 700; color: var(--coral-dark); }

/* Hero product shot: light dashboard */
.hero-shot { position: relative; z-index: 1; display: flex; justify-content: center; margin-top: 3.25rem; perspective: 1400px; }
.hero-shot .dash-wrap { max-width: 720px; }
.dash {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: none;
}
.dash-chrome { border-bottom: 1px solid var(--line); }
.dash-url { background: var(--bg-soft); border: 1px solid var(--line); color: var(--text-light); }
.dash-live { color: var(--teal-dark); }
.kpi { background: var(--bg-soft); border: 1px solid var(--line); }
.kpi-label { color: var(--text-light); }
.kpi-value { color: var(--ink); }
.kpi-value.teal { color: var(--teal-dark); }
.kpi-value small { color: var(--text-light); }
.kpi-delta { color: var(--text-light); }
.kpi-delta.up { color: var(--coral-dark); }
.feed-item {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-left: 3px solid var(--teal-dark); color: var(--text);
}
.feed-item strong { color: var(--ink); }
.feed-item .fi-src { color: var(--text-light); }
.feed-count { color: var(--text-light); }
.feed-count strong { color: var(--coral-dark); }
.chart-cap { color: var(--text-light); }
.dash-glow { background: radial-gradient(50% 100% at 50% 0%, rgba(90,31,138,0.30), transparent 75%); }

/* Light stat strip */
.stat-strip {
  background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow); backdrop-filter: none;
  margin-top: 3.25rem;
}
.stat-num { color: var(--teal-dark); }
.stat-label { color: var(--text-light); }
.stat-source { color: var(--text-light); }

/* Recolors of hardcoded values */
.ticker-track { color: #D3BFE3; }
.screen { background: linear-gradient(170deg, #241630, var(--ink)); }
.btn-cta { box-shadow: 0 8px 26px rgba(87,166,48,0.38); }
.btn-cta:hover { box-shadow: 0 14px 36px rgba(87,166,48,0.48); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(87,166,48,0.38); }
  50% { box-shadow: 0 8px 26px rgba(87,166,48,0.38), 0 0 0 14px rgba(87,166,48,0); }
}
.badge { box-shadow: 0 4px 16px rgba(87,166,48,0.45); }
.price-guarantee.strong { background: linear-gradient(135deg, var(--teal-dark), var(--navy)); }
.tl-dot { border-color: var(--teal-dark); box-shadow: 0 0 0 6px rgba(90,31,138,0.14); }
.why-num { box-shadow: 0 5px 14px rgba(90,31,138,0.35); }
.field input:focus, .field select:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 4px rgba(90,31,138,0.14); }
.compare td.hl { background: #E2DEE6; }
.human-band figcaption { background: linear-gradient(transparent, rgba(29,18,38,0.88)); }
.sc-row.hit { box-shadow: 0 0 0 2px var(--teal-dark); }

/* Triple guarantee layout */
.dguarantee.triple { grid-template-columns: 1fr auto 1fr auto 1fr; max-width: 1100px; }
@media (max-width: 920px) { .dguarantee.triple { grid-template-columns: 1fr; } }
.dguarantee.triple .dg-card { padding: 1.8rem; }
.dguarantee.triple .dg-card h3 { font-size: 1.22rem; }
.dg-card { background: linear-gradient(165deg, var(--navy) 0%, var(--ink) 100%); }
.dg-card:nth-of-type(1)::before { background: linear-gradient(135deg, var(--teal), transparent 50%, var(--teal)); }
.dg-card:nth-of-type(2)::before { background: linear-gradient(135deg, var(--amber), transparent 50%, var(--amber)); }
.dg-card:nth-of-type(3)::before { background: linear-gradient(135deg, var(--green), transparent 50%, var(--green)); }
.dg-card:nth-of-type(1) .dg-badge { background: var(--teal); }
.dg-card:nth-of-type(2) .dg-badge { background: var(--amber); }
.dg-card:nth-of-type(3) .dg-badge { background: var(--green); }
.dg-num {
  background: linear-gradient(95deg, var(--amber), var(--purple));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   v7: problem-first architecture
   ============================================================ */

.hero-note { margin-top: 1.1rem; font-size: 0.9rem; color: var(--text-light); }

/* Problems we solve */
.problems { background: var(--bg-soft); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; margin: 2.75rem 0 2.25rem; }
.problem-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal); }
.pc-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.problem-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; line-height: 1.3; }
.problem-card > p { color: var(--text-light); font-size: 0.94rem; }
.pc-solution {
  margin-top: auto; padding: 0.9rem 1rem 0.9rem;
  background: var(--bg-soft);
  border-left: 3px solid var(--teal-dark);
  border-radius: 8px;
  font-size: 0.9rem; color: var(--text);
}
.pc-solution strong { color: var(--teal-dark); }
.problems-closer { font-size: 1.08rem; color: var(--text); max-width: 640px; margin: 0 auto; }

/* 4-step process timeline */
.tl-steps.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .tl-steps.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tl-steps.four { grid-template-columns: 1fr; } }
.tl-steps.four h3 { font-size: 1.05rem; }
.tl-steps.four p { font-size: 0.9rem; }
.timeline.draw .tl-steps.four .tl-step:nth-child(2) { transition-delay: 0.5s; }
.timeline.draw .tl-steps.four .tl-step:nth-child(3) { transition-delay: 0.85s; }
.timeline.draw .tl-steps.four .tl-step:nth-child(4) { transition-delay: 1.2s; }

/* People band spacing */
.people { padding: 0 0 5.5rem; background: var(--bg); }

/* Hero background scene: provider watching growth climb */
.hero-scene { position: absolute; z-index: 0; pointer-events: none; }
.scene-left { left: max(0.5rem, calc(50% - 700px)); top: 190px; width: 280px; }
.scene-right { right: max(0.5rem, calc(50% - 680px)); top: 230px; width: 190px; }
@media (max-width: 1180px) { .hero-scene { display: none; } }

.gbar { transform-origin: bottom; transform-box: fill-box; animation: gbarUp 1.1s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
.gb1 { animation-delay: 0.9s; }
.gb2 { animation-delay: 1.15s; }
.gb3 { animation-delay: 1.4s; }
.gb4 { animation-delay: 1.65s; }
@keyframes gbarUp { from { transform: scaleY(0); } }

.garrow { stroke-dasharray: 320; stroke-dashoffset: 320; animation: gdraw 1.5s 1.9s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes gdraw { to { stroke-dashoffset: 0; } }
.ghead { opacity: 0; transform-origin: center; transform-box: fill-box; animation: gpop 0.45s 3.2s cubic-bezier(0.3, 1.6, 0.5, 1) forwards; }
@keyframes gpop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

.gperson { animation: gbob 5s 1s ease-in-out infinite; }
@keyframes gbob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.gspark { opacity: 0; transform-origin: center; transform-box: fill-box; animation: gtwinkle 2.6s ease-in-out infinite; }
.gs1 { animation-delay: 2.2s; }
.gs2 { animation-delay: 3s; }
.gs3 { animation-delay: 3.6s; }
@keyframes gtwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
}

.gfloat { animation: gdrift 7s ease-in-out infinite; }
.gf2 { animation-delay: 1.2s; animation-duration: 8s; }
.gf3 { animation-delay: 2.4s; animation-duration: 9s; }
.gf4 { animation-delay: 0.6s; animation-duration: 6s; }
@keyframes gdrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

/* Free resource band */
.freebie-band {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}
@media (max-width: 760px) { .freebie-band { grid-template-columns: 1fr; } }

/* ============================================================
   v8: digital products store, quiz game, resource hub
   ============================================================ */

.crumbs { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.9rem; }
.crumbs a { color: var(--teal-dark); text-decoration: none; }
.crumbs span { margin: 0 0.3rem; opacity: 0.5; }

/* Hero badges */
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; }
.hero-badges li {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.45rem 1rem; font-size: 0.85rem; font-weight: 600; color: var(--navy);
  box-shadow: 0 3px 12px rgba(29,18,38,0.06);
}

/* Product grid */
.store { background: var(--bg-soft); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.75rem; }
.product-grid.wide { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .product-grid, .product-grid.wide { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid, .product-grid.wide { grid-template-columns: 1fr; } }

.product-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.6rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.product-card.featured-product { border-color: var(--teal-dark); }
.product-card.detailed { padding: 1.9rem; }
.product-flag {
  position: absolute; top: -12px; left: 1.4rem;
  background: linear-gradient(135deg, var(--purple), var(--teal-dark)); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.03em;
  padding: 0.28rem 0.85rem; border-radius: 999px; box-shadow: 0 4px 14px rgba(90,31,138,0.4);
}
.product-flag.flag-green { background: linear-gradient(135deg, #468522, #57A630); box-shadow: 0 4px 14px rgba(87,166,48,0.4); }
.product-thumb {
  height: 110px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; margin-bottom: 1.1rem;
}
.thumb-violet { background: linear-gradient(150deg, #E6E2E9, #D8D2DD); }
.thumb-green { background: linear-gradient(150deg, #E7DFEE, #D8C8E5); }
.thumb-amber { background: linear-gradient(150deg, #E5E1E8, #D2CBD9); }
.product-card h2, .product-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; line-height: 1.25; }
.product-desc { color: var(--text-light); font-size: 0.93rem; margin-bottom: 0.9rem; }
.product-price { font-family: var(--font-head); margin-bottom: 1rem; }
.price-now { font-size: 1.7rem; font-weight: 800; color: var(--navy); }
.price-was { font-size: 1rem; color: var(--text-light); text-decoration: line-through; margin-left: 0.4rem; }
.product-list { list-style: none; display: grid; gap: 0.4rem; margin: 0 0 1.2rem; font-size: 0.92rem; }
.product-list li { padding-left: 1.4rem; position: relative; color: var(--text); }
.product-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.product-card .btn { margin-top: auto; }
.product-learn { display: block; text-align: center; margin-top: 0.7rem; font-size: 0.88rem; font-weight: 600; text-decoration: none; color: var(--teal-dark); }
.product-learn:hover { text-decoration: underline; }

/* How it works (3 step) */
.how3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 760px) { .how3-grid { grid-template-columns: 1fr; } }
.how3 { text-align: center; }
.how3-num {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid var(--glass-line);
  color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin-bottom: 0.9rem;
}
.how3 h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.4rem; }

/* Free resources */
.free-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 820px) { .free-grid { grid-template-columns: 1fr; } }
.free-card {
  display: block; text-decoration: none; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.free-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal); }
.free-icon { font-size: 2.2rem; display: block; margin-bottom: 0.8rem; }
.free-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.free-card p { color: var(--text-light); font-size: 0.93rem; }
.free-go { display: inline-block; margin-top: 0.7rem; font-weight: 700; color: var(--teal-dark); }

/* Email capture band */
.capture-band {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center;
  background: linear-gradient(150deg, var(--navy), var(--ink)); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
}
@media (max-width: 820px) { .capture-band { grid-template-columns: 1fr; gap: 1.5rem; } }
.capture-band h2 { color: var(--white); }
.capture-band p { color: #D8CFE0; margin: 0; }
.capture-form { display: flex; gap: 0.6rem; }
@media (max-width: 480px) { .capture-form { flex-direction: column; } }
.capture-form input {
  flex: 1; min-width: 0; padding: 0.85rem 1rem; border-radius: 999px; border: 2px solid transparent;
  font-size: 1rem; font-family: var(--font-body);
}
.capture-form input:focus { outline: none; border-color: var(--teal); }
.capture-form .btn { white-space: nowrap; }

/* ---------- Quiz game ---------- */
.quiz-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow-lg); max-width: 720px; margin: 0 auto;
}
.quiz-progress { height: 6px; background: #E0DBE5; border-radius: 999px; overflow: hidden; margin-bottom: 1.25rem; }
.quiz-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--teal-dark), var(--green)); transition: width 0.4s ease; }
.quiz-step { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 0.5rem; }
.quiz-q { font-size: 1.4rem; margin-bottom: 1.5rem; line-height: 1.3; }
.quiz-options { display: grid; gap: 0.7rem; }
.quiz-option {
  text-align: left; padding: 1rem 1.2rem; border: 2px solid var(--line); border-radius: 12px;
  background: var(--bg-soft); font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer;
  font-family: var(--font-body); transition: border-color 0.18s ease, transform 0.12s ease, background 0.18s ease;
}
.quiz-option:hover { border-color: var(--teal-dark); transform: translateX(4px); background: #E2DEE6; }
.quiz-option.selected { border-color: var(--teal-dark); background: #E2DEE6; }
.quiz-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; }
.quiz-hint { font-size: 0.82rem; color: var(--text-light); }

.quiz-result { max-width: 720px; margin: 0 auto; text-align: center; }
.score-ring {
  width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: conic-gradient(var(--teal-dark) 0deg, #E0DBE5 0deg);
  position: relative;
}
.score-ring::before { content: ""; position: absolute; inset: 12px; background: var(--white); border-radius: 50%; }
.score-num { position: relative; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--navy); }
.score-label { position: relative; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); }
.quiz-result h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.result-checklist { text-align: left; margin: 1.75rem 0; display: grid; gap: 0.5rem; }
.checklist-head { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.checklist-clear { background: #E7DFEE; border: 1px solid #C3A9D8; border-radius: 12px; padding: 1rem; font-weight: 600; color: #4F2D6B; }
.checklist-row {
  display: flex; align-items: center; gap: 0.7rem; text-decoration: none;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 0.85rem 1.1rem;
  color: var(--text); font-size: 0.95rem; transition: border-color 0.18s ease, transform 0.12s ease;
}
.checklist-row:hover { border-color: var(--teal-dark); transform: translateX(4px); }
.cl-x { color: var(--coral-dark); font-size: 1.1rem; }
.cl-fix { margin-left: auto; font-weight: 700; color: var(--teal-dark); white-space: nowrap; }
.result-cta { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; margin-top: 1.5rem; }
.result-cta h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.result-cta p { color: var(--text-light); margin-bottom: 1.25rem; }
.result-cta .btn { margin: 0 0.4rem 0.6rem; }

/* ============================================================
   v9: template page previews (pages 1-2-3) + lightbox
   ============================================================ */
.tpl-preview { margin: 0.4rem 0 1.2rem; }
.tpl-preview-label { font-size: 0.78rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.tpl-pages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.tpl-page {
  position: relative; aspect-ratio: 1 / 1.414; background: #FFFFFF;
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden; cursor: zoom-in;
  box-shadow: 0 3px 10px rgba(29,18,38,0.08); padding: 9px 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tpl-page:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tpl-page::after {
  content: "🔍"; position: absolute; right: 5px; bottom: 4px; font-size: 0.7rem; opacity: 0;
  transition: opacity 0.18s ease;
}
.tpl-page:hover::after { opacity: 0.7; }
.tpl-pagenum { position: absolute; top: 4px; right: 6px; font-size: 0.5rem; color: #BEAFCC; font-weight: 700; }

/* mini document elements */
.tp-bar { height: 9px; border-radius: 2px; background: var(--teal-dark); width: 70%; margin-bottom: 5px; }
.tp-sub { height: 4px; border-radius: 2px; background: #DDD6F0; width: 45%; margin-bottom: 7px; }
.tp-h { height: 5px; border-radius: 2px; background: var(--purple); width: 55%; margin: 7px 0 4px; }
.tp-line { height: 3px; border-radius: 2px; background: #D7D0DD; margin-bottom: 3px; }
.tp-line.w90 { width: 90%; } .tp-line.w80 { width: 80%; } .tp-line.w70 { width: 70%; } .tp-line.w60 { width: 60%; } .tp-line.w50 { width: 50%; } .tp-line.w40 { width: 40%; }
.tp-li { height: 3px; border-radius: 2px; background: #E0DBEE; margin: 0 0 3px 8px; position: relative; }
.tp-li::before { content: ""; position: absolute; left: -6px; top: 0; width: 3px; height: 3px; border-radius: 50%; background: var(--green); }
.tp-tbl { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2px; margin-top: 5px; }
.tp-tbl span { height: 8px; background: #F1EDFA; border: 1px solid #D7D0DD; border-radius: 1px; }
.tp-tbl span.k { background: #EBE5F8; }
.tp-sign { height: 3px; background: transparent; border-bottom: 1px solid #BEAFCC; margin: 9px 0 3px; }
.tp-sign.short { width: 55%; }
.tp-gap { height: 5px; }

/* page archetype thumbnails for the homepage product cards (single mini doc) */
.product-thumb.has-doc { padding: 0; overflow: hidden; }
.mini-doc { width: 62%; height: 78%; background: #FFFFFF; border-radius: 5px; box-shadow: 0 6px 16px rgba(29,18,38,0.18); padding: 9px; }

/* Lightbox */
.lb-overlay {
  position: fixed; inset: 0; z-index: 500; background: rgba(25,16,33,0.82);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease; backdrop-filter: blur(3px);
}
.lb-overlay.open { opacity: 1; pointer-events: auto; }
.lb-page {
  background: #FFFFFF; height: min(78vh, 620px); aspect-ratio: 1 / 1.414; max-width: 90vw; border-radius: 10px;
  box-shadow: var(--shadow-lg); padding: 5%; position: relative; transform: scale(0.95); transition: transform 0.2s ease;
  overflow: hidden;
}
.lb-overlay.open .lb-page { transform: scale(1); }
.lb-page .tp-bar { height: 22px; } .lb-page .tp-sub { height: 9px; } .lb-page .tp-h { height: 12px; }
.lb-page .tp-line, .lb-page .tp-li { height: 7px; margin-bottom: 7px; } .lb-page .tp-li { margin-left: 18px; }
.lb-page .tp-li::before { left: -14px; width: 7px; height: 7px; }
.lb-page .tp-tbl span { height: 20px; } .lb-page .tp-sign { margin: 22px 0 7px; }
.lb-close { position: absolute; top: -14px; right: -14px; width: 36px; height: 36px; border-radius: 50%; border: none; background: #FFFFFF; color: var(--navy); font-size: 1.2rem; cursor: pointer; box-shadow: var(--shadow); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,0.92); color: var(--navy); font-size: 1.3rem; cursor: pointer; box-shadow: var(--shadow); }
.lb-prev { left: -56px; } .lb-next { right: -56px; }
@media (max-width: 600px) { .lb-prev { left: 6px; } .lb-next { right: 6px; } }
.lb-count { position: absolute; bottom: -30px; left: 0; right: 0; text-align: center; color: #FFFFFF; font-size: 0.85rem; font-weight: 600; }

/* ============================================================
   v10: product images, promo video, photo bands (media + SEO)
   ============================================================ */
.product-thumb-img {
  display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 14px; margin-bottom: 1.1rem; background: var(--bg-soft);
  border: 1px solid var(--line);
}
.product-card:hover .product-thumb-img { border-color: var(--teal); }

/* Promo video section */
.video-sec { background: linear-gradient(170deg, var(--ink), var(--navy)); }
.video-sec .eyebrow { color: var(--teal); }
.video-sec h2 { color: var(--white); }
.video-sec .section-lede { color: #D8CFE0; }
.video-wrap {
  position: relative; max-width: 720px; margin: 2.5rem auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--glass-line);
  background: #000000;
}
.video-wrap video { display: block; width: 100%; height: auto; }
.video-glow {
  position: absolute; inset: auto 10% -30px; height: 70px; z-index: -1;
  background: radial-gradient(50% 100% at 50% 0%, rgba(90,31,138,0.55), transparent 75%);
  filter: blur(26px);
}
.video-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  color: #FFFFFF; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; padding: 0.35rem 0.7rem; border-radius: 999px;
}
.video-badge .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 1.6s ease-in-out infinite; }
.video-cta { text-align: center; margin-top: 1.75rem; }
.video-sound {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); color: #FFFFFF; font-size: 1rem;
}

/* Photo band (reused trust photo) */
.photo-band { margin: 3rem auto 0; max-width: 1000px; border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-lg); }
.photo-band img { display: block; width: 100%; height: 320px; object-fit: cover; }
.photo-band figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1.8rem 1.4rem;
  background: linear-gradient(transparent, rgba(29,18,38,0.9));
  color: #FFFFFF; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}

/* SEO guide / article pages */
.article { max-width: 800px; margin: 0 auto; }
.article h2 { font-size: 1.5rem; margin: 2.2rem 0 0.6rem; }
.article h3 { font-size: 1.15rem; margin: 1.6rem 0 0.4rem; color: var(--teal-dark); }
.article p { color: var(--text); margin-bottom: 1rem; line-height: 1.75; }
.article ul, .article ol { padding-left: 1.3rem; display: grid; gap: 0.5rem; margin: 0.4rem 0 1.3rem; color: var(--text); }
.article li { line-height: 1.65; }
.article .lead { font-size: 1.18rem; color: var(--text-light); margin-bottom: 1.5rem; }
.article .callout {
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 5px solid var(--teal-dark);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1.8rem 0;
}
.article .callout strong { color: var(--navy); }
.toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.5rem; margin-bottom: 2rem; }
.toc p { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.toc ul { list-style: none; padding: 0; display: grid; gap: 0.35rem; }
.toc a { color: var(--teal-dark); text-decoration: none; }
.toc a:hover { text-decoration: underline; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; margin-top: 2.5rem; }
.guide-card { display: block; text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal); }
.guide-card h3 { font-size: 1.08rem; margin-bottom: 0.4rem; color: var(--navy); }
.guide-card p { font-size: 0.92rem; color: var(--text-light); margin: 0; }
.guide-card .free-go { color: var(--teal-dark); font-weight: 700; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-line, .dash-wrap, .float-card { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .hero::before, .pulse, .live-dot, .feed-item, .btn-cta::after { animation: none !important; }
  .chart-line { stroke-dashoffset: 0; animation: none; }
  .chart-area { opacity: 1; animation: none; }
  .chart-dot { opacity: 1; animation: none; }
  .ticker-track { animation: none; flex-wrap: wrap; white-space: normal; width: auto; }
  .tl-progress { transform: scaleX(1) !important; transition: none !important; }
  .tl-step { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero h1 .num, .hero h1 .accent { animation: none; }
  .price-card.featured { animation: none; }
  .gbar, .gperson, .gfloat { animation: none !important; transform: none !important; }
  .garrow { stroke-dashoffset: 0; animation: none !important; }
  .ghead { opacity: 1; animation: none !important; }
  .gspark { opacity: 0.8; animation: none !important; transform: none !important; }
  .sc-type { width: 21ch; animation: none !important; border-right: none; }
  .sc-row, .sc-notif, .sc-check { opacity: 1 !important; transform: none !important; animation: none !important; }
  .sc-cursor { display: none; }
  .scene.active .sc-big { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   v11: warm aesthetic redesign: Fraunces serif, floating
   papers hero, typewriter, animated covers, Calm Match game
   ============================================================ */

/* Fraunces is a display serif: ease the weights set for Sora */
h1, h2, h3, h4 { font-weight: 620; letter-spacing: 0; }
h1 { font-weight: 660; }
.hero h1 .accent { font-style: italic; font-weight: 540; }

/* Warm hero */
.hero { background: linear-gradient(180deg, #F9F8FA 0%, #E9E5EC 100%); }
.hero::after { background-image: radial-gradient(circle, rgba(56,31,77,0.10) 1px, transparent 1px); }

/* Floating paper cards */
.hero-paper {
  position: absolute; z-index: 0; pointer-events: none;
  width: 150px; padding: 14px 14px 18px;
  background: #FFFFFF; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 14px 34px rgba(29,18,38,0.12);
  display: grid; gap: 7px;
  animation: paperFloat 7s ease-in-out infinite;
}
.hp-top { height: 18px; border-radius: 8px 8px 3px 3px; margin: -4px -4px 2px; }
.t-sage { background: #A77FC8; } .t-orange { background: #57A630; } .t-gold { background: #D9A441; }
.hp-l { height: 6px; border-radius: 3px; background: #DED9E3; }
.hp-l.w80{width:80%}.hp-l.w75{width:75%}.hp-l.w70{width:70%}.hp-l.w65{width:65%}.hp-l.w60{width:60%}.hp-l.w55{width:55%}.hp-l.w50{width:50%}.hp-l.w45{width:45%}.hp-l.w40{width:40%}
.hp1 { left: max(2%, calc(50% - 660px)); top: 150px; rotate: -8deg; }
.hp2 { right: max(2%, calc(50% - 650px)); top: 130px; width: 130px; animation-delay: 1.2s; animation-duration: 8s; rotate: 7deg; }
.hp3 { left: max(4%, calc(50% - 600px)); bottom: 220px; width: 165px; animation-delay: 2.2s; animation-duration: 9s; rotate: 5deg; }
.hp4 { right: max(5%, calc(50% - 590px)); bottom: 260px; width: 120px; animation-delay: 0.6s; animation-duration: 6.5s; rotate: -6deg; }
@keyframes paperFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}
@media (max-width: 1100px) { .hero-paper { display: none; } }

/* Typewriter */
.type-wrap { color: var(--teal-dark); white-space: nowrap; }
#typewriter { font-style: italic; color: var(--purple); }
.type-caret {
  display: inline-block; width: 3px; height: 0.95em; margin-left: 3px;
  background: var(--coral); vertical-align: -0.12em;
  animation: caretBlink2 0.85s step-end infinite;
}
@keyframes caretBlink2 { 50% { opacity: 0; } }

/* Animated product covers: gentle bob + hover tilt + sheen */
.product-thumb-img { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1); animation: coverBob 7s ease-in-out infinite; }
.product-card:nth-child(2) .product-thumb-img { animation-delay: 1.1s; }
.product-card:nth-child(3) .product-thumb-img { animation-delay: 2.2s; }
.product-card:nth-child(4) .product-thumb-img { animation-delay: 0.6s; }
.product-card:nth-child(5) .product-thumb-img { animation-delay: 1.7s; }
.product-card:nth-child(6) .product-thumb-img { animation-delay: 2.8s; }
@keyframes coverBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.product-card:hover .product-thumb-img { transform: translateY(-6px) rotate(-1.6deg) scale(1.025); animation-play-state: paused; }
.product-card { overflow: visible; }
/* sheen now sweeps across the animated scene (which clips itself), so the badge can overhang the card top */
.card-scene::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -75%; width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); z-index: 2; pointer-events: none; transition: left 0.7s ease;
}
.product-card:hover .card-scene::before { left: 140%; }

/* Products page video */
.products-video-band { max-width: 560px; margin: 2.5rem auto 0; }

/* ---------- Calm Match game ---------- */
.game-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-lg);
}
.game-controls { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: end; margin-bottom: 1.2rem; }
.gc-group { display: grid; gap: 0.4rem; }
.gc-label { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.gc-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.game-btn {
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  background: var(--bg-soft); color: var(--navy);
  border: 2px solid var(--line); border-radius: 999px;
  padding: 0.65rem 1.2rem; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
  min-height: 48px;
}
.game-btn:hover { border-color: var(--teal-dark); }
.game-btn:active { transform: scale(0.97); }
.game-btn.selected { background: var(--teal-dark); color: #FFFFFF; border-color: var(--teal-dark); }
.game-status { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.gs-chip { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 0.45rem 1rem; font-size: 0.95rem; color: var(--text); }
.gs-chip strong { color: var(--teal-dark); }

.game-board { display: grid; gap: 0.8rem; grid-template-columns: repeat(3, 1fr); }
.game-board[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.game-board[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 700px) {
  .game-board[data-cols="4"] { grid-template-columns: repeat(3, 1fr); }
  .game-board[data-cols="6"] { grid-template-columns: repeat(4, 1fr); }
}
.mcard {
  aspect-ratio: 1 / 1; min-height: 84px;
  border: 3px solid var(--line); border-radius: 16px; cursor: pointer;
  background: var(--bg-soft); padding: 0; perspective: 600px;
}
.mcard:hover { border-color: var(--teal-dark); }
.mcard:focus-visible { outline: 4px solid var(--coral); outline-offset: 3px; }
.mc-inner {
  position: relative; display: block; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform 0.45s cubic-bezier(0.3, 0.8, 0.4, 1);
}
.mcard.up .mc-inner, .mcard.matched .mc-inner { transform: rotateY(180deg); }
.mc-front, .mc-back {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: clamp(2rem, 6vw, 3.2rem); backface-visibility: hidden; border-radius: 12px;
}
.mc-front { background: repeating-linear-gradient(45deg, #E9E5EC, #E9E5EC 10px, #E1DCE5 10px, #E1DCE5 20px); }
.mc-back { background: #FFFFFF; transform: rotateY(180deg); }
.mcard.matched { border-color: var(--green); cursor: default; }
.mcard.matched .mc-back { background: #EEE6F4; }
.game-board.won .mcard.matched { animation: matchedGlow 1.6s ease-in-out 2; }
@keyframes matchedGlow { 50% { box-shadow: 0 0 0 6px rgba(118,61,164,0.35); } }

.game-win { text-align: center; margin-top: 1.6rem; padding: 1.6rem; background: var(--bg-soft); border-radius: var(--radius); border: 1px solid var(--line); }
.game-win h2 { margin-bottom: 0.4rem; }
.win-stars { font-size: 2rem; }
.win-stars span { display: inline-block; }
.game-win.pop .win-stars span { animation: starPop 0.8s cubic-bezier(0.2, 1.6, 0.4, 1) backwards; }
.game-win.pop .win-stars span:nth-child(2) { animation-delay: 0.15s; }
.game-win.pop .win-stars span:nth-child(3) { animation-delay: 0.3s; }
@keyframes starPop { from { transform: scale(0) rotate(-30deg); } }
.game-win .btn { margin-top: 0.8rem; }

/* Calm mode: cut motion */
.calm-mode .mc-inner { transition-duration: 0.9s; }
.calm-mode .hero-paper, .calm-mode .product-thumb-img { animation: none; }
.calm-mode .game-board.won .mcard.matched { animation: none; }
.calm-mode .game-win.pop .win-stars span { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-paper, .product-thumb-img, .type-caret, .game-board.won .mcard.matched, .game-win.pop .win-stars span { animation: none !important; }
  .mc-inner { transition: none !important; }
  .product-card::before { display: none; }
}

/* stable typewriter line: a hidden sizer reserves the widest word's width on
   every screen, so the headline can never reflow (no up/down page shift). The
   spare width sits as invisible trailing space at the end of the line. */
.hero h1 > span.type-wrap { position: relative; display: inline-block; vertical-align: baseline; white-space: nowrap; text-align: left; }
.type-size { visibility: hidden; }
.type-live { position: absolute; left: 0; top: 0; white-space: nowrap; }
/* smaller, tighter hero */
.hero h1 { font-size: clamp(1.7rem, 4.2vw, 3rem); line-height: 1.12; }
@media (max-width: 640px) {
  .hero { padding: 2.5rem 0 1.75rem; }
  .hero .lede { font-size: 1.01rem; margin: 1rem auto 1.4rem; }
}

/* ============ MISSION / WHY WE BUILT THIS ============ */
.mission { padding: 4.5rem 0; }
.mission-band {
  background: linear-gradient(165deg, #FFFFFF 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 3.25rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.mission-band::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,111,224,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.mission-band .eyebrow { color: var(--teal-dark); }
.mission-band h2 { color: var(--ink); margin-bottom: .75rem; }
.mission-band .section-lede { max-width: 760px; margin-left: auto; margin-right: auto; }
.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin: 2.5rem 0 1.5rem; position: relative; z-index: 1;
}
@media (max-width: 820px) { .mission-grid { grid-template-columns: 1fr; } }
.mission-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  text-align: left;
}
.mission-ico { font-size: 2rem; display: block; margin-bottom: .6rem; }
.mission-card h3 { font-family: var(--font-head); font-weight: 620; font-size: 1.18rem; color: var(--ink); margin: 0 0 .4rem; }
.mission-card p { color: var(--text-light); font-size: .98rem; line-height: 1.6; margin: 0; }
.mission-foot {
  text-align: center; color: var(--text-light); font-style: italic;
  max-width: 680px; margin: 0 auto; position: relative; z-index: 1;
}
@media (max-width: 600px) { .mission-band { padding: 2.25rem 1.4rem; } }

/* ============ preview: real text in document mockups ============ */
.tp-meta { font-size: 6px; line-height: 1.1; letter-spacing: 0.05em; text-transform: uppercase; color: var(--teal-dark); font-weight: 800; margin-bottom: 4px; }
.tp-title { font-family: var(--font-head); font-weight: 700; font-size: 11px; line-height: 1.12; color: var(--ink); margin-bottom: 5px; }
.tp-rule { height: 2px; width: 38%; background: var(--teal); border-radius: 2px; margin-bottom: 7px; }
.tp-heading { font-family: var(--font-head); font-weight: 700; font-size: 9px; line-height: 1.12; color: var(--ink); margin-bottom: 5px; }
/* enlarged in the lightbox */
.lb-page .tp-meta { font-size: 13px; margin-bottom: 10px; letter-spacing: 0.08em; }
.lb-page .tp-title { font-size: 30px; line-height: 1.08; margin-bottom: 14px; }
.lb-page .tp-rule { height: 4px; width: 42%; margin-bottom: 20px; }
.lb-page .tp-heading { font-size: 22px; line-height: 1.1; margin-bottom: 14px; }
.tpl-page:focus-visible { outline: 2px solid var(--teal-dark); outline-offset: 2px; }

/* ============ homepage product card: preview + learn actions ============ */
.product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 1rem; margin-top: 0.7rem; }
.product-preview-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.86rem; font-weight: 700; color: var(--teal-dark);
  background: rgba(155,111,224,0.10); border: 1px solid rgba(155,111,224,0.30);
  border-radius: 999px; padding: 0.34rem 0.8rem; cursor: pointer;
  text-decoration: none; transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.product-preview-btn:hover { background: rgba(155,111,224,0.18); border-color: var(--teal-dark); transform: translateY(-1px); }
.product-learn { font-weight: 700; }

/* ============================================================
   Animated product card scenes (NDIS purple + green)
   ============================================================ */
.card-scene {
  width: 100%; aspect-ratio: 300 / 180; margin-bottom: 1.1rem;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-soft); position: relative;
}
.card-scene .cs-svg { display: block; width: 100%; height: 100%; }
.product-card:hover .card-scene { border-color: var(--teal); }

@keyframes csBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.cs-bob  { animation: csBob 3s ease-in-out infinite; }
.cs-bob2 { animation: csBob 3.4s ease-in-out infinite; }

@keyframes csRing { 0% { stroke-dashoffset: 214; } 55% { stroke-dashoffset: 48; } 80% { stroke-dashoffset: 48; } 100% { stroke-dashoffset: 214; } }
.cs-ring { stroke-dasharray: 214; animation: csRing 3.6s ease-in-out infinite; }

@keyframes csTick { 0%,8% { opacity: 0; transform: scale(.3); } 24% { opacity: 1; transform: scale(1); } 92% { opacity: 1; } 100% { opacity: 0; transform: scale(.3); } }
.cs-tick { opacity: 0; transform-box: fill-box; transform-origin: center; animation: csTick 3.4s ease infinite; }

@keyframes csPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.cs-pulse { transform-box: fill-box; transform-origin: center; animation: csPulse 1.8s ease-in-out infinite; }

@keyframes csTravel { 0% { transform: translateX(60px); } 40% { transform: translateX(148px); } 52% { transform: translateX(148px); } 92% { transform: translateX(236px); } 100% { transform: translateX(236px); } }
.cs-travel { animation: csTravel 3s ease-in-out infinite; }

@keyframes csRise { 0% { transform: scaleY(.12); } 45% { transform: scaleY(1); } 75% { transform: scaleY(1); } 100% { transform: scaleY(.12); } }
.cs-rise { transform-box: fill-box; transform-origin: bottom; animation: csRise 2.8s ease-in-out infinite; }

@keyframes csPop { 0%,12% { opacity: 0; transform: translateY(10px) scale(.6); } 28% { opacity: 1; transform: translateY(0) scale(1); } 90% { opacity: 1; } 100% { opacity: 0; } }
.cs-pop { opacity: 0; transform-box: fill-box; transform-origin: center; animation: csPop 3.4s ease infinite; }

@keyframes csStamp { 0%,20% { opacity: 0; transform: scale(1.6); } 34% { opacity: 1; transform: scale(1); } 88% { opacity: 1; } 100% { opacity: 0; transform: scale(1.6); } }
.cs-stamp { opacity: 0; transform-box: fill-box; transform-origin: center; animation: csStamp 3.4s ease infinite; }

@keyframes csSwing { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.cs-swing { transform-box: view-box; transform-origin: 150px 4px; animation: csSwing 3.6s ease-in-out infinite; }

@keyframes csDraw { 0% { stroke-dashoffset: 240; } 50% { stroke-dashoffset: 0; } 85% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 240; } }
.cs-draw { stroke-dasharray: 240; animation: csDraw 3.2s ease-in-out infinite; }

@keyframes csBlink { 0%,100% { opacity: .25; } 50% { opacity: 1; } }
.cs-blink { animation: csBlink 2.6s ease-in-out infinite; }

@keyframes csCell { 0%,10% { opacity: 0; transform: scale(.4); } 30% { opacity: 1; transform: scale(1); } 85% { opacity: 1; } 100% { opacity: 0; transform: scale(.4); } }
.cs-cell { opacity: 0; transform-box: fill-box; transform-origin: center; animation: csCell 3.6s ease infinite; }

@media (prefers-reduced-motion: reduce) {
  .cs-bob, .cs-bob2, .cs-pulse, .cs-travel, .cs-rise, .cs-swing, .cs-blink { animation: none !important; }
  .cs-ring { animation: none !important; stroke-dashoffset: 48; }
  .cs-draw { animation: none !important; stroke-dashoffset: 0; }
  .cs-tick, .cs-pop, .cs-stamp, .cs-cell { animation: none !important; opacity: 1; transform: none; }
  .cs-rise { transform: scaleY(1); }
}

/* ============ Bestseller / Best value badges: float ON TOP of the card ============ */
.product-flag {
  top: -17px; left: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.36rem;
  padding: 0.46rem 1.05rem; font-size: 0.78rem; letter-spacing: 0.04em;
  border: 2px solid var(--white);
  box-shadow: 0 12px 24px rgba(90,31,138,0.42);
  z-index: 6; transform-origin: center;
  animation: flagFloat 3.2s ease-in-out infinite;
}
.product-flag.flag-green { border-color: var(--white); box-shadow: 0 12px 24px rgba(87,166,48,0.42); }
@keyframes flagFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(-1.4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .product-flag { animation: none; }
  .card-scene::before { display: none; }
}

/* ============ article cost/data tables (guide pages) ============ */
.article table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: 0.95rem; }
.article th, .article td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.article thead th { background: var(--bg-soft); color: var(--ink); font-family: var(--font-head); font-weight: 700; }
.article tbody tr:nth-child(even) { background: rgba(155,111,224,0.05); }
.article tbody tr:last-child td { border-bottom: none; }
.article td strong { color: var(--navy); }
.article table caption { caption-side: bottom; font-size: 0.82rem; color: var(--text-light); margin-top: 0.5rem; text-align: left; }
.related-guides { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.related-guides h2 { margin-bottom: 0.6rem; }
.related-guides ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.related-guides a { color: var(--teal-dark); font-weight: 600; text-decoration: none; }
.related-guides a:hover { text-decoration: underline; }
