﻿/* ==========================================================
   AlpenHunt RP – Mockup Styles
   Dunkel / Cyan, clean & modern
   ========================================================== */

:root {
  --bg: #070b10;
  --bg-2: #0b1118;
  --surface: #0f1720;
  --surface-2: #141e29;
  --border: rgba(148, 196, 220, 0.10);
  --border-strong: rgba(148, 196, 220, 0.18);

  --text: #e8f1f5;
  --text-2: #9fb1bd;
  --text-3: #6b7f8c;

  --cyan: #22d3ee;
  --cyan-2: #06b6d4;
  --cyan-soft: rgba(34, 211, 238, 0.12);
  --cyan-glow: rgba(34, 211, 238, 0.35);
  --ice: #a9c4dc; /* Himmelblau aus dem Logo */

  --green: #34d399;
  --amber: #fbbf24;
  --red: #f87171;
  --violet: #a78bfa;

  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
code {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: .88em;
  background: var(--cyan-soft);
  color: var(--cyan);
  padding: .1em .4em;
  border-radius: 6px;
}
svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
::selection { background: var(--cyan); color: var(--bg); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }
.accent { color: var(--cyan); }
.muted { color: var(--text-3); }

/* ---------- Typo ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .95;
  margin: 0;
}
h2 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h3 { font-size: 1.55rem; line-height: 1.05; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-3); display: inline-block; }
.dot--live { background: var(--green); box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .75em 1.25em;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600; font-size: .95rem;
  transition: transform .15s ease, background .2s, border-color .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: .5em .95em; font-size: .88rem; }
.btn--lg { padding: .9em 1.5em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--cyan); color: #03151a; box-shadow: 0 8px 30px -10px var(--cyan-glow); }
.btn--primary:hover { background: #4fe0f5; box-shadow: 0 10px 40px -8px var(--cyan-glow); }
.btn--primary svg { fill: currentColor; stroke: none; }
.btn--primary svg[viewBox] path[d^="M12 5v14"] { fill: none; stroke: currentColor; stroke-width: 2.5; }
.btn--ghost { background: rgba(255, 255, 255, .03); border-color: var(--border-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }
.btn--ghost svg { fill: currentColor; stroke: none; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  transition: background .25s, border-color .25s, backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(7, 11, 16, .82); backdrop-filter: blur(14px); border-color: var(--border); }
.nav__inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; text-transform: uppercase; letter-spacing: .02em; }
.nav__brand img { width: 40px; height: 40px; }
.nav__brand b { color: var(--cyan); }
.nav__links { display: flex; gap: 4px; margin-right: auto; }
.nav__links a { padding: .45em .85em; border-radius: 8px; font-size: .92rem; font-weight: 500; color: var(--text-2); transition: color .2s, background .2s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; width: 42px; height: 42px; border: 1px solid var(--border-strong); background: transparent; border-radius: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav__burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(100vh, 940px); display: flex; align-items: center; padding: calc(var(--nav-h) + 40px) 0 120px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 78% 38%, rgba(34, 211, 238, .18), transparent 70%),
    radial-gradient(800px 500px at 15% 10%, rgba(169, 196, 220, .08), transparent 70%),
    linear-gradient(180deg, #06090d 0%, #081018 60%, var(--bg) 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 60% 40%, #000 20%, transparent 70%);
  opacity: .5;
}
.hero__mountains { position: absolute; left: 0; bottom: 0; width: 100%; height: 34%; stroke: none; }
.hero__mountains .m3 { fill: #0c1620; }
.hero__mountains .m2 { fill: #0a121a; }
.hero__mountains .m1 { fill: var(--bg); }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .9fr; gap: 64px; align-items: center; }
.hero__title { font-size: clamp(3.2rem, 8vw, 6.4rem); font-style: italic; margin-bottom: 24px; }
.hero__lead { font-size: 1.15rem; color: var(--text-2); max-width: 560px; margin: 0 0 32px; }
.hero__lead strong { color: var(--text); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__note { margin: 18px 0 0; font-size: .88rem; color: var(--text-3); }

/* Status card */
.status-card {
  background: linear-gradient(180deg, rgba(20, 30, 41, .85), rgba(12, 19, 27, .85));
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .04);
  position: relative;
}
.status-card::before {
  content: ""; position: absolute; top: -1px; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.status-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: .3em .8em; border-radius: 99px; background: rgba(52, 211, 153, .1); color: var(--green); font-size: .82rem; font-weight: 600; }
