/*
  OfEngine — sales landing page styles (v4)
  Direction: light mode, pink primary, split hero with video right.
  References: cal.com (light + rose), linear.app (light typography),
  resend.com (italic-serif accent), tally.so (split hero), stripe.com
  (testimonial slider with bullets).
  Fonts: Geist (body), Instrument Serif (display italic), Geist Mono (labels).
*/

:root {
  --bg:        #FFFFFF;
  --bg-soft:   #FAFAFB;
  --bg-elev:   #FFFFFF;
  --bg-tint:   #FFF4F8;
  --fg:        #0A0A0B;
  --fg-2:      #18181B;
  --fg-soft:   #2A2A2E;
  --muted:     #5F5F66;
  --muted-2:   #8E8E94;
  --border:    #E8E8EB;
  --border-2:  #D2D2D6;

  --accent:      #EC4899;
  --accent-2:    #DB2777;
  --accent-3:    #BE185D;
  --accent-soft: #FCE7F3;
  --accent-glow: rgba(236, 72, 153, 0.18);

  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', 'Cascadia Code', monospace;

  --max:       1180px;
  --max-prose: 720px;
  --radius:    14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15,15,20,0.04), 0 1px 1px rgba(15,15,20,0.02);
  --shadow-md: 0 4px 16px -4px rgba(15,15,20,0.06), 0 2px 6px -2px rgba(15,15,20,0.04);
  --shadow-lg: 0 30px 80px -20px rgba(15,15,20,0.12), 0 12px 30px -10px rgba(15,15,20,0.08);
  --shadow-pink: 0 14px 40px -10px var(--accent-glow);
}

/* ─── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg-2);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01", "ss02", "cv01", "cv02";
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ─── Typography ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-glow); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--fg);
  max-width: 820px;
}
.section-h2 em {
  font-style: italic;
  color: var(--accent);
}
.section-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: var(--max-prose);
  margin: 0 0 64px;
  line-height: 1.6;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn-primary, .btn-ghost, .btn-primary-sm, .btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary {
  padding: 13px 22px;
  font-size: 15px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, var(--shadow-pink);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 18px 44px -10px var(--accent-glow);
}
.btn-ghost {
  padding: 13px 22px;
  font-size: 15px;
  background: var(--bg);
  color: var(--fg);
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--fg);
}
.btn-primary-sm {
  padding: 9px 16px;
  font-size: 13px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 16px -4px var(--accent-glow);
}
.btn-primary-sm:hover { background: var(--accent-2); }
.btn-ghost-sm {
  padding: 9px 14px;
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
}
.btn-ghost-sm:hover { color: var(--accent); }

/* ─── Sticky nav ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 50;
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* Brand mark — pure SVG "Oe" monogram. Slate "O" (Of) + gradient "E"
   (Engine). Two letterforms only, large enough to read as a logo not an
   icon. Pattern inspired by Mubi / HBO Max where the letterforms ARE
   the mark — no chip, no wordmark next to it, no fluff. */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand-mark {
  height: 30px;
  width: auto;
  display: block;
  transition: transform 0.2s, filter 0.2s;
}
.brand:hover .brand-mark {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px var(--accent-glow));
}

.nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--fg-soft); font-weight: 500; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; }
.nav-toggle {
  display: none;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 7px;
  color: var(--fg);
}
.nav-toggle svg { width: 18px; height: 18px; }
.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 8px 24px 14px;
}
.nav-mobile a {
  display: block; padding: 10px 0;
  font-size: 15px; color: var(--fg);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.nav-mobile a:last-child { border-bottom: 0; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-mobile.open { display: block; }
  .nav-cta .btn-ghost-sm { display: none; }
}

/* ─── Hero (split: text left, video right) ────────────────────── */
.hero {
  position: relative;
  padding: 170px 24px 130px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 70%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { text-align: left; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-soft);
  max-width: 540px;
  margin: 0;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Aurora orbs */
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.6;
  pointer-events: none;
  animation: drift 22s ease-in-out infinite alternate;
  z-index: 0;
}
.orb-pink {
  width: 520px; height: 520px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(236,72,153,0.36), transparent 70%);
}
.orb-coral {
  width: 380px; height: 380px;
  bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(251,113,133,0.26), transparent 70%);
  animation-delay: -8s;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

