:root {
  --bg-top: #121521;
  --bg-bottom: #2d1a13;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.14);
  --text-primary: #fdf8f0;
  --text-secondary: rgba(253, 248, 240, 0.78);
  --gold: #f3c37d;
  --teal: #8fd0ca;
  --shadow: rgba(0, 0, 0, 0.26);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 85% 12%, rgba(243, 195, 125, 0.16), transparent 20rem),
    radial-gradient(circle at 15% 78%, rgba(143, 208, 202, 0.12), transparent 22rem),
    linear-gradient(135deg, var(--bg-top), var(--bg-bottom));
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.2rem 0 2.5rem;
}

.topbar,
.hero,
.spotlight,
.footer {
  display: grid;
  gap: 1.5rem;
}

.topbar {
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 0.5rem 0 1.5rem;
}

.brand-kicker,
.eyebrow,
.card-label,
.pricing-badge {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--gold);
}

.brand-title-row,
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-lockup h1,
.hero h2,
.section-heading h2,
.spotlight-copy h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin: 0;
}

.brand-lockup h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.brand-app-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
  flex: 0 0 auto;
}

.language-switcher {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.language-switcher label {
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.language-switcher select {
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font: inherit;
  padding: 0.8rem 1rem;
}

.hero {
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  padding: 1.2rem 0 2rem;
}

.hero h2 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin-top: 0.45rem;
}

.hero-text,
.section-text,
.spotlight-copy p,
.feature-card p,
.faq-item p,
.footer-copy,
.card-quote {
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-actions,
.hero-meta,
.hero-tags,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin: 1.7rem 0 1rem;
}

.primary-button,
.secondary-button {
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
}

.primary-button {
  color: #151515;
  background: linear-gradient(135deg, var(--gold), #ffd9a2);
}

.secondary-button {
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.05);
}

.hero-meta span,
.hero-tags span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.hero-card,
.feature-card,
.pricing-card,
.faq-item,
.spotlight,
.footer {
  border: 1px solid var(--surface-border);
  background: var(--surface);
  box-shadow: 0 18px 40px var(--shadow);
}

.hero-card,
.feature-card,
.pricing-card,
.faq-item {
  border-radius: 1.7rem;
  padding: 1.5rem;
}

.card-quote {
  font-size: 1.16rem;
  margin: 0.7rem 0 1.1rem;
}

.hero-app-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
  flex: 0 0 auto;
}

.section {
  padding: 2.2rem 0;
}

.indexing-note {
  padding-top: 1rem;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 1.35rem;
}

.section-heading h2,
.spotlight-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-top: 0.45rem;
}

.feature-grid,
.pricing-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card h3,
.faq-item h3,
.pricing-tier,
.pricing-price,
.footer-brand {
  margin: 0 0 0.6rem;
}

.spotlight {
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: 2rem;
  padding: 1.7rem;
}

.spotlight-list {
  display: grid;
  gap: 0.9rem;
}

.spotlight-item {
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.pricing-card {
  position: relative;
  min-height: 12rem;
}

.pricing-card.featured {
  border-color: rgba(243, 195, 125, 0.5);
  transform: translateY(-0.35rem);
}

.pricing-tier {
  font-size: 1.2rem;
  font-weight: 700;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
}

.pricing-credits {
  color: var(--text-secondary);
  font-size: 1rem;
}

.footer {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 1rem;
  border-radius: 1.8rem;
  padding: 1.2rem 1.4rem;
}

.footer-links a {
  color: var(--text-secondary);
}

.legal-shell {
  padding-top: 1.6rem;
}

.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-card {
  border: 1px solid var(--surface-border);
  background: var(--surface);
  box-shadow: 0 18px 40px var(--shadow);
  border-radius: 1.7rem;
  padding: 1.5rem;
}

.legal-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  margin: 0.4rem 0 0.9rem;
}

.legal-card p,
.legal-list {
  color: var(--text-secondary);
  line-height: 1.7;
}

.inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 980px) {
  .hero,
  .spotlight,
  .feature-grid,
  .pricing-grid,
  .faq-list,
  .footer {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: 1fr;
  }

  .language-switcher {
    max-width: 15rem;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .hero-card,
  .feature-card,
  .pricing-card,
  .faq-item,
  .spotlight,
  .footer {
    border-radius: 1.35rem;
  }

  .hero h2 {
    font-size: 3rem;
  }
}
