/* ═══════════════════════════════════════════════════════════════
   PRODUCT-LAUNCH FLAIR — bolder pieces used across pages
   ═══════════════════════════════════════════════════════════════ */

/* ─── Page hero (used on every non-home page) ─────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 600px;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, var(--accent-glow), transparent 60%);
  opacity: 0.7;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, #000 30%, transparent 80%);
  opacity: 0.35;
}
.page-hero-inner {
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
}
.page-hero .eyebrow { margin-bottom: 24px; justify-content: center; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero .lede { margin: 0 auto; }

/* ─── Big home-hero with full-bleed video below ───────────────── */
.mega-hero {
  position: relative;
  padding: 180px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 769px) { .mega-hero { padding: 220px 0 80px; } }
.mega-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.mega-hero-bg .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.4;
}
.mega-hero-bg .aurora {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 70vh;
  background:
    radial-gradient(ellipse 40% 50% at 30% 50%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(124, 128, 255, 0.10), transparent 60%);
  opacity: 0.7;
  filter: blur(60px);
  animation: aurora-drift 12s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0%   { transform: translateX(-50%) translateY(0) scale(1); }
  100% { transform: translateX(-46%) translateY(-20px) scale(1.05); }
}
.mega-hero-bg .fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.mega-hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.mega-hero h1 {
  margin: 28px auto 28px;
  max-width: 18ch;
}
.mega-hero h1 .strike {
  position: relative;
  color: var(--fg-muted);
}
.mega-hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 4px;
  background: var(--accent);
  transform: rotate(-2deg);
  border-radius: 2px;
}
.mega-hero h1 .pop {
  display: inline-block;
  background: linear-gradient(180deg, var(--accent), color-mix(in oklab, var(--accent), white 20%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mega-hero .lede {
  margin: 0 auto 36px;
  font-size: clamp(17px, 1.4vw, 21px);
}

/* ─── Video frame (window-chromed) ────────────────────────────── */
.video-frame {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 80px 160px -50px rgba(0, 0, 0, 0.75),
    0 40px 80px -30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  isolation: isolate;
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at top, var(--accent-glow), transparent 60%);
  opacity: 0.6;
  filter: blur(40px);
}
.video-frame .chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  line-height: 1;
}
.video-frame .chrome .traffic {
  display: flex; gap: 5px;
}
.video-frame .chrome .traffic span {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
}
.video-frame .chrome .title {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;   /* standard 16:9 frame, no layout shift */
  height: auto;
  object-fit: cover;
  background: #06060a;
}

/* ─── Marquee ─────────────────────────────────────────────────── */
.marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--fg-secondary);
  white-space: nowrap;
}
.marquee-item .star {
  width: 32px; height: 32px;
  color: var(--accent);
}
.marquee-item .alt { color: var(--fg-muted); font-style: italic; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
}

/* ─── Page-content section spacing helpers ────────────────────── */
.section-tight { padding-top: 80px; padding-bottom: 80px; }

/* ─── Stat strip ──────────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
@media (max-width: 768px) {
  .stat { border-bottom: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .stat:nth-child(even) { border-right: none; }
}
.stat .num {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 8px;
}
.stat .num .accent { color: var(--accent); }
.stat .lbl {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

/* ─── Big call-out text used between sections ─────────────────── */
.callout {
  padding: 64px 0;
  text-align: center;
}
.callout .quote {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 24ch;
  margin: 0 auto;
}
.callout .quote .strike-light {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  color: var(--fg-muted);
}
.callout .attr {
  margin-top: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Side-by-side feature row ────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.feature-row.reversed { grid-template-columns: 1.2fr 1fr; }
.feature-row.reversed .feature-row-text { order: 2; }
.feature-row.reversed .feature-row-visual { order: 1; }
@media (max-width: 880px) {
  .feature-row, .feature-row.reversed {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }
  .feature-row.reversed .feature-row-text,
  .feature-row.reversed .feature-row-visual { order: initial; }
}
.feature-row-text .eyebrow { margin-bottom: 18px; }
.feature-row-text h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 500;
}
.feature-row-text p {
  font-size: 15.5px;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 52ch;
}
.feature-row-text .checks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-row-text .checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-secondary);
}
.feature-row-text .checks li svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  color: var(--accent);
}

.feature-row-visual {
  position: relative;
}