/* Hero video wrap (right column) */
.hero-video-wrap {
  position: relative;
}
.hero-video-wrap::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 60%);
  filter: blur(28px);
  z-index: 0;
  border-radius: 32px;
}

@media (max-width: 980px) {
  .hero { padding: 130px 24px 90px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-text { text-align: center; }
  .hero-sub { margin: 0 auto; }
  .hero-cta { justify-content: center; }
}

/* ─── Lite YouTube ────────────────────────────────────────────── */
.lite-yt {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0f0f0 center / cover no-repeat;
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
  z-index: 1;
}
.lite-yt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.30) 100%);
  z-index: 1;
}
.lite-yt:hover { transform: translateY(-2px); }
.lite-yt-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: transparent;
  border: 0;
  z-index: 2;
}
.lite-yt-play::before {
  content: "";
  width: 78px; height: 78px;
  background: var(--accent);
  border-radius: 999px;
  position: absolute;
  box-shadow: 0 14px 36px -6px var(--accent-glow), inset 0 0 0 1px rgba(255,255,255,0.25);
  transition: transform 0.18s ease;
}
.lite-yt:hover .lite-yt-play::before { transform: scale(1.08); }
.lite-yt-play svg {
  position: relative;
  color: #fff;
  margin-left: 4px;
  z-index: 1;
}
.lite-yt-label {
  position: absolute;
  bottom: 14px; left: 18px;
  z-index: 2;
  font-size: 13px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.lite-yt iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; z-index: 3; }

/* ─── Section spacing + alt backgrounds ───────────────────────── */
.pain, .features, .testimonials-slider-section, .comparison, .scale, .pricing, .faq, .final-cta {
  padding: 140px 24px;
  border-bottom: 1px solid var(--border);
}
.features, .pricing, .faq { background: var(--bg-soft); }
.scale { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); }

