/* OCTOBIT — DESIGN SYSTEM
   Style: retro arcade / warm 80s / cozy lounge
   Cream-purple bg + neon yellow + magenta + soft teal */

@import url('https://fonts.googleapis.com/css2?family=VT323&family=Outfit:wght@300;400;500;600;700&family=Bricolage+Grotesque:wght@500;600;700&display=swap');

:root {
  --bg:        #1a0e26;
  --bg-2:      #251339;
  --bg-3:      #2f1a47;
  --paper:     #f7e9d8;
  --ink:       #f8f2e8;
  --ink-2:     #ebe0d2;
  --ink-soft:  #b8a89e;
  --ink-mute:  #7d6b66;
  --yellow:    #ffd230;
  --yellow-soft:#ffe072;
  --magenta:   #ff4dac;
  --magenta-soft:#ff8cc7;
  --teal:      #5fe8d8;
  --orange:    #ff8c42;
  --line:      rgba(248, 242, 232, 0.1);
  --line-2:    rgba(248, 242, 232, 0.22);
  --shadow:    0 16px 40px -10px rgba(0, 0, 0, 0.5);
  --glow-yellow: 0 0 20px rgba(255, 210, 48, 0.5);
  --glow-magenta: 0 0 20px rgba(255, 77, 172, 0.5);

  --font-display: 'Bricolage Grotesque', -apple-system, sans-serif;
  --font-pixel:   'VT323', monospace;
  --font-sans:    'Outfit', -apple-system, sans-serif;

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

* { 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;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 77, 172, 0.08), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(95, 232, 216, 0.08), transparent 50%);
}

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(--yellow); color: var(--bg); }

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

h1 { font-size: clamp(2.6rem, 8vw, 5.8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
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.4rem;
  font-family: var(--font-pixel);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
  font-weight: 400;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--yellow);
  border-radius: 100px;
}

.tag.magenta { color: var(--magenta); border-color: var(--magenta); }
.tag.teal { color: var(--teal); border-color: var(--teal); }
.tag.solid { background: var(--yellow); color: var(--bg); }
.tag.solid-magenta { background: var(--magenta); color: var(--ink); border-color: var(--magenta); }

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.55rem 0;
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.topbar .yellow { color: var(--yellow); }
@media (max-width: 600px) { .topbar-inner > span:nth-child(2) { display: none; } }

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

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

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

.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pixel);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--bg);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--yellow);
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--yellow); font-weight: 600; }

.nav-cta {
  background: var(--magenta);
  color: var(--ink);
  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(--yellow); color: var(--bg); box-shadow: var(--glow-yellow); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); color: var(--ink); padding: 0.4rem 0.7rem; border-radius: 8px; }
@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(--yellow); color: var(--bg); border-color: var(--yellow); }
.btn-primary:hover { box-shadow: var(--glow-yellow); transform: translateY(-2px); }
.btn-magenta { background: var(--magenta); color: var(--ink); border-color: var(--magenta); }
.btn-magenta:hover { box-shadow: var(--glow-magenta); transform: translateY(-2px); }
.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: 500px;
  height: 500px;
  background: var(--magenta);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.25;
  top: -180px;
  right: -150px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  bottom: -150px;
  left: -100px;
}

.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-pixel);
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.05em;
}

.hero-eyebrow .heart {
  color: var(--magenta);
  font-size: 1rem;
  animation: pulse 1.5s infinite;
}

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

.hero h1 { margin-bottom: 1.8rem; }

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

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

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

.hero-stat .label {
  font-family: var(--font-pixel);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--yellow);
  box-shadow: var(--glow-yellow);
}

.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(26, 14, 38, 0.7) 100%);
}

.hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.5rem 0.9rem;
  background: var(--magenta);
  color: var(--ink);
  font-family: var(--font-pixel);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
  animation: pulse 1.5s infinite;
}

.hero-quote {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-family: var(--font-pixel);
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
}

@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-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border: 2px solid var(--yellow);
  border-radius: 100px;
  transition: all 0.2s;
}
.section-link:hover { background: var(--yellow); color: var(--bg); }

