
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #2D5A27;
  --sage:    #40FFA3;
  --dark:    #0D0D0D;
  --off:     #111111;
  --card:    #161616;
  --grey:    #555;
  --lgrey:   #333;
  --white:   #F5F5F0;
  --cream:   #FFFEF8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 999;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: normal;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-tag {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(64,255,163,0.3);
  padding: 5px 10px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 100px 28px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  bottom: -5%;
  left: -2%;
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(64,255,163,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
}

.hero-mono {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
  opacity: 0;
  animation: up 0.7s ease 0.1s forwards;
}
.hero-mono::before {
  content: '> ';
  opacity: 0.5;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.7s ease 0.3s forwards;
}
.hero-headline em {
  color: var(--sage);
  font-style: normal;
}

.hero-sub {
  font-size: 0.78rem;
  line-height: 1.9;
  color: rgba(245,245,240,0.45);
  max-width: 400px;
  margin-bottom: 52px;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: up 0.7s ease 0.5s forwards;
}

/* ── WAITLIST ── */
.waitlist-wrap {
  opacity: 0;
  animation: up 0.7s ease 0.7s forwards;
}
.waitlist-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.3);
  margin-bottom: 10px;
}
.form-row {
  display: flex;
  max-width: 420px;
  border-bottom: 2px solid rgba(64,255,163,0.4);
  transition: border-color 0.3s;
}
.form-row:focus-within { border-color: var(--sage); }
.form-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  padding: 12px 0;
  letter-spacing: 0.05em;
}
.form-row input::placeholder { color: rgba(245,245,240,0.2); }
.form-row button {
  background: transparent;
  border: none;
  color: var(--sage);
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 0 12px 16px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.form-row button:hover { opacity: 0.7; }

.success {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--sage);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 12px 0;
}
.success.show { display: flex; }

.form-note {
  margin-top: 10px;
  font-size: 0.58rem;
  color: rgba(245,245,240,0.18);
  letter-spacing: 0.06em;
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: up 0.7s ease 1.2s forwards;
}
.scroll-hint span {
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.25);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── STORY SECTION ── */
.story {
  padding: 100px 28px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.story-tag {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sage);
}

.story-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245,245,240,0.85);
  margin-bottom: 32px;
}
.story-text em { color: var(--sage); font-style: italic; }

.story-body {
  font-size: 0.76rem;
  line-height: 2;
  color: rgba(245,245,240,0.4);
  letter-spacing: 0.04em;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(64,255,163,0.15), transparent);
  margin: 0 28px;
}

/* ── MISSION TILES ── */
.tiles {
  padding: 80px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.05);
  max-width: 900px;
  margin: 0 auto;
}
.tile {
  background: var(--dark);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.tile:hover { background: #131313; }
.tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--sage);
  transition: width 0.4s ease;
}
.tile:hover::after { width: 100%; }

.tile-num {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--sage);
  opacity: 0.6;
  margin-bottom: 16px;
}
.tile-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.2;
}
.tile-body {
  font-size: 0.68rem;
  line-height: 1.8;
  color: rgba(245,245,240,0.35);
  letter-spacing: 0.03em;
}

/* ── JOURNEY SECTION ── */
.journey {
  padding: 100px 28px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.journey-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.2;
}
.journey-title em { color: var(--sage); font-style: normal; }
.journey-body {
  font-size: 0.73rem;
  line-height: 2;
  color: rgba(245,245,240,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

/* Timeline */
.timeline {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 24px;
  border-left: 1px solid rgba(64,255,163,0.15);
}
.tl-item {
  padding: 0 0 32px 24px;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(64,255,163,0.4);
}
.tl-item.active::before {
  background: var(--sage);
  border-color: var(--sage);
  box-shadow: 0 0 12px rgba(64,255,163,0.4);
}
.tl-item:not(.active) {
  opacity: 0.18;
  filter: blur(0.4px);
  transition: opacity 0.3s ease;
}
.tl-item:not(.active):hover {
  opacity: 0.35;
}
.tl-date {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.7;
}
.tl-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(245,245,240,0.7);
}
.tl-sub {
  font-size: 0.62rem;
  color: rgba(245,245,240,0.60);
  letter-spacing: 0.04em;
  margin-top: 4px;
  line-height: 1.6;
}

/* ── BOTTOM WAITLIST ── */
.bottom-cta {
  padding: 100px 28px;
  text-align: center;
  background: var(--off);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 0.68rem;
  color: rgba(245,245,240,0.35);
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}
.cta-form {
  display: flex;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
  border-bottom: 2px solid rgba(64,255,163,0.4);
  transition: border-color 0.3s;
}
.cta-form:focus-within { border-color: var(--sage); }
.cta-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  padding: 12px 0;
  text-align: center;
  letter-spacing: 0.05em;
}
.cta-form input::placeholder { color: rgba(245,245,240,0.50); }
.cta-form button {
  background: transparent;
  border: none;
  color: var(--sage);
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 0 12px 16px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cta-form button:hover { opacity: 0.7; }
.cta-success {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--sage);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 12px 0;
}
.cta-success.show { display: flex; }

