/* ============================================================
   DONUT CREW — Website Styles
   Static stylesheet. No external dependencies beyond Google Fonts.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg: #0a0c12;
  --bg-soft: #0e111b;
  --surface: #12151f;
  --surface-2: #171b28;
  --surface-3: #1d2130;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #eceef6;
  --text-muted: #9aa1b8;
  --text-faint: #6b7289;

  --primary: #7c5cff;
  --primary-2: #5a8bff;
  --primary-glow: rgba(124, 92, 255, 0.35);

  --accent: #ff6b9d;    /* glaze pink */
  --accent-2: #ffb03a;  /* sprinkle amber */
  --success: #3ddc97;
  --warning: #ffb03a;
  --danger: #ff5c7a;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px var(--primary-glow);

  --nav-h: 72px;
  --grad: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  --grad-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
code { font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace; font-size: 0.85em; color: var(--accent-2); background: rgba(255, 176, 58, 0.12); padding: 0.1em 0.4em; border-radius: 6px; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section { padding: 96px 0; position: relative; }

/* ---------- Typography helpers ---------- */
.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient--cool {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head--left { text-align: left; margin: 0 0 28px; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-2);
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px) scale(0.99); }

.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--small { padding: 8px 16px; font-size: 0.85rem; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.38);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(124, 92, 255, 0.55);
}

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

.btn--ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--bg);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.btn__icon { width: 18px; height: 18px; }

/* ---------- Badges & live dot ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 16px;
  backdrop-filter: blur(8px);
}

.live-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.6);
  animation: livePing 2s infinite;
  flex: none;
}

.live-dot--pulse { animation: livePing 1.6s infinite; }

@keyframes livePing {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(61, 220, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0); }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 12, 18, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav__logo {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 4px 14px rgba(124, 92, 255, 0.5));
}

.nav__name-accent { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__link:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav__link.is-active { color: #fff; }

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-accent);
}

.nav__cta { margin-left: 10px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 120px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(124, 92, 255, 0.28), transparent 60%),
    radial-gradient(900px 500px at 8% 108%, rgba(255, 107, 157, 0.16), transparent 60%),
    radial-gradient(700px 400px at 50% 50%, rgba(90, 139, 255, 0.1), transparent 70%),
    linear-gradient(180deg, #0b0d16 0%, #0a0c12 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}

.hero__glow--1 { width: 480px; height: 480px; background: rgba(124, 92, 255, 0.5); top: -120px; right: -80px; animation: drift 14s ease-in-out infinite; }
.hero__glow--2 { width: 380px; height: 380px; background: rgba(255, 107, 157, 0.35); bottom: -140px; left: -100px; animation: drift 18s ease-in-out infinite reverse; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}

.hero__sprinkles { position: absolute; inset: 0; pointer-events: none; }

.sprinkle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 5px;
  background: var(--c);
  border-radius: 4px;
  transform: rotate(var(--r));
  opacity: 0.55;
  animation: sprinkleFloat 9s ease-in-out infinite;
}

@keyframes sprinkleFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r)); }
  50% { transform: translateY(-18px) rotate(calc(var(--r) + 14deg)); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 22px 0 22px;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  backdrop-filter: blur(8px);
}

.hero__stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.hero__stat-num { font-size: 1.35rem; font-weight: 700; color: var(--success); }
.hero__stat-suffix { font-size: 0.85rem; color: var(--text-muted); }

.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__art::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.35), rgba(124, 92, 255, 0.05) 60%, transparent 72%);
  filter: blur(8px);
}

.donut--float img {
  width: min(320px, 70vw);
  height: auto;
  animation: donutFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(124, 92, 255, 0.45));
}

@keyframes donutFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-22px) rotate(3deg); }
}

/* Hero ticker */
.hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero__ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.hero__ticker-track span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Live member count ---------- */
.members { background: var(--bg-soft); overflow: hidden; }
.members::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 320px at 50% 100%, rgba(124, 92, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.members__card {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.members__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  border: 1px solid rgba(61, 220, 151, 0.3);
  background: rgba(61, 220, 151, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.members__number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--success) 0%, var(--primary-2) 40%, var(--primary) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 20px 60px rgba(61, 220, 151, 0.35);
}

.members__caption { color: var(--text-muted); margin-top: 14px; }

.members__meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 36px 0 28px;
}

.members__meta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
}

.members__meta-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.members__meta-label { font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; }

