:root {
  --bg: #0a0a0f;
  --surface: #14141d;
  --surface-2: #1c1c28;
  --border: #232336;
  --text: #f4f5f8;
  --muted: #8a93a8;
  --accent: #6e8aff;
  --accent-strong: #1e3aae;
  --accent-soft: rgba(110, 138, 255, 0.20);
  --accent-deep: #2c4cdb;
  --success: #5cd99c;
  --danger: #ff8585;
  --white: #ffffff;
  --black: #000000;
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1120px;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--white); }

img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  background: var(--white);
  color: var(--black);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-strong));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--surface-2);
}

/* BUTTONS */
.button, .button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.button {
  background: var(--accent-strong);
  color: var(--white);
}
.button:hover { background: var(--accent-deep); color: var(--white); transform: translateY(-1px); }
.button-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.button-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* HERO */
.hero {
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(66, 99, 235, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 30% at 90% 10%, rgba(30, 58, 174, 0.14), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 880px;
  font-weight: 700;
}
.hero h1 .accent { color: var(--accent); }
.hero .lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 32px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__credentials {
  display: flex;
  gap: 12px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.cred {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  font-size: 0.9rem;
  color: var(--muted);
}
.cred__dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-mono);
}
.cred strong { color: var(--white); margin-right: 4px; }

/* SECTIONS */
section { padding: 72px 0; }
.section-head { margin-bottom: 40px; max-width: 720px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--surface);
  padding: 28px 24px;
}
.stat__value {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  font-family: var(--font-mono);
}
.stat__value .unit { color: var(--accent); }
.stat__label { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card h3 { margin: 0; color: var(--white); font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.97rem; }
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 4px;
}
.card__link::after { content: "→"; transition: transform 0.15s ease; }
.card__link:hover::after { transform: translateX(3px); }

/* MASCOT (Yolo) */
.npc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  position: relative;
  align-items: start;
}
.mascot {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 24px;
  background: transparent;
  display: grid;
  place-items: center;
  animation: bob 3s ease-in-out infinite;
}
.mascot svg { width: 100%; height: 100%; display: block; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.npc__body { display: flex; flex-direction: column; gap: 16px; }
.npc__name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.npc__name::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.npc__text {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
  min-height: 80px;
  position: relative;
}
.npc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.npc__action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(92, 131, 255, 0.35);
  background: rgba(92, 131, 255, 0.12);
  color: #dce5ff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.npc__action:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 166, 255, 0.7);
  background: rgba(92, 131, 255, 0.2);
}
.npc__action:focus-visible {
  outline: 2px solid rgba(138, 166, 255, 0.85);
  outline-offset: 2px;
}
.npc__text.is-typing::after {
  content: "▮";
  color: var(--accent);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.npc__form { display: flex; gap: 8px; flex-wrap: wrap; }
.npc__input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}
.npc__input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}
.npc__hint { color: var(--muted); font-size: 0.82rem; margin: 0; font-family: var(--font-mono); }

/* ARCADE */
.arcade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.arcade-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.arcade-card__cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--surface-2), var(--bg));
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.arcade-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.arcade-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.arcade-card__body h3 { margin: 0; color: var(--white); font-size: 1.1rem; }
.arcade-card__body p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.arcade-card__cta { margin-top: auto; padding-top: 8px; }

.game-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--black);
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline__item { position: relative; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}
.timeline__date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.timeline__role { color: var(--white); font-size: 1.1rem; font-weight: 600; margin: 4px 0 2px; }
.timeline__org { color: var(--muted); font-size: 0.95rem; margin: 0 0 8px; }
.timeline__bullets { margin: 0; padding-left: 20px; color: var(--text); }
.timeline__bullets li { margin-bottom: 6px; }

/* PROSE */
.prose { max-width: 720px; }
.prose h2 { color: var(--white); margin-top: 48px; }
.prose h3 { color: var(--white); margin-top: 28px; }
.prose p { color: var(--text); }
.prose ul li { margin-bottom: 6px; }

