/* ── Reset & Base ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0A0A0B;
  color: #E0E0E0;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
.font-mono {
  font-family: 'IBM Plex Mono', 'JetBrains Mono', monospace;
}

.text-gradient {
  background: linear-gradient(135deg, #F5EDE0, #D4B876 45%, #A07D3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: #D4A574;
}

.text-secondary {
  color: #999;
}

.text-muted {
  color: #808080;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #1C1C1E;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo svg {
  width: 32px;
  height: 32px;
}

.nav-wordmark {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #F5EDE0, #D4B876 45%, #A07D3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: #999;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #E0E0E0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #D4A574, #A07D3A);
  color: #0A0A0B;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.25);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: #D4A574;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-cta-outline:hover {
  border-color: #D4A574;
  background: rgba(212, 165, 116, 0.08);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}

.hero .subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #999;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.platform-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #111113;
  border: 1px solid #1C1C1E;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #E0E0E0;
  transition: border-color 0.2s;
}

.pill:hover {
  border-color: #333;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pill-dot--chatgpt  { background: #6EE7B7; }
.pill-dot--claude   { background: #F0A05A; }
.pill-dot--gemini   { background: #7CB3F4; }
.pill-dot--grok     { background: #5CC8F5; }

/* ── Features ─────────────────────────────────────────────── */
.features {
  border-top: 1px solid #1C1C1E;
}

.features .section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D4A574;
  margin-bottom: 12px;
}

.features h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #111113;
  border: 1px solid #1C1C1E;
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 165, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #D4A574;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #E0E0E0;
}

.feature-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing {
  border-top: 1px solid #1C1C1E;
}

.pricing .section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D4A574;
  margin-bottom: 12px;
}

.pricing h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing .pricing-sub {
  text-align: center;
  color: #999;
  font-size: 16px;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: #111113;
  border: 1px solid #1C1C1E;
  border-radius: 14px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
}

.pricing-card.featured {
  border-color: rgba(212, 165, 116, 0.35);
  position: relative;
}

.pricing-label {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #0A0A0B;
  background: linear-gradient(135deg, #D4A574, #A07D3A);
  padding: 2px 8px;
  border-radius: 100px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 16px;
  font-weight: 400;
  color: #808080;
}

.pricing-desc {
  font-size: 13px;
  color: #808080;
  margin-bottom: 24px;
}

.pricing-card .btn-cta,
.pricing-card .btn-cta-outline {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-free-note {
  text-align: center;
  color: #808080;
  font-size: 14px;
  margin-top: 32px;
}

.pricing-free-note strong {
  color: #E0E0E0;
  font-weight: 600;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid #1C1C1E;
  padding: 40px 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo svg {
  width: 24px;
  height: 24px;
}

.footer-logo span {
  font-size: 16px;
  font-weight: 600;
  color: #999;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: #808080;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #E0E0E0;
}

.footer-copy {
  font-size: 13px;
  color: #808080;
}

/* ── Legal Pages ──────────────────────────────────────────── */
.legal {
  padding: 60px 0 80px;
}

.legal-header {
  margin-bottom: 40px;
}

.legal-header h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #D4A574 0%, #C8AA6E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.legal-header .effective-date {
  font-size: 13px;
  color: #808080;
}

.legal-content {
  max-width: 720px;
}

.legal-content p {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #E0E0E0;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content strong {
  color: #CCC;
  font-weight: 600;
}

.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc;
}

.legal-content li {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
}

.legal-content a {
  color: #D4A574;
  transition: opacity 0.2s;
}

.legal-content a:hover {
  opacity: 0.8;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav .container {
    height: 56px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .btn-cta,
  .btn-cta-outline {
    padding: 8px 16px;
    font-size: 13px;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subtitle {
    font-size: 15px;
  }

  .platform-pills {
    gap: 8px;
  }

  .pill {
    font-size: 12px;
    padding: 5px 10px;
  }

  .legal-header h1 {
    font-size: 24px;
  }
}
