/* ── Variables ───────────────────────────────────────────────── */
:root {
  --bg:        #0b0b0b;
  --bg-alt:    #111111;
  --bg-card:   #161616;
  --bg-card2:  #1c1c1c;
  --border:    #252525;
  --border2:   #2e2e2e;
  --copper:    #c17f4a;
  --copper-lt: #d4955f;
  --copper-glow: rgba(193,127,74,.18);
  --brass:     #d4a636;
  --text:      #e8ddd0;
  --text-2:    #a89e96;
  --text-3:    #5e5854;
  --discord:   #5865F2;
  --online:    #3ba55d;
  --offline:   #ed4245;
  --radius:    10px;
  --transition: .2s ease;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
code { font-family: 'Courier New', monospace; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.2; }
.copper-text   { color: var(--copper); }
.ic            { background: var(--bg-card2); padding: 1px 6px; border-radius: 4px; font-size: .85em; color: var(--copper-lt); }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 48px;
  color: var(--text);
}
.section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--brass));
  border-radius: 2px;
  margin-top: 10px;
}
/* pour les sections centrées (hero) */
.text-center .section-title::after { margin-left: auto; margin-right: auto; }

/* ── Gear animations ─────────────────────────────────────────── */
@keyframes spin-cw  { to { transform: rotate(360deg);  } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }
.gear-spin-sm { animation: spin-cw 8s linear infinite; display: inline-block; }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav-logo svg { color: var(--copper); width: 22px; height: 22px; }
.nav-logo strong { color: var(--copper); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: .92rem;
  font-weight: 500;
}
.nav-links a { color: var(--text-2); transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-discord {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--discord);
  color: #fff !important;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity var(--transition) !important;
}
.nav-discord:hover { opacity: .88; }
.nav-burger { display: none; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* blueprint dot grid + copper glow */
  background:
    radial-gradient(ellipse 80% 55% at 50% 40%, rgba(193,127,74,.08) 0%, transparent 65%),
    radial-gradient(circle 1px at 0 0, rgba(193,127,74,.12) 0%, transparent 100%),
    var(--bg);
  background-size: auto, 36px 36px;
  padding: 100px 24px 60px;
  text-align: center;
}

/* ── cogwheels SVG décoratifs (remplacent les ⚙ emoji) ────────── */
.hero-gears { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cog-deco {
  position: absolute;
  color: var(--copper);
  opacity: .04;
}
.cog-1 { width: 460px; height: 460px; top: -110px; right: -90px;  animation: spin-cw  70s linear infinite; opacity: .07; }
.cog-2 { width: 380px; height: 380px; bottom: -90px; left: -80px; animation: spin-ccw 90s linear infinite; opacity: .06; }
.cog-3 { width: 220px; height: 220px; top: 36%; left: -40px;      animation: spin-cw  45s linear infinite; opacity: .04; }

/* wrench décoratif en arrière-plan */
.wrench-deco {
  position: absolute;
  bottom: 12%;
  right: 8%;
  width: 140px;
  height: 140px;
  color: var(--copper);
  opacity: .04;
  transform: rotate(-25deg);
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-3);
  transition: background .4s;
}
.status-dot.online  { background: var(--online);  box-shadow: 0 0 6px var(--online); }
.status-dot.offline { background: var(--offline); }

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -.01em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.hero-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* petits tags "Kinetic Machinery / Contraptions / Andesite Alloy" */
.hero-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(193,127,74,.08);
  border: 1px solid rgba(193,127,74,.2);
  color: var(--text-3);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
}