/* UNIVERS */
.univers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

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

.univ-image { aspect-ratio: 1; overflow: hidden; position: relative; }

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

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

.univ-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--bg);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-family: var(--font-pixel);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

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

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

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

.univ-footer {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--magenta);
  letter-spacing: 0.05em;
}

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

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

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

.exp:hover { border-color: var(--magenta); transform: translateY(-4px); }

.exp-image { aspect-ratio: 16/10; overflow: hidden; }
.exp-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.exp:hover .exp-image img { transform: scale(1.04); }

.exp-body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.exp-body .tag { margin-bottom: 0.8rem; align-self: flex-start; }
.exp-body h3 { margin-bottom: 0.6rem; }
.exp-body p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.2rem; flex: 1; }

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

.exp-meta .label { color: var(--ink-soft); }
.exp-meta .value { color: var(--yellow); font-weight: 700; }

@media (max-width: 940px) { .experiences { 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(--yellow);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  box-shadow: var(--glow-yellow);
}

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

.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;
}
.price-card.featured .price-num { color: var(--yellow); }

.price-card .price-unit { color: var(--ink-soft); font-size: 0.94rem; }
.price-card .price-help { font-size: 0.84rem; color: var(--ink-mute); margin-bottom: 1.8rem; font-family: var(--font-pixel); letter-spacing: 0.03em; }

.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(--magenta); font-weight: 700; flex-shrink: 0; }
.price-card.featured li::before { color: var(--yellow); }
.price-card .btn { width: 100%; justify-content: center; }

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

/* FEATURE BAND */
.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(--magenta);
  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 { color: var(--yellow); 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-pixel);
  color: var(--yellow);
  font-size: 1.5rem;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  min-width: 40px;
}

.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(--magenta); }

.community-quote {
  font-size: 1.1rem;
  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;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--magenta);
}

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

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

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

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

/* CTA */
.cta-card {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--yellow) 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 h2 em { color: var(--bg); font-style: normal; background: var(--bg); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: var(--ink); padding: 0 0.4rem; border-radius: 4px; }

.cta-card p { color: rgba(26, 14, 38, 0.85); 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(--yellow);
  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(--magenta); color: var(--ink); }

.cta-note { font-size: 0.84rem; color: rgba(26, 14, 38, 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-pixel);
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.6;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border-radius: 8px;
  border-left: 3px solid var(--yellow);
  letter-spacing: 0.03em;
}

.footer-address strong { color: var(--yellow); display: block; font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.3rem; }

footer h4 { font-family: var(--font-pixel); font-size: 1.05rem; letter-spacing: 0.08em; color: var(--yellow); 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(--yellow); }

.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-pixel); font-size: 0.95rem; 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 */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--bg-2);
  border-bottom: 1px solid var(--magenta);
  position: relative;
  overflow: hidden;
}

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

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

.breadcrumb { font-family: var(--font-pixel); font-size: 1rem; color: var(--ink-soft); letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--yellow); }

.page-header .tag { display: inline-flex; 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.7rem; margin-top: 3rem; margin-bottom: 1.2rem; color: var(--ink); font-family: var(--font-display); }
.prose h3 { font-size: 1.25rem; 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(--yellow); font-style: normal; font-weight: 500; }

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

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

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

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

/* 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(--yellow);
}

.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.1rem; 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-family: var(--font-pixel); font-size: 1rem; color: var(--ink); font-weight: 700; margin-bottom: 0.5rem; 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(--yellow); }
.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(--yellow); z-index: 1000; display: none; box-shadow: var(--glow-yellow); }
.cookie-banner.show { display: block; }
.cookie-banner h4 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--yellow); }
.cookie-banner p { font-size: 0.9rem; margin-bottom: 1.2rem; color: var(--ink-2); }
.cookie-banner a { color: var(--yellow); border-bottom: 1px solid var(--yellow); }
.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(--yellow); color: var(--bg); border-color: var(--yellow); }
.cookie-banner .accept:hover { box-shadow: var(--glow-yellow); }
.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; } }
