/* ============================================================
   ALSACE MUSIC ApS — Copenhagen, Denmark
   Music Production Software
   Design: Nordic Production Studio · Lavender + Indigo + Lime
   Fonts: Red Hat Display + Red Hat Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Red+Hat+Mono:wght@300;400;500;600;700&display=swap');

:root {
  /* Indigo / dark */
  --indigo:      #120e28;
  --indigo-2:    #1a1538;
  --indigo-3:    #221d48;
  --indigo-4:    #2d2860;
  --indigo-5:    #3d3878;

  /* Lime accent */
  --lime:        #9fe843;
  --lime-l:      #b8f264;
  --lime-d:      #7ec234;
  --lime-g:      rgba(159,232,67,0.1);
  --lime-b:      rgba(159,232,67,0.25);

  /* Lavender / light bg */
  --lav:         #f0edf8;
  --lav-2:       #e6e0f4;
  --lav-3:       #d5ccec;
  --lav-4:       #b9aedd;
  --lav-5:       #9488c8;
  --white:       #faf9fe;

  /* Text on dark */
  --t1:          #eeebf8;
  --t2:          #8c85b0;
  --t3:          #4e4870;

  /* Text on light */
  --ink:         #120e28;
  --sub:         #3d3564;
  --sub-l:       #7268a0;

  --font-head:   'Red Hat Display', system-ui, sans-serif;
  --font-mono:   'Red Hat Mono', monospace;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);

  --r:           6px;
  --r-md:        12px;
  --r-lg:        20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-head);
  background: var(--lav);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-head); }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }

/* ── LABEL ── */
.label {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime-d);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.label::before { content: '//'; color: var(--lav-4); font-style: normal; }
.label.light { color: var(--lime); }
.label.light::before { color: var(--indigo-5); }

/* ── TYPE ── */
.display {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.025em; color: var(--ink); margin-bottom: 22px;
}
.display span { color: var(--lime-d); }
.display.light { color: var(--t1); }
.display.light span { color: var(--lime); }

.h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 16px;
}
.h2 span { color: var(--lime-d); }
.h2.light { color: var(--t1); }
.h2.light span { color: var(--lime); }

.body-t { font-size: 0.99rem; color: var(--sub); line-height: 1.8; }
.body-t.light { color: var(--t2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.84rem;
  letter-spacing: -0.01em; padding: 13px 28px; border: none;
  cursor: pointer; transition: all 0.2s var(--ease); border-radius: var(--r);
}
.btn-lime { background: var(--lime); color: var(--indigo); }
.btn-lime:hover { background: var(--lime-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(159,232,67,0.4); }
.btn-indigo { background: var(--indigo); color: var(--t1); }
.btn-indigo:hover { background: var(--indigo-3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,14,40,0.35); }
.btn-outline { background: transparent; border: 1.5px solid var(--lav-3); color: var(--ink); border-radius: var(--r); }
.btn-outline:hover { border-color: var(--lime-d); color: var(--lime-d); }
.btn-outline-light { background: transparent; border: 1.5px solid rgba(255,255,255,0.18); color: var(--t1); border-radius: var(--r); }
.btn-outline-light:hover { border-color: var(--lime); color: var(--lime); }
.btn-submit {
  width: 100%; background: var(--lime); color: var(--indigo);
  font-family: var(--font-head); font-weight: 700; font-size: 0.86rem;
  letter-spacing: -0.01em; padding: 15px; border: none; cursor: pointer;
  border-radius: var(--r); transition: all 0.2s var(--ease);
}
.btn-submit:hover { background: var(--lime-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(159,232,67,0.4); }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; transition: all 0.28s ease; }
.nav.scrolled { background: rgba(240,237,248,0.97); backdrop-filter: blur(24px); border-bottom: 1px solid var(--lav-3); box-shadow: 0 1px 20px rgba(18,14,40,0.06); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; height: 70px; display: flex; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 32px; height: 32px; background: var(--lime); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark span { font-family: var(--font-head); font-weight: 900; font-size: 0.95rem; color: var(--indigo); line-height: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1.18; }
.logo-name { font-family: var(--font-head); font-size: 0.92rem; font-weight: 800; color: var(--t1); letter-spacing: -0.02em; }
.logo-name.dark { color: var(--ink); }
.logo-sub { font-family: var(--font-mono); font-size: 0.56rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; }
.logo-sub.dark { color: var(--sub-l); }

.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.55); transition: color 0.2s; position: relative; }
.nav-links a.dark-link { color: var(--sub); }
.nav-links a:hover, .nav-links a.active { color: var(--t1); }
.nav-links a.dark-link:hover, .nav-links a.dark-link.active { color: var(--ink); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--lime-d); border-radius: 2px; }
.nav-cta { margin-left: 24px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--t1); transition: all 0.2s; }
.hamburger.dark span { background: var(--ink); }
.mobile-menu { display: none; flex-direction: column; background: var(--lav); border-bottom: 1px solid var(--lav-3); }
.mobile-menu a { font-size: 0.87rem; font-weight: 600; color: var(--sub); padding: 13px 40px; border-bottom: 1px solid var(--lav-2); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--lime-d); }
.mobile-menu .btn { margin: 14px 40px 20px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; background: var(--indigo); position: relative; overflow: hidden; }
/* DAW waveform grid BG */
.hero-daw-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(159,232,67,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159,232,67,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
/* Playhead line */
.hero-playhead { position: absolute; top: 0; bottom: 0; left: 32%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(159,232,67,0.5), transparent); pointer-events: none; }
.hero-glow { position: absolute; top: -200px; right: -150px; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(61,56,120,0.5) 0%, transparent 65%); pointer-events: none; }
/* Mini waveform bands */
.hero-bands { position: absolute; right: 0; top: 0; bottom: 0; width: 30%; display: flex; align-items: center; border-left: 1px solid rgba(159,232,67,0.08); padding: 0 32px; gap: 6px; }
.hband { flex: 1; border-radius: 2px; background: linear-gradient(to top, var(--lime-d), var(--lime-g)); opacity: 0.55; }

