/* NEXOS — DESIGN SYSTEM
   Style: serious / esports training / monochrome + red accent */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg:        #0c0c0e;
  --bg-2:      #15161a;
  --bg-3:      #1f2026;
  --paper:     #1a1b1f;
  --ink:       #f5f5f7;
  --ink-2:     #d8d8de;
  --ink-soft:  #8a8a92;
  --ink-mute:  #5a5a62;
  --red:       #ee2737;
  --red-deep:  #c4001a;
  --red-soft:  #ff5a68;
  --steel:     #506478;
  --line:      rgba(245, 245, 247, 0.08);
  --line-2:    rgba(245, 245, 247, 0.18);
  --shadow:    0 16px 40px -10px rgba(0, 0, 0, 0.5);
  --glow-red:  0 0 24px rgba(238, 39, 55, 0.45);

  --font-display: 'Chakra Petch', -apple-system, sans-serif;
  --font-sans:    'Inter', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --container: 1240px;
  --gutter: clamp(1.2rem, 4vw, 2rem);
  --radius: 4px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  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; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--red); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: 0; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--red);
  background: rgba(238, 39, 55, 0.05);
}

.tag.steel { color: var(--steel); border-color: var(--steel); background: transparent; }
.tag.solid { background: var(--red); color: var(--ink); }

p { color: var(--ink-2); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }

/* TOPBAR */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.topbar .red { color: var(--red); }
@media (max-width: 600px) { .topbar-inner > span:nth-child(2) { display: none; } }

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--bg-2);
  border: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--red);
  position: relative;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--red);
  opacity: 0.4;
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--ink);
  padding: 0.6rem 1.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--red-deep); box-shadow: var(--glow-red); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 0.4rem 0.7rem;
  font-size: 1.1rem;
}

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter);
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary { background: var(--red); color: var(--ink); border-color: var(--red); }
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); box-shadow: var(--glow-red); }
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* HERO */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--red);
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.15;
  top: -250px;
  right: -200px;
}

/* Grid background */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 245, 247, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 247, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  padding: 0.4rem 0.9rem;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--ink-2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  box-shadow: var(--glow-red);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 { margin-bottom: 1.8rem; }
.hero h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
}
.hero h1 em::after {
  content: '/';
  color: var(--ink-mute);
  margin-left: 0.4rem;
  font-weight: 400;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stat {
  flex: 1;
  padding: 1.5rem 0;
  border-right: 1px solid var(--line);
  min-width: 130px;
}
.hero-stat:last-child { border-right: none; }

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.hero-stat .num em { color: var(--red); font-style: normal; }

.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line-2);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 12, 14, 0.8) 100%);
}

.hero-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink);
}

.hero-overlay .label {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.hero-overlay .value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
}

/* SECTION HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header.center { justify-content: center; text-align: center; }
.section-header-text { max-width: 720px; }
.section-header .tag { margin-bottom: 1.2rem; }

.section-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--red);
  transition: all 0.2s;
}
.section-link:hover { background: var(--red); color: var(--ink); }

/* ZONES */
.zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.zone {
  background: var(--bg-2);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.zone:hover { background: var(--bg-3); }

.zone-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.zone-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.4s, transform 0.5s;
}

.zone:hover .zone-image img { filter: grayscale(0); transform: scale(1.04); }

.zone-body {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.zone-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

.zone h3 { margin-bottom: 0.8rem; }

.zone p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex: 1;
}

.zone-spec {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}

.zone-spec strong { color: var(--red); }

@media (max-width: 1100px) { .zones { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .zones { grid-template-columns: 1fr; } }

/* FORMATS */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.format {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.format:hover { border-color: var(--red); }

.format-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.format-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
}

.format-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.format-body .tag { margin-bottom: 1rem; align-self: flex-start; }

.format-body h3 { margin-bottom: 0.7rem; }

.format-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.format-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.format-meta .label { color: var(--ink-soft); text-transform: uppercase; }
.format-meta .value { color: var(--red); font-weight: 700; }

@media (max-width: 940px) { .formats { grid-template-columns: 1fr; } }

/* FEATURE BAND */
.feature-band {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.feature-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--red);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  bottom: -150px;
  right: -100px;
}

.feature-band-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
  align-items: center;
}

.feature-band h2 { margin-bottom: 1.5rem; }
.feature-band h2 em { color: var(--red); font-style: normal; }

.feature-band-lead { font-size: 1.1rem; color: var(--ink-2); line-height: 1.6; }

.feature-band-list { list-style: none; }
.feature-band-list li {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-band-list li:last-child { border-bottom: 1px solid var(--line); }

.feature-band-list .num {
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  min-width: 36px;
}

.feature-band-list strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.feature-band-list span { color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 940px) { .feature-band-grid { grid-template-columns: 1fr; } }

/* RANKINGS / TESTIMONIALS */
.community {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.community-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 2rem 2.2rem;
  transition: border-color 0.3s;
}

.community-card:hover { border-color: var(--red); }

.community-quote {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.community-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.community-avatar {
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--red);
}

.community-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4); }

.community-info strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.community-info span {
  color: var(--red);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 800px) { .community { grid-template-columns: 1fr; } }

/* CTA */
.cta-card {
  background: var(--bg-2);
  border: 1px solid var(--red);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-red);
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 245, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 247, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.cta-card h2 { margin-bottom: 1.2rem; }
.cta-card h2 em { color: var(--red); font-style: normal; }
.cta-card p { color: var(--ink-2); margin-bottom: 2.5rem; font-size: 1.05rem; }

.cta-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.5rem;
  background: var(--bg);
  padding: 0.4rem;
  border: 1px solid var(--line-2);
}

.cta-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: none;
  background: transparent;
  outline: none;
  color: var(--ink);
}

.cta-form input::placeholder { color: var(--ink-mute); }

.cta-form button {
  background: var(--red);
  color: var(--ink);
  border: none;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-form button:hover { background: var(--red-deep); }

.cta-note { font-size: 0.84rem; color: var(--ink-soft); margin-top: 1.5rem; }
.cta-note a { color: var(--red); border-bottom: 1px solid var(--red); }

@media (max-width: 600px) {
  .cta-form { flex-direction: column; padding: 1rem; }
  .cta-form button { padding: 1rem; }
}

/* FOOTER */
footer {
  background: var(--bg-2);
  color: var(--ink);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand { color: var(--ink); margin-bottom: 0; }
.footer-brand p {
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 360px;
  font-size: 0.94rem;
}

.footer-address {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.7;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--red);
  background: var(--bg-3);
}

.footer-address strong {
  color: var(--red);
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

footer h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 1.2rem;
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; }
footer a { color: var(--ink-soft); font-size: 0.92rem; }
footer a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* INTERIOR PAGES */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--bg-2);
  border-bottom: 1px solid var(--red);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 245, 247, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 247, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header-content { position: relative; z-index: 1; }

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.breadcrumb a:hover { color: var(--red); }

.page-header .tag { margin-bottom: 1.5rem; }

.page-header h1 { max-width: 900px; margin-bottom: 1.2rem; }

.page-header .lede {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 720px;
}

/* PROSE */
.prose {
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-2);
}

.prose h2 {
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
  text-transform: uppercase;
}

.prose h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.prose p, .prose ul, .prose ol { margin-bottom: 1.2rem; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--red); font-style: normal; font-weight: 500; }

.prose a { color: var(--red); border-bottom: 1px solid var(--red); padding-bottom: 1px; }
.prose a:hover { color: var(--ink); border-color: var(--ink); }

.prose blockquote {
  border-left: 3px solid var(--red);
  background: var(--bg-2);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.prose .info-box {
  background: var(--bg-2);
  border: 1px solid var(--red);
  padding: 1.3rem 1.6rem;
  margin: 1.8rem 0;
  font-size: 0.98rem;
}

.prose .info-box strong { color: var(--red); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-block {
  background: var(--bg-2);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
}

.contact-block .tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  border: none;
  padding: 0;
  background: transparent;
}

.contact-block .value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

form.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); }
.field textarea { resize: vertical; min-height: 140px; }

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.field-checkbox input { width: auto; margin-top: 0.3rem; }

@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 460px;
  background: var(--bg-2);
  color: var(--ink);
  padding: 1.5rem;
  border: 1px solid var(--red);
  z-index: 1000;
  display: none;
  box-shadow: var(--glow-red);
}

.cookie-banner.show { display: block; }
.cookie-banner h4 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--red); }
.cookie-banner p { font-size: 0.9rem; margin-bottom: 1.2rem; color: var(--ink-2); }
.cookie-banner a { color: var(--red); border-bottom: 1px solid var(--red); }
.cookie-banner .actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.cookie-banner button {
  padding: 0.6rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 1px solid var(--ink-soft);
  background: transparent;
  color: var(--ink);
  transition: all 0.2s;
}

.cookie-banner .accept { background: var(--red); color: var(--ink); border-color: var(--red); }
.cookie-banner .accept:hover { background: var(--red-deep); }
.cookie-banner .decline:hover { border-color: var(--ink); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(15px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
}

@media print { .nav, footer, .cookie-banner, .topbar { display: none; } body { background: white; color: black; } }
