/* === Marketing landing page === */

.home {
  position: relative;
  z-index: 1;
}

/* Top nav */
.home-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 16px 40px;
  background: linear-gradient(180deg, oklch(0.10 0.004 60 / 0.92), oklch(0.10 0.004 60 / 0.7));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-3);
}

.home-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.85 0.13 75 / 0.4) 30%, oklch(0.85 0.13 75 / 0.2) 70%, transparent);
  pointer-events: none;
}

.home-nav .brand-banner-inline {
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.home-nav .brand-banner-inline img {
  height: 100%;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px oklch(0.85 0.13 75 / 0.45));
}

.brand-banner-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: oklch(0.82 0.12 75);
  text-shadow: 0 1px 6px oklch(0.85 0.13 75 / 0.25);
}

.brand-banner-wordmark em {
  font-style: normal;
  font-weight: 400;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 6px;
}

.home-nav-links a {
  color: var(--fg-1);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s;
}

.home-nav-links a:hover { color: var(--brass-1); }

.home-nav-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.home-link-btn {
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-0);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.home-link-btn:hover { background: oklch(1 0 0 / 0.03); border-color: var(--ink-3); }

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: linear-gradient(140deg, var(--brass-0), var(--brass-1) 50%, var(--brass-2));
  color: oklch(0.16 0.01 60);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 1px solid oklch(0.92 0.07 85 / 0.5);
  box-shadow: 0 4px 16px -6px oklch(0.85 0.13 75 / 0.4);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: filter 0.15s, transform 0.1s;
}

.home-cta-btn:hover { filter: brightness(1.08); }
.home-cta-btn:active { transform: translateY(1px); }

.home-cta-btn.lg {
  padding: 14px 26px;
  font-size: 14.5px;
  border-radius: 100px;
}

.home-cta-btn.ghost {
  background: transparent;
  color: var(--fg-0);
  border: 1px solid var(--ink-4);
  box-shadow: none;
}
.home-cta-btn.ghost:hover { background: oklch(1 0 0 / 0.03); border-color: var(--brass-3); color: var(--brass-1); }

/* Section */
.home-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
}

.home-section.tight { padding: 60px 40px; }

.home-eyebrow {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-1);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.home-eyebrow::before, .home-eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: linear-gradient(to right, transparent, var(--brass-3));
}
.home-eyebrow::after {
  background: linear-gradient(to right, var(--brass-3), transparent);
}

.home-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--fg-0);
  margin-bottom: 20px;
}

.home-h1 em {
  font-style: normal;
  background: linear-gradient(180deg, oklch(0.94 0.07 78), oklch(0.72 0.13 70));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg-0);
  margin-bottom: 16px;
}

.home-h2 em {
  font-style: normal;
  background: linear-gradient(180deg, oklch(0.94 0.07 78), oklch(0.72 0.13 70));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-sub {
  font-size: 17px;
  color: var(--fg-1);
  line-height: 1.55;
  max-width: 620px;
}

.home-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Hero */
.home-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px 60px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.home-hero-text { display: flex; flex-direction: column; gap: 18px; }

.home-hero-actions { display: flex; gap: 12px; margin-top: 12px; align-items: center; flex-wrap: wrap; }

.home-hero-microcopy {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-1);
  margin-top: 2px;
}
.home-hero-microcopy.brass { color: var(--brass-1); margin-top: 2px; font-weight: 500; }

.home-hero-stats {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-3);
}

.home-hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-hero-stat .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--brass-1);
  letter-spacing: -0.01em;
  line-height: 1;
}

.home-hero-stats-label {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brass-1);
}

.home-hero-stats-row {
  display: flex;
  gap: 32px;
}

.home-hero-stat .l {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-2);
  margin-top: 4px;
}

.home-hero-stat .l.brass {
  color: var(--brass-1);
  font-weight: 500;
  margin-top: 2px;
  font-size: 12px;
}

/* Hero visual */
.home-hero-vis {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background:
    radial-gradient(closest-side, oklch(0.85 0.13 75 / 0.10), transparent 70%);
}