/* ─── Long-form prose for legal & status pages ─────────────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--fg-secondary);
}
.prose h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--fg);
  margin: 48px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  margin: 28px 0 8px;
  letter-spacing: -0.01em;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.prose a:hover { text-decoration-thickness: 2px; }
.prose strong { color: var(--fg); font-weight: 500; }
.prose code, .prose .mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--fg);
}
.prose .updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ─── Status page ──────────────────────────────────────────────── */
.status-card {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
}
.status-banner {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}
.status-banner .indicator {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.15);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
.status-banner h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 2px;
}
.status-banner .stamp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
}
.status-list .status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.status-list .status-row:last-child { border-bottom: none; }
.status-list .name {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}
.status-list .name .sub {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
  margin-top: 2px;
}
.status-list .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--success);
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.status-list .pill .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--success);
}
.uptime-grid {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  gap: 3px;
  margin-top: 10px;
}
.uptime-grid span {
  height: 22px;
  border-radius: 2px;
  background: var(--success);
  opacity: 0.65;
}
.uptime-grid span:hover { opacity: 1; }
.history {
  max-width: 820px;
  margin: 48px auto 0;
}
.history h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.history-item {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.history-item .date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.history-item .body {
  font-size: 14px;
  color: var(--fg-secondary);
}

/* ─── Reviews / feedback ───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.review-card .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--accent);
}
.review-card .stars svg { width: 15px; height: 15px; }
.review-card .body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 18px;
  flex: 1;
}
.review-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card .avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}
.review-card .meta .name { font-size: 13px; color: var(--fg); font-weight: 500; }
.review-card .meta .role { font-size: 12px; color: var(--fg-muted); }

/* Feedback form */
.feedback {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 880px) { .feedback { grid-template-columns: 1fr; gap: 28px; padding: 28px; } }
.feedback-intro h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.12;
  font-weight: 500;
  margin-bottom: 12px;
}
.feedback-intro p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feedback-intro .pts {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.feedback-intro .pts li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--fg-secondary);
}
.feedback-intro .pts li svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  padding: 11px 13px;
  font-size: 14px;
  color: var(--fg);
  transition: border-color var(--motion-fast) var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--border-accent);
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }

.rating-input { display: flex; gap: 6px; }
.rating-input button {
  color: var(--fg-faint);
  transition: color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}
.rating-input button svg { width: 26px; height: 26px; display: block; }
.rating-input button:hover { transform: scale(1.12); }
.rating-input button.on { color: var(--accent); }

.feedback-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 0;
  min-height: 220px;
}
.feedback-thanks.show { display: flex; }
.feedback-thanks .icon {
  width: 48px; height: 48px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,229,197,0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  margin-bottom: 16px;
}
.feedback-thanks .icon svg { width: 24px; height: 24px; }
.feedback-thanks h4 { font-size: 18px; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; }
.feedback-thanks p { font-size: 14px; color: var(--fg-secondary); }

/* ─── Trial card ───────────────────────────────────────────────── */
.trial-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--border-accent);
  background:
    radial-gradient(ellipse at top, rgba(46,229,197,0.08), transparent 60%),
    var(--bg-elevated);
  padding: 44px 40px;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.trial-card::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 20%, transparent 80%);
  opacity: 0.4;
}
.trial-card .badge { margin-bottom: 20px; }
.trial-card .big {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(56px, 8vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin-bottom: 6px;
}
.trial-card .big .accent { color: var(--accent); }
.trial-card .sub {
  font-size: 14px;
  color: var(--fg-muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.trial-card .tlist {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
  max-width: 360px;
  margin-left: auto; margin-right: auto;
}
.trial-card .tlist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--fg-secondary);
}
.trial-card .tlist li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.trial-card .btn { width: 100%; }
.trial-card .fine {
  margin-top: 14px;
  font-size: 12px;
  color: var(--fg-muted);
  font-family: 'JetBrains Mono', monospace;
}

.spotlight {
  position: relative;
  padding: 120px 32px;
  border-radius: 28px;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, var(--accent-glow), transparent 60%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg));
  border: 1px solid var(--border-accent);
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.4;
}
.spotlight h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(36px, 5.2vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
.spotlight p {
  font-size: 17px;
  color: var(--fg-secondary);
  max-width: 56ch;
  margin: 0 auto 36px;
  line-height: 1.6;
}