.hero-content { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; max-width: 1180px; width: 100%; margin: 0 auto; padding: 0 40px 80px; position: relative; z-index: 2; }
.hero-pre { padding-top: 140px; margin-bottom: 52px; display: flex; align-items: center; justify-content: space-between; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--lime-g); border: 1px solid var(--lime-b); padding: 6px 14px; border-radius: 100px; }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.hero-badge span { font-family: var(--font-mono); font-size: 0.65rem; color: var(--lime); letter-spacing: 0.06em; }
.hero-meta { font-family: var(--font-mono); font-size: 0.6rem; color: var(--t3); text-align: right; line-height: 1.9; letter-spacing: 0.06em; }

.hero-title { font-family: var(--font-head); font-size: clamp(3.4rem, 8vw, 8.5rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.03em; color: var(--t1); max-width: 800px; }
.hero-title span { color: var(--lime); }

.hero-lower { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 44px; gap: 36px; flex-wrap: wrap; }
.hero-desc { font-size: 0.99rem; color: var(--t2); line-height: 1.78; max-width: 400px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 52px; padding-top: 26px; }
.hero-stat { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.06); }
.hero-stat:last-child { border-right: none; }
.hero-stat .sv { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--t1); line-height: 1; letter-spacing: -0.02em; }
.hero-stat .sv span { color: var(--lime); }
.hero-stat .sl { font-family: var(--font-mono); font-size: 0.6rem; color: var(--t3); margin-top: 5px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── BAND ── */
.lime-band { background: var(--lime); padding: 12px 0; overflow: hidden; }
.li-inner { display: flex; gap: 0; white-space: nowrap; animation: liScroll 20s linear infinite; }
.li-item { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--indigo); padding: 0 24px; flex-shrink: 0; }
.li-item::after { content: '·'; margin-left: 24px; opacity: 0.45; }
@keyframes liScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── PRODUCTS ── */
.products-section { background: var(--white); }
.prod-header { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: end; margin-bottom: 56px; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prod-card {
  background: var(--lav); border: 1px solid var(--lav-3);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: all 0.28s var(--ease); position: relative; overflow: hidden;
}
.prod-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--lime); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease); border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(18,14,40,0.12); border-color: var(--lav-4); }
.prod-card:hover::after { transform: scaleX(1); }
.prod-tag { font-family: var(--font-mono); font-size: 0.6rem; color: var(--lav-5); margin-bottom: 16px; letter-spacing: 0.08em; }
.prod-icon { width: 46px; height: 46px; background: var(--lime-g); border: 1px solid var(--lime-b); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.prod-icon i { color: var(--lime-d); font-size: 1.05rem; }
.prod-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.prod-card p { font-size: 0.87rem; color: var(--sub); line-height: 1.72; }
.prod-more { display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--lime-d); margin-top: 18px; transition: gap 0.2s; }
.prod-card:hover .prod-more { gap: 8px; }

