:root {
  --navy: #1B2250;
  --navy-panel: #232a5c;
  --navy-panel-2: #171d47;
  --clay: #B3654F;
  --clay-hover: #c1785f;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --border-soft: rgba(255, 255, 255, 0.1);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background-color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.clay { color: var(--clay); }

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* Header */
.tf-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(27, 34, 80, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.logo-link img { width: 26px; height: 26px; }

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-link:hover { color: white; }

.btn-primary {
  display: inline-block;
  background-color: var(--clay);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s, transform 0.1s;
}
.btn-primary:hover { background-color: var(--clay-hover); }
.btn-primary:active { transform: scale(0.97); }

.btn-large {
  display: inline-block;
  background-color: var(--clay);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s, transform 0.1s;
}
.btn-large:hover { background-color: var(--clay-hover); }
.btn-large:active { transform: scale(0.98); }

.pill-badge {
  display: inline-block;
  background-color: rgba(179, 101, 79, 0.16);
  border: 1px solid rgba(179, 101, 79, 0.4);
  color: #e3a493;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

/* Hero */
.hero {
  padding: 90px 0 100px;
  text-align: center;
}

.hero-headline {
  font-size: 56px;
  max-width: 780px;
  margin: 0 auto 24px;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta-wrapper { margin-bottom: 24px; }
.cta-sub { font-size: 14px; color: var(--text-tertiary); margin-top: 14px; }

.hero-visual {
  max-width: 820px;
  margin: 56px auto 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-panel-2);
  border: 1px solid var(--border-soft);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.hero-visual video { display: block; width: 100%; }

/* Section */
.section { padding: 110px 0; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clay);
  margin-bottom: 14px;
  display: block;
}

/* Three screens section */
.screens-heading { text-align: center; margin-bottom: 90px; }
.screens-heading h2 { font-size: 36px; }

.screen-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 90px;
}
.screen-row:last-child { margin-bottom: 0; }
.screen-row.reverse .screen-image { order: 2; }
.screen-row.reverse .screen-caption { order: 1; }

.screen-image img {
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.screen-caption {
  font-size: 22px;
  font-weight: 600;
}

/* Pricing */
.pricing-section {
  background: var(--navy-panel-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.pricing-grid h2 { font-size: 44px; margin-bottom: 20px; }
.pricing-grid p { font-size: 17px; color: var(--text-secondary); }

.checkout-card {
  background: var(--navy);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.checkout-label {
  font-size: 13px;
  color: var(--text-tertiary);
}

.checkout-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 12px 0 20px;
}

.whop-checkout-wrapper {
  min-height: 60px;
}

/* FAQ */
.faq-heading { margin-bottom: 48px; }
.faq-heading h2 { font-size: 36px; }

.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--navy-panel);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 24px 28px;
}

.faq-item h3 {
  font-size: 16px;
  color: #e3a493;
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-tertiary);
}
.footer-brand img { width: 20px; height: 20px; opacity: 0.7; }

.footer-links a {
  color: var(--text-secondary);
  margin-left: 24px;
}
.footer-links a:hover { color: white; }

@media (max-width: 900px) {
  .hero-headline { font-size: 38px; }
  .screen-row, .screen-row.reverse { grid-template-columns: 1fr; }
  .screen-row.reverse .screen-image, .screen-row.reverse .screen-caption { order: initial; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid h2 { font-size: 34px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links a { margin: 0 12px; }
  .actions { gap: 14px; }
}