.api-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 0.86rem;
  color: var(--text-muted);
  background: rgba(90, 139, 255, 0.08);
  border: 1px solid rgba(90, 139, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.api-note svg { width: 20px; height: 20px; color: var(--primary-2); flex: none; margin-top: 2px; }
.api-note strong { color: var(--text); }

/* ---------- About ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about__visual { position: relative; }

.about__art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about__art::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.3), rgba(124, 92, 255, 0.1) 60%, transparent 75%);
}

.about__art img { animation: donutFloat 7s ease-in-out infinite; }

.about__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(23, 27, 40, 0.9);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 10px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about__chip--1 { top: 14%; left: 0; animation-delay: 0s; }
.about__chip--2 { bottom: 26%; right: 0; animation-delay: 1.4s; }
.about__chip--3 { bottom: 4%; left: 18%; animation-delay: 2.6s; }
.about__chip-emoji { font-size: 1rem; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: var(--shadow-card);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 92, 255, 0.14);
  color: var(--primary-2);
  margin-bottom: 14px;
}

.feature__icon svg { width: 22px; height: 22px; }

.feature h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Services overview ---------- */
.services { background: var(--bg-soft); }
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 90% 20%, rgba(255, 107, 157, 0.1), transparent 65%),
              radial-gradient(700px 400px at 10% 90%, rgba(90, 139, 255, 0.1), transparent 65%);
  pointer-events: none;
}

.services__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--c, var(--primary));
}

.service-card--violet { --c: #7c5cff; --tint: rgba(124, 92, 255, 0.14); }
.service-card--amber { --c: var(--accent-2); --tint: rgba(255, 176, 58, 0.14); }
.service-card--green { --c: var(--success); --tint: rgba(61, 220, 151, 0.14); }
.service-card--pink { --c: var(--accent); --tint: rgba(255, 107, 157, 0.14); }

.service-card:hover::before {
  opacity: 1;
  background: radial-gradient(300px 160px at 20% 0%, var(--tint), transparent 70%);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--tint);
  color: var(--c);
  margin-bottom: 6px;
}

.service-card__icon svg { width: 27px; height: 27px; }

.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; }

.service-card p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c);
  margin-top: 6px;
}

.service-card__link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ---------- Service detail sections ---------- */
.detail { overflow: hidden; }

.detail--violet { background: linear-gradient(180deg, rgba(124, 92, 255, 0.06), transparent); }
.detail--amber { background: linear-gradient(180deg, rgba(255, 176, 58, 0.05), transparent); }
.detail--green { background: linear-gradient(180deg, rgba(61, 220, 151, 0.05), transparent); }
.detail--pink { background: linear-gradient(180deg, rgba(255, 107, 157, 0.05), transparent); }

.detail__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.detail .about__inner { grid-template-columns: 1.1fr 0.9fr; align-items: start; }

.checklist { display: grid; gap: 12px; margin: 6px 0 28px; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.checklist__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(61, 220, 151, 0.14);
  color: var(--success);
  flex: none;
  margin-top: 2px;
}

.checklist__mark svg { width: 13px; height: 13px; }

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

.showcase-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.showcase-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.showcase-tile:hover { transform: translateY(-3px); border-color: var(--primary-2); background: var(--surface-2); }