/* ─── Pain → Promise ──────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.pain-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--bg-elev);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.pain-grid article:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pain-q {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 500;
}
.pain-a {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 800px) { .pain-grid { grid-template-columns: 1fr; } }

/* ─── Categorized feature list (3×3 grid, 9 cards) ────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.cat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-pink);
}
.cat-card header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
}
.cat-icon svg { width: 16px; height: 16px; }
.cat-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.cat-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-card li {
  font-size: 13.5px;
  color: var(--fg-soft);
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.45;
}
.cat-card li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
  transform: translateY(2px);
}
.cat-card.cat-ai {
  background: linear-gradient(180deg, var(--accent-soft), var(--bg-elev) 60%);
  border-color: var(--accent);
}
.cat-card.cat-ai header { border-bottom-color: rgba(236,72,153,0.18); }

@media (max-width: 1080px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

/* ─── Testimonial slider (big video + bullets) ─────────────────── */
.t-slider {
  margin-top: 36px;
  position: relative;
}
.t-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.t-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.t-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 4px; /* tiny gap between slides during transition */
}
.t-video {
  max-width: 920px;
  margin: 0 auto;
}
.t-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 28px auto 12px;
  max-width: 760px;
  text-align: center;
}
.t-by {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}
.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.t-role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.t-arrow {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--fg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.t-arrow:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.t-arrow:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.t-bullets { display: flex; gap: 8px; }
.t-bullet {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--border-2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.18s ease;
}
.t-bullet:hover { background: var(--muted); }
.t-bullet.active {
  background: var(--accent);
  width: 26px;
  box-shadow: 0 4px 12px -2px var(--accent-glow);
}

/* ─── Comparison ────────────────────────────────────────────────── */
.compare-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  box-shadow: var(--shadow-md);
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 760px;
}
.compare th, .compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--fg-2);
}
.compare thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: var(--bg-soft);
  position: sticky;
  top: 0;
}
.compare th.col-feature, .compare td.col-feature { min-width: 220px; }
.compare th:not(.col-feature), .compare td:not(.col-feature) { text-align: center; }
.compare .col-us {
  background: linear-gradient(180deg, var(--accent-soft), rgba(252,231,243,0.4));
  color: var(--accent-3);
  font-weight: 500;
  border-left: 1px solid var(--accent-soft);
  border-right: 1px solid var(--accent-soft);
}
.compare thead th.col-us {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--accent-3);
}
.compare td.yes::before { content: "●"; margin-right: 8px; color: var(--accent); }
.compare td.no { color: var(--muted-2); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover { background: rgba(236,72,153,0.025); }
.compare tr.compare-section td {
  background: rgba(15, 23, 42, 0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 14px 18px 6px;
  border-bottom: 0;
  text-align: left;
}
.compare tr.compare-section:hover td { background: rgba(15, 23, 42, 0.04); }
.compare tr.compare-section--win td {
  background: linear-gradient(90deg, rgba(236,72,153,0.10), rgba(168,85,247,0.10));
  color: var(--accent-3);
}
.compare tr.compare-section--win:hover td { background: linear-gradient(90deg, rgba(236,72,153,0.10), rgba(168,85,247,0.10)); }
.compare-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted-2);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Collapsible compare table — hides everything past ~7 rows behind a
   fade until the user expands. Cuts perceived page length on mobile
   without dropping any rows. */
.compare-collapsible {
  position: relative;
  max-height: 560px;
  overflow: hidden;
  /* Re-enable horizontal scroll inside the collapsible. `overflow: hidden`
     was clipping both axes — on mobile the table is wider than the screen,
     so the competitor columns were getting chopped off with no way to
     scroll to them. overflow-x:auto restores the swipe affordance while
     overflow-y stays hidden for the collapse effect. */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.compare-collapsible.is-expanded {
  max-height: 3000px;
}
.compare-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 55%, var(--bg) 100%);
  pointer-events: none;
  transition: opacity 0.25s;
}
.compare-collapsible.is-expanded .compare-fade {
  opacity: 0;
}
.compare-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px auto 0;
  padding: 10px 20px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px;
  color: var(--accent-3);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.compare-toggle:hover {
  background: linear-gradient(90deg, rgba(236,72,153,0.10), rgba(168,85,247,0.10));
}
.compare-toggle:active { transform: translateY(1px); }
.compare-toggle__icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.compare-toggle[aria-expanded="true"] .compare-toggle__icon {
  transform: rotate(180deg);
}

/* ─── Built for scale section ─────────────────────────────────── */
.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.scale-cell {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.scale-cell:hover { border-color: var(--accent); transform: translateY(-2px); }
.scale-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 14px;
}
.scale-icon svg { width: 18px; height: 18px; }
.scale-cell h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.scale-cell p {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) { .scale-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .scale-grid { grid-template-columns: 1fr; } }

/* ─── Pricing ─────────────────────────────────────────────────── */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.plan {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.plan:hover { border-color: var(--border-2); box-shadow: var(--shadow-md); }
.plan h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 16px;
}
.plan-price {
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.plan-price .amount {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}
.plan-price .suffix {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.plan-tagline {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0 22px;
  min-height: 36px;
  line-height: 1.45;
}
.plan ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 22px;
}
.plan li {
  font-size: 14px;
  color: var(--fg-soft);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.45;
}
.plan li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
  transform: translateY(2px);
}
.plan-cta { width: 100%; justify-content: center; }

/* Hidden bullets when card is collapsed. Click "See more" to reveal. */
.plan-features { flex: 1; }
.plan-features .plan-extra { display: none; }
.plan.expanded .plan-features .plan-extra { display: flex; }

.plan-show-more {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--border);
  padding: 12px 0 14px;
  margin: 4px 0 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: color 0.15s ease;
}
.plan-show-more:hover { color: var(--accent); }
.plan.expanded .plan-show-more { display: none; }

