:root {
  color-scheme: dark;
  --bg: #090708;
  --panel: #151010;
  --panel-strong: #201313;
  --ink: #fff8ef;
  --muted: #d8c9bb;
  --soft: #ad9a89;
  --gold: #d69a57;
  --red: #c9414f;
  --teal: #2f8f8a;
  --line: rgba(214, 154, 87, 0.28);
  --shadow: rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.hero {
  min-height: 92vh;
  position: relative;
  isolation: isolate;
  background-image: url("assets/attraction-language-cover.png");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(4, 3, 5, 0.34);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 60%;
  background: rgba(4, 3, 5, 0.55);
  box-shadow: 160px 0 180px rgba(4, 3, 5, 0.35);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.nav-link,
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}

.nav-cta {
  min-width: 92px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.26);
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 96px;
  max-width: 650px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 76px;
  line-height: 0.98;
  max-width: 620px;
}

h2 {
  font-size: 34px;
  line-height: 1.12;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-copy {
  max-width: 610px;
  font-size: 24px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--gold);
  color: #16100b;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 38px var(--shadow);
}

.instant {
  color: var(--soft);
  font-size: 15px;
}

.section,
.final-cta {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 42px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.section-copy {
  max-width: 760px;
}

.price-panel {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price {
  font-size: 54px;
  font-weight: 800;
  color: var(--ink);
}

.price-note {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.feature {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: var(--panel);
}

.feature p,
.band-row p,
.comparison p,
.faq p {
  font-size: 16px;
}

.bands {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.band-row div {
  padding: 24px;
  background: var(--panel-strong);
  border-radius: 8px;
  border-left: 4px solid var(--red);
}

.band-row strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
}

.sample {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

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

.comparison div {
  padding: 24px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.final-cta {
  margin-bottom: 48px;
  padding: 54px;
  border-radius: 8px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
}

.final-cta p {
  max-width: 720px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    background-position: 63% center;
  }

  .hero::after {
    width: 100%;
    box-shadow: none;
  }

  .nav-link {
    display: none;
  }

  .hero-inner {
    padding: 72px 0 82px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy {
    font-size: 21px;
  }

  .intro,
  .sample,
  .comparison,
  .feature-grid,
  .band-row {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 0;
  }

  .price-panel {
    align-items: flex-start;
    padding: 26px;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .nav,
  .hero-inner,
  .section,
  .final-cta {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    gap: 12px;
  }

  .nav-cta {
    min-width: 78px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 26px;
  }

  p,
  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
    padding: 0 18px;
  }

  .final-cta {
    padding: 32px 24px;
  }
}
