:root {
  --bg: #080806;
  --bg-soft: #0d0d0a;
  --panel: #12110f;
  --panel-2: #191712;
  --panel-3: #211e17;

  --gold: #c9a227;
  --gold-light: #efd27a;
  --gold-soft: rgba(201, 162, 39, 0.16);
  --gold-border: rgba(239, 210, 122, 0.38);

  --text: #f7f1e7;
  --muted: #b3aa99;
  --muted-2: #827b6d;

  --line: rgba(239, 210, 122, 0.14);
  --line-strong: rgba(239, 210, 122, 0.28);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.12), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(239, 210, 122, 0.07), transparent 30rem),
    linear-gradient(180deg, #090907 0%, #080806 45%, #0d0c09 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  z-index: -1;
}

/* Header */

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  font-family: "Pirata One", "Cinzel", Georgia, serif;
  line-height: 1;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.brand {
  font-size: 34px;
}

.footer-brand {
  font-size: 27px;
}

.brand span,
.brand strong,
.footer-brand span,
.footer-brand strong {
  font-weight: 400;
}

.brand strong,
.footer-brand strong {
  color: var(--gold-light);
}

.top-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.top-nav a {
  text-decoration: none;
  transition: var(--transition);
}

.top-nav a:hover {
  color: var(--gold-light);
}

.header-cta {
  display: none;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.18);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.language-switcher a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  transition: var(--transition);
}

.language-switcher a:hover {
  color: var(--gold-light);
}

.language-switcher a.active {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

@media (min-width: 920px) {
  .top-nav,
  .header-cta {
    display: flex;
  }
}

/* Hero */

.hero-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}

.hero-copy {
  order: 2;
}

.hero-visual {
  order: 1;
}

.hero-extraction {
  order: 3;
}

.hero-section > .proof-row {
  order: 4;
}

@media (min-width: 960px) {
  .hero-section {
    grid-template-columns: 1.08fr 0.92fr;
    padding: 46px 0 84px;
    gap: 62px;
    align-items: start;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }
}

@media (min-width: 1180px) {
  .site-header,
  .hero-section {
    width: min(1480px, calc(100% - 120px));
  }

  .site-header {
    padding: 18px 0;
  }

  .hero-section {
    grid-template-columns: minmax(560px, 1.08fr) minmax(520px, 0.92fr);
    padding: 58px 0 86px;
    column-gap: 74px;
    row-gap: 34px;
  }

}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin-bottom: 16px;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -3px;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  margin-bottom: 32px;
}

@media (min-width: 1180px) {
  .hero-copy h1 {
    max-width: 700px;
    font-size: clamp(56px, 4.75vw, 76px);
    letter-spacing: -2.4px;
  }

  .hero-subtitle {
    max-width: 690px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  color: #080806;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 44px rgba(201, 162, 39, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 58px rgba(201, 162, 39, 0.35);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.proof-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
}

@media (min-width: 700px) {
  .proof-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.proof-row strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.proof-row span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

/* Preview */

.hero-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 210, 122, 0.18), transparent 26rem),
    var(--panel);
  box-shadow: var(--shadow), 0 0 70px rgba(201, 162, 39, 0.12);
}

.hero-showcase img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.preview-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 70px rgba(201, 162, 39, 0.08);
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 5%, rgba(239, 210, 122, 0.15), transparent 22rem);
  pointer-events: none;
}

.preview-card > * {
  position: relative;
}

.preview-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.small-label {
  display: block;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 5px;
}

.preview-card h2 {
  font-size: 20px;
  letter-spacing: -0.5px;
}

.pill {
  flex-shrink: 0;
  color: var(--gold-light);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  position: relative;
}

.image-tile {
  position: relative;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #050504;
}

.image-tile:first-child {
  transform: translateY(10px);
}

.image-tile.featured {
  border-color: var(--gold-border);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(201, 162, 39, 0.16);
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(6px);
}

.featured figcaption {
  color: var(--gold-light);
  border-color: var(--gold-border);
}