/* Subtler source-code line — italic mono, no pink pill. */
.plan-source {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-style: italic;
}
.plan-footer {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-soft);
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 500;
}
.plan-popular {
  background: linear-gradient(180deg, var(--accent-soft), var(--bg-elev) 50%);
  border-color: var(--accent);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 18px 44px -16px var(--accent-glow);
  transform: translateY(-4px);
}
.plan-popular h3 { color: var(--accent); }
.plan-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  box-shadow: var(--shadow-pink);
}
.payment-note {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
@media (max-width: 1080px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .plans { grid-template-columns: 1fr; } .plan-popular { transform: none; } }

/* ─── Custom request (FULL-BLEED section) ─────────────────────── */
.custom {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg) 60%, var(--bg-tint) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding: 160px 24px;
}
.custom-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.custom .eyebrow { justify-content: center; }
.custom .section-h2 { margin: 0 auto 14px; }
.custom-text {
  font-size: 17px;
  color: var(--fg-soft);
  max-width: 600px;
  margin: 6px auto 32px;
  line-height: 1.6;
}
.custom-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) { .custom { padding: 90px 24px; } }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq .container { text-align: center; }
.faq-list {
  max-width: var(--max);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  text-align: left;
  align-items: start;
}
@media (min-width: 800px) {
  .faq-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
  }
}
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.faq details:hover { border-color: var(--border-2); }
.faq details[open] {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft), var(--bg-elev) 60%);
  box-shadow: var(--shadow-md);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 12px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F5F66' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>") center/contain no-repeat;
  transition: transform 0.18s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.final-cta {
  text-align: center;
  border-bottom: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  pointer-events: none;
  filter: blur(80px);
}
.final-cta h2 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--fg);
}
.final-cta h2 em { font-style: italic; color: var(--accent); }
.final-cta p {
  position: relative;
  color: var(--fg-soft);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 28px;
}
.final-cta .hero-cta { position: relative; margin-top: 0; justify-content: center; display: flex; }

/* ─── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 68px 24px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: 60px;
}
.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 280px;
}
.footer-copy {
  margin-top: 22px !important;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-2) !important;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-h {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 14px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: var(--fg-soft);
  font-size: 14px;
  transition: color 0.16s ease;
}
.footer ul a:hover { color: var(--accent); }
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Tech-stack marquee (infinite logo scroll) ───────────────── */
.stack-marquee-section {
  padding: 56px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.stack-eyebrow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 32px;
}
.stack-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.stack-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 50s linear infinite;
  will-change: transform;
}
.stack-marquee:hover .stack-track { animation-play-state: paused; }
.stack-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.stack-item:hover { color: var(--accent); }
.stack-item img {
  width: 22px; height: 22px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.stack-item:hover img { opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .stack-track { animation: none; }
}

::selection { background: var(--accent); color: #fff; }
::-moz-selection { background: var(--accent); color: #fff; }

/* ─────────────────────────────────────────────────────────────
   /vs/* comparison pages — article-style layout that inherits the
   landing's brand tokens but with a longer narrative content rhythm.
   ───────────────────────────────────────────────────────────── */
.vs-article { padding: 110px 24px 80px; }
.vs-container { max-width: 820px; margin: 0 auto; }

.breadcrumb {
  font-size: 12px;
  color: var(--muted-2);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--muted-2); }
.breadcrumb a:hover { color: var(--accent-3); }

.vs-header { margin-bottom: 56px; }
.vs-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--fg);
  margin: 8px 0 22px;
}
.vs-h1 em { font-style: italic; color: var(--accent-3); }

.vs-byline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: var(--muted-2);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.vs-author a { color: var(--fg); font-weight: 600; }
.vs-author a:hover { color: var(--accent-3); }
.vs-author-role { color: var(--muted-2); }
.vs-date { color: var(--muted-2); }