.hero-card {
  position: absolute;
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.04), oklch(1 0 0 / 0.005)),
    oklch(0.14 0.005 60 / 0.96);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -16px oklch(0 0 0 / 0.7), 0 1px 0 oklch(1 0 0 / 0.05) inset;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.85 0.13 75 / 0.5), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.hero-card-1 { top: 0%; right: 6%; width: 62%; padding: 14px; transform: rotate(2deg); z-index: 3; }
.hero-card-2 { top: 26%; left: 0%; width: 60%; padding: 14px; transform: rotate(-3deg); z-index: 2; }
.hero-card-3 { top: 56%; left: 22%; width: 58%; padding: 14px; transform: rotate(1deg); z-index: 1; }

.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--ink-3);
}

.hero-card-title {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-1);
}

.hero-card-meta {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9.5px;
  color: var(--fg-3);
  letter-spacing: 0.12em;
}

.hero-card-thumb {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-sm);
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, oklch(1 0 0 / 0.02) 14px 15px),
    linear-gradient(135deg, oklch(0.22 0.008 60), oklch(0.14 0.005 60));
  display: grid;
  place-items: center;
  color: var(--fg-3);
  overflow: hidden;
}

.hero-card-thumb.has-img { background: none; padding: 0; position: relative; }
.hero-card-thumb.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-play-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.92);
  color: oklch(0.15 0.005 60);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 36px -8px oklch(0 0 0 / 0.7);
  pointer-events: none;
}

.hero-card-thumb.vert { aspect-ratio: 9 / 12; }
.hero-card-thumb.gold {
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, oklch(0.85 0.13 75 / 0.04) 14px 15px),
    linear-gradient(135deg, oklch(0.28 0.06 80), oklch(0.16 0.04 60));
}

.hero-card-line {
  height: 6px;
  border-radius: 4px;
  background: oklch(1 0 0 / 0.04);
  margin-top: 8px;
}
.hero-card-line.w70 { width: 70%; }
.hero-card-line.w40 { width: 40%; }
.hero-card-line.brass { background: linear-gradient(to right, var(--brass-1), transparent); height: 4px; }

/* Trusted-by strip */
.trusted {
  max-width: 1280px;
  margin: 20px auto 0;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-label {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.trusted-logos {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0.65;
}

.trusted-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--fg-0);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trusted-logo .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass-1);
}

/* Stats strip */
.stat-strip {
  margin: 60px auto;
  max-width: 1280px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}

.stat-strip .stat .n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, oklch(0.94 0.07 78), oklch(0.72 0.13 70));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-strip .stat .l {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-2);
  margin-top: 6px;
}

/* Marquee */
.marquee {
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, oklch(0.85 0.13 75 / 0.05), transparent 70%),
    oklch(0.11 0.005 60);
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-roll 38s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.02em;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 14px; color: var(--fg-0); }
.marquee-track .sep { color: var(--brass-1); font-size: 1.2em; line-height: 0; }

@keyframes marquee-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Feature deep-dive */
.feature-deep {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: flex-start;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 96px;
}

.feature-tab {
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-1);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.feature-tab:hover { background: oklch(1 0 0 / 0.025); color: var(--fg-0); }
.feature-tab.active {
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.04), oklch(1 0 0 / 0.005)),
    var(--ink-1);
  border-color: oklch(1 0 0 / 0.08);
  color: var(--fg-0);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.04) inset, 0 8px 24px -16px oklch(0.85 0.13 75 / 0.4);
}

.feature-tab .tab-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: oklch(1 0 0 / 0.04);
  display: grid;
  place-items: center;
  color: var(--fg-2);
  flex-shrink: 0;
}
.feature-tab.active .tab-icon { background: var(--brass-tint); color: var(--brass-1); border: 1px solid oklch(0.85 0.13 75 / 0.3); }

.feature-tab .tab-body { flex: 1; min-width: 0; }
.feature-tab .tab-name { font-size: 14px; font-weight: 500; }
.feature-tab .tab-sub { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

.feature-pane {
  position: relative;
  padding: 32px;
  border: 1px solid var(--ink-3);
  border-radius: var(--r-xl);
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.025), oklch(1 0 0 / 0.005)),
    oklch(0.14 0.005 60);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-height: 480px;
}