/* ── FOOTER ── */
footer {
  padding: 40px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245,245,240,0.4);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage); }
.footer-copy {
  width: 100%;
  font-size: 0.55rem;
  color: rgba(245,245,240,0.12);
  letter-spacing: 0.08em;
}

/* ── PROGRESS BAR ── */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--sage);
  z-index: 200;
  width: 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(64,255,163,0.5);
}

@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .hero, .story, .journey, .bottom-cta { padding-left: 20px; padding-right: 20px; }
  .tiles { padding: 60px 20px; }
  footer { padding: 32px 20px; }
  .hero-bg-text { font-size: 5rem; }
}

/* ── IMPRESSUM OVERLAY ── */
.impressum-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.impressum-overlay.show { display: flex; }
.impressum-box {
  background: var(--card);
  border: 1px solid rgba(64,255,163,0.15);
  max-width: 540px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.impressum-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: rgba(245,245,240,0.4);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  font-family: 'Space Mono', monospace;
}
.impressum-close:hover { color: var(--sage); }
.impressum-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 24px;
}
.impressum-box h3 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.4);
  margin: 20px 0 8px;
}
.impressum-box p {
  font-size: 0.72rem;
  line-height: 1.8;
  color: rgba(245,245,240,0.6);
  letter-spacing: 0.03em;
}
.impressum-box a {
  color: var(--sage);
  text-decoration: none;
}

/* ── LOGO IMAGES ── */
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.9;
  vertical-align: middle;
}
.hero-logo-wrap {
  margin-bottom: 24px;
  opacity: 0;
  animation: up 0.7s ease 0s forwards;
}
.hero-logo-img {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.85;
}
.footer-logo-img {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.4;
  vertical-align: middle;
  margin-right: 8px;
}

/* ── PRODUCT HIGHLIGHT ── */
.product-highlight {
  padding: 80px 28px;
  max-width: 900px;
  margin: 0 auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 40px;
}
.product-item {
  background: var(--dark);
  padding: 36px 28px;
  position: relative;
  transition: background 0.3s;
}
.product-item:hover { background: #131313; }
.product-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--sage);
  transition: width 0.4s ease;
}
.product-item:hover::after { width: 100%; }
.product-badge {
  display: inline-block;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--sage);
  padding: 3px 8px;
  margin-bottom: 16px;
}
.product-badge.soon {
  background: transparent;
  color: rgba(64,255,163,0.5);
  border: 1px solid rgba(64,255,163,0.3);
}
.product-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.2;
}
.product-item-body {
  font-size: 0.68rem;
  line-height: 1.85;
  color: rgba(245,245,240,0.38);
  letter-spacing: 0.03em;
}
.product-specs {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spec-line {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(64,255,163,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.spec-line::before {
  content: '✓';
  color: var(--sage);
}

/* ── FOUNDER SECTION ── */
.founder {
  padding: 100px 28px;
  max-width: 680px;
  margin: 0 auto;
}
.founder-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 32px;
  color: rgba(245,245,240,0.9);
}
.founder-quote em { color: var(--sage); font-style: normal; }
.founder-body {
  font-size: 0.74rem;
  line-height: 2;
  color: rgba(245,245,240,0.4);
  letter-spacing: 0.04em;
}
.founder-sig {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.founder-sig-line {
  width: 32px;
  height: 1px;
  background: var(--sage);
}
.founder-sig-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,245,240,0.5);
}

/* ── B2B SECTION ── */
.b2b-strip {
  background: var(--off);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 60px 28px;
  text-align: center;
}
.b2b-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  margin-bottom: 12px;
  color: rgba(245,245,240,0.7);
}
.b2b-title em { color: var(--sage); font-style: normal; }
.b2b-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.b2b-tag {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
}
.b2b-tag.active {
  color: var(--sage);
  border-color: rgba(64,255,163,0.3);
}