.ip-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 36px;
  min-width: 280px;
}
.ip-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.ip-row   { display: flex; align-items: center; gap: 12px; width: 100%; }
.ip-addr  { font-size: 1.05rem; color: var(--copper-lt); flex: 1; }
.copy-btn {
  background: var(--bg-card2);
  border: 1px solid var(--border2);
  color: var(--text-2);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: .8rem;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  white-space: nowrap;
}
.copy-btn:hover, .copy-btn.copied { background: var(--copper); border-color: var(--copper); color: #fff; }

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SVGs dans boutons — évite la distorsion */
.btn svg, .nav-discord svg { flex-shrink: 0; display: block; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-copper {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 4px 20px var(--copper-glow);
}
.btn-copper:hover {
  background: var(--copper-lt);
  box-shadow: 0 6px 28px rgba(193,127,74,.35);
  transform: translateY(-1px);
}
.btn-discord {
  background: var(--discord);
  color: #fff;
  box-shadow: 0 4px 20px rgba(88,101,242,.2);
}
.btn-discord:hover {
  opacity: .9;
  transform: translateY(-1px);
}
.btn-lg { padding: 15px 32px; font-size: 1.08rem; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--text-3);
  font-size: .8rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── Feature Cards ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  /* rivets aux 4 coins — style plaque métallique Create */
  background-image:
    radial-gradient(circle 3.5px at 13px 13px,           #2e2b28 50%, transparent 51%),
    radial-gradient(circle 3.5px at calc(100% - 13px) 13px, #2e2b28 50%, transparent 51%),
    radial-gradient(circle 3.5px at 13px calc(100% - 13px), #2e2b28 50%, transparent 51%),
    radial-gradient(circle 3.5px at calc(100% - 13px) calc(100% - 13px), #2e2b28 50%, transparent 51%);
  background-color: var(--bg-card);
}
.feat-card:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
}
.feat-icon {
  width: 44px; height: 44px;
  background: var(--copper-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
  margin: 0 auto 20px;
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); text-align: center; }
.feat-card p  { font-size: .9rem; color: var(--text-2); line-height: 1.65; text-align: center; }

/* ── Launcher ────────────────────────────────────────────────── */
.launcher-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.launcher-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.version-chip {
  background: var(--copper-glow);
  border: 1px solid rgba(193,127,74,.35);
  color: var(--copper-lt);
  padding: 3px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: .06em;
}
.version-label { font-size: .82rem; color: var(--text-3); }
.launcher-name { font-size: 1.6rem; margin-bottom: 12px; }
.launcher-changelog {
  font-size: .88rem;
  color: var(--text-2);
  white-space: pre-line;
  max-height: 120px;
  overflow-y: auto;
  line-height: 1.7;
}
.launcher-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.launcher-hint { font-size: .78rem; color: var(--text-3); text-align: center; }
.launcher-desc { font-size: .9rem; color: var(--text-2); line-height: 1.7; }

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 180px;
  text-align: center;
}
.step-n {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.step p { font-size: .88rem; color: var(--text-2); }
.step-arrow { color: var(--text-3); font-size: 1.4rem; }

/* ── Shop ────────────────────────────────────────────────────── */
.coins-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 40px;
}
.coins-icon { display: flex; align-items: center; flex-shrink: 0; color: var(--brass); }
.coins-banner strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.coins-banner p { font-size: .88rem; color: var(--text-2); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.shop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-card:hover { border-color: var(--copper); transform: translateY(-3px); }
.shop-card-featured { border-color: rgba(193,127,74,.4); }

.shop-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.shop-img {
  width: 48px; height: 48px;
  background: var(--copper-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
}
.shop-img svg { width: 26px; height: 26px; }
.shop-badge {
  font-size: .7rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--bg-card2);
  border: 1px solid var(--border2);
  color: var(--text-3);
  padding: 3px 9px;
  border-radius: 6px;
}
.shop-card h3 { font-size: 1.15rem; color: var(--text); }
.shop-card p  { font-size: .88rem; color: var(--text-2); flex: 1; }
.shop-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.price-num  { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--brass); line-height: 1; }
.price-unit { font-size: .82rem; font-weight: 600; color: var(--brass); opacity: .8; }
.shop-cmd   { font-size: .78rem; color: var(--text-3); }
.shop-cmd code { background: var(--bg-card2); padding: 1px 6px; border-radius: 4px; color: var(--copper-lt); }

/* ── Shop how-to banner ──────────────────────────────────────── */
.shop-how {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--discord);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  text-align: center;
}
.shop-how-icon {
  width: 48px; height: 48px;
  background: rgba(88,101,242,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--discord);
}
.shop-how-icon svg { width: 24px; height: 24px; }
.shop-how-text strong { display: block; font-size: 1rem; margin-bottom: 5px; }
.shop-how-text p { font-size: .9rem; color: var(--text-2); max-width: 480px; }

/* ── Shop category title ─────────────────────────────────────── */
.shop-category-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-cat-icon { font-size: 1.3rem; }
.shop-category-title svg { color: var(--copper); flex-shrink: 0; }

/* ── Grade cards ─────────────────────────────────────────────── */
.grade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grade-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.grade-card:hover { transform: translateY(-3px); border-color: var(--copper); }
.grade-card-featured {
  border-color: rgba(193,127,74,.5);
  box-shadow: 0 0 30px rgba(193,127,74,.08);
}
.grade-featured-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--copper);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.grade-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--border);
}
.grade-vip     { background: linear-gradient(135deg, rgba(255,193,7,.08)  0%, transparent 60%); }
.grade-donateur{ background: linear-gradient(135deg, rgba(100,180,255,.08) 0%, transparent 60%); }
.grade-goat    { background: linear-gradient(135deg, rgba(193,127,74,.1)  0%, transparent 60%); }
.grade-svg { width: 32px; height: 32px; flex-shrink: 0; }
.grade-vip .grade-svg     { color: #d4a636; }
.grade-donateur .grade-svg { color: #7eb8f7; }
.grade-goat .grade-svg    { color: var(--copper); }
.grade-name    { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.grade-price   { font-size: 1.5rem; font-weight: 700; font-family: 'Rajdhani', sans-serif; color: var(--copper); line-height: 1; }
.grade-price span { font-size: .8rem; color: var(--text-3); font-weight: 400; }
.grade-perks {
  list-style: none;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.grade-perks li { font-size: .88rem; color: var(--text-2); display: flex; align-items: baseline; gap: 9px; }
.perk-check { color: var(--online); font-weight: 700; flex-shrink: 0; }
.perk-incl  { color: var(--copper); font-weight: 700; flex-shrink: 0; }
.grade-btn {
  display: block;
  margin: 0 22px 22px;
  background: var(--bg-card2);
  border: 1px solid var(--border2);
  color: var(--text-2);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all var(--transition);
  cursor: pointer;
}
.grade-btn:hover { background: var(--copper); border-color: var(--copper); color: #fff; }
.grade-btn-featured { background: var(--copper); border-color: var(--copper); color: #fff; }
.grade-btn-featured:hover { background: var(--copper-lt); border-color: var(--copper-lt); }
.grade-btn-sm { margin: 0; padding: 8px 18px; display: inline-block; }

/* ── One-time items ──────────────────────────────────────────── */
.onetime-grid { display: flex; flex-direction: column; gap: 14px; }
.onetime-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color var(--transition);
  flex-wrap: wrap;
}
.onetime-card:hover { border-color: var(--copper); }
.onetime-icon { display: flex; align-items: center; flex-shrink: 0; color: var(--copper); }
.onetime-info { flex: 1; }
.onetime-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.onetime-info p  { font-size: .85rem; color: var(--text-2); }
.onetime-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.onetime-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}

/* ── Coins grid ──────────────────────────────────────────────── */
.coins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.coins-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.coins-card:hover { transform: translateY(-3px); border-color: var(--brass); }
.coins-card-mid { border-color: rgba(212,166,54,.4); box-shadow: 0 0 24px rgba(212,166,54,.07); }
.coins-popular {
  position: absolute;
  top: -11px;
  background: var(--brass);
  color: #000;
  font-size: .68rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
}
.coins-amount { font-family: 'Rajdhani', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--brass); line-height: 1; }
.coins-label  { font-size: .78rem; color: var(--text-3); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.coins-price  { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-brand p { font-size: .88rem; color: var(--text-3); line-height: 1.7; }
.footer h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: .9rem; color: var(--text-2); transition: color var(--transition); }
.footer ul a:hover { color: var(--copper); }
.footer-ip   { font-family: 'Courier New', monospace; color: var(--copper-lt); font-size: .9rem; }
.footer-muted { font-size: .82rem; color: var(--text-3); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: .82rem;
  color: var(--text-3);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grade-grid  { grid-template-columns: 1fr; }
  .coins-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(11,11,11,.97);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
  }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 6px;
  }
  .nav-burger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: all .2s; }

  .hero-title { font-size: 3rem; }
  .launcher-box { flex-direction: column; align-items: flex-start; }
  .launcher-right { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
