/* Base reset & tokens */
:root {
  --bg: #0C0B09;
  --bg-2: #141310;
  --bg-3: #1C1A16;
  --fg: #F2EDE4;
  --fg-muted: #8A8278;
  --accent: #D4A84B;
  --accent-dim: rgba(212, 168, 75, 0.12);
  --accent-line: rgba(212, 168, 75, 0.25);
  --border: rgba(242, 237, 228, 0.08);
  --radius: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 11, 9, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,75,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 460px;
}
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 32px;
}
.pillar { display: flex; flex-direction: column; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.pillar-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.pillar-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero visual — phone frames */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.phone-frame {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 16px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,75,0.08);
}
.phone-screen {
  background: var(--bg-2);
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
}
.vc-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.vc-user {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
}
.vc-platform {
  font-size: 0.68rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.vc-content { margin-bottom: 10px; }
.vc-main {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}
.vc-stats {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.vc-thumb-bar {
  display: flex;
  gap: 6px;
}
.vc-thumb {
  font-size: 0.68rem;
  color: var(--fg-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}
.vc-thumb.active {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-dim);
}
.v1 { border-left: 3px solid #FF6B6B; }
.v2 { border-left: 3px solid #9B59B6; }
.v3 { border-left: 3px solid #3498DB; }

.feed-stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
  text-align: center;
  width: 100%;
  max-width: 360px;
}
.feed-stat-line {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.feed-stat-sub {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.sp-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sp-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 16px;
}
.sp-quote cite {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: normal;
}
.sp-split {
  display: flex;
  gap: 48px;
}
.sp-stat { }
.sp-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.sp-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── PLAYBOOK ── */
.playbook {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 60px;
}
.verticals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.vertical {
  background: var(--bg-2);
  padding: 36px 32px;
  transition: background 0.2s;
}
.vertical:hover { background: var(--bg-3); }
.v-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.v-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.v-hook {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.v-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 0.7rem;
  color: var(--fg-muted);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── PRICING ── */
.pricing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}
.pricing-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
}
.plan-featured {
  border-color: var(--accent-line);
  background: var(--bg-3);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.plan-featured .plan-name { color: var(--accent); }
.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.plan-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}
.pricing-revenue {
  max-width: 1200px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.pricing-revenue strong {
  color: var(--accent);
}

/* ── PROCESS ── */
.process {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-header { margin-bottom: 64px; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.step {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-body {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.5;
  padding-top: 40px;
  flex-shrink: 0;
}
.process-footnote {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 40px;
  font-style: italic;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 120px 32px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-cta-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 320px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  padding-top: 8px;
}
.footer-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  cursor: default;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.footer-polsia {
  color: var(--accent);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .hero-visual { display: none; }
  .sp-inner { grid-template-columns: 1fr; gap: 48px; }
  .verticals { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 48px 20px; }
  .hero-pillars { gap: 20px; }
  .verticals { grid-template-columns: 1fr; }
  .playbook, .process { padding: 64px 20px; }
  .pricing { padding: 64px 20px; }
  .closing { padding: 80px 20px; }
  .social-proof { padding: 64px 20px; }
  .sp-split { flex-direction: column; gap: 32px; }
  .sp-stat { display: flex; align-items: baseline; gap: 16px; }
  .sp-num { margin-bottom: 0; }
}