/* Fluxify. Premium dark theme: near-black warm bg, off-white text, Electric Orange accent.
   Rounded shape system (soft cards, pill buttons/badges). Single dark theme, locked. */

:root {
  --bg: #0B0908;
  --bg-2: #161311;
  --bg-3: #1F1B17;
  --line: #2C2620;
  --ink: #F5F2EE;
  --muted: #A79E93;
  --orange: #FF4D0F;
  --orange-soft: #FF8A4D;
  --orange-2: #E5440A;
  --orange-btn: #B83508;
  --orange-btn-hover: #9C2D06;

  --font-display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Archivo", ui-sans-serif, system-ui, sans-serif;

  --max-w: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 85% -10%, rgba(255, 77, 15, 0.1), transparent 60%),
    radial-gradient(ellipse 900px 700px at -10% 100%, rgba(255, 77, 15, 0.06), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; color: var(--muted); max-width: 65ch; }

.icon { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; }

/* Keyword highlight, solid orange text for headline emphasis */
.hl {
  color: var(--orange);
}
.hl-ink { color: var(--orange-soft); font-weight: 700; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: 860px;
  width: max-content;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}
.cookie-banner p { font-size: 14px; color: var(--ink); white-space: nowrap; }
.cookie-banner p a { text-decoration: underline; text-decoration-color: var(--line); color: var(--orange-soft); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 10px 18px; font-size: 13px; }

@media (max-width: 640px) {
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; padding: 18px; width: auto; }
  .cookie-banner p { white-space: normal; }
  .cookie-banner-inner { flex-wrap: wrap; }
}


/* ---------- Page-load intro stagger ---------- */
.load-in {
  opacity: 0;
  transform: translateY(14px);
  animation: load-in 0.7s var(--ease) forwards;
}
.load-in-1 { animation-delay: 0.05s; }
.load-in-2 { animation-delay: 0.15s; }
.load-in-3 { animation-delay: 0.28s; }
.load-in-4 { animation-delay: 0.4s; }
.load-in-5 { animation-delay: 0.5s; }
@keyframes load-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 8px 24px -8px rgba(255, 77, 15, 0.6);
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); box-shadow: 0 10px 28px -6px rgba(255, 77, 15, 0.75); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--muted); transform: translateY(-1px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(11, 9, 8, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: height 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  height: 60px;
  background: rgba(11, 9, 8, 0.96);
}
.nav.scrolled .nav-brand img { width: 46px; height: 46px; }
.nav-sentinel { height: 1px; }
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { width: 58px; height: 58px; transition: width 0.3s var(--ease), height 0.3s var(--ease); }
.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.nav-brand-tagline {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0;
  color: var(--muted);
  text-transform: none;
}
@media (max-width: 640px) {
  .nav-brand-tagline { display: none; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.nav-links a { transition: color 0.2s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; }
.nav-cta .btn { padding: 10px 20px; font-size: 14px; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--muted);
  max-width: 46ch;
}
.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Hero signal-stack visual, see below ---------- */
/* ---------- Hero visual: signal stack, the outreach mechanism in three cards ---------- */
.signal-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 500px;
  margin: 0 auto;
}
.signal-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 84%;
  padding: 20px 24px;
  border-radius: var(--r-lg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px -20px rgba(0, 0, 0, 0.65);
  opacity: 0;
  transform: translateY(18px);
  animation: load-in 0.7s var(--ease) forwards;
}
.signal-card .icon { width: 26px; height: 26px; flex-shrink: 0; }
.signal-card-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.signal-card-sub {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
}
.signal-card-1 {
  top: 0;
  left: 0;
  transform: translateY(18px) rotate(-4deg);
  z-index: 1;
  animation-delay: 0.6s;
}
.signal-card-2 {
  top: 20%;
  left: 11%;
  width: 84%;
  transform: translateY(18px) rotate(2deg);
  z-index: 2;
  animation-delay: 0.72s;
}
.signal-card-3 {
  top: 40%;
  left: 3%;
  width: 86%;
  transform: translateY(18px) rotate(-2deg);
  z-index: 3;
  animation-delay: 0.84s;
}
.signal-card-4 {
  top: 62%;
  left: 6%;
  width: 90%;
  z-index: 4;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 26px 60px -18px rgba(255, 77, 15, 0.55);
  transform: translateY(18px) rotate(-1deg);
  animation: load-in-signal-4 0.7s var(--ease) forwards, signal-float 5s ease-in-out 1.5s infinite;
  animation-delay: 0.98s;
}
.signal-card-4 .icon,
.signal-card-4 .signal-card-label,
.signal-card-4 .signal-card-sub { color: var(--bg); }
@keyframes load-in-signal-4 {
  to { opacity: 1; transform: translateY(0) rotate(-1deg); }
}
@keyframes signal-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-20px) rotate(-1deg); }
}

@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .signal-stack { max-width: 360px; margin-top: 8px; }
}