.status-card__region { font-size: .85rem; color: var(--text-2); }
.status-card__players { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.status-card__players .big { font-family: var(--font-display); font-weight: 800; font-size: 4.2rem; line-height: 1; }
.meter { height: 6px; background: rgba(255, 255, 255, .06); border-radius: 6px; overflow: hidden; margin-bottom: 22px; }
.meter__fill { height: 100%; background: linear-gradient(90deg, var(--cyan-2), var(--cyan)); border-radius: 6px; transition: width .6s ease; }
.status-card__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0 0 20px; }
.status-card__meta div { background: rgba(255, 255, 255, .03); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; }
.status-card__meta dt { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); }
.status-card__meta dd { margin: 2px 0 0; font-weight: 600; font-size: .95rem; }
.copy-ip { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 10px; background: #060a0e; border: 1px dashed var(--border-strong); transition: border-color .2s; }
.copy-ip:hover { border-color: var(--cyan); }
.copy-ip code { background: none; padding: 0; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-ip__label { font-size: .8rem; font-weight: 600; color: var(--cyan); }

/* ---------- Strip ---------- */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__inner > div { padding: 28px 16px; text-align: center; border-left: 1px solid var(--border); }
.strip__inner > div:first-child { border-left: 0; }
.strip__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--cyan); }
.strip__label { font-size: .85rem; color: var(--text-2); }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--border); }
.section__head { margin-bottom: 56px; max-width: 680px; }
.section__head p { color: var(--text-2); font-size: 1.07rem; margin: 18px 0 0; }
.section__head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.section__head--row > div { max-width: 640px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: border-color .25s, transform .25s, background .25s;
}
.feature:hover { border-color: rgba(34, 211, 238, .35); transform: translateY(-4px); background: var(--surface-2); }
.feature__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--cyan-soft); color: var(--cyan); margin-bottom: 20px; }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--text-2); font-size: .94rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; counter-reset: s; }
.steps li { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255, 255, 255, .015); position: relative; }
.steps__n { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--cyan); line-height: 1; }
.steps b { display: block; font-size: .98rem; }
.steps p { margin: 2px 0 0; font-size: .85rem; color: var(--text-2); }