/* ── RADIO BUTTONS ── */
.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  border: 1px solid rgba(64,255,163,0.12);
  transition: border-color 0.25s, background 0.25s;
}
.radio-label:hover {
  border-color: rgba(64,255,163,0.35);
  background: rgba(64,255,163,0.03);
}
.radio-label:has(input:checked) {
  border-color: rgba(64,255,163,0.5);
  background: rgba(64,255,163,0.05);
}
.radio-text {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(245,245,240,0.80);
  line-height: 1.7;
}
.radio-text strong {
  color: rgba(245,245,240,0.85);
  font-weight: 700;
}

/* ── REVEAL SYSTEM ── */
.blurred {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  transition: filter 1.2s ease, opacity 1.2s ease;
  position: relative;
}
.blurred::after {
  content: '— verfügbar ab 30. Juni 2026 —';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(64,255,163,0.5);
  filter: none;
  pointer-events: none;
}
.blurred.revealed {
  filter: none;
  pointer-events: auto;
}
.blurred.revealed::after {
  display: none;
}

/* ── REVEAL BLUR ── */
.reveal-blur {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  transition: filter 1.2s ease, opacity 0.8s ease;
  position: relative;
}
.reveal-blur.revealed {
  filter: blur(0px);
  pointer-events: auto;
  user-select: auto;
}
.blur-hint {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(64,255,163,0.5);
  margin-top: 10px;
  font-family: 'Space Mono', monospace;
}
.blur-hint.hidden { display: none; }

/* ── DATENSCHUTZ OVERLAY ── */
.datenschutz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.datenschutz-overlay.show { display: flex; }
.datenschutz-box {
  background: var(--card);
  border: 1px solid rgba(64,255,163,0.15);
  max-width: 540px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.datenschutz-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: rgba(245,245,240,0.4);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  font-family: 'Space Mono', monospace;
}
.datenschutz-close:hover { color: var(--sage); }
.datenschutz-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 24px;
}
.datenschutz-box h3 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.4);
  margin: 20px 0 8px;
}
.datenschutz-box p {
  font-size: 0.72rem;
  line-height: 1.8;
  color: rgba(245,245,240,0.6);
  letter-spacing: 0.03em;
}
.datenschutz-box a { color: var(--sage); text-decoration: none; }


/* ── HAMBURGER MENU (added) ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 160;
}
.burger span {
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--sage); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--sage); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 140;
  display: none;
  backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

.nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  max-width: 80vw;
  height: 100vh;
  background: var(--off);
  border-left: 1px solid rgba(64,255,163,0.15);
  z-index: 150;
  transition: right 0.35s ease;
  padding: 110px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-menu.open { right: 0; }
.nav-menu a {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.55);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}
.nav-menu a:hover { color: var(--sage); }
.nav-menu a.cta { color: var(--sage); margin-top: 12px; }
.nav-menu a.active { color: var(--sage); }

/* ── CSC CONFIGURATOR PAGE ── */
.config-hero {
  padding: 140px 28px 60px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.config-hero .hero-mono { justify-content: center; display: flex; opacity:1; animation:none; }
.config-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  margin: 20px 0 20px;
}
.config-hero h1 em { color: var(--sage); font-style: normal; }
.config-hero p {
  font-size: 0.78rem;
  line-height: 1.9;
  color: rgba(245,245,240,0.45);
  letter-spacing: 0.03em;
  max-width: 480px;
  margin: 0 auto;
}

.config-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 28px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) {
  .config-wrap { grid-template-columns: 1fr; }
}

.cf-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  margin-bottom: 20px;
}
.cf-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cf-label::before { content: '//'; opacity: 0.6; }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.prod-opt {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.prod-opt.active { border-color: var(--sage); background: rgba(64,255,163,0.05); }
.prod-opt .glyph { font-size: 1.4rem; color: rgba(245,245,240,0.3); margin-bottom: 8px; }
.prod-opt.active .glyph { color: var(--sage); }
.prod-opt .pname {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245,245,240,0.85);
}
.prod-opt .pprice { font-size: 0.58rem; color: rgba(245,245,240,0.3); margin-top: 4px; letter-spacing: 0.05em; }

.cf-input-wrap {
  border-bottom: 2px solid rgba(64,255,163,0.3);
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.cf-input-wrap:focus-within { border-color: var(--sage); }
.cf-input-wrap input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  padding: 10px 0;
  letter-spacing: 0.04em;
}
.cf-input-wrap input::placeholder { color: rgba(245,245,240,0.2); }
.cf-field-label {
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.35);
  margin-bottom: 8px;
}

.motif-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.motif-row .b2b-tag { cursor: pointer; font-family: 'Space Mono', monospace; }

