:root {
  --bg: #FAFAFA;
  --bg-elev: #F0F0F0;
  --surface: #FFFFFF;
  --card: #FFFFFF;
  --card-border: #E2E2E2;
  --hairline: #E8E8E8;
  --ink: #111111;
  --muted: #555555;
  --muted-soft: #777777;
  --line: rgba(17, 17, 17, 0.12);
  --cream: #111111;
  --accent: #111111;
  --cta-bg: #111111;
  --cta-ink: #FAFAFA;
  --ok-bg: #EFEFEF;
  --ok-ink: #111111;
  --err-bg: #F5F5F5;
  --err-ink: #222222;
  --radius: 16px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; color: var(--ink); }

.bg-paper {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 40%, #F5F5F5 100%);
}
.bg-paper::after {
  content: "";
  position: absolute; inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(17,17,17,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 10%, #000 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 10%, #000 15%, transparent 70%);
}

.wrap {
  position: relative; z-index: 1;
  max-width: 1080px; margin: 0 auto; padding: 16px 18px 56px;
}

/* ===== Header ===== */
.site-header {
  display: flex; align-items: center; gap: 14px;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.logo img {
  height: 30px; width: auto;
  filter: grayscale(1) contrast(1.05);
}
.header-nav {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.header-nav a {
  font-size: 13px; color: var(--muted);
  padding: 8px 12px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.header-nav a:hover { color: var(--ink); background: rgba(17,17,17,.05); }
.header-nav .nav-cta {
  background: var(--ink);
  color: var(--cta-ink);
  border: 1px solid var(--ink);
  font-weight: 600;
}
.header-nav .nav-cta:hover { background: #000; color: #fff; }
.badge {
  font-size: 12px; color: var(--muted);
  background: var(--surface);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--card-border);
}
@media (max-width: 720px) {
  .header-nav { display: none; }
}

/* ===== Typography ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 10px; font-weight: 650;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
}

h1 {
  font-size: clamp(28px, 5.6vw, 46px);
  line-height: 1.22; margin: 0 0 12px;
  letter-spacing: -.03em; font-weight: 750;
}
.lead { color: var(--muted); font-size: 15.5px; margin: 0 0 14px; max-width: 36em; }
.section-head { margin-bottom: 16px; }
.section-head h2, .companion h2, .cta-card h2, .faq h2, .shots h2, .letters-section h2, .creators h2 {
  font-size: clamp(22px, 3.8vw, 30px);
  margin: 0 0 10px; letter-spacing: -.02em; line-height: 1.3; font-weight: 720;
}
.hint { color: var(--muted); font-size: 14.5px; margin: 0; max-width: 42em; }

/* ===== Hero ===== */
.hero {
  display: grid; gap: 28px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stage { max-width: 380px; margin: 0 auto; }
}

.promise {
  border-radius: 14px; padding: 12px 14px; margin: 0 0 16px;
  font-size: 14.5px; font-weight: 600;
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--card-border);
}
.promise-icon { color: var(--ink); flex-shrink: 0; margin-top: 2px; }

.dual-cta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px;
}
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 12px; padding: 14px 22px;
  font-size: 15.5px; font-weight: 720; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s, border-color .2s;
  text-align: center;
}
.cta-btn.primary {
  background: var(--cta-bg); color: var(--cta-ink);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.cta-btn.primary:hover {
  transform: translateY(-2px);
  background: #000;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.cta-btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--card-border);
}
.cta-btn.ghost:hover {
  background: rgba(17,17,17,.04);
  border-color: #111;
  transform: translateY(-1px);
}
.cta-btn.sm { padding: 12px 18px; font-size: 14.5px; }
.cta-arrow { transition: transform .2s; }
.cta-btn.primary:hover .cta-arrow { transform: translateX(3px); }
.cta-sub { display: block; margin: 0 0 12px; font-size: 12px; color: var(--muted-soft); }

.audience-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.chip {
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--card-border);
  color: var(--ink);
  transition: background .2s, border-color .2s;
}
.chip:hover { background: #111; color: #fff; border-color: #111; }

.trust {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.trust span {
  font-size: 12px; color: var(--muted);
  background: var(--surface);
  padding: 6px 10px; border-radius: 999px;
  border: 1px solid var(--card-border);
}

/* ===== Hero stage / orbit ===== */
.hero-stage {
  position: relative;
  width: 100%;
  min-height: 420px;
}
.orbit {
  position: absolute; inset: -8% -6% 0;
  z-index: 3; pointer-events: none;
}
.orbit-ring {
  position: absolute; left: 50%; top: 46%;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring.r1 { width: 92%; padding-bottom: 92%; animation: spinSlow 48s linear infinite; }
.orbit-ring.r2 { width: 68%; padding-bottom: 68%; border-color: rgba(17,17,17,.06); animation: spinSlow 36s linear infinite reverse; }

.orbit-pip {
  position: absolute;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
  animation: floatY 5.5s ease-in-out infinite;
  user-select: none;
}
.orbit-pip.ot { width: 118px; top: -2%; left: 2%; animation-duration: 6.4s; }
.orbit-pip.or { width: 104px; top: 8%; right: -4%; animation-duration: 5.2s; animation-delay: -.7s; }
.orbit-pip.op { width: 98px; bottom: 18%; left: -6%; animation-duration: 6.8s; animation-delay: -1.5s; }
.orbit-pip.ol { width: 92px; top: 38%; right: -8%; animation-duration: 5.6s; animation-delay: -2.2s; }
.orbit-pip.oa { width: 112px; bottom: 4%; right: 10%; animation-duration: 7s; animation-delay: -.4s; }

.phone-wrap { position: relative; z-index: 2; max-width: 280px; margin: 28px auto 0; }
.phone-frame {
  position: relative; z-index: 1;
  width: 100%; max-width: 300px;
  aspect-ratio: 9 / 19.5;
  background: #111;
  border-radius: 28px;
  padding: 10px;
  box-shadow:
    0 0 0 1px #111,
    0 0 0 3px #FAFAFA,
    0 0 0 4px #CCC,
    0 24px 56px rgba(0,0,0,.18);
  overflow: hidden;
}
.phone-frame.sm { max-width: 100%; border-radius: 22px; padding: 8px; }
.phone-frame.placeholder {
  display: flex; flex-direction: column; gap: 10px;
  background: #111;
  padding: 18px 14px 14px;
}
.phone-frame.placeholder .ph-notch {
  width: 36%; height: 6px; border-radius: 999px;
  background: #333; margin: 0 auto 6px;
}
.phone-frame.placeholder .ph-bar {
  height: 10px; border-radius: 6px; background: #2A2A2A; width: 55%;
}
.phone-frame.placeholder .ph-card {
  flex: 1; min-height: 48px; border-radius: 12px;
  background: #1C1C1C; border: 1px solid #2E2E2E;
}
.phone-frame.placeholder .ph-card.short { flex: 0 0 36px; min-height: 36px; }
.phone-frame.placeholder .ph-row {
  display: flex; gap: 8px;
}
.phone-frame.placeholder .ph-row span {
  flex: 1; height: 28px; border-radius: 8px; background: #222; border: 1px solid #333;
}
.phone-frame.placeholder .ph-label {
  margin: 4px 0 0; text-align: center;
  font-size: 11px; color: #888; letter-spacing: .06em;
}
.caption {
  margin-top: 10px; text-align: center; font-size: 11px; color: var(--muted-soft);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 900px) {
  .orbit-pip.ot { width: 90px; }
  .orbit-pip.or { width: 80px; }
  .orbit-pip.op { width: 74px; }
  .orbit-pip.ol { width: 70px; }
  .orbit-pip.oa { width: 86px; }
  .hero-stage { min-height: 400px; }
}

/* ===== Urgency ===== */
.urgency-strip {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; margin-bottom: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--card-border);
}
.urgency-pill {
  flex-shrink: 0;
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  padding: 5px 10px; border-radius: 8px;
  background: var(--ink); color: var(--cta-ink);
}
.urgency-strip p { margin: 0; font-size: 14px; color: var(--muted); }
.urgency-strip strong { color: var(--ink); }

/* ===== Sections ===== */
.section, .shots, .faq { margin-bottom: 40px; }
.mid-cta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px; justify-content: center;
}

.benefits {
  display: grid; gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 820px) {
  .benefits { grid-template-columns: 1fr; }
}
.benefit {
  border-radius: 16px; padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--card-border);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.benefit:hover {
  transform: translateY(-3px);
  border-color: #111;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.benefit .step {
  font-size: 12px; font-weight: 700; color: var(--muted);
  letter-spacing: .06em; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.benefit .step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: #111; color: #fff;
  font-size: 12px;
}
.benefit h3 { font-size: 16px; margin: 0 0 8px; line-height: 1.35; }
.benefit p { margin: 0; font-size: 14px; color: var(--muted); }

/* ===== Letter alphabet section ===== */
.letters-section {
  margin-bottom: 40px;
  padding: 16px 0;
}
.letter-spell {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 8px 0 16px;
}
@media (max-width: 820px) {
  .letter-spell { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .letter-spell { grid-template-columns: repeat(2, 1fr); }
}
.letter-card {
  position: relative; margin: 0;
  text-align: center;
  padding: 18px 10px 14px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--card-border);
  overflow: hidden;
  animation: letterPop .7s ease both;
  animation-delay: calc(var(--i, 0) * .1s);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.letter-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #111;
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.letter-card img {
  position: relative; z-index: 1;
  margin: 0 auto; height: 150px; width: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.1));
}
.letter-card figcaption {
  position: relative; z-index: 1;
  margin-top: 10px; font-size: 13px; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.letter-mark {
  font-size: 22px; font-weight: 800; letter-spacing: .04em;
  color: var(--ink);
}
.letters-note {
  text-align: center; font-size: 13px; color: var(--muted-soft); margin: 0;
}
@keyframes letterPop {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Companion ===== */
.companion {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 22px 0 18px;
  margin-bottom: 40px;
  overflow: hidden;
}
.companion-head { padding: 0 24px 18px; }
.companion-head p { margin: 0; color: var(--muted); font-size: 14.5px; max-width: 42em; }
.tag {
  display: inline-block; margin-top: 14px;
  font-size: 13px; font-weight: 600;
  background: #111; color: #fff;
  padding: 8px 14px; border-radius: 999px;
}

.marquee {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  margin: 8px 0 20px;
}
.marquee-track {
  display: flex; align-items: center; gap: 28px;
  width: max-content;
  animation: marquee 36s linear infinite;
  padding: 12px 0;
}
.marquee-track img {
  flex: 0 0 auto;
  height: 118px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.1));
  transition: transform .25s ease;
}
.marquee-track img:hover { transform: scale(1.08); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0 18px;
}
@media (max-width: 820px) {
  .pip-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .pip-grid { grid-template-columns: repeat(2, 1fr); }
}
.pip-grid figure {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 12px 8px 10px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.pip-grid figure:hover {
  border-color: #111;
  transform: translateY(-2px);
}
.pip-grid img {
  margin: 0 auto;
  height: 72px; width: auto; object-fit: contain;
}
.pip-grid figcaption {
  font-size: 11px; color: var(--muted); margin-top: 6px; letter-spacing: .04em;
}

/* ===== Creators ===== */
.creators {
  position: relative;
  margin-bottom: 40px;
  padding: 24px 20px;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  background: var(--surface);
  overflow: hidden;
}
.creator-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
@media (max-width: 820px) {
  .creator-grid { grid-template-columns: 1fr; }
}
.creator-card {
  border-radius: 16px; padding: 20px 18px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  transition: transform .25s, border-color .25s;
}
.creator-card:hover {
  transform: translateY(-3px);
  border-color: #111;
}
.cc-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: #111; color: #fff;
  font-size: 16px; margin-bottom: 12px;
}
.creator-card h3 { font-size: 16px; margin: 0 0 8px; }
.creator-card p { margin: 0; font-size: 14px; color: var(--muted); }

.gift-sets, .plans { position: relative; z-index: 1; margin-bottom: 22px; }
.gift-title, .plans-title {
  font-size: 15px; margin: 0 0 12px; color: var(--ink); font-weight: 680;
}
.gift-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.gift-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  font-size: 14px; font-weight: 600;
}
.gift-chip.muted {
  color: var(--muted);
  font-weight: 500;
}
.gift-note {
  margin: 10px 0 0; font-size: 12px; color: var(--muted-soft);
}