/* ── FEATURES ── */
.features-section { background: var(--indigo-2); position: relative; overflow: hidden; }
.feat-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(159,232,67,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(159,232,67,0.03) 1px, transparent 1px); background-size: 44px 44px; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.feat-visual { position: relative; }
.feat-daw { background: var(--indigo); border: 1px solid rgba(159,232,67,0.15); border-radius: var(--r-lg); aspect-ratio: 4/3; overflow: hidden; position: relative; }
/* DAW track lanes */
.daw-lanes { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 0; padding: 20px; }
.daw-lane { flex: 1; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.lane-lbl { font-family: var(--font-mono); font-size: 0.55rem; color: var(--t3); width: 28px; flex-shrink: 0; }
.lane-track { flex: 1; height: 60%; border-radius: 3px; position: relative; overflow: hidden; }
.lane-fill { position: absolute; inset: 0; display: flex; align-items: center; gap: 1px; padding: 0 4px; }
.lane-blk { flex: 1; height: 100%; border-radius: 2px; }
.daw-header { position: absolute; top: 12px; left: 16px; font-family: var(--font-mono); font-size: 0.58rem; color: var(--lime); letter-spacing: 0.06em; }
.daw-time { position: absolute; top: 12px; right: 16px; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; color: var(--t2); }

.feat-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(159,232,67,0.1); margin-top: 1px; border-radius: 0 0 var(--r-lg) var(--r-lg); overflow: hidden; }
.feat-chip { background: var(--indigo-2); padding: 16px 18px; }
.feat-chip .cv { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--lime); line-height: 1; letter-spacing: -0.02em; }
.feat-chip .cl { font-family: var(--font-mono); font-size: 0.58rem; color: var(--t3); margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase; }