.cf-upload {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  background: transparent;
  border: 1px dashed rgba(245,245,240,0.15);
  color: rgba(245,245,240,0.35);
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.qty-row input[type="range"] { flex: 1; accent-color: var(--sage); }
.qty-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--sage);
  width: 64px;
  text-align: right;
}
.discount-note { font-size: 0.6rem; color: rgba(245,245,240,0.3); letter-spacing: 0.04em; margin-bottom: 18px; }

.express-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(245,245,240,0.6);
  cursor: pointer;
}
.express-row input { accent-color: var(--sage); width: 16px; height: 16px; }

.cf-preview-box {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-preview-box svg { width: 220px; height: 220px; }
.cf-preview-hint {
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(245,245,240,0.2);
  margin-top: 12px;
  text-transform: uppercase;
}

.cf-calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(245,245,240,0.5);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.cf-calc-row.discount, .cf-calc-row.express { color: var(--sage); }
.cf-calc-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cf-calc-total .lbl { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,245,240,0.5); }
.cf-calc-total .val {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--sage);
}
.cf-meta {
  font-size: 0.6rem;
  color: rgba(245,245,240,0.3);
  letter-spacing: 0.04em;
  margin: 16px 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cf-submit {
  width: 100%;
  background: var(--sage);
  color: var(--dark);
  border: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cf-submit:disabled { background: rgba(255,255,255,0.08); color: rgba(245,245,240,0.25); cursor: not-allowed; }
.cf-submit:not(:disabled):hover { opacity: 0.85; }

.cf-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: rgba(64,255,163,0.08);
  color: var(--sage);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.cf-footnote {
  text-align: center;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  color: rgba(245,245,240,0.2);
  text-transform: uppercase;
  margin-top: 14px;
}

/* ── HARM REDUCTION PAGE ── */
.hr-hero {
  padding: 140px 28px 70px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hr-hero .hero-mono { justify-content: center; display: flex; }
.hr-hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.15;
  margin: 20px 0 22px;
}
.hr-hero h1 em { color: var(--sage); font-style: normal; }
.hr-hero p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(245,245,240,0.5);
  letter-spacing: 0.02em;
}

.hr-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hr-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px 32px;
  overflow: hidden;
}
.hr-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3.2rem;
  color: rgba(245,245,240,0.06);
  position: absolute;
  top: 6px;
  right: 20px;
  line-height: 1;
  user-select: none;
}
.hr-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: 20px;
  max-width: 90%;
  position: relative;
}

.hr-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel, rgba(245,245,240,0.35));
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hr-label::before { content: '▲'; font-size: 0.6em; opacity: 0.6; }
.hr-label.solution { color: var(--sage); }
.hr-label.solution::before { content: '✓'; }

.hr-problem p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(245,245,240,0.5);
  margin-bottom: 22px;
}
.hr-solution {
  border-left: 2px solid rgba(64,255,163,0.4);
  padding-left: 18px;
}
.hr-solution p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(245,245,240,0.75);
}
.hr-solution a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hr-cta {
  max-width: 760px;
  margin: 0 auto 100px;
  padding: 0 28px;
}
.hr-cta-box {
  border: 1px dashed rgba(64,255,163,0.3);
  padding: 32px;
  text-align: center;
}
.hr-cta-box p {
  font-size: 0.85rem;
  color: rgba(245,245,240,0.55);
  margin-bottom: 18px;
}

/* ── AGE GATE ── */
#ageGateOverlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-card {
  max-width: 440px;
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(64,255,163,0.25);
  padding: 44px 36px;
  text-align: center;
}

.age-gate-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.age-gate-logo-img { height: 40px; filter: invert(1); opacity: 0.9; }
.age-gate-logo span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  color: #F5F5F0;
}
.age-gate-logo span em { color: #8fa3b3; font-style: italic; }

.age-gate-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #40FFA3;
  margin-bottom: 16px;
}

.age-gate-card h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.7rem;
  color: #F5F5F0;
  margin-bottom: 18px;
  line-height: 1.25;
}

.age-gate-card p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(245,245,240,0.55);
  margin-bottom: 30px;
}

.age-gate-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.age-gate-buttons button {
  flex: 1;
  padding: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}
#ageGateYes {
  background: #40FFA3;
  color: #0D0D0D;
  font-weight: 700;
}
#ageGateYes:hover { opacity: 0.85; }
#ageGateNo {
  background: transparent;
  border: 1px solid rgba(245,245,240,0.2) !important;
  color: rgba(245,245,240,0.6);
}
#ageGateNo:hover { border-color: rgba(245,245,240,0.4) !important; }

.age-gate-footnote {
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  color: rgba(245,245,240,0.25);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .age-gate-card { padding: 32px 24px; }
}