.compare-arrow {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 3px solid var(--panel);
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.mini-flow {
  margin: 20px 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.mini-flow span {
  color: var(--text);
  background: var(--panel-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.mini-flow i {
  width: 18px;
  height: 1px;
  background: var(--gold-border);
}

.preview-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Sections */

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 32px;
}

.section-heading h2,
.trust-card h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 740px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card,
.step-card,
.trust-card,
.faq-list details {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--gold-light);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  font-size: 20px;
}

.feature-card h3,
.step-card h3 {
  font-size: 20px;
  margin-bottom: 9px;
}

.feature-card p,
.step-card p,
.trust-card p,
.faq-list p,
.final-cta p {
  color: var(--muted);
  line-height: 1.7;
}

/* Steps */

.extraction-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.hero-extraction {
  max-width: 720px;
  margin: 0 0 28px;
  padding: 18px;
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.016)),
    var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
}

.hero-section > .hero-extraction,
.hero-section > .proof-row {
  width: 100%;
}

.hero-extraction .eyebrow {
  margin-bottom: 0;
}

.hero-extraction .extraction-copy h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -1px;
}

.hero-extraction .extraction-copy p {
  font-size: 15px;
  line-height: 1.65;
}

.hero-extraction .btn {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 14px;
}

.extraction-copy {
  display: grid;
  justify-items: start;
}

.extraction-copy h2 {
  max-width: 680px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  margin-bottom: 14px;
}

.extraction-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.wide-proof {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.wide-proof img {
  width: 100%;
  display: block;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.wide-proof figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

@media (min-width: 940px) {
  .extraction-section {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .hero-extraction {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 960px) {
  .hero-section > .hero-extraction,
  .hero-section > .proof-row {
    grid-column: 1 / -1;
  }

  .hero-section > .proof-row {
    max-width: none;
  }
}

@media (min-width: 1180px) {
  .hero-extraction {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    max-width: none;
    margin: 0;
    padding: 22px;
    column-gap: 24px;
    row-gap: 16px;
  }

  .hero-extraction > .eyebrow {
    grid-column: 1 / -1;
  }

  .hero-extraction .wide-proof {
    align-self: stretch;
  }

  .hero-extraction .wide-proof img {
    height: 100%;
    aspect-ratio: 1.85;
  }

  .hero-extraction .extraction-copy {
    align-self: center;
  }

  .hero-extraction .extraction-copy h2 {
    max-width: 980px;
    font-size: clamp(28px, 2.25vw, 38px);
  }

  .hero-extraction .extraction-copy p {
    max-width: 860px;
  }
}

.how-section {
  padding-top: 44px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  padding: 22px;
}

.step-card span {
  display: inline-block;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 1.4px;
}

/* Body areas */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
}

/* Trust */

.trust-card {
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 90% 0%, rgba(239, 210, 122, 0.12), transparent 26rem),
    var(--panel);
}

@media (min-width: 860px) {
  .trust-card {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold-light);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin-top: 12px;
}

/* Final CTA */

.final-cta {
  width: min(920px, calc(100% - 40px));
  margin: 20px auto 80px;
  padding: clamp(32px, 6vw, 58px);
  text-align: center;
  border-radius: 34px;
  border: 1px solid var(--gold-border);
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 210, 122, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    var(--panel);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 17px;
}

.final-cta .btn {
  margin: 0 auto;
}

/* Footer */

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 14px;
}

.footer-brand {
  color: var(--text);
  font-weight: 900;
}

@media (min-width: 720px) {
  .site-footer {
    flex-direction: row;
  }
}

/* Mobile */

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
  }

  .language-switcher {
    order: 3;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero-section,
  .section,
  .site-footer,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .hero-section {
    padding-top: 18px;
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    letter-spacing: -2px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-actions {
    margin-bottom: 24px;
  }

  .preview-card {
    padding: 18px;
  }

  .site-header {
    padding-top: 18px;
  }

  .brand {
    font-size: 29px;
  }

  .footer-brand {
    font-size: 24px;
  }
}