@media (max-width: 480px) {
  .signal-card { padding: 16px 18px; gap: 12px; }
  .signal-card-label { font-size: 15px; }
  .signal-card-sub { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .signal-card-4 { animation: load-in-signal-4 0.7s var(--ease) forwards; animation-delay: 0.98s; }
}

/* ---------- Status strip ---------- */
.status {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 20px 0;
}
.status .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.status strong { color: var(--ink); font-weight: 700; }
.status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ---------- Section shell ---------- */
section { padding: 96px 0; }
section.tight-top { padding-top: 32px; }
section.tight-bottom { padding-bottom: 32px; }

/* ---------- Why we do this ---------- */
.why { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.why h2 { font-size: clamp(26px, 3.2vw, 38px); max-width: 18ch; }
.why p { margin-top: 20px; font-size: 17px; max-width: 56ch; }
.why .bento { margin-top: 64px; }
.founder-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: 0 0 40px -8px rgba(255, 77, 15, 0.5);
  margin-bottom: 14px;
}
.founder-name { font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--ink); }
.founder-title { font-size: 13.5px; color: var(--muted); }

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 42px); position: relative; padding-bottom: 18px; }
.section-head p { margin-top: 16px; font-size: 17px; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease) 0.1s;
}
.section-head.in-view h2::after { transform: scaleX(1); }

/* ---------- Problem (manifesto) ---------- */
.problem {
  text-align: left;
}
.problem .wrap { max-width: 920px; }
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 44px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.compare.in-view { opacity: 1; transform: translateY(0); }
.compare-head {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.compare-bad .compare-head { color: var(--muted); }
.compare-good .compare-head { color: var(--orange); }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.compare-col li { display: flex; gap: 10px; font-size: 15px; align-items: flex-start; }
.compare-col .icon { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.compare-bad li { color: var(--muted); }
.compare-bad .icon { color: var(--muted); }
.compare-good li { color: var(--ink); }
.compare-good .icon { color: var(--orange); }

@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; gap: 28px; }
}
.problem h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  position: relative;
  padding-bottom: 18px;
}
.problem h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease) 0.1s;
}
.problem.in-view h2::after { transform: scaleX(1); }
.problem p {
  margin-top: 20px;
  font-size: 18px;
  max-width: none;
}

/* ---------- Guarantee ---------- */
.guarantee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guarantee-box {
  background: var(--bg);
  border: 1px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 72px 56px;
  position: relative;
  box-shadow: 0 0 80px -20px rgba(255, 77, 15, 0.35);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.guarantee h2 {
  font-size: clamp(30px, 4vw, 46px);
  max-width: 22ch;
  margin: 0 auto;
}
.guarantee-sub {
  margin: 20px auto 0;
  max-width: 46ch;
  font-size: 16px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .guarantee-box { padding: 40px 24px; min-height: 180px; }
}

/* ---------- Differentiation bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}
.bento-cell {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.25s var(--ease);
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}
.bento.in-view .bento-cell { opacity: 1; transform: translateY(0); }
.bento.in-view .bento-cell:nth-child(1) { transition-delay: 0.02s; }
.bento.in-view .bento-cell:nth-child(2) { transition-delay: 0.1s; }
.bento.in-view .bento-cell:nth-child(3) { transition-delay: 0.18s; }
.bento.in-view .bento-cell:nth-child(4) { transition-delay: 0.26s; }
.bento-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 180px at var(--mx) var(--my), rgba(255, 77, 15, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.bento-cell:hover { border-color: var(--orange); }
.bento-cell:hover::before { opacity: 1; }
.bento-cell.accent::before { background: radial-gradient(circle 180px at var(--mx) var(--my), rgba(11, 9, 8, 0.2), transparent 70%); }
.bento-cell.accent {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bg);
}
.bento-cell.accent .icon { color: var(--bg); }
.bento-cell.accent p { color: rgba(11, 9, 8, 0.72); }
.bento-cell.pattern {
  background-image: repeating-linear-gradient(135deg, var(--bg-3) 0 2px, var(--bg-2) 2px 26px);
}
.bento-cell .icon { margin-bottom: 18px; }
.bento-cell h3 { font-size: 19px; margin-bottom: 8px; }
.bento-cell p { font-size: 15px; }

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; }
}

/* ---------- Pricing ---------- */
.pricing-intro { max-width: 640px; margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.25s var(--ease);
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}
.pricing-grid.in-view .plan { opacity: 1; transform: translateY(0); }
.pricing-grid.in-view .plan:nth-child(1) { transition-delay: 0.02s; }
.pricing-grid.in-view .plan:nth-child(2) { transition-delay: 0.12s; }
.pricing-grid.in-view .plan:nth-child(3) { transition-delay: 0.22s; }
.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mx) var(--my), rgba(255, 77, 15, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.plan:hover::before { opacity: 1; }
.plan.featured { border-color: var(--orange); box-shadow: 0 0 60px -20px rgba(255, 77, 15, 0.4); }
.plan-tier { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--orange); text-transform: uppercase; }
.plan h3 { font-size: 26px; margin-top: 10px; }
.plan-desc { margin-top: 10px; font-size: 15px; }
.plan-features { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.plan-features li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); }
.plan-features .icon { width: 18px; height: 18px; margin-top: 2px; }
.plan .btn { margin-top: 32px; justify-content: center; }

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid .plan:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .plan:nth-child(3) { grid-column: auto; }
}

