:root {
  --bg: #0F0F0F;
  --bg-alt: #1A1A1A;
  --bg-card: #1F1F1F;
  --bg-deep: #050505;
  --primary: #C9A961;
  --primary-light: #E5C97D;
  --primary-dark: #8B7355;
  --accent: #B89055;
  --text: #F5F1E8;
  --text-muted: #9A958A;
  --text-soft: #C2BCAF;
  --border: #2D2D2D;
  --border-gold: rgba(201,169,97,0.25);
  --radius: 0px;
  --radius-sm: 2px;
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .55em;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; font-style: italic; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.2rem; font-weight: 500; font-style: normal; }

p { margin: 0 0 1em; color: var(--text-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 110px 0; position: relative; }
section.alt { background: var(--bg-alt); }
section.deep { background: var(--bg-deep); }

.accent {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 22px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--primary);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head p { font-size: 1rem; color: var(--text-muted); }

/* Section dot pattern */
.dot-bg {
  background-image: radial-gradient(circle at 2px 2px, rgba(201,169,97,0.13) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* HEADER F — centered logo, menu below */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15,15,15,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 0;
  text-align: center;
}
.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: .02em;
}
.brand img { width: 38px; height: 38px; }
.brand span em { color: var(--primary); font-style: italic; }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: absolute;
  right: 24px;
  top: 0;
}
.burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--primary);
}

.nav-wrap {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}
.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 18px;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  width: 0; height: 1px;
  background: var(--primary);
  transition: width .25s, left .25s;
}
.nav-links a:not(.nav-cta):hover::after { width: 70%; left: 15%; }

.nav-links a.nav-cta {
  color: #000000 !important;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  padding: 10px 22px;
  margin-left: 16px;
  letter-spacing: .15em;
}

.mobile-menu {
  display: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  padding: 12px 8px;
  color: var(--text);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .15em;
}
.mobile-menu a.nav-cta {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  color: #000000;
  font-weight: 800;
  text-align: center;
  margin-top: 8px;
}
.mobile-menu.is-open { display: flex; }

/* HERO G — center card */
.hero {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% -10%, rgba(201,169,97,0.18), transparent 55%),
    radial-gradient(circle at 2px 2px, rgba(201,169,97,0.10) 1px, transparent 1px);
  background-size: cover, 36px 36px;
}
.hero .container { position: relative; z-index: 2; }

.hero-card {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, rgba(31,31,31,0.85), rgba(15,15,15,0.85));
  border: 1px solid var(--border-gold);
  padding: 70px 60px;
  position: relative;
  backdrop-filter: blur(8px);
}
.hero-card::before, .hero-card::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--primary);
}
.hero-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-card::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 6px 18px;
  border: 1px solid var(--primary);
  color: var(--primary);
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-badge::before {
  content: '✦';
  color: var(--primary);
}

.hero-card h1 { color: var(--text); margin-bottom: 22px; }
.hero-desc {
  font-size: 1.08rem;
  margin: 0 auto 36px;
  max-width: 660px;
  color: var(--text-muted);
}
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-top: 28px;
  border-top: 1px solid var(--border-gold);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before { content: '✦'; color: var(--primary); }

/* PRICE E — minimal line */
.price-line {
  max-width: 880px;
  margin: 56px auto 0;
  border: 1px solid var(--border-gold);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.price-line-left { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.price-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.4rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}
.price-num-strike { color: var(--text-muted); text-decoration: line-through; font-size: 1rem; }
.price-line-text {
  flex: 1;
  font-size: .92rem;
  color: var(--text-muted);
  min-width: 220px;
  margin: 0;
}

/* Buttons E — ghost outline */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all .25s;
  border: 1px solid transparent;
}
.btn-primary {
  color: #000000;
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  font-weight: 800;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--primary-dark));
}
.btn-ghost {
  color: var(--primary);
  background: transparent;
  border-color: var(--primary);
}
.btn-ghost:hover { background: rgba(201,169,97,0.1); }
.btn-block { width: 100%; }

/* SERVICE — alternating */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.service-cell {
  padding: 50px 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .25s;
}
.service-cell:nth-child(2n) { border-right: 0; }
.service-cell:nth-last-child(-n+2) { border-bottom: 0; }
.service-cell:hover { background: rgba(201,169,97,0.04); }
.service-mark {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}
.service-cell h3 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.service-cell p { color: var(--text-soft); font-size: .96rem; }

/* PLATFORMS */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.platform-card {
  background: var(--bg-card);
  padding: 36px 28px;
  display: block;
  cursor: pointer;
  transition: background .25s;
  position: relative;
}
.platform-card:hover { background: var(--bg-alt); }
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--primary);
  transition: width .35s;
}
.platform-card:hover::before { width: 100%; }
.platform-icon {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 400;
}
.platform-card h3 { color: var(--text); font-size: 1.08rem; margin-bottom: 4px; }
.platform-card p { font-size: .87rem; margin-bottom: 14px; color: var(--text-muted); }
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary);
}
.platform-link::after { content: '→'; transition: transform .2s; }
.platform-card:hover .platform-link::after { transform: translateX(6px); }