.feature-pane::before {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.85 0.13 75 / 0.5), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.feature-pane h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--fg-0);
}

.feature-pane h3 em {
  font-style: normal;
  background: linear-gradient(180deg, oklch(0.94 0.07 78), oklch(0.72 0.13 70));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-pane > p { font-size: 15px; color: var(--fg-1); line-height: 1.55; max-width: 540px; }

.feature-pane .bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.feature-pane .bullets li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13.5px; color: var(--fg-1); line-height: 1.5;
}
.feature-pane .bullets li svg { color: var(--brass-1); flex-shrink: 0; margin-top: 2px; }

.feature-pane-mock {
  background: oklch(0.11 0.005 60);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}

.feature-pane-mock.rich { gap: 14px; padding: 18px 18px 16px; }

.tp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tp-eyebrow {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-1);
}
.tp-eyebrow.tp-mute { color: var(--fg-3); }

.tp-mono {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--fg-1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-brass-pill {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  background: linear-gradient(140deg, var(--brass-0), var(--brass-1) 50%, var(--brass-2));
  color: oklch(0.16 0.01 60);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tp-brass-pill.right { margin-left: auto; }
.tp-brass-pill.block { display: block; text-align: center; padding: 8px 14px; }
.tp-brass-pill.sm { padding: 5px 10px; font-size: 10px; align-self: flex-start; }

.tp-card {
  background: oklch(0.14 0.005 60);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tp-card.sm { padding: 10px 12px; gap: 6px; }
.tp-card.brass-border { border-color: var(--brass-3); box-shadow: 0 0 0 1px var(--brass-3) inset; }

.tp-card-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--fg-0);
  letter-spacing: -0.005em;
}
.tp-card-h-sm {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.tp-card-h-sm.brass { color: var(--brass-1); }

.tp-line {
  height: 6px;
  border-radius: 4px;
  background: oklch(1 0 0 / 0.05);
}
.tp-line.w50 { width: 50%; }
.tp-line.w70 { width: 70%; }
.tp-line.w80 { width: 80%; }
.tp-line.w90 { width: 90%; }
.tp-line.brass { background: linear-gradient(to right, var(--brass-1), transparent); height: 5px; }

/* Ad Intel preview */
.tp-ad { display: flex; flex-direction: column; gap: 10px; }
.tp-url-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: oklch(0.14 0.005 60);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-sm);
}
.tp-toc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.tp-toc-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  font-size: 11.5px;
  border: 1px solid var(--ink-3);
  border-radius: var(--r-sm);
  color: var(--fg-1);
  background: oklch(0.14 0.005 60);
}
.tp-toc-item.on { color: var(--brass-1); border-color: var(--brass-3); background: var(--brass-tint); }
.tp-toc-num {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--fg-3);
}
.tp-toc-item.on .tp-toc-num { color: var(--brass-2); }

.tp-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  padding: 6px 0;
  border-top: 1px dashed var(--ink-3);
  color: var(--fg-2);
}
.tp-meta-row:first-of-type { border-top: none; }
.tp-meta-row .v { color: var(--fg-0); font-weight: 500; }
.tp-meta-row .v.brass {
  font-family: var(--font-display);
  font-size: 18px;
  background: linear-gradient(180deg, oklch(0.94 0.07 78), oklch(0.72 0.13 70));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Image gen preview */
.tp-image { display: flex; flex-direction: column; gap: 10px; }

.tp-image-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--fg-0);
}
.tp-image-title em { font-style: normal; color: var(--brass-1); }
.tp-image-tabs { display: flex; gap: 4px; }
.tp-image-tabs span {
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--ink-3);
  font-size: 10px;
  color: var(--fg-2);
}
.tp-image-tabs span.on { background: var(--brass-tint); color: var(--brass-1); border-color: var(--brass-3); }