.vs-tldr {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-soft);
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 10px;
  margin: 0 0 28px;
}
.vs-tldr strong { color: var(--fg); font-weight: 600; }

.vs-scorecard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.vs-score-cell {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.vs-score-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.vs-score-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}

.vs-section { margin: 56px 0; }
.vs-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--fg);
  margin: 0 0 18px;
}
.vs-section h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--fg);
}
.vs-section p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0 0 16px;
}
.vs-section p code,
.vs-section li code,
.vs-section td code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--fg);
}
.vs-section-sub {
  font-size: 14px !important;
  color: var(--muted-2) !important;
  margin-top: -10px !important;
  margin-bottom: 22px !important;
}

.vs-list { padding-left: 22px; margin: 0 0 16px; }
.vs-list li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin-bottom: 14px;
}
.vs-list strong { color: var(--fg); font-weight: 600; }
.vs-list-plain { list-style: none; padding: 0; margin: 0 0 16px; }
.vs-list-plain li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.vs-list-plain li::before {
  content: "›";
  position: absolute;
  left: 6px;
  color: var(--accent);
  font-weight: 700;
}

.vs-table-wrap { overflow-x: auto; margin: 0 -24px; padding: 0 24px; }
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.vs-table thead th {
  background: var(--bg-soft);
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.vs-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--fg-soft);
}
.vs-table tbody td:first-child {
  font-weight: 500;
  color: var(--fg);
}
.vs-table tbody tr:hover td {
  background: rgba(236, 72, 153, 0.025);
}

.vs-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.vs-pick {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}
.vs-pick--us {
  background: linear-gradient(180deg, rgba(236,72,153,0.04), rgba(168,85,247,0.04));
  border-color: rgba(236, 72, 153, 0.18);
}

.vs-section--final p .btn { margin-right: 10px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
  text-decoration: none;
}
.btn-secondary:hover { background: var(--bg-soft); }

.vs-faq {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 18px;
  margin-bottom: 8px;
}
.vs-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--fg);
  padding: 14px 0;
  list-style: none;
  font-size: 15px;
}
.vs-faq summary::-webkit-details-marker { display: none; }
.vs-faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}
.vs-faq[open] summary::after { content: "−"; }
.vs-faq p {
  font-size: 15px !important;
  line-height: 1.65;
  color: var(--fg-soft);
  padding-bottom: 14px;
  margin: 0 !important;
}

