/* ─────────────────────────────────────────────────────────────────────────
   EnergyPricing — site
   Refined editorial minimalism with energy-data motifs.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --paper: #FAFAF7;
  --paper-tint: #F4F2EB;
  --ink: #0E0F12;
  --ink-soft: #2B2D33;
  --muted: #6B6E78;
  --muted-2: #9A9DA6;
  --line: #E8E5DC;
  --line-strong: #DCD7C9;

  --amber: #FFB020;
  --amber-deep: #C57A00;
  --amber-soft: #FFF4DA;
  --mint: #00A86B;
  --mint-soft: #E6F4EE;
  --mint-deep: #00744A;
  --crimson: #D14343;
  --crimson-soft: #FAE6E6;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  --shadow-card: 0 1px 0 rgba(14, 15, 18, 0.04), 0 12px 32px -16px rgba(14, 15, 18, 0.18);
  --shadow-phone: 0 30px 60px -30px rgba(14, 15, 18, 0.4), 0 10px 20px -10px rgba(14, 15, 18, 0.15);
  --shadow-cta: 0 20px 40px -20px rgba(14, 15, 18, 0.5), 0 0 0 1px rgba(14, 15, 18, 0.08);

  --max: 1180px;
  --pad-x: clamp(20px, 4vw, 56px);

  --display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { position: relative; overflow-x: hidden; }
::selection { background: var(--amber); color: var(--ink); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

img { max-width: 100%; height: auto; display: block; }

/* ── Background grid ──────────────────────────────────────────────── */
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(14, 15, 18, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 15, 18, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
}

/* ── Topbar ──────────────────────────────────────────────── */
.topbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; }
.brand img { border-radius: 8px; box-shadow: 0 2px 8px -2px rgba(14, 15, 18, 0.25); }
.brand-name { font-size: 17px; }

.topnav { display: flex; gap: 28px; justify-content: center; font-size: 15px; color: var(--muted); }
.topnav a { position: relative; transition: color 0.2s ease; }
.topnav a:hover { color: var(--ink); }
.topnav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.topnav a:hover::after { transform: scaleX(1); }

.top-actions { display: flex; align-items: center; gap: 18px; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--body); font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
}
.lang-toggle a {
  display: inline-block;
  color: var(--muted-2);
  padding: 4px 6px;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.15s ease;
}
.lang-toggle a:hover { color: var(--ink); }
.lang-toggle a[aria-current="page"] { color: var(--ink); }
.lang-sep { color: var(--line-strong); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px;
  font-family: var(--body); font-weight: 500; letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-xl { padding: 18px 34px; font-size: 17px; }

.btn-dark { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-cta); }
.btn-dark:hover { transform: translateY(-1px); background: #1a1c22; }

.btn-ghost { color: var(--ink); background: transparent; border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: var(--paper-tint); border-color: var(--ink); }

.apple-glyph { width: 18px; height: 18px; }

/* ── Hero ──────────────────────────────────────────────── */
.hero { max-width: var(--max); margin: 24px auto 0; padding: 40px var(--pad-x) 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.live-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted);
  width: fit-content;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
  box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0, 168, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 168, 107, 0); }
}
.live-sep { color: var(--line-strong); }

.display {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(48px, 8vw, 96px); line-height: 1.02; letter-spacing: -0.025em;
  margin: 24px 0 24px; color: var(--ink);
  padding-bottom: 0.04em;
}
.display em, .display-2 em, .display-plus em {
  font-style: italic; color: var(--ink); position: relative; display: inline-block;
  padding-bottom: 0.06em;
}
/* Highlight bar sits at the baseline (under the x-height body), above descenders,
   so italic g/j/p/y tails stay clear and uncut. */
.display em::before, .display-2 em::before {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 0.22em;
  height: 0.14em; background: var(--amber); z-index: -1; border-radius: 2px; opacity: 0.95;
}

.display-2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px); line-height: 1.1; letter-spacing: -0.022em;
  margin: 14px 0 18px;
  padding-bottom: 0.04em;
}
.display-2 em::before { opacity: 0.9; }
.display-2.center { text-align: center; }

.lede {
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: var(--ink-soft);
  max-width: 540px; margin: 0 0 28px;
}