.tp-image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.tp-photo {
  aspect-ratio: 4/5;
  border-radius: 4px;
  border: 1px solid var(--ink-3);
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, oklch(1 0 0 / 0.018) 10px 11px),
    linear-gradient(135deg, oklch(0.18 0.006 60), oklch(0.12 0.005 60));
  display: grid;
  place-items: center;
  position: relative;
}
.tp-photo-label {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: var(--fg-3);
}

.tp-composer {
  border: 1px solid var(--ink-3);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  background: oklch(0.14 0.005 60);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tp-composer-input { font-size: 11.5px; color: var(--fg-1); }
.tp-composer-row { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }

.tp-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 100px;
  background: oklch(0.11 0.005 60);
  border: 1px solid var(--ink-3);
  font-size: 10.5px;
  color: var(--fg-1);
}
.tp-chip-init {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brass-0), var(--brass-2));
  color: oklch(0.16 0.01 60);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 8.5px;
}

/* Video preview */
.tp-video { display: grid; grid-template-columns: 160px 1fr; gap: 10px; }

.tp-video-side { display: flex; flex-direction: column; gap: 8px; }

.tp-video-banner {
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background:
    linear-gradient(135deg, oklch(0.85 0.13 75 / 0.12), oklch(0.85 0.13 75 / 0.04)),
    oklch(0.13 0.005 60);
  border: 1px solid oklch(0.85 0.13 75 / 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tp-video-banner strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--brass-1);
}
.tp-video-banner span {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.tp-frame-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.tp-frame {
  aspect-ratio: 1;
  border: 1px dashed var(--ink-4);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 9.5px;
  color: var(--fg-3);
font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tp-pill-row { display: flex; gap: 5px; flex-wrap: wrap; }

.tp-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.tp-clip {
  aspect-ratio: 9/16;
  border: 1px solid var(--ink-3);
  border-radius: 4px;
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, oklch(1 0 0 / 0.02) 10px 11px),
    linear-gradient(135deg, oklch(0.18 0.006 60), oklch(0.12 0.005 60));
  position: relative;
  display: grid;
  place-items: center;
}
.tp-play-circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: oklch(0 0 0 / 0.55);
  border: 1px solid oklch(1 0 0 / 0.2);
  color: var(--fg-0);
  display: grid;
  place-items: center;
}
.tp-clip-label {
  position: absolute;
  bottom: 4px; left: 4px;
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
}

/* Script preview */
.tp-script { display: flex; flex-direction: column; gap: 10px; }
.tp-char-drop {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px dashed var(--ink-4);
  border-radius: var(--r-sm);
  color: var(--fg-2);
  font-size: 12px;
}
.tp-char-thumb {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: linear-gradient(135deg, oklch(0.32 0.04 60), oklch(0.18 0.03 50));
  border: 1px solid var(--brass-3);
  flex-shrink: 0;
}
.tp-script-line {
  padding: 7px 10px;
  border-radius: 4px;
  background: oklch(0.11 0.005 60);
  font-size: 11.5px;
  color: var(--fg-1);
  display: flex;
  gap: 8px;
  align-items: baseline;
  border-left: 2px solid var(--brass-3);
}
.tp-mark {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--brass-1);
  flex-shrink: 0;
}
.tp-mark.dim { color: var(--fg-3); }

/* Improver preview */
.tp-improver { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.mock-row {
  height: 8px;
  border-radius: 4px;
  background: oklch(1 0 0 / 0.05);
}
.mock-row.brass { background: linear-gradient(to right, var(--brass-1), transparent); height: 6px; width: 60%; }
.mock-row.w50 { width: 50%; }
.mock-row.w80 { width: 80%; }

.mock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.mock-tile {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, oklch(1 0 0 / 0.02) 12px 13px),
    linear-gradient(135deg, oklch(0.20 0.01 60), oklch(0.13 0.005 60));
}

.mock-tile.gold {
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, oklch(0.85 0.13 75 / 0.04) 12px 13px),
    linear-gradient(135deg, oklch(0.28 0.06 80), oklch(0.16 0.04 60));
}