.vs-related { padding-top: 32px; border-top: 1px solid var(--border); }
.vs-related-list { display: flex; flex-wrap: wrap; gap: 16px 28px; margin-bottom: 18px; }
.vs-related-list li { padding-left: 0 !important; }
.vs-related-list li::before { content: "" !important; }
.vs-related-list a {
  color: var(--accent-3);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.vs-related-list a:hover { border-bottom-color: var(--accent-3); }
.vs-context-note { font-size: 13px !important; color: var(--muted-2) !important; }
.vs-context-note a { color: var(--muted-2); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 700px) {
  .vs-article { padding: 100px 18px 60px; }
  .vs-picks { grid-template-columns: 1fr; }
  .vs-byline { flex-direction: column; align-items: flex-start; }
}

/* ─── Hero mockup combo: framed desktop + slim phone slab ────────
   No CDN, no third-party SVG library, no iOS notch — all drawn in
   plain CSS so the screenshot is the only image asset and there's
   nothing to break or watermark on us. */
.hero-mockup {
  position: relative;
  display: block;
  z-index: 1;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 0.25s ease;
}
.hero-mockup:hover { transform: translateY(-3px); }

/* Ambient glow behind the whole composition */
.hero-mockup-glow {
  position: absolute;
  inset: -40px -28px -60px -28px;
  background:
    radial-gradient(60% 70% at 30% 40%, rgba(236, 72, 153, 0.18), transparent 70%),
    radial-gradient(50% 60% at 80% 60%, rgba(168, 85, 247, 0.18), transparent 70%);
  filter: blur(34px);
  z-index: -1;
  border-radius: 40px;
  pointer-events: none;
}

/* Desktop browser frame */
.mockup-desktop {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 30px 70px -28px rgba(15, 23, 42, 0.45),
    0 12px 30px -16px rgba(15, 23, 42, 0.25);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: linear-gradient(180deg, #f8fafc, #e9eef5);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e2e8f0;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
}
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-url {
  margin-left: 18px;
  flex: 1;
  max-width: 280px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  color: #475569;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-desktop img {
  display: block;
  width: 100%;
  height: auto;
  /* Let the screenshot render at its natural aspect (~16:9 here) — no
     object-fit cropping. Forcing 16:10 was chopping the sidebar / right
     rail off the home feed. */
}
/* Faint highlight along the top edge of the screen — gives a sense of glass */
.mockup-reflection {
  position: absolute;
  top: 32px; /* below the chrome bar */
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0));
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Phone slab: clean rounded rect, subtle bezel, side buttons.
   No notch, no Dynamic Island — reads as "a phone" without locking
   to a specific device generation. */
.mockup-phone {
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 26%;
  max-width: 200px;
  padding: 7px;
  background:
    linear-gradient(160deg, #2a3344 0%, #131a26 60%, #0b1019 100%);
  border-radius: 32px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -2px 4px rgba(0, 0, 0, 0.5),
    0 30px 60px -20px rgba(15, 23, 42, 0.55),
    0 10px 25px -12px rgba(15, 23, 42, 0.4);
}
.mockup-phone-screen {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}
.mockup-phone-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #000;
}
.mockup-phone-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 35%);
  pointer-events: none;
  border-radius: 24px;
}
/* Side buttons — thin slivers on the device edge */
.mockup-phone-btn {
  position: absolute;
  background: linear-gradient(180deg, #1f2937, #0b1019);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  border-radius: 1.5px;
}
.mockup-phone-btn--power {
  right: -2px;
  top: 28%;
  width: 3px;
  height: 38px;
}
.mockup-phone-btn--vol-up {
  left: -2px;
  top: 22%;
  width: 3px;
  height: 26px;
}
.mockup-phone-btn--vol-dn {
  left: -2px;
  top: calc(22% + 34px);
  width: 3px;
  height: 26px;
}

/* Mobile: keep the phone overlapping the desktop mockup, same composition
   as desktop. Just shrink the phone a bit and tuck it tighter so it sits
   cleanly on the bottom-right corner. */
@media (max-width: 980px) {
  .mockup-phone {
    right: -8px;
    bottom: -24px;
    width: 30%;
    max-width: 160px;
  }
}
@media (max-width: 600px) {
  .mockup-phone {
    right: -4px;
    bottom: -16px;
    width: 32%;
    max-width: 130px;
  }
  .mockup-url { display: none; }
}

/* ─── App in action — dark "Linear-style" bento ─────────────────
   Dark stage with two soft gradient orbs; each tile is a mini
   browser-window mockup around a real screenshot. Asymmetric 3-up:
   one large featured tile on the left, two stacked tiles on the
   right. Collapses to a single column on small screens. */
.shots {
  position: relative;
  padding: 120px 24px;
  background: radial-gradient(ellipse at 20% 0%, #1e1b4b 0%, #0b1020 45%, #050818 100%);
  color: #e2e8f0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.shots::before,
.shots::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.shots::before {
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.45), transparent 70%);
}
.shots::after {
  bottom: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45), transparent 70%);
}
.shots .container { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; }
.shots .eyebrow {
  text-align: center;
  color: #f0abfc;
  letter-spacing: 0.18em;
}
.shots .section-h2 { text-align: center; color: #fff; }
.shots .section-h2 em { color: #f9a8d4; font-style: normal; }
.shots .section-sub {
  text-align: center;
  color: rgba(226, 232, 240, 0.72);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Bento grid — large left, two stacked right */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: 1fr;
  gap: 22px;
  margin: 48px 0 64px;
}
.bento-tile {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  padding: 18px 18px 0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.bento-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow: 0 30px 60px -28px rgba(236, 72, 153, 0.35);
}
.bento-tile--lg {
  grid-row: span 2;
}
.bento-tile figcaption {
  padding: 18px 6px 22px;
  flex: 1;
}
.bento-tile figcaption strong {
  display: block;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.bento-tile figcaption p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.55;
}
.bento-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbcfe8;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.35);
  border-radius: 999px;
}