.hero-bullets { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
.hero-bullets li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.bullet-dot { width: 8px; height: 8px; border-radius: 2px; flex: 0 0 8px; }
.dot-green { background: var(--mint); }
.dot-amber { background: var(--amber); }
.dot-ink { background: var(--ink); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.cta-meta { margin: 0; font-size: 13.5px; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; }
.cta-meta strong { color: var(--ink); font-weight: 600; }
.meta-sep { color: var(--line-strong); }

/* Hero art: phone + small calculator callout (no duplicate chart). */
.hero-art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 580px;
}

.phone {
  position: relative;
  background: #0E0F12;
  padding: 10px;
  border-radius: 44px;
  box-shadow: var(--shadow-phone);
  width: 290px;
}
.phone img { border-radius: 32px; display: block; width: 100%; }
.phone::after {
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 28px; border-radius: 18px; background: #0E0F12; z-index: 2;
}

.phone-hero {
  transform: rotate(-3deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.phone-hero:hover { transform: rotate(0deg); }

/* Calculator callout — illustrates a real free feature, no chart duplication. */
.callout-card {
  position: absolute;
  right: -6px; bottom: 60px;
  width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px 14px;
  box-shadow: var(--shadow-card);
  transform: rotate(2deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.callout-card:hover { transform: rotate(0deg); }
.callout-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.callout-ico {
  width: 22px; height: 22px;
  padding: 5px; border-radius: 7px;
  background: var(--ink); color: var(--amber);
  box-sizing: content-box;
}
.callout-label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.callout-pre {
  margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.4;
}
.callout-big {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 38px; line-height: 1; letter-spacing: -0.02em;
  font-style: italic; color: var(--ink);
}

/* ── Trust strip ──────────────────────────────────────────────── */
.trust {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px var(--pad-x) 80px;
  border-top: 1px solid var(--line);
}
.trust-eyebrow {
  display: block; text-align: center;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 36px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  text-align: center;
  display: flex; flex-direction: column; gap: 8px; padding: 0 8px;
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: 0; }
.trust-num {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400; letter-spacing: -0.03em; line-height: 1; color: var(--ink);
}
.trust-num small {
  font-family: var(--body); font-size: 0.42em; font-weight: 500;
  margin-left: 2px; color: var(--muted); letter-spacing: 0;
}
.trust-label { font-size: 13px; color: var(--muted); letter-spacing: 0.01em; }

/* ── Section heads ──────────────────────────────────────────────── */
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head-left { margin-left: 0; margin-right: auto; text-align: left; }
.eyebrow {
  display: inline-block;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.section-sub {
  color: var(--muted); font-size: 17px; max-width: 620px;
  margin: 0 auto; line-height: 1.55;
}
.section-sub.center { margin-left: auto; margin-right: auto; }
.section-sub-left { margin: 0; }

/* ── Features ──────────────────────────────────────────────── */
.features { max-width: var(--max); margin: 0 auto; padding: 40px var(--pad-x) 100px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.card.feature {
  background: var(--paper);
  padding: 36px 32px;
  transition: background 0.2s ease;
  position: relative;
}
.card.feature:hover { background: #fff; }
.card.feature .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--amber);
  margin-bottom: 22px;
  transition: transform 0.2s ease;
}
.card.feature:hover .ico { transform: rotate(-4deg) scale(1.05); }
.card.feature .ico svg { width: 20px; height: 20px; }
.card.feature h3 {
  font-family: var(--body);
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.card.feature p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* ── Negative prices section (the emotional hook) ──────────────────────────────────────────────── */
.negative {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad-x) 100px;
}
.negative-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  background: linear-gradient(135deg, #FAFAF7 0%, #ECF7F0 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.negative-grid::before {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 107, 0.18), transparent 70%);
  pointer-events: none;
}
.eyebrow-neg { color: var(--mint-deep); }
.em-neg { color: var(--mint-deep) !important; }
.em-neg::before { background: var(--mint) !important; opacity: 0.35 !important; }

.neg-bullets {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 14px;
}
.neg-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.5; color: var(--ink-soft);
}
.neg-tag {
  flex: 0 0 auto;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 8px; border-radius: 4px; line-height: 1;
  margin-top: 2px;
}
.neg-tag-free { background: var(--mint); color: white; }
.neg-tag-plus { background: var(--amber); color: var(--ink); }

.negative-art {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
}
.neg-chart {
  width: 100%; max-width: 420px; height: auto;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  box-shadow: var(--shadow-card);
}
.neg-caption {
  font-size: 12.5px; color: var(--muted); margin: 4px 0 0; text-align: center;
}

/* ── Widgets (showcase) — images constrained, content-first ──────────────── */
.widgets {
  background: var(--ink); color: var(--paper);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.widgets::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(255, 176, 32, 0.15), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(0, 168, 107, 0.12), transparent 60%);
  pointer-events: none;
}
.widgets-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x);
  position: relative; z-index: 1;
}
.widgets .eyebrow { color: var(--amber); }
.widgets .display-2 { color: var(--paper); }
.widgets .display-2 em { color: var(--paper); }
.widgets .display-2 em::before { background: var(--amber); opacity: 0.85; }
.widgets .section-sub { color: rgba(250, 250, 247, 0.7); }

.widgets-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin: 60px 0 32px;
}
.widget-shot {
  margin: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.widget-shot:hover { transform: translateY(-4px); border-color: rgba(255, 176, 32, 0.4); }

/* The frame constrains the iPhone screenshots so they don't dominate. */
.widget-frame {
  width: 100%;
  max-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
}
.widget-frame img {
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.widget-shot figcaption h3 {
  font-family: var(--body);
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
  margin: 0 0 6px; color: var(--paper);
}
.widget-shot figcaption p { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(250, 250, 247, 0.65); }

.widgets-note {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 176, 32, 0.3);
  border-radius: 999px;
  background: rgba(255, 176, 32, 0.08);
  color: var(--amber);
  font-size: 14px; margin: 0 auto;
}
.dot-plus {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 12px var(--amber);
}

/* ── Screens ──────────────────────────────────────────────── */
.screens { max-width: var(--max); margin: 0 auto; padding: 100px var(--pad-x); }
.screens-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.screen { margin: 0; display: flex; flex-direction: column; gap: 22px; }
.phone-sm { width: 100%; padding: 7px; border-radius: 32px; }
.phone-sm img { border-radius: 24px; }
.phone-sm::after { width: 60px; height: 18px; top: 13px; border-radius: 12px; }
.screen figcaption h3 {
  font-family: var(--body);
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.screen figcaption p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ── Plus — Free vs Plus comparison ──────────────────────────────────────────────── */
.plus { max-width: var(--max); margin: 0 auto; padding: 40px var(--pad-x) 80px; }
.plus .section-head { margin-bottom: 48px; }

.display-plus {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(48px, 7vw, 88px); line-height: 0.95; letter-spacing: -0.03em;
  margin: 14px 0 20px;
}
.display-plus em { font-style: italic; color: var(--amber-deep); }
.display-plus em::before { display: none; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.compare-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.compare-col:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.col-free {
  background: linear-gradient(180deg, #fff 0%, #FAFAF7 100%);
}
.col-plus {
  background: linear-gradient(180deg, #FFF8E8 0%, #FFFAEC 100%);
  border-color: var(--amber);
  box-shadow: 0 24px 48px -32px rgba(255, 176, 32, 0.6), 0 0 0 1px var(--amber);
}

.compare-head { margin-bottom: 20px; }
.compare-badge {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  padding: 5px 10px; border-radius: 6px;
  margin-bottom: 14px;
}
.badge-free { background: var(--mint); color: white; }
.badge-plus { background: var(--ink); color: var(--amber); }
.price-tag-sm { font-family: var(--display); font-size: 16px; font-style: italic; letter-spacing: -0.02em; }
.price-once-sm { font-weight: 500; letter-spacing: 0.08em; opacity: 0.7; }

.compare-head h3 {
  font-family: var(--body);
  font-size: 22px; font-weight: 600; letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.compare-sub { margin: 0; font-size: 13.5px; color: var(--muted); }

.compare-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.compare-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.5; color: var(--ink-soft);
}
.check { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 3px; }
.check-free { color: var(--mint); }
.check-plus { color: var(--amber-deep); }

/* ── Feature: provider name line ──────────────────────────────────────────────── */
.feature-providers {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted-2);
  letter-spacing: 0.01em;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; padding: 60px var(--pad-x) 80px; }
.faq-list {
  display: grid; gap: 12px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-family: var(--body);
  font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em;
  margin: 0; color: var(--ink);
  line-height: 1.4;
}
.faq-chev {
  flex: 0 0 12px;
  width: 12px; height: 12px;
  border-right: 1.8px solid var(--muted);
  border-bottom: 1.8px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  margin-top: -4px;
}
.faq-item[open] .faq-chev { transform: rotate(-135deg); margin-top: 4px; }
.faq-item p {
  margin: 12px 0 0;
  font-size: 15px; line-height: 1.6; color: var(--muted);
  max-width: 720px;
}

/* ── About (LLM-extractable factual paragraph) ──────────────────────────────────────────────── */
.about {
  max-width: 820px;
  margin: 0 auto;
  padding: 30px var(--pad-x) 30px;
  text-align: center;
}
.about-heading {
  font-family: var(--body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 10px;
}
.about-body {
  margin: 0 auto;
  font-size: 15px; line-height: 1.65;
  color: var(--muted);
  max-width: 720px;
}

/* ── Final CTA ──────────────────────────────────────────────── */
.final-cta { max-width: 760px; margin: 0 auto; padding: 60px var(--pad-x) 120px; text-align: center; }
.final-cta .eyebrow { display: inline-block; margin-bottom: 8px; }
.final-cta .btn { margin-top: 16px; }
.final-req { margin: 20px 0 0; font-size: 13px; color: var(--muted-2); letter-spacing: 0.04em; }

/* ── Footer ──────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); background: var(--paper); padding: 40px var(--pad-x); }
.foot-row {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-brand img { border-radius: 7px; box-shadow: 0 2px 6px -2px rgba(14, 15, 18, 0.2); }
.foot-name { display: block; font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.foot-tag { display: block; font-size: 13px; color: var(--muted); }
.foot-links { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
.foot-links a:hover { color: var(--ink); }
.foot-meta { max-width: var(--max); margin: 28px auto 0; font-size: 12.5px; color: var(--muted-2); text-align: center; letter-spacing: 0.01em; }

/* ── Page-load stagger ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .live-pill, .display, .lede, .hero-bullets, .cta-row, .cta-meta,
  .phone-hero, .callout-card {
    opacity: 0; transform: translateY(8px);
    animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .live-pill   { animation-delay: 0.05s; }
  .display     { animation-delay: 0.15s; }
  .lede        { animation-delay: 0.25s; }
  .hero-bullets{ animation-delay: 0.32s; }
  .cta-row     { animation-delay: 0.4s; }
  .cta-meta    { animation-delay: 0.46s; }
  .phone-hero  { animation-delay: 0.2s; transform: translateY(16px) rotate(-3deg); }
  .callout-card{ animation-delay: 0.5s; transform: translateY(16px) rotate(2deg); }
}
@keyframes rise { to { opacity: 1; transform: translateY(0) rotate(0); } }
.phone-hero { animation-name: riseRot; }
.callout-card { animation-name: riseRot2; }
@keyframes riseRot { to { opacity: 1; transform: translateY(0) rotate(-3deg); } }
@keyframes riseRot2 { to { opacity: 1; transform: translateY(0) rotate(2deg); } }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-art { min-height: 520px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .negative-grid { grid-template-columns: 1fr; gap: 32px; }
  .widgets-stage { grid-template-columns: 1fr; gap: 24px; }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; gap: 16px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .trust-item:nth-child(3) { border-left: 0; }
}
@media (max-width: 720px) {
  .topnav { display: none; }
  .topbar { grid-template-columns: auto 1fr auto; gap: 16px; padding: 18px var(--pad-x); }
  .top-actions { gap: 14px; }
  .brand-name { font-size: 15px; }
  .display { font-size: clamp(42px, 12vw, 72px); }
  .feature-grid { grid-template-columns: 1fr; }
  .screens-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone { width: 86%; max-width: 280px; margin: 0 auto; }
  .callout-card { right: 0; bottom: 30px; width: 220px; }
  .hero-art { min-height: 560px; }
  .foot-row { flex-direction: column; align-items: flex-start; }
  .widget-frame, .widget-frame img { max-height: 320px; }
}
@media (max-width: 480px) {
  .trust-row { grid-template-columns: 1fr 1fr; }
  .brand-name { display: none; }
  .topbar { padding: 16px var(--pad-x); }
  .lang-toggle { font-size: 12px; }
  .compare-col { padding: 28px 22px; }
  .negative-grid { padding: 28px 22px; }
}
