:root {
  --bg: #090716;
  --bg-alt: #0d1230;
  --surface: rgba(10, 16, 44, 0.78);
  --surface-strong: rgba(9, 7, 22, 0.94);
  --line: rgba(0, 229, 255, 0.28);
  --line-strong: rgba(255, 45, 149, 0.45);
  --text: #f7f7fb;
  --muted: #a7b0d7;
  --magenta: #ff2d95;
  --cyan: #00e5ff;
  --green: #39ff14;
  --orange: #ff7a00;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,45,149,.14), transparent 32%),
    radial-gradient(circle at 100% 20%, rgba(0,229,255,.10), transparent 28%),
    linear-gradient(180deg, #0b0920 0%, #070612 52%, #05050b 100%);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.18));
  pointer-events: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header,
.site-footer,
.section,
.hero,
.page-hero {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  color: #05050b;
  font-family: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.brand-text { font-size: .98rem; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line);
  color: var(--text);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,229,255,.08);
}

.hero,
.split,
.split-three,
.feature-grid,
.lane-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}

.hero {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  padding: 34px 0 20px;
}

.hero-copy,
.hero-frame,
.page-hero,
.feature-card,
.lane-card,
.gallery-card,
.split-copy,
.split-frame {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13,18,48,.88), rgba(9,7,22,.92));
  box-shadow: var(--shadow);
}

.hero-copy,
.page-hero,
.split-copy {
  padding: 34px;
  border-radius: var(--radius);
}

.hero-frame,
.split-frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-frame img,
.split-frame img,
.gallery-card img,
.feature-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  font-family: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  line-height: .94;
  text-shadow: 0 0 14px rgba(255,45,149,.2);
}

h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h3 { font-size: 1.15rem; }

.hero-text,
.section p,
.gallery-copy p,
.feature-copy p,
.split-copy p,
.page-hero p {
  color: var(--muted);
  margin: 0;
}

.hero-text.narrow { max-width: 56ch; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  color: #05050b;
  box-shadow: 0 10px 26px rgba(255,45,149,.22);
}

.button-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.section {
  padding: 34px 0;
}

.section-head {
  margin-bottom: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-copy,
.gallery-copy {
  padding: 18px 18px 22px;
}

.lane-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lane-card {
  padding: 22px;
  border-radius: var(--radius-sm);
}

.split {
  grid-template-columns: 1fr 1fr;
}

.split-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 0 34px;
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-list,
.plain-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.order-list li,
.plain-list li {
  margin: 8px 0;
}

.page-hero {
  margin-top: 20px;
  margin-bottom: 8px;
}

.site-footer {
  padding: 28px 0 42px;
  color: var(--muted);
  text-align: center;
}

.site-footer p + p {
  margin-top: 6px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .feature-grid,
  .lane-grid,
  .gallery-grid,
  .split-three {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .split,
  .feature-grid,
  .lane-grid,
  .gallery-grid,
  .split-three {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero,
  .split-copy {
    padding: 24px;
  }

  .site-header {
    padding-top: 18px;
  }

  .site-nav {
    width: 100%;
  }
}


.hero-note {
  margin-top: 16px;
  color: var(--text);
  font-weight: 600;
}

.price-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: linear-gradient(180deg, rgba(13,18,48,.88), rgba(9,7,22,.92));
  box-shadow: var(--shadow);
}

.price-card h2 {
  margin-bottom: 8px;
  color: var(--magenta);
  text-shadow: 0 0 12px rgba(255,45,149,.16);
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.price-tag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,45,149,.14);
  border: 1px solid rgba(255,45,149,.35);
  color: var(--text);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

strong { color: var(--text); }

@media (max-width: 900px) {
  .price-strip {
    grid-template-columns: 1fr;
  }
}