.plan-row {
  display: grid; gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 820px) {
  .plan-row { grid-template-columns: 1fr; }
}
.plan-card {
  padding: 18px 16px; border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--card-border);
}
.plan-card.featured {
  border-color: #111;
  background: #111;
  color: #fff;
}
.plan-card.featured p { color: #CFCFCF; }
.plan-badge {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase;
  color: #111; background: #fff;
  padding: 3px 8px; border-radius: 6px; margin-bottom: 8px;
}
.plan-name {
  font-size: 18px; font-weight: 750; margin-bottom: 6px;
  letter-spacing: -.01em;
}
.plan-card p { margin: 0; font-size: 13.5px; color: var(--muted); }

.creator-disclaimer {
  position: relative; z-index: 1;
  padding: 14px 16px; margin-bottom: 20px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  font-size: 13px; color: var(--muted); line-height: 1.6;
}
.creator-disclaimer strong { color: var(--ink); }

/* ===== Shots ===== */
.grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 820px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.shot {
  display: flex; flex-direction: column; align-items: center; margin: 0;
}
.shot .phone-frame { max-width: 100%; }
.shot span {
  display: block; margin-top: 10px; font-size: 13px; color: var(--muted);
}

/* ===== CTA / form ===== */
.cta-card {
  position: relative;
  border-radius: 22px;
  padding: 28px 24px;
  margin-bottom: 40px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--card-border);
  box-shadow: 0 16px 48px rgba(0,0,0,.06);
}
.cta-lead { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; max-width: 36em; }