.mock-card {
  padding: 12px;
  border: 1px solid var(--ink-3);
  border-radius: var(--r-sm);
  background: oklch(0.14 0.005 60);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.feature-card {
  position: relative;
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.025), oklch(1 0 0 / 0.005)),
    oklch(0.14 0.005 60);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover { border-color: var(--brass-3); transform: translateY(-2px); }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.85 0.13 75 / 0.4), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--brass-tint), transparent);
  border: 1px solid oklch(0.85 0.13 75 / 0.25);
  color: var(--brass-1);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg-0);
}

.feature-card p {
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.55;
}

.feature-card .num {
  position: absolute;
  top: 20px;
  right: 22px;
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* Process flow */
.process-flow {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.flow-step {
  position: relative;
  padding: 22px 20px;
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.025), oklch(1 0 0 / 0.005)),
    oklch(0.14 0.005 60);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-step::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass-2);
  font-size: 24px;
  z-index: 2;
}
.flow-step:last-child::after { content: none; }

.flow-step::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.85 0.13 75 / 0.4), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.flow-step h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--fg-0);
  letter-spacing: -0.005em;
}

.flow-step p { font-size: 13px; color: var(--fg-2); line-height: 1.5; }

.flow-step .ic {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--brass-tint);
  border: 1px solid oklch(0.85 0.13 75 / 0.3);
  color: var(--brass-1);
  display: grid; place-items: center;
}

.flow-step .t {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-1);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.testimonial {
  position: relative;
  padding: 26px;
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.025), oklch(1 0 0 / 0.005)),
    oklch(0.14 0.005 60);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.85 0.13 75 / 0.4), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.testimonial .stars {
  color: var(--brass-1);
  font-size: 13px;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4;
  color: var(--fg-0);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}

.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-3);
}

.testimonial .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(140deg, oklch(0.32 0.04 60), oklch(0.22 0.03 50));
  border: 1px solid var(--brass-3);
  display: grid;
  place-items: center;
  color: var(--brass-1);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial .name { font-size: 13.5px; font-weight: 500; color: var(--fg-0); }
.testimonial .role {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 2px;
}

/* Pricing */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
  margin: 28px auto 0;
}

.pricing-toggle button {
  padding: 9px 20px;
  border-radius: 100px;
  background: transparent;
  color: var(--fg-2);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.pricing-toggle button.active {
  background: linear-gradient(140deg, var(--brass-0), var(--brass-1) 50%, var(--brass-2));
  color: oklch(0.16 0.01 60);
  box-shadow: 0 4px 12px -4px oklch(0.85 0.13 75 / 0.4);
}
.pricing-toggle .save {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: oklch(0.78 0.16 152);
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.025), oklch(1 0 0 / 0.005)),
    oklch(0.14 0.005 60);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card.featured {
  border-color: var(--brass-1);
  box-shadow: 0 0 0 1px var(--brass-1), 0 12px 36px -16px oklch(0.85 0.13 75 / 0.5);
  background:
    linear-gradient(180deg, oklch(0.85 0.13 75 / 0.04), transparent),
    oklch(0.14 0.005 60);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.85 0.13 75 / 0.4), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.price-tier {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-1);
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.025em;
  color: var(--fg-0);
  line-height: 1;
}

.price-amount .per {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--fg-2);
  letter-spacing: 0;
  margin-left: 4px;
}

.price-desc { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }

.price-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  border-top: 1px dashed var(--ink-3);
  padding-top: 16px;
}

.price-feats li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--fg-1);
  line-height: 1.45;
}

.price-feats li svg { color: var(--brass-1); flex-shrink: 0; margin-top: 2px; }

.price-card .home-cta-btn { margin-top: auto; justify-content: center; }

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--brass-tint);
  border: 1px solid oklch(0.85 0.13 75 / 0.4);
  color: var(--brass-1);
}

/* FAQ */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.02), oklch(1 0 0 / 0.005)),
    oklch(0.14 0.005 60);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.15s;
}

.faq-item.open { border-color: var(--brass-3); }

.faq-head {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--fg-0);
  letter-spacing: -0.005em;
}