.pricing-grid-single {
  grid-template-columns: 1fr !important;
  max-width: 640px;
  margin: 0 auto;
}

.plan-bonus {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.plan-bonus-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
}
.plan-bonus p {
  margin-top: 8px;
  font-size: 15px;
}

.coaching-banner {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-2);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.coaching-banner p { margin-top: 10px; font-size: 15px; max-width: 62ch; }
.coaching-banner h3 { font-size: 22px; margin-top: 4px; }
.coaching-banner .btn { margin-top: 18px; }

/* ---------- ROI calculator ---------- */
.roi-box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
.roi-inputs {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.roi-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.roi-panel-head h3 { font-size: 16px; }
.roi-reset {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 14px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.roi-reset:hover { border-color: var(--orange); color: var(--orange-soft); }
.roi-panel-sub { font-size: 13px; margin-bottom: 20px; }
.roi-field { display: block; margin-bottom: 18px; }
.roi-field:last-child { margin-bottom: 0; }
.roi-field span:first-child {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.roi-input-row {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
}
.roi-prefix { padding: 0 0 0 14px; color: var(--muted); font-weight: 700; }
.roi-input-row input[type="number"] {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 12px 14px;
}
.roi-input-row input[type="number"]:focus {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}
input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
  height: 4px;
  background: var(--line);
  border-radius: var(--r-pill);
}
.roi-range-value {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange-soft);
  font-size: 17px;
  line-height: 1;
}
.roi-range-qualifier {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.roi-output {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.roi-total-card {
  background: var(--bg-2);
  border: 1px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: 0 0 60px -20px rgba(255, 77, 15, 0.4);
}
.roi-total-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.roi-total-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 50px);
  color: var(--orange-soft);
  margin-top: 4px;
  line-height: 1;
}
.roi-total-grid {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.roi-total-grid .roi-mini-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.roi-total-grid .roi-mini-value { display: block; margin-top: 3px; font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--ink); }
.roi-funnel-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 28px;
}
.roi-funnel-card h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.roi-funnel-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.roi-funnel-row strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.roi-funnel-bar {
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--line);
  overflow: hidden;
  margin-bottom: 12px;
}
.roi-funnel-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  border-radius: var(--r-pill);
  transition: width 0.4s var(--ease);
}
.roi-footnote { font-size: 12px; margin-top: 2px; }

@media (max-width: 860px) {
  .roi-box { grid-template-columns: 1fr; }
  .roi-inputs, .roi-total-card, .roi-funnel-card { padding: 22px 20px; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 4px;
  margin: 0 -4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  border-radius: var(--r-sm);
  transition: background 0.2s var(--ease);
}
.faq-item summary:hover { background: var(--bg-2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { transition: transform 0.3s var(--ease); }
.faq-item.is-open summary .icon { transform: rotate(45deg); }
.faq-item .faq-a {
  font-size: 15px;
  max-width: 60ch;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 4px;
  transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease), padding 0.35s var(--ease);
}
.faq-item.is-open .faq-a { opacity: 1; padding: 0 4px 22px; max-height: 240px; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: left; border-top: 1px solid var(--line); }
.final-cta .wrap { max-width: 780px; }
.final-cta h2 { font-size: clamp(30px, 4vw, 48px); }
.final-cta p { margin-top: 18px; font-size: 17px; max-width: 50ch; }
.final-cta .hero-ctas { margin-top: 32px; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 64px 0 96px; }
.legal-content { max-width: 720px; }
.legal-content h1 { font-size: clamp(32px, 5vw, 48px); margin-top: 10px; }
.legal-updated { margin-top: 10px; font-size: 13px; }
.legal-content h2 { font-size: 20px; margin-top: 40px; margin-bottom: 12px; }
.legal-content p { color: var(--ink); font-size: 15px; max-width: none; margin-bottom: 6px; }
.legal-content a { color: var(--orange-soft); text-decoration: underline; text-decoration-color: var(--line); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 50px; height: 50px; }
.footer-brand span { font-family: var(--font-display); font-weight: 900; font-size: 15px; }
.footer-meta { font-size: 13px; color: var(--muted); display: flex; flex-direction: column; gap: 6px; align-items: flex-end; text-align: right; }
.footer-meta a:hover { color: var(--ink); }
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--line);
}
.footer-link-btn:hover { color: var(--ink); }

@media (max-width: 640px) {
  .footer-grid { flex-direction: column; }
  .footer-meta { align-items: flex-start; text-align: left; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .faq-item summary .icon { transition: none; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .guarantee-box { padding: 28px 20px; }
}
