:root {
  color-scheme: dark;
  --bg: #000000;
  --panel: #0a0a0a;
  --panel-strong: #111111;
  --text: #e8e8e8;
  --muted: #9a9a9a;
  --accent: #ffd700;
  --accent-soft: rgba(255, 215, 0, 0.2);
  --border: #1f1f1f;
  --glow: rgba(255, 215, 0, 0.35);
  --shadow: rgba(0, 0, 0, 0.7);
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Mono", monospace;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 120%;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05), transparent 40%),
    linear-gradient(140deg, rgba(255, 215, 0, 0.05), transparent 60%);
}

body::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.25;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 120px;
  position: relative;
}

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

a:hover {
  color: var(--accent);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 16px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.7);
  font-size: 0.85rem;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.25s ease;
}

.lang-btn.is-active {
  color: var(--accent);
}

.divider {
  color: #444444;
}

main {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

main.legal-main {
  gap: 40px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 60px;
  padding: 80px 0 40px;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

body.js .hero {
  opacity: 0;
  transform: translateY(20px);
}

body.js.is-ready .hero {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.accent {
  color: var(--accent);
}

.subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 28rem;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-outline {
  border: 1px solid #3a3a3a;
  background: rgba(0, 0, 0, 0.6);
}

.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.fineprint {
  font-size: 0.85rem;
  color: #6e6e6e;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-visual .glow {
  position: absolute;
  width: 320px;
  height: 520px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  filter: blur(4px);
}

.mockup {
  width: min(360px, 80vw);
  border-radius: 26px;
  box-shadow: 0 40px 80px var(--shadow), 0 0 40px rgba(255, 215, 0, 0.15);
}

.mockup.secondary {
  position: absolute;
  width: min(200px, 50vw);
  right: -5%;
  bottom: -12%;
  opacity: 0.65;
  transform: rotate(-6deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.philosophy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.philosophy h2,
.section-title h2,
.split-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title p {
  color: var(--muted);
  max-width: 520px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid #141414;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: rgba(255, 215, 0, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(255, 215, 0, 0.08);
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.card p {
  color: #c3c3c3;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.08);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

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

.split-text p {
  color: var(--muted);
}

.stat-points {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid #151515;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat .label {
  color: var(--accent);
  font-weight: 700;
}

.stat .value {
  color: #cfcfcf;
  font-size: 0.95rem;
}

.premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.premium-card {
  border-radius: 24px;
  padding: 32px;
  background: #070707;
  border: 1px solid rgba(255, 215, 0, 0.6);
  box-shadow:
    0 0 50px rgba(255, 215, 0, 0.2),
    inset 0 0 30px rgba(255, 215, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kicker {
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.premium-copy {
  color: var(--muted);
  margin-top: 10px;
}

.premium-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.premium-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
}

.check svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.amount {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  color: var(--accent);
}

.price-note {
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: #7c7c7c;
}

.premium-visual {
  display: flex;
  justify-content: center;
}

.premium-visual .mockup {
  width: min(320px, 75vw);
}

.footer {
  margin-top: 120px;
  padding-top: 40px;
  border-top: 1px solid #111111;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #6e6e6e;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.legal {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.legal h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-top: 8px;
}

.legal p {
  color: var(--muted);
}

.legal ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid #151515;
  color: #cfcfcf;
}

.reveal {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 40px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .mockup.secondary {
    right: 10%;
    bottom: -5%;
  }

  main {
    gap: 90px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 0 20px 80px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .lang-toggle {
    align-self: flex-end;
  }

  .mockup.secondary {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