.faq-head .chev {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.04);
  border: 1px solid var(--ink-3);
  display: grid;
  place-items: center;
  color: var(--fg-1);
  transition: transform 0.2s, background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.faq-item.open .faq-head .chev {
  background: var(--brass-tint);
  color: var(--brass-1);
  border-color: var(--brass-3);
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 22px 18px;
  color: var(--fg-1);
  font-size: 14px;
  line-height: 1.6;
  max-width: 700px;
}

/* CTA banner */
.cta-banner {
  margin: 80px auto;
  max-width: 1280px;
  padding: 60px 40px;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, oklch(0.85 0.13 75 / 0.20), transparent 65%),
    linear-gradient(180deg, oklch(0.16 0.01 60), oklch(0.12 0.005 60));
  border: 1px solid var(--ink-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 30%; right: 30%; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.95 0.10 75 / 0.8), transparent);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--fg-0);
}

.cta-banner h2 em {
  font-style: normal;
  background: linear-gradient(180deg, oklch(0.94 0.07 78), oklch(0.72 0.13 70));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === Home single-plan card === */
.home-single-card {
  max-width: 480px;
  margin: 50px auto 0;
  padding: 32px 28px 26px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.03), oklch(1 0 0 / 0.005)),
    oklch(0.14 0.005 60);
  border: 1px solid var(--brass-1);
  box-shadow: 0 0 0 1px var(--brass-1), 0 24px 80px -22px oklch(0.85 0.13 75 / 0.45), 0 1px 0 oklch(1 0 0 / 0.04) inset;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.home-single-card::before {
  content: '';
  position: absolute;
  top: 0; left: 22%; right: 22%; height: 1px;
  background: linear-gradient(to right, transparent, oklch(0.95 0.10 75 / 0.9), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.hsc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: linear-gradient(140deg, var(--brass-0), var(--brass-1) 50%, var(--brass-2));
  color: oklch(0.16 0.01 60);
  border: 1px solid oklch(0.92 0.07 85 / 0.5);
  box-shadow: 0 6px 18px -6px oklch(0.85 0.13 75 / 0.5);
}

.hsc-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-1);
  margin-top: 6px;
}

.hsc-desc { color: var(--fg-2); font-size: 14px; }

.hsc-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.hsc-price .amount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 72px;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, oklch(0.94 0.07 78), oklch(0.72 0.13 70));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hsc-price .per { font-size: 15px; color: var(--fg-2); }

.hsc-billed {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: -6px;
}

.hsc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 10px 0 6px;
  padding: 16px 0 0;
  border-top: 1px dashed var(--ink-3);
}

.hsc-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--fg-0);
}

.hsc-feats li svg { color: var(--brass-1); flex-shrink: 0; }

.hsc-fine {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* Footer */
.home-footer {
  border-top: 1px solid var(--ink-3);
  padding: 48px 40px 32px;
  margin-top: 60px;
}

.home-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-col h5 {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--fg-1); text-decoration: none; font-size: 13.5px; cursor: pointer; transition: color 0.15s; }
.footer-col a:hover { color: var(--brass-1); }

.footer-brand-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-banner img {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px oklch(0.85 0.13 75 / 0.4));
}
.footer-brand-banner .brand-banner-wordmark { font-size: 20px; }
.footer-tag { font-size: 13.5px; color: var(--fg-2); line-height: 1.55; max-width: 280px; }

.footer-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px dashed var(--ink-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bar .l {
font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* Section title cluster */
.section-head-cluster {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 760px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1080px) {
  .feature-deep { grid-template-columns: 1fr; }
  .feature-tabs { position: static; flex-direction: row; flex-wrap: wrap; }
  .feature-tab { flex: 1 1 240px; }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .flow-step::after { content: none; }
}

@media (max-width: 980px) {
  .home-hero { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .home-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .home-nav { padding: 14px 20px; gap: 18px; }
  .home-nav-links { display: none; }
  .home-section { padding: 60px 20px; }
  .home-hero { padding: 50px 20px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }
  .stat-strip { padding: 22px 20px; grid-template-columns: 1fr 1fr; gap: 18px; }
}
