:root {
  --orange: #ED5411;
  --orange-hover: #D44A0C;
  --bg: #0D0D0D;
  --surface: #161616;
  --elevated: #202020;
  --border: #2A2A2A;
  --muted: #6B6B6B;
  --text: #F5F5F5;
  --danger: #FF3B30;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nav-brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand-name { font-weight: 800; font-size: 18px; color: white; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: white; text-decoration: none; }
.nav-cta {
  background: var(--orange); color: white; font-size: 14px; font-weight: 600;
  padding: 8px 18px; border-radius: 10px; text-decoration: none; transition: background .2s;
  display: flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--orange-hover); text-decoration: none; }

/* ── Page wrapper ── */
.page { padding-top: 64px; min-height: 100vh; }

/* ── Sections / layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; border-radius: 14px; text-decoration: none; transition: background .2s, border-color .2s, color .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--orange); color: white; padding: 14px 28px; font-size: 17px; }
.btn-primary:hover { background: var(--orange-hover); text-decoration: none; color: white; }
.btn-outline { background: transparent; color: white; padding: 13px 27px; font-size: 17px; border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); text-decoration: none; color: white; }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 10px; }

/* ── Cards ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
}
.card:hover { border-color: rgba(237,84,17,0.4); }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,84,17,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(44px, 8vw, 80px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; color: white; margin-bottom: 24px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: clamp(16px, 2.5vw, 20px); color: var(--muted); max-width: 600px; margin: 0 auto 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-note { margin-top: 32px; color: var(--muted); font-size: 14px; }
.hero-note strong { color: var(--orange); }

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
@media (max-width: 700px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* ── Section headers ── */
.section-label { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 5vw, 48px); font-weight: 900; color: white; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 18px; max-width: 540px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Service cards ── */
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; }
.service-desc { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Steps ── */
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 60px; height: 60px; border-radius: 16px;
  background: var(--elevated); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: var(--orange);
}
.step-content { padding-top: 8px; }
.step-content h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 8px; }
.step-content p { color: var(--muted); }
.steps { display: flex; flex-direction: column; gap: 36px; }

/* ── Membership ── */
.perk { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.perk-check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(237,84,17,0.15); border: 1px solid rgba(237,84,17,0.4);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.perk-check svg { width: 12px; height: 12px; stroke: var(--orange); }
.perk-text { color: var(--muted); font-size: 14px; }

/* ── Footer ── */
footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand-name { font-size: 18px; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-brand-desc { color: var(--muted); font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
.footer-copy { color: var(--muted); font-size: 12px; }
.footer-col h4 { color: white; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: white; text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer-bottom p { color: var(--muted); font-size: 12px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted); font-size: 12px; text-decoration: none; }
.footer-legal a:hover { color: white; }

/* ── Legal pages ── */
.legal-header { padding: 64px 0 48px; }
.legal-label { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.legal-title { font-size: clamp(30px, 5vw, 44px); font-weight: 900; color: white; letter-spacing: -0.02em; margin-bottom: 12px; }
.legal-date { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.legal-notice {
  background: var(--elevated); border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 24px; font-size: 14px; color: var(--muted); line-height: 1.7;
}
.legal-notice strong { color: white; }
.legal-body { padding-bottom: 96px; }
.legal-body h2 {
  font-size: 18px; font-weight: 700; color: var(--orange);
  margin-top: 48px; margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.legal-body h3 { font-size: 15px; font-weight: 600; color: white; margin-top: 24px; margin-bottom: 8px; }
.legal-body p { color: #c0c0c0; line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.legal-body ul, .legal-body ol { padding-left: 24px; color: #c0c0c0; margin-bottom: 14px; }
.legal-body li { margin-bottom: 6px; line-height: 1.7; font-size: 15px; }
.legal-body a { color: var(--orange); }
.legal-body strong { color: white; font-weight: 600; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.legal-body th { background: var(--elevated); padding: 12px 16px; text-align: left; font-weight: 600; color: white; border: 1px solid var(--border); }
.legal-body td { padding: 12px 16px; color: #c0c0c0; border: 1px solid var(--border); vertical-align: top; }
.legal-body tr:nth-child(even) td { background: var(--surface); }

/* ── Danger box ── */
.danger-box {
  background: rgba(255,59,48,0.08); border: 1px solid rgba(255,59,48,0.3);
  border-radius: 16px; padding: 24px 28px; display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 32px;
}
.danger-box h3 { color: white; font-weight: 700; margin-bottom: 8px; }
.danger-box p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* ── Fact sheet ── */
.fact-row {
  display: flex; padding: 16px 24px; gap: 16px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.fact-row:last-child { border-bottom: none; }
.fact-label { color: var(--muted); font-size: 13px; font-weight: 500; width: 180px; flex-shrink: 0; }
.fact-value { color: white; font-size: 14px; }

/* ── Color swatches ── */
.swatch { display: flex; border-radius: 14px; overflow: hidden; }
.swatch-color { width: 80px; flex-shrink: 0; }
.swatch-info { padding: 16px; flex: 1; }
.swatch-name { color: white; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.swatch-hex { color: var(--muted); font-size: 12px; font-family: monospace; }
.swatch-use { color: var(--muted); font-size: 12px; margin-top: 8px; }

/* ── Press section header ── */
.press-section-title {
  font-size: 22px; font-weight: 800; color: white;
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.press-section-title::before {
  content: ''; display: block; width: 4px; height: 24px;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}

/* ── Legal overview cards ── */
.legal-doc-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 24px;
  text-decoration: none; transition: border-color .2s;
}
.legal-doc-card:hover { border-color: rgba(237,84,17,0.5); text-decoration: none; }
.legal-doc-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.legal-doc-body { flex: 1; }
.legal-doc-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 6px; }
.legal-doc-card:hover .legal-doc-title { color: var(--orange); }
.legal-doc-desc { color: var(--muted); font-size: 14px; line-height: 1.6; }
.legal-doc-meta { color: var(--muted); font-size: 12px; margin-top: 6px; }
.legal-doc-arrow { color: var(--muted); margin-top: 4px; flex-shrink: 0; }
.legal-doc-card:hover .legal-doc-arrow { color: var(--orange); }

/* ── FAQ ── */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 12px; }
.faq-q { font-size: 16px; font-weight: 600; color: white; margin-bottom: 10px; }
.faq-a { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── Contact box ── */
.contact-box { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 48px; text-align: center; }
.contact-box h2 { font-size: 26px; font-weight: 800; color: white; margin-bottom: 12px; }
.contact-box p { color: var(--muted); font-size: 15px; margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }
.contact-email { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: white; font-weight: 600; padding: 13px 28px; border-radius: 12px; text-decoration: none; transition: background .2s; }
.contact-email:hover { background: var(--orange-hover); text-decoration: none; color: white; }

/* ── Logo display ── */
.logo-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.logo-tile { border-radius: 16px; padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.logo-tile img { max-width: 160px; max-height: 120px; object-fit: contain; }
.logo-tile-label { color: var(--muted); font-size: 12px; }

/* ── blockquote ── */
blockquote {
  border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0;
  background: var(--surface); padding: 24px 28px;
  color: #c0c0c0; font-size: 15px; line-height: 1.8; font-style: italic;
  margin: 0 0 16px;
}