/* CONTACT FORM */
.form { display: grid; gap: 18px; max-width: 560px; }
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row label {
  font-size: 0.82rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form__row input,
.form__row textarea {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  resize: vertical;
}
.form__row input:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.form__row textarea { min-height: 160px; }
.form__status {
  color: var(--muted);
  font-size: 0.92rem;
  min-height: 1.4em;
  margin: 0;
}
.form__status.is-success { color: var(--success); }
.form__status.is-error { color: var(--danger); }
.form button[type="submit"] { align-self: start; }

/* BLOG LIST */
.blog-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-2px); color: inherit; }
.blog-card__cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--surface-2), var(--bg));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.blog-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__cover--placeholder::after {
  content: "▦";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  opacity: 0.4;
  font-size: 2.5rem;
}
.blog-card__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__date {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card__title {
  color: var(--white);
  font-size: 1.18rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.blog-card__excerpt { color: var(--muted); font-size: 0.95rem; margin: 0; }
.blog-empty { color: var(--muted); padding: 40px 0; }

/* BLOG POST */
.post { max-width: 720px; margin: 0 auto; }
.post__meta {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.post__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.post__lead { color: var(--muted); font-size: 1.15rem; margin: 0 0 32px; line-height: 1.6; }
.post__cover {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 40px;
  background: linear-gradient(135deg, var(--surface-2), var(--bg));
  border: 1px solid var(--border);
}
.post__cover img { width: 100%; height: 100%; object-fit: cover; }
.post__body { color: var(--text); font-size: 1.05rem; line-height: 1.75; }
.post__body > *:first-child { margin-top: 0; }
.post__body h2 { color: var(--white); margin: 48px 0 16px; font-size: 1.6rem; letter-spacing: -0.01em; }
.post__body h3 { color: var(--white); margin: 32px 0 12px; font-size: 1.25rem; }
.post__body p { margin: 0 0 18px; }
.post__body ul, .post__body ol { padding-left: 22px; margin: 0 0 20px; }
.post__body li { margin-bottom: 8px; }
.post__body figure { margin: 32px 0; }
.post__body figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.post__body figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}
.post__body blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  color: var(--muted);
  font-style: italic;
  margin: 28px 0;
}
.post__body pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 24px 0;
}
.post__body code:not(pre code) {
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.92em;
  color: var(--accent);
}
.post__body a { color: var(--accent); border-bottom: 1px solid transparent; }
.post__body a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.post__back {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  margin-top: 64px;
  display: inline-block;
}
.post__back:hover { color: var(--accent); }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 48px;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }
.site-footer__links { display: flex; gap: 18px; flex-wrap: wrap; }

/* CONTACT PAGE */
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.mini-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 32px;
  align-items: start;
}
.contact-stack { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s ease;
}
.contact-card:hover { border-color: var(--accent); }
.contact-card h3 { margin: 0 0 8px; color: var(--white); font-size: 1.1rem; font-weight: 600; }
.contact-card h3 a { color: var(--white); }
.contact-card h3 a:hover { color: var(--accent); }
.contact-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.contact-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.contact-chip-list li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-panel h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}
.microcopy { color: var(--muted); font-size: 0.92rem; margin: 0 0 24px; }
.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.consent-check {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.consent-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.consent-check__box {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  position: relative;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.consent-check__box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.consent-check input:checked + .consent-check__box {
  border-color: var(--accent);
  background: var(--accent);
}
.consent-check input:checked + .consent-check__box::after { opacity: 1; }
.consent-check:hover .consent-check__box { border-color: var(--accent); }
.consent-check a { color: var(--accent); }
.form-feedback {
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.93rem;
  line-height: 1.5;
  white-space: pre-line;
  display: none;
}
.form-feedback[role] { display: block; }
.form-feedback.is-success {
  border-color: rgba(92, 217, 156, 0.35);
  background: rgba(92, 217, 156, 0.1);
  color: var(--success);
}
.form-feedback.is-error {
  border-color: rgba(255, 133, 133, 0.35);
  background: rgba(255, 133, 133, 0.08);
  color: var(--danger);
}

/* TIMELINE CARDS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.timeline-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.timeline-card__step {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}
.timeline-card h3 { margin: 0 0 6px; color: var(--white); font-size: 1.05rem; font-weight: 600; }
.timeline-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* SCROLL REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* SOCIAL ICONS */
.cred__dot i { font-size: 1.05rem; line-height: 1; }
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.15rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero { padding: 64px 0 32px; }
  .site-nav a { padding: 6px 10px; font-size: 0.88rem; }
  .stats { grid-template-columns: 1fr; }
  .npc { grid-template-columns: 1fr; }
  .mascot { margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-panel { padding: 24px; }
}

/* UTILITY */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
