/* ═══════════════════════════════════════════
   LANDING PAGE — hero, stats, steps, features, pricing
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  padding: 72px 32px 60px;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero h1 strong {
  font-weight: 600;
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 56px;
}

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 24px;
}

.proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text3);
}

.proof-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Stats strip ── */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 22px 20px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text3);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ── Section wrapper ── */
.section {
  padding: 56px 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ── Steps / how it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.step {
  background: var(--bg);
  padding: 32px 28px;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step p { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.2s;
}

.feature:hover { background: var(--bg2); }

.feature-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 16px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.feature p { font-size: 13px; color: var(--text2); line-height: 1.7; }

.feature-tag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.ftag-live { background: var(--accent-glow); color: var(--accent); border: 1px solid var(--accent-border); }
.ftag-new { background: rgba(72,149,239,0.1); color: var(--blue); border: 1px solid rgba(72,149,239,0.2); }
.ftag-pro { background: rgba(244,162,97,0.1); color: var(--amber); border: 1px solid rgba(244,162,97,0.2); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
  position: relative;
}

.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(22,163,74,0.04) 0%, var(--surface) 100%);
}

.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--on-accent, #000);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price sup {
  font-size: 20px;
  vertical-align: super;
  font-weight: 500;
}

.plan-price span {
  font-size: 16px;
  color: var(--text3);
  font-family: var(--font-body);
  font-weight: 300;
}

.plan-desc {
  font-size: 13px;
  color: var(--text2);
  margin: 12px 0 24px;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  padding: 9px 0;
  font-size: 13px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 1px;
}

.plan-features li.off {
  color: var(--text3);
  text-decoration: line-through;
}

.plan-features li.off::before { content: '—'; color: var(--text3); }

.plan-btn-wrap { width: 100%; }

.plan-btn {
  width: 100%;
  padding: 13px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

/* ── Video section ── */
.video-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

.video-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px var(--border), 0 24px 64px rgba(0,0,0,0.4);
}

.video-frame-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(22,163,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.video-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 24px;
}

.video-play-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--accent-border);
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  cursor: default;
}

.video-play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent, #000);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px;
}

.video-soon-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.video-soon-sub {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 16px;
}

.video-notify-row {
  display: flex;
  gap: 8px;
  max-width: 320px;
  margin: 0 auto;
}

.video-notify-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
}

.video-notify-input:focus { border-color: var(--accent); }
.video-notify-input::placeholder { color: var(--text3); }

.video-notify-btn {
  background: var(--accent);
  color: var(--on-accent, #000);
  border: none;
  border-radius: var(--radius);
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.video-notify-btn:hover { opacity: 0.85; }
.video-notify-btn:disabled { opacity: 0.5; cursor: default; }

.video-captions {
  max-width: 1160px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.vcap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text2);
}

.vcap-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.vcap-sep {
  color: var(--text3);
  font-size: 18px;
  line-height: 1;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testi-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-quote {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.testi-role {
  font-size: 11px;
  color: var(--text3);
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-a {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

.faq-a em { color: var(--accent); font-style: italic; }
.faq-a code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--accent-glow);
  color: var(--accent);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--accent-border);
}

/* ── Final CTA section ── */
.final-cta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 32px;
  text-align: center;
}

.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.final-cta-title em {
  font-style: italic;
  color: var(--accent);
}

.final-cta-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.final-cta-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text3);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

.final-cta-dot { color: var(--border2); }

/* ── Footer ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 32px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.12em;
}

.footer-brand-tagline {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-brand-disclaimer {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.6;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--accent); }

.footer-source {
  display: block;
  font-size: 12px;
  color: var(--text3);
  font-family: var(--font-mono);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.footer-legal {
  max-width: 1160px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text3);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a,
.footer-legal a {
  color: var(--text3);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal-links a:hover,
.footer-legal a:hover { color: var(--text2); }

/* ── Responsive adjustments ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 20px 48px; gap: 32px; }
  .hero-sub { max-width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .video-section-inner { grid-template-columns: 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 640px) {
  .video-captions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vcap-sep { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .final-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .stat { padding: 20px 14px; }
  .stat-num { font-size: 28px; }
  .plan { padding: 28px 20px; }
  .site-footer { padding: 40px 16px 24px; }
  .footer-legal { font-size: 10px; }
  .video-section { padding: 48px 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   THE IRIS — aperture landing (2026-07 redesign, design option B)
   Everything above this banner styles the RETIRED landing markup and is kept
   only so old cached HTML renders; new rules live below, prefixed ir-/irp-.
   ═══════════════════════════════════════════════════════════════════════════ */

.ir-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px 70px;
  overflow: hidden;
}
.ir-rings {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  perspective: 900px;
  pointer-events: none;
}
.ir-core {
  position: absolute;
  width: 210px; height: 210px; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%,
              rgba(154,140,255,0.50), rgba(109,124,255,0.20) 46%, transparent 70%);
  filter: blur(2px);
}
[data-theme="light"] .ir-core {
  background: radial-gradient(circle at 38% 34%,
              rgba(97,85,245,0.30), rgba(97,85,245,0.12) 46%, transparent 70%);
}
.ir-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid var(--accent-border);
  /* NO transform-style: preserve-3d. The rings have no 3D children, so it does
     nothing visually — but it keeps a live 3D rendering context that Chrome
     resolves on the MAIN THREAD every frame, across three big (≤620px) elements.
     That pegged the main thread hard enough to freeze the tab. The rotateX tilt
     comes from the parent's `perspective` alone. will-change + backface promote
     each ring to its own GPU layer so the spin is pure compositor work. */
  will-change: transform;
  backface-visibility: hidden;
  animation: ir-spin 26s linear infinite;
}
.ir-r1 { width: 320px; height: 320px; animation-duration: 22s;
         border-color: rgba(109,124,255,0.50); }
.ir-r2 { width: 470px; height: 470px; animation-duration: 34s;
         animation-direction: reverse; border-color: rgba(154,140,255,0.28); }
.ir-r3 { width: 620px; height: 620px; animation-duration: 48s;
         border-color: rgba(109,124,255,0.16); }
[data-theme="light"] .ir-r1 { border-color: rgba(97,85,245,0.45); }
[data-theme="light"] .ir-r2 { border-color: rgba(97,85,245,0.26); }
[data-theme="light"] .ir-r3 { border-color: rgba(97,85,245,0.14); }
@keyframes ir-spin {
  from { transform: rotateX(68deg) rotateZ(0); }
  to   { transform: rotateX(68deg) rotateZ(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .ir-ring { animation: none; transform: rotateX(68deg); will-change: auto; }
}

.ir-hero-inner { position: relative; max-width: 640px; }
.ir-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
}
.ir-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 62px);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 18px 0 16px;
  color: var(--text);
  text-wrap: balance;
}
.ir-sub {
  color: var(--text2); font-size: 16px; line-height: 1.6;
  max-width: 46ch; margin: 0 auto 26px;
}
.ir-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ir-appstore {
  display: inline-block; margin-top: 14px;
  font-size: 13px; color: var(--text2); text-decoration: none;
  border: 1px solid var(--border2); border-radius: 10px; padding: 8px 16px;
}
.ir-appstore:hover { border-color: var(--accent); color: var(--accent); }
.ir-proof {
  display: flex; gap: 34px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px;
}
.ir-proof b {
  display: block; font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.ir-proof span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3);
}

/* Data sources strip */
.ir-sources {
  display: flex; gap: 10px 26px; flex-wrap: wrap;
  align-items: center; justify-content: center;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text3); font-size: 13px; letter-spacing: 0.04em;
}
.ir-sources b {
  font-family: var(--font-mono); font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text2);
}

/* Three pillars */
.ir-feats-section { padding-top: 56px; }
.ir-feats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  perspective: 1100px;
}
.ir-feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px 20px 20px;
  transform: rotateX(4deg); transform-origin: top;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.ir-feat:hover { transform: rotateX(0) translateY(-3px); border-color: var(--accent-border); }
.ir-feat-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-glow); color: var(--accent);
  display: grid; place-items: center;
  font-size: 17px; font-weight: 800;
  margin-bottom: 12px;
}
.ir-feat h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--text); }
.ir-feat p  { font-size: 13px; line-height: 1.6; color: var(--text2); margin: 0; }

/* Proof scenes */
.ir-scenes { display: flex; flex-direction: column; gap: 64px; }
.ir-scene {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.ir-scene-flip .ir-scene-copy { order: 2; }
.ir-scene-flip .ir-mock       { order: 1; }
.ir-scene-copy p { color: var(--text2); font-size: 14.5px; line-height: 1.65; max-width: 52ch; }
.ir-mock {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 18px 20px;
  box-shadow: var(--shadow-lg), 0 0 60px var(--accent-glow);
}
.ir-mock-tag {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 8px;
}
.ir-mock h5 { font-size: 15.5px; font-weight: 700; line-height: 1.35; margin: 0 0 6px; color: var(--text); }
.ir-mock p  { font-size: 12.5px; line-height: 1.6; color: var(--text2); margin: 0 0 6px; }
.ir-mock-q  {
  font-size: 14px; font-weight: 600; color: var(--text);
  background: var(--bg3); border-radius: 10px; padding: 9px 12px; margin-bottom: 10px;
}
.ir-mock-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px; color: var(--text2);
  padding: 8px 2px; border-top: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}
.ir-up { color: var(--green); }

/* Pricing — Netflix-style gradient headers over token surfaces */
.irp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 8px;
}
.irp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.irp-card:hover { transform: translateY(-3px); border-color: var(--accent-border); }
.irp-featured { border-color: var(--accent-border); box-shadow: 0 0 40px var(--accent-glow); }
.irp-head {
  padding: 14px 18px;
  font-size: 16px; font-weight: 800; color: #fff;
  display: flex; justify-content: space-between; align-items: baseline;
}
.irp-head span {
  font-size: 11px; font-weight: 600; opacity: 0.85;
  letter-spacing: 0.02em;
}
/* Indigo→violet family, one hue step per tier — same ramp as the app mockups */
.irp-head-starter { background: linear-gradient(120deg, #3E3A8F, #5B54D6); }
.irp-head-pro     { background: linear-gradient(120deg, #4D46C9, #8A5CF0); }
.irp-head-elite   { background: linear-gradient(120deg, #5D54E8, #B44BD2); }
.irp-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.irp-body .plan-price {
  font-size: 30px; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.irp-body .plan-price sup  { font-size: 15px; font-weight: 600; }
.irp-body .plan-price span { font-size: 13px; font-weight: 400; color: var(--text3); }
.irp-body .plan-price-annual { font-size: 12px; color: var(--text3); margin-top: 2px; }
.irp-features {
  list-style: none; padding: 0; margin: 14px 0 18px; flex: 1;
}
.irp-features li {
  font-size: 13px; color: var(--text2); line-height: 1.5;
  padding: 5px 0 5px 22px; position: relative;
}
.irp-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 800;
}

@media (max-width: 860px) {
  .ir-feats, .irp-grid { grid-template-columns: 1fr; }
  .ir-scene { grid-template-columns: 1fr; gap: 18px; }
  .ir-scene-flip .ir-scene-copy { order: 1; }
  .ir-scene-flip .ir-mock       { order: 2; }
  .ir-hero { min-height: 480px; padding: 70px 20px 54px; }
  .ir-r3 { display: none; }
}