/* ---------- Tabs / Chips ---------- */
.tabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; flex-wrap: wrap; }
.tabs--center { display: flex; width: fit-content; margin: 0 auto 28px; }
.tab { border: 0; background: transparent; padding: .5em 1em; border-radius: 9px; font-size: .88rem; font-weight: 500; color: var(--text-2); transition: background .2s, color .2s; }
.tab:hover { color: var(--text); }
.tab.is-active { background: var(--surface-2); color: var(--cyan); box-shadow: inset 0 0 0 1px rgba(34, 211, 238, .25); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--border-strong); background: transparent; padding: .45em 1em; border-radius: 99px; font-size: .86rem; color: var(--text-2); transition: all .2s; }
.chip:hover { color: var(--text); border-color: var(--text-3); }
.chip.is-active { background: var(--cyan); border-color: var(--cyan); color: #03151a; font-weight: 600; }

/* ---------- Wish board ---------- */
.board { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 20px; }
.board__toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.board__toolbar .tabs { background: var(--bg-2); }
.board__filters { display: flex; gap: 8px; }
select, input, textarea {
  font: inherit; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--border-strong); border-radius: 10px;
  padding: .6em .85em; outline: none; transition: border-color .2s, box-shadow .2s;
}
select:focus, input:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-soft); }
select { appearance: none; padding-right: 2.2em; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239fb1bd' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .7em center; background-size: 1em; }
.board__empty { text-align: center; color: var(--text-3); padding: 40px 0; margin: 0; }

.wishes { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.wish {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 18px; align-items: center;
  padding: 16px 18px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--border);
  transition: border-color .2s;
  animation: fadeUp .35s ease both;
}
.wish:hover { border-color: var(--border-strong); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.vote {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  width: 64px; height: 64px; border-radius: 12px;
  border: 1px solid var(--border-strong); background: transparent;
  transition: all .2s;
}
.vote svg { width: 18px; height: 18px; stroke-width: 2.5; }
.vote span { font-weight: 700; font-size: .95rem; }
.vote:hover { border-color: var(--cyan); color: var(--cyan); }
.vote.is-voted { background: var(--cyan); border-color: var(--cyan); color: #03151a; }
.vote:disabled { opacity: .45; cursor: not-allowed; }
.wish__body { min-width: 0; }
.wish__title { font-weight: 600; font-size: 1.02rem; margin: 0 0 4px; }
.wish__desc { margin: 0 0 8px; color: var(--text-2); font-size: .9rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wish__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .8rem; color: var(--text-3); align-items: center; }
.wish__meta .src { display: inline-flex; align-items: center; gap: 5px; }
.wish__meta .src svg { width: 13px; height: 13px; }
.wish__reason { margin-top: 8px; font-size: .84rem; color: var(--text-2); padding-left: 10px; border-left: 2px solid var(--red); }
.tag { display: inline-flex; align-items: center; padding: .15em .6em; border-radius: 6px; font-size: .74rem; font-weight: 600; background: rgba(255, 255, 255, .05); color: var(--text-2); }
.status { display: inline-flex; align-items: center; gap: 6px; padding: .35em .8em; border-radius: 99px; font-size: .78rem; font-weight: 600; white-space: nowrap; }
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status--offen { color: var(--ice); background: rgba(169, 196, 220, .1); }
.status--angenommen { color: var(--cyan); background: var(--cyan-soft); }
.status--umgesetzt { color: var(--green); background: rgba(52, 211, 153, .1); }
.status--abgelehnt { color: var(--red); background: rgba(248, 113, 113, .1); }

/* ---------- Garage ---------- */
.garage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.car {
  border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--border);
  transition: transform .25s, border-color .25s;
  animation: fadeUp .35s ease both;
}
.car:hover { transform: translateY(-4px); border-color: rgba(34, 211, 238, .35); }
.car__img {
  aspect-ratio: 16 / 10; position: relative; display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 120%, rgba(34, 211, 238, .22), transparent 60%),
    linear-gradient(160deg, #111c26, #0a1017);
  overflow: hidden;
}
.car__img::after { content: "Screenshot folgt"; position: absolute; top: 12px; right: 12px; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.car__img svg { width: 62%; height: auto; stroke: rgba(169, 196, 220, .35); stroke-width: 1.2; transition: stroke .3s, transform .4s; }
.car:hover .car__img svg { stroke: var(--cyan); transform: scale(1.04); }
.car__info { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.car__brand { font-size: .76rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em; }
.car__name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; text-transform: uppercase; line-height: 1.1; }
.car__wish { font-size: .72rem; color: var(--cyan); display: block; margin-top: 2px; }

/* ---------- Tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; max-width: 1040px; margin: 0 auto; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 30px 26px;
}
.tier--featured {
  border-color: rgba(34, 211, 238, .5);
  background: linear-gradient(180deg, rgba(34, 211, 238, .08), var(--surface) 45%);
  box-shadow: 0 30px 80px -40px var(--cyan-glow);
  transform: translateY(-10px);
}
.tier__ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: #03151a; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .3em .9em; border-radius: 99px; }
.tier__badge { font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); }
.tier h3 { font-size: 2rem; margin: 6px 0 14px; }
.tier__price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; }
.tier__price span { font-size: 1.1rem; color: var(--text-2); vertical-align: top; }
.tier__price small { font-family: var(--font-body); font-weight: 500; font-size: .85rem; color: var(--text-3); }
.tier__perks { list-style: none; padding: 22px 0 0; margin: 22px 0 26px; border-top: 1px solid var(--border); display: grid; gap: 10px; flex: 1; align-content: start; }
.tier__perks li { position: relative; padding-left: 28px; font-size: .94rem; color: var(--text-2); }
.tier__perks li::before { content: ""; position: absolute; left: 0; top: .2em; width: 18px; height: 18px; border-radius: 50%; background: var(--cyan-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 11px no-repeat; }

.notice { display: flex; gap: 14px; align-items: flex-start; max-width: 1040px; margin: 36px auto 0; padding: 18px 20px; border-radius: 12px; background: var(--cyan-soft); border: 1px solid rgba(34, 211, 238, .25); }
.notice svg { width: 22px; height: 22px; color: var(--cyan); margin-top: 2px; }
.notice p { margin: 0; font-size: .92rem; color: var(--text-2); }
.notice b { color: var(--text); }

/* ---------- Rules ---------- */
.rules { display: grid; gap: 10px; }
.rule { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; animation: fadeUp .3s ease both; }
.rule summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 18px 20px; font-weight: 600; }
.rule summary::-webkit-details-marker { display: none; }
.rule summary .num { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--cyan); min-width: 36px; }
.rule summary::after { content: "+"; margin-left: auto; font-size: 1.4rem; font-weight: 400; color: var(--text-3); transition: transform .2s; }
.rule[open] summary::after { transform: rotate(45deg); color: var(--cyan); }
.rule[open] { border-color: var(--border-strong); }
.rule p { margin: 0; padding: 0 20px 20px 72px; color: var(--text-2); font-size: .94rem; }
.rules__updated { text-align: center; font-size: .82rem; color: var(--text-3); margin-top: 20px; }

/* ---------- CTA ---------- */
.cta { padding: 0 0 120px; }
.cta__inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
  padding: 36px 44px; border-radius: 22px;
  background:
    radial-gradient(500px 240px at 0% 50%, rgba(34, 211, 238, .16), transparent 70%),
    var(--surface);
  border: 1px solid var(--border-strong);
  max-width: calc(var(--container) - 48px);
}
.cta__inner img { width: 120px; height: 120px; filter: drop-shadow(0 10px 30px rgba(34, 211, 238, .25)); }
.cta__inner h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.cta__inner p { margin: 8px 0 0; color: var(--text-2); }
.cta__buttons { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: #05080c; padding: 56px 0 28px; }
.footer__inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer__brand p { color: var(--text-3); font-size: .9rem; max-width: 280px; margin: 14px 0 0; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__cols h4 { margin: 0 0 14px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); font-weight: 600; }
.footer__cols a { display: block; font-size: .92rem; color: var(--text-2); padding: 3px 0; transition: color .2s; }
.footer__cols a:hover { color: var(--cyan); }
.footer__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--border); font-size: .8rem; color: var(--text-3); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3, 6, 9, .75); backdrop-filter: blur(6px); animation: fade .2s ease; }
.modal__dialog {
  position: relative; width: 100%; max-width: 560px; max-height: calc(100vh - 32px); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: 18px; padding: 30px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .8);
  animation: pop .25s ease;
}
.modal__dialog h3 { font-size: 2rem; margin-bottom: 8px; }
.modal__dialog > p { margin: 0 0 22px; font-size: .92rem; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); background: transparent; font-size: 1.4rem; line-height: 1; color: var(--text-2); }
.modal__close:hover { color: var(--text); border-color: var(--border-strong); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.98); } }