.showcase-tile__icon { font-size: 1.6rem; }
.showcase-tile__name { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.showcase-tile__tag { font-size: 0.75rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; }

.showcase-note { margin-top: 14px; font-size: 0.85rem; color: var(--text-faint); }

/* Steps */
.steps { display: grid; gap: 14px; counter-reset: none; }

.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.step:hover { border-color: var(--primary-2); transform: translateX(4px); }

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.step__body { font-size: 0.92rem; color: var(--text-muted); }
.step__body strong { display: block; color: var(--text); font-family: var(--font-display); font-size: 0.98rem; }

/* Price cards (advertising) */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-card--featured {
  border-color: rgba(255, 107, 157, 0.5);
  background: linear-gradient(160deg, rgba(255, 107, 157, 0.09), var(--surface) 55%);
}

.price-card__badge {
  position: absolute;
  top: -11px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.price-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.price-card__price { font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }
.price-card__list { display: grid; gap: 6px; margin-top: 4px; }

.price-card__list li { font-size: 0.85rem; color: var(--text-muted); display: flex; gap: 8px; align-items: center; }
.price-card__list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- Information / tabs ---------- */
.information { background: var(--bg-soft); }

.tabs { max-width: 920px; margin: 0 auto; }

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tab-btn svg { width: 17px; height: 17px; }

.tab-btn:hover { color: var(--text); border-color: var(--border-strong); }

.tab-btn.is-active {
  color: #fff;
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.35);
}

.tab-panels {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}

.tab-panel { display: none; padding: 10px; }

.tab-panel.is-active { display: block; animation: fadeIn 0.35s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Announcements */
.announcement {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 14px;
  border-bottom: 1px solid var(--border);
}

.announcement:last-of-type { border-bottom: none; }

.announcement__emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: none;
  font-size: 1.5rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.announcement__body h4 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 4px; }
.announcement__body p { color: var(--text-muted); font-size: 0.92rem; }
.announcement__body time { display: inline-block; margin-top: 8px; font-size: 0.78rem; color: var(--text-faint); }

.panel-note { padding: 14px; font-size: 0.85rem; color: var(--text-faint); }

/* Rules */
.rules { display: grid; gap: 12px; padding: 8px 6px; }

.rules li {
  counter-increment: rule;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.rules {
  counter-reset: rule;
}

.rules li::before {
  content: counter(rule, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary-2);
  flex: none;
}

.rules li strong { color: var(--text); }

/* Facts */
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 8px 6px; }

.fact {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.fact dt { color: var(--text-faint); font-size: 0.85rem; }
.fact dd { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; text-align: right; }

/* Notices */
.notices { display: grid; gap: 12px; padding: 8px 6px; }

.notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.notice svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.notice strong { display: block; }

.notice--warning { background: rgba(255, 176, 58, 0.08); border: 1px solid rgba(255, 176, 58, 0.3); color: #f3d19a; }
.notice--warning svg { color: var(--warning); }
.notice--success { background: rgba(61, 220, 151, 0.08); border: 1px solid rgba(61, 220, 151, 0.3); color: #b5e7d3; }
.notice--success svg { color: var(--success); }
.notice--info { background: rgba(90, 139, 255, 0.08); border: 1px solid rgba(90, 139, 255, 0.3); color: #c3d3f7; }
.notice--info svg { color: var(--primary-2); }

/* ---------- Staff ---------- */
.staff__group { margin-bottom: 48px; }

.staff__group:last-child { margin-bottom: 0; }

.staff__group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.staff__group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}

.staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.staff-card {
  display: flex;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.staff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: var(--shadow-card);
}

.staff-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--a1) 45%, transparent);
}

.staff-card__body h4 { font-family: var(--font-display); font-size: 1.05rem; }

.staff-card__role {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin: 4px 0 8px;
}

.staff-card__body p { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- CTA ---------- */
.cta { padding-bottom: 110px; }

.cta__panel {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #33225f 0%, #2a1a55 45%, #451f3f 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
}

.cta__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 220px at 20% 20%, rgba(124, 92, 255, 0.45), transparent 60%),
    radial-gradient(500px 220px at 85% 90%, rgba(255, 107, 157, 0.4), transparent 60%);
  pointer-events: none;
  animation: drive 8s ease-in-out infinite alternate;
}

@keyframes drive {
  from { opacity: 0.75; transform: scale(1); }
  to { opacity: 1; transform: scale(1.06); }
}

.cta__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta__sub { position: relative; color: rgba(255, 255, 255, 0.75); margin-bottom: 32px; }

.cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.cta__members {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta__members strong { color: #fff; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: #080a10;
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer__brand { margin-bottom: 14px; }

.footer__about { color: var(--text-muted); font-size: 0.9rem; max-width: 320px; }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer__social a svg { width: 18px; height: 18px; }

.footer__social a:hover {
  color: #fff;
  border-color: var(--primary-2);
  background: rgba(90, 139, 255, 0.15);
  transform: translateY(-3px);
}

.footer__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__list { display: grid; gap: 10px; }

.footer__list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer__list a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding: 22px 0;
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top svg { width: 22px; height: 22px; }
.back-top:hover { transform: translateY(-3px); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Impressum / subpages ---------- */
.page {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  min-height: 70vh;
}

.page__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 48px);
  max-width: 780px;
  margin: 0 auto;
}

.page__back { margin-bottom: 24px; }

.page__back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.page__back a:hover { color: var(--accent); }
.page__back svg { width: 18px; height: 18px; }

.page__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 28px;
}

.legal h2 { font-family: var(--font-display); font-size: 1.15rem; margin: 26px 0 10px; color: var(--text); }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li, .legal address { color: var(--text-muted); font-size: 0.94rem; font-style: normal; }
.legal ul { list-style: disc; padding-left: 22px; display: grid; gap: 6px; }
.legal a { color: var(--primary-2); }
.legal a:hover { text-decoration: underline; }

.error-hero { text-align: center; padding: 40px 0; }
.error-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.error-hero p { color: var(--text-muted); font-size: 1.1rem; margin: 12px 0 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stat { text-align: left; }
  .hero__art { order: -1; }
  .hero__art::before { width: 280px; height: 280px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { text-align: center; }
  .detail__inner, .detail .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .staff__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(10, 12, 18, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 22px;
    transform: translateY(-140%);
    transition: transform 0.35s ease;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__link { padding: 12px 14px; font-size: 1rem; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { color: var(--accent-2); }
  .nav__cta { margin: 10px 0 0; justify-content: center; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .members__meta-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .showcase-grid, .price-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .tab-list { gap: 6px; }
  .tab-btn { padding: 9px 14px; font-size: 0.85rem; }
  .staff__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .hero__stat { flex-wrap: wrap; justify-content: center; }
  .nav__brand { font-size: 1.05rem; }
}