/* ============================================
   PIXELARIUM — DESIGN SYSTEM
   Style: cyber-light / gaming lounge / friendly
   Dark navy + neon cyan + lime + magenta
   ============================================ */

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

:root {
  --bg:        #0a0e1a;
  --bg-2:      #111726;
  --bg-3:      #1a2238;
  --paper:     #1c2540;
  --ink:       #f0f4ff;
  --ink-2:     #d8dff0;
  --ink-soft:  #8a93b3;
  --ink-mute:  #5e6680;
  --cyan:      #4dd2ff;
  --cyan-deep: #00b4e6;
  --lime:      #b3ff66;
  --lime-deep: #88e022;
  --magenta:   #ff5cb0;
  --purple:    #9b6dff;
  --line:      rgba(240, 244, 255, 0.1);
  --line-2:    rgba(240, 244, 255, 0.2);
  --shadow:    0 16px 40px -10px rgba(0, 0, 0, 0.5);
  --glow-cyan: 0 0 20px rgba(77, 210, 255, 0.4);
  --glow-lime: 0 0 20px rgba(179, 255, 102, 0.4);

  --font-display: 'Space Grotesk', -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: 8px;
  --radius-lg: 20px;
}

* { 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;
  text-rendering: optimizeLegibility;
  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(--cyan); color: var(--bg); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--cyan);
  border-radius: 100px;
}

.tag.lime { color: var(--lime); border-color: var(--lime); }
.tag.magenta { color: var(--magenta); border-color: var(--magenta); }
.tag.solid-cyan { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
.tag.solid-lime { background: var(--lime); color: var(--bg); border-color: var(--lime); }
.tag.solid-magenta { background: var(--magenta); color: var(--bg); border-color: var(--magenta); }

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

/* === LAYOUT === */
.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; }

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

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.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.03em;
  color: var(--ink);
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--bg-2);
  border: 2px solid var(--cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.93rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a:hover { color: var(--cyan); }

.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.nav-cta {
  background: var(--lime);
  color: var(--bg);
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  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;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  border-color: var(--cyan);
}
.btn-primary:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-lime {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
}
.btn-lime:hover {
  box-shadow: var(--glow-lime);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--ink-soft);
  color: var(--ink);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-arrow { transition: transform 0.2s; display: inline-block; }
.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(--cyan);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.18;
  top: -250px;
  right: -200px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--magenta);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  bottom: -150px;
  left: -100px;
  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.5rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  margin-bottom: 1.8rem;
  letter-spacing: -0.04em;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.18rem;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-stat:nth-child(1) .num { color: var(--cyan); }
.hero-stat:nth-child(2) .num { color: var(--lime); }
.hero-stat:nth-child(3) .num { color: var(--magenta); }

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

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  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(10, 14, 26, 0.7) 100%);
}

.hero-card {
  position: absolute;
  z-index: 2;
  background: var(--bg-2);
  border: 1px solid var(--cyan);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  box-shadow: var(--glow-cyan);
  font-family: var(--font-mono);
  font-size: 0.84rem;
}

.hero-card.live {
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-color: var(--magenta);
  box-shadow: 0 0 18px rgba(255, 92, 176, 0.4);
}

.hero-card.live .dot {
  width: 8px;
  height: 8px;
  background: var(--magenta);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-card.live span { color: var(--magenta); font-weight: 700; }

.hero-card.score {
  bottom: 1.5rem;
  left: 1.5rem;
  border-color: var(--lime);
  box-shadow: var(--glow-lime);
}

.hero-card.score .label {
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.hero-card.score .value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--lime);
  font-weight: 700;
  line-height: 1;
}

@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.center .section-header-text { max-width: 720px; }

.section-header-text { max-width: 720px; }

.section-header .tag { margin-bottom: 1.2rem; }

.section-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--cyan);
  border-radius: 100px;
  transition: all 0.2s;
}

.section-link:hover {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: var(--glow-cyan);
}

/* === SPACES (4 zones) === */
.spaces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.space {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.space:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.space:hover .space-image img { transform: scale(1.05); }

.space-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bg);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.space h3 {
  margin-bottom: 0.6rem;
}

.space p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  flex: 1;
}

.space-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
}

.space-price .num {
  color: var(--lime);
  font-size: 1.2rem;
  font-weight: 700;
}

.space-price .unit {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

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

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

.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.price-card.featured {
  border-color: var(--lime);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  box-shadow: 0 0 32px rgba(179, 255, 102, 0.15);
}

.price-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--lime);
  color: var(--bg);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.price-card .desc {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 1.5rem;
}

.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.price-card .price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-card.featured .price-num { color: var(--lime); }

.price-card .price-unit {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-family: var(--font-mono);
}

.price-card .price-help {
  font-size: 0.84rem;
  color: var(--ink-mute);
  margin-bottom: 1.8rem;
  font-family: var(--font-mono);
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.price-card li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.price-card li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card.featured li::before { color: var(--lime); }

.price-card .btn { width: 100%; justify-content: center; }

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

/* === EVENTS === */
.events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.event {
  display: flex;
  flex-direction: column;
}

.event-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.3rem;
  border: 1px solid var(--line);
  position: relative;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.event:hover .event-image img { transform: scale(1.04); }

.event .tag { margin-bottom: 0.8rem; align-self: flex-start; }

.event h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.event:hover h3 { color: var(--cyan); }

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

.event-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

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

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

.feature-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  top: -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 {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-band-lead {
  font-size: 1.1rem;
  color: var(--ink-2);
  margin-bottom: 0;
  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-display);
  color: var(--cyan);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  min-width: 32px;
}

.feature-band-list strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

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

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

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

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

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

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

.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;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line-2);
}

.community-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-info strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  font-family: var(--font-display);
}

.community-info span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

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

/* === CTA === */
.cta-card {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--lime) 100%);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card h2 {
  color: var(--bg);
  margin-bottom: 1.2rem;
}

.cta-card p {
  color: rgba(10, 14, 26, 0.8);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  font-weight: 500;
}

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

.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(--lime);
  color: var(--bg);
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-form button:hover { background: var(--cyan); color: var(--bg); }

.cta-note {
  font-size: 0.84rem;
  color: rgba(10, 14, 26, 0.7);
  margin-top: 1.5rem;
}

.cta-note a { color: var(--bg); border-bottom: 1px solid var(--bg); font-weight: 600; }

@media (max-width: 600px) {
  .cta-form { flex-direction: column; border-radius: 16px; 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(--line);
}

.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;
}

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

footer h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  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(--cyan); }

.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.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

@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(--line);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  top: -150px;
  right: -50px;
}

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

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

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

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

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

.page-header .lede {
  font-size: 1.2rem;
  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.8rem;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.prose h3 {
  font-size: 1.3rem;
  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(--cyan); font-style: normal; font-weight: 500; }

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

.prose a:hover { color: var(--lime); border-color: var(--lime); }

.prose blockquote {
  border-left: 3px solid var(--cyan);
  background: var(--bg-2);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
}

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

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

/* === 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;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
}

.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;
  line-height: 1.5;
}

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

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

.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);
  border-radius: 8px;
  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(--cyan); }
.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-radius: var(--radius);
  border: 1px solid var(--cyan);
  z-index: 1000;
  display: none;
  box-shadow: var(--glow-cyan);
}

.cookie-banner.show { display: block; }

.cookie-banner h4 {
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  color: var(--ink-2);
}

.cookie-banner a {
  color: var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.cookie-banner .actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-banner button {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--ink-soft);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  transition: all 0.2s;
}

.cookie-banner .accept {
  background: var(--cyan);
  color: var(--bg);
  border-color: var(--cyan);
}
.cookie-banner .accept:hover { box-shadow: var(--glow-cyan); }
.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 { display: none; }
  body { background: white; color: black; }
}