.feat-pts { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.feat-pt { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.feat-pt:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.feat-pt-icon { width: 28px; height: 28px; border-radius: var(--r); background: var(--lime-g); border: 1px solid var(--lime-b); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feat-pt-icon i { color: var(--lime); font-size: 0.72rem; }
.feat-pt h4 { font-weight: 700; font-size: 0.9rem; color: var(--t1); margin-bottom: 4px; letter-spacing: -0.01em; }
.feat-pt p { font-size: 0.84rem; color: var(--t2); line-height: 1.62; }

/* ── WHO ── */
.who-section { background: var(--lav); }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.who-card { background: var(--white); border: 1px solid var(--lav-3); border-radius: var(--r-lg); padding: 28px 22px; text-align: center; transition: all 0.25s var(--ease); }
.who-card:hover { transform: translateY(-4px); border-color: var(--lime-b); box-shadow: 0 12px 32px rgba(159,232,67,0.12); }
.who-icon { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--lav-3); background: var(--lav); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: all 0.25s; }
.who-icon i { color: var(--indigo-4); font-size: 1.1rem; transition: color 0.25s; }
.who-card:hover .who-icon { background: var(--lime); border-color: var(--lime); }
.who-card:hover .who-icon i { color: var(--indigo); }
.who-card h4 { font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 7px; letter-spacing: -0.01em; }
.who-card p { font-size: 0.78rem; color: var(--sub-l); line-height: 1.6; }

/* ── PROCESS ── */
.process-section { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; }
.proc-step { padding-right: 36px; border-right: 1px solid var(--lav-3); }
.proc-step:last-child { border-right: none; padding-right: 0; }
.proc-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--lime-d); margin-bottom: 16px; letter-spacing: 0.06em; }
.proc-line { width: 24px; height: 2px; background: var(--lime); border-radius: 2px; margin-bottom: 14px; transition: width 0.3s; }
.proc-step:hover .proc-line { width: 40px; }
.proc-step h4 { font-weight: 700; font-size: 0.92rem; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.proc-step p { font-size: 0.84rem; color: var(--sub); line-height: 1.68; }

/* ── CTA ── */
.cta-section { background: var(--lime); padding: 88px 0; position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(18,14,40,0.04) 44px, rgba(18,14,40,0.04) 45px); }
.cta-section h2 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 900; color: var(--indigo); margin-bottom: 16px; letter-spacing: -0.03em; position: relative; z-index: 1; }
.cta-section p { font-size: 1rem; color: rgba(18,14,40,0.65); max-width: 480px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── CONTACT ── */
.contact-section { background: var(--lav); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; }
.contact-deets { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.cd { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--lav-3); }
.cd:first-child { border-top: 1px solid var(--lav-3); }
.cd-icon { width: 32px; height: 32px; background: var(--lime-g); border: 1px solid var(--lime-b); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon i { color: var(--lime-d); font-size: 0.78rem; }
.cd-lbl { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime-d); margin-bottom: 3px; }
.cd-val { font-size: 0.87rem; color: var(--sub); line-height: 1.55; }
.cd-val a { color: var(--sub); transition: color 0.2s; }
.cd-val a:hover { color: var(--lime-d); }

.contact-form { background: var(--indigo); border-radius: var(--r-lg); padding: 36px; position: relative; overflow: hidden; }
.contact-form::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(159,232,67,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(159,232,67,0.025) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.contact-form h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--t1); margin-bottom: 5px; position: relative; z-index: 1; letter-spacing: -0.02em; }
.contact-form .sub { font-family: var(--font-mono); font-size: 0.62rem; color: var(--t3); margin-bottom: 26px; position: relative; z-index: 1; letter-spacing: 0.06em; text-transform: uppercase; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; position: relative; z-index: 1; }
.fg label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); }
.fg input, .fg select, .fg textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 11px 13px; font-family: var(--font-head); font-size: 0.87rem; color: var(--t1); outline: none; transition: border-color 0.2s; width: 100%; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--t3); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--lime-b); }
.fg select { appearance: none; cursor: pointer; }
.fg select option { background: var(--indigo-2); }
.fg textarea { resize: vertical; min-height: 96px; }
.f-note { font-family: var(--font-mono); font-size: 0.64rem; color: var(--t3); text-align: center; margin-top: 10px; position: relative; z-index: 1; letter-spacing: 0.04em; }

/* ── FOOTER ── */
.footer { background: var(--indigo); border-top: 1px solid rgba(159,232,67,0.1); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.83rem; color: var(--t3); margin-top: 14px; max-width: 250px; line-height: 1.78; }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); opacity: 0.65; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 0.84rem; color: var(--t3); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--font-mono); font-size: 0.64rem; color: var(--t3); opacity: 0.6; }
.footer-dk { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.6rem; color: var(--t3); opacity: 0.6; letter-spacing: 0.06em; text-transform: uppercase; }
.dk-flag { width: 22px; height: 14px; border-radius: 2px; overflow: hidden; position: relative; background: #C8313E; flex-shrink: 0; }
.dk-flag::before { content: ''; position: absolute; top: 0; bottom: 0; left: 38%; width: 18%; background: #fff; }
.dk-flag::after { content: ''; position: absolute; left: 0; right: 0; top: 38%; height: 22%; background: #fff; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-family: var(--font-mono); font-size: 0.62rem; color: var(--t3); opacity: 0.6; transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 1; }

/* ── PAGE HERO ── */
.page-hero { background: var(--indigo); padding: 150px 0 72px; position: relative; overflow: hidden; }
.ph-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(159,232,67,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(159,232,67,0.04) 1px, transparent 1px); background-size: 44px 44px; }
.ph-inner { position: relative; z-index: 1; max-width: 700px; }
.ph-inner h1 { font-family: var(--font-head); font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 900; line-height: 1.02; letter-spacing: -0.03em; color: var(--t1); margin-bottom: 18px; }
.ph-inner h1 span { color: var(--lime); }
.ph-inner p { font-size: 1rem; color: var(--t2); line-height: 1.78; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-bands { display: none; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-header { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .proc-step { border-right: none; padding-right: 0; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .prod-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero-stat { border-right: none; padding-right: 0; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 22px; }
  .hero-content { padding: 0 22px 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
}