.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: .85rem; font-weight: 500; color: var(--text-2); }
.form textarea { resize: vertical; min-height: 100px; }
.form .btn { margin-top: 6px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 200;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  background: var(--surface-2); border: 1px solid rgba(34, 211, 238, .4); color: var(--text);
  padding: 12px 18px; border-radius: 12px; font-size: .92rem; font-weight: 500;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, .7);
  transition: opacity .25s, transform .25s;
  max-width: calc(100vw - 32px);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .garage { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .status-card { max-width: 480px; }
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 12px 16px 20px;
    background: rgba(7, 11, 16, .97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .2s;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: .85em 1em; font-size: 1rem; }
  .nav__burger { display: flex; }
  .nav.menu-open { background: rgba(7, 11, 16, .97); }
  .nav__actions .btn--ghost { display: none; }
  .tiers { grid-template-columns: 1fr; max-width: 440px; }
  .tier--featured { transform: none; }
  .cta__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 32px 24px; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .strip__inner > div:nth-child(3) { border-left: 0; }
  .strip__inner > div:nth-child(n+3) { border-top: 1px solid var(--border); }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 80px 0; }
  .nav__inner { gap: 12px; }
  .nav__brand span { display: none; }
  .hero { padding-bottom: 80px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .features, .steps, .garage { grid-template-columns: 1fr; }
  .board { padding: 12px; }
  .board__toolbar .tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .board__filters { width: 100%; }
  .board__filters select { flex: 1; min-width: 0; }
  .wish { grid-template-columns: 52px 1fr; gap: 12px; padding: 14px; }
  .wish .status { grid-column: 2; justify-self: start; }
  .vote { width: 52px; height: 56px; grid-row: span 2; align-self: start; }
  .status-card__meta { grid-template-columns: 1fr 1fr; }
  .status-card__meta div:last-child { grid-column: span 2; }
  .form__row { grid-template-columns: 1fr; }
  .rule p { padding-left: 20px; }
  .footer__cols { gap: 36px; }
  .tabs--center { width: 100%; }
  .tabs--center .tab { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