/* Browser-window frame around each screenshot */
.bento-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 22px 50px -22px rgba(0, 0, 0, 0.6),
    0 8px 22px -10px rgba(0, 0, 0, 0.4);
}
.bento-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #f8fafc, #e9eef5);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.bento-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e2e8f0;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
}
.bento-dot:nth-child(1) { background: #ff5f57; }
.bento-dot:nth-child(2) { background: #febc2e; }
.bento-dot:nth-child(3) { background: #28c840; }
.bento-url {
  margin-left: 12px;
  flex: 1;
  max-width: 280px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 500;
  color: #64748b;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 4px;
  text-align: center;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bento-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
/* Large tile gets a taller crop so it doesn't look cramped */
.bento-tile--lg .bento-frame img { aspect-ratio: 16 / 11; }

@media (max-width: 980px) {
  .bento {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .bento-tile--lg { grid-row: auto; }
}

/* Dark mode for the modes-strip (overrides the white card variant) */
.shots .shot-modes { margin-top: 28px; }
.shots .shot-mode {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.shots .shot-mode strong { color: #fff; }
.shots .shot-mode span:not(.shot-mode-icon) {
  color: rgba(226, 232, 240, 0.7);
}
.shots .shot-mode-icon {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.22), rgba(168, 85, 247, 0.22));
  color: #f9a8d4;
}

/* Light/dark + LTR/RTL callout strip */
.shot-modes {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.shot-mode {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 14px);
  background: #fff;
}
.shot-mode-icon {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(168, 85, 247, 0.14));
  color: #ec4899;
}
.shot-mode strong { font-size: 14px; color: #0f172a; }
.shot-mode span:not(.shot-mode-icon) { font-size: 13px; color: var(--muted-2); }

@media (max-width: 700px) {
  .shots { padding: 80px 18px; }
  .shot-modes { grid-template-columns: 1fr; }
}

/* ─── Modes strip (Light/Dark + LTR/RTL) — slim accent banner ─── */
.modes-strip {
  padding: 64px 24px;
  background: linear-gradient(180deg, #fdfdff 0%, #f6f4ff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.modes-strip .container { max-width: 1080px; margin: 0 auto; }
.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mode-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 22px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mode-card:hover {
  transform: translateY(-2px);
  border-color: rgba(236, 72, 153, 0.35);
  box-shadow: 0 18px 40px -22px rgba(236, 72, 153, 0.35);
}
.mode-card-body strong {
  display: block;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.mode-card-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted-2);
  line-height: 1.55;
}

/* Light/Dark swatch pair */
.mode-card-visual {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mode-swatch {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.mode-swatch--light {
  background: linear-gradient(160deg, #ffffff 0%, #f1f5f9 100%);
}
.mode-swatch--dark {
  background: linear-gradient(160deg, #1f2937 0%, #0f172a 100%);
  border-color: rgba(15, 23, 42, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* LTR/RTL arrow pair */
.mode-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ec4899;
  background: rgba(236, 72, 153, 0.10);
  border: 1px solid rgba(236, 72, 153, 0.28);
  border-radius: 10px;
}
.mode-arrow--rtl { color: #a855f7; background: rgba(168, 85, 247, 0.10); border-color: rgba(168, 85, 247, 0.28); }
.mode-arrow + .mode-arrow { margin-left: 6px; }

@media (max-width: 760px) {
  .modes-strip { padding: 48px 18px; }
  .modes-grid { grid-template-columns: 1fr; }
  .mode-card { column-gap: 16px; padding: 18px 20px; }
}