form { display: grid; gap: 10px; max-width: 100%; }
label { font-size: 13px; color: var(--muted); }
.form-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
input[type="email"] {
  flex: 1 1 200px;
  padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--card-border); font-size: 16px;
  background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
input[type="email"]:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17,17,17,.1);
}
.hp {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
button#submit {
  appearance: none; border: 0; border-radius: 12px;
  padding: 14px 20px;
  background: var(--cta-bg); color: var(--cta-ink);
  font-size: 15.5px; font-weight: 720; cursor: pointer;
  flex: 0 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s, opacity .2s, background .2s;
}
button#submit:hover {
  transform: translateY(-1px);
  background: #000;
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
}
button#submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.note { font-size: 12px; color: var(--muted-soft); margin: 4px 0 0; }

.ok, .err {
  display: none; padding: 14px; border-radius: 12px; font-size: 14px; margin-bottom: 12px;
  border: 1px solid var(--card-border);
}
.ok { background: var(--ok-bg); color: var(--ok-ink); }
.err { background: var(--err-bg); color: var(--err-ink); }

/* ===== FAQ ===== */
details {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 8px;
  transition: border-color .2s;
}
details[open] { border-color: #111; }
summary {
  cursor: pointer; font-weight: 650; font-size: 14.5px;
  list-style: none; display: flex; align-items: center; gap: 6px;
}
summary::-webkit-details-marker { display: none; }
summary::before {
  content: "Q";
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  font-size: 11px; font-weight: 800;
  background: #111; color: #fff;
  margin-right: 4px;
}
details p { margin: 12px 0 0; font-size: 14px; color: var(--muted); padding-left: 30px; }

/* ===== Footer ===== */
footer {
  margin-top: 12px; padding-top: 20px; border-top: 1px solid var(--card-border);
  color: var(--muted-soft); font-size: 12px;
}
footer a {
  text-decoration: underline; text-underline-offset: 2px;
  color: var(--muted);
}
footer a:hover { color: var(--ink); }
.fine { opacity: .75; }

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: calc(var(--reveal-i, 0) * .06s);
}
.reveal.in, .reveal.delay-1.in {
  opacity: 1; transform: translateY(0);
}
.site-header.reveal, .hero-copy.reveal, .hero-stage.reveal {
  opacity: 1; transform: none;
}
.hero-stage.reveal { animation: fadeUp .9s ease both; animation-delay: .12s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .orbit-pip, .orbit-ring,
  .letter-card, .reveal, .hero-stage.reveal {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.br-m { display: none; }
@media (max-width: 600px) {
  .br-m { display: inline; }
  .urgency-strip { flex-direction: column; gap: 8px; }
}

/* ===== Signup 2-col ===== */
.cta-card-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-form-col { min-width: 0; }
.cta-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 8px;
  min-height: 220px;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--card-border);
}
.cta-pip-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.cta-pip-row img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.1));
  transition: transform .25s ease;
  animation: floatY 5.2s ease-in-out infinite;
}
.cta-pip-row img:nth-child(1) { animation-delay: 0s; width: 78px; }
.cta-pip-row img:nth-child(2) { animation-delay: -.6s; width: 70px; }
.cta-pip-row img:nth-child(3) { animation-delay: -1.2s; width: 68px; }
.cta-pip-row img:nth-child(4) { animation-delay: -1.8s; width: 66px; }
.cta-pip-row img:nth-child(5) { animation-delay: -2.4s; width: 74px; }
.cta-pip-row img:hover { transform: translateY(-6px) scale(1.06); }
.cta-visual-label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
  margin: 0;
}
.cta-visual-sub {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: 0;
  max-width: 22em;
}
@media (max-width: 820px) {
  .cta-card-inner { grid-template-columns: 1fr; gap: 20px; }
  .cta-visual { min-height: 0; padding: 16px 12px; order: 2; }
  .cta-form-col { order: 1; }
  .cta-pip-row img { width: 56px !important; }
}