/* STORY block */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.story-text p { font-size: 1rem; color: var(--text-soft); }
.story-text strong { color: var(--primary); font-weight: 500; font-style: italic; }

.story-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-gold);
  position: sticky;
  top: 140px;
}
.story-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-gold);
}
.story-list .num {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 400;
}
.story-list h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--text);
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
}
.story-list p { margin: 0; font-size: .92rem; color: var(--text-muted); }

/* CASES */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.case-cell {
  padding: 42px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-cell:nth-child(2n) { border-right: 0; }
.case-cell:nth-last-child(-n+2) { border-bottom: 0; }
.case-tag {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 4px;
}
.case-cell h3 {
  color: var(--text);
  font-size: 1.2rem;
  margin: 0 0 4px;
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
}
.case-cell p { font-size: .96rem; margin: 0; color: var(--text-soft); }

/* CTA banner */
.cta-banner {
  background: var(--bg-deep);
  border: 1px solid var(--primary);
  padding: 72px 56px;
  text-align: center;
  position: relative;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--primary);
}
.cta-banner::before { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.cta-banner::after { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

.cta-banner h2 { color: var(--text); margin-bottom: 16px; }
.cta-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1rem;
}

/* FAQ E — dark section */
section.faq-sec {
  background: var(--bg-deep);
  position: relative;
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border-gold);
}
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-gold);
}
.faq-item h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.18rem;
  color: var(--text);
  margin: 0 0 12px;
  font-style: italic;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.faq-item h3::before {
  content: counter(faq);
  counter-increment: faq;
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--primary);
  min-width: 24px;
}
.faq-list { counter-reset: faq; }
.faq-item p {
  margin: 0 0 0 40px;
  font-size: .96rem;
  color: var(--text-muted);
}

/* FOOTER E — CTA-banner above footer */
.pre-footer {
  background: var(--bg-alt);
  padding: 80px 0;
  border-top: 1px solid var(--border-gold);
  text-align: center;
}
.pre-footer h2 {
  font-style: italic;
  margin-bottom: 14px;
  color: var(--text);
}
.pre-footer p { max-width: 540px; margin: 0 auto 26px; color: var(--text-muted); }

.site-footer {
  background: var(--bg-deep);
  color: var(--text-muted);
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  color: var(--text);
  font-size: 1.2rem;
}
.footer-brand img { width: 38px; height: 38px; }
.footer-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--text-soft);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--primary); }
.footer-bottom {
  text-align: right;
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .08em;
}
.footer-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 28px 0 16px;
}
.footer-tag {
  text-align: center;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Reveal — parallax-like — section translation on scroll handled by JS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s, transform .8s; }
.reveal.in { opacity: 1; transform: none; }

/* parallax classes */
.parallax-up { transition: transform .1s linear; }

/* STEPS */
.steps-wrap { display: flex; flex-direction: column; gap: 0; max-width: 980px; margin: 0 auto; border: 1px solid var(--border); }
.step-card {
  padding: 50px 44px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  background: var(--bg-card);
  position: relative;
}
.step-card:last-child { border-bottom: 0; }
.step-num {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 4.5rem;
  color: var(--primary);
  line-height: 1;
  font-weight: 400;
}
.step-card h2 { font-size: 1.6rem; margin-bottom: 14px; color: var(--text); }
.step-card p { font-size: .98rem; color: var(--text-soft); }

.after-pay {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 56px 44px;
}
.after-pay h2 { margin-bottom: 14px; color: var(--text); }
.after-pay > p { font-size: 1rem; color: var(--text-soft); }
.after-pay .platforms-grid { margin-top: 30px; }

@media (max-width: 980px) {
  section { padding: 84px 0; }
  .story-block { grid-template-columns: 1fr; }
  .story-list { position: static; }
  .service-grid, .features-grid, .platforms-grid, .cases-grid { grid-template-columns: 1fr; }
  .service-cell, .case-cell { border-right: 0; }
  .platforms-grid { display: flex; flex-direction: column; }
  .nav-wrap { display: none; }
  .burger { display: flex; }
  .header-top { justify-content: flex-start; padding: 0 24px; }
  .step-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .footer-row { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { text-align: center; }
}
@media (max-width: 600px) {
  section { padding: 66px 0; }
  .hero-card { padding: 44px 28px; }
  .cta-banner { padding: 50px 26px; }
  .price-num { font-size: 1.8rem; }
  .after-pay { padding: 36px 24px; }
  .platforms-grid { grid-template-columns: 1fr; }
}
