/* ============================================================
   NACHTIO — style.css
   ============================================================ */

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

:root {
  --ink:    #07111c;
  --ink2:   #0d1b2a;
  --ink3:   #132030;
  --gold:   #FAD165;
  --gold2:  #f0b830;
  --pine:   #1D9E75;
  --sky:    #3A8FD4;
  --plum:   #6B3FCC;
  --plum-l: #C8B0FF;
  --text:   #e8edf5;
  --muted:  #7a8fa8;
  --faint:  #2a3f55;
  --r: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─────────────────────────────────────────── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .2s, height .2s, opacity .2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(250,209,101,.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, width .3s, height .3s, opacity .3s;
}

/* ─── CANVAS ─────────────────────────────────────────── */
#bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .6; }

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(7,17,28,0);
  transition: background .4s, border .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(7,17,28,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .88rem; font-weight: 400;
  transition: color .2s; letter-spacing: .3px;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold); color: var(--ink);
  border: none; padding: 10px 26px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: .85rem; font-weight: 600;
  cursor: none; transition: all .2s; letter-spacing: .5px;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* Mobile Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--muted); transition: all .3s;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,17,28,.97); backdrop-filter: blur(20px);
  z-index: 200; flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--text); text-decoration: none; font-weight: 600;
  letter-spacing: 2px;
}
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--muted);
  font-size: 1.5rem; cursor: none;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 100px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(250,209,101,.08); border: 1px solid rgba(250,209,101,.2);
  color: rgba(250,209,101,.9); padding: 7px 18px; border-radius: 99px;
  font-size: .72rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 40px; animation: rise .7s ease both;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1.04; margin-bottom: 28px;
  animation: rise .7s .1s ease both; font-weight: 600;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero h1 .line2 { display: block; color: rgba(232,237,245,.55); font-weight: 400; }
.hero-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 480px; line-height: 1.75;
  margin-bottom: 56px; animation: rise .7s .2s ease both; font-weight: 300;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: rise .7s .3s ease both;
}
.btn-gold {
  background: var(--gold); color: var(--ink); border: none;
  padding: 16px 40px; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 600;
  cursor: none; transition: all .25s;
  box-shadow: 0 8px 40px rgba(250,209,101,.25);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 14px 50px rgba(250,209,101,.4); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--faint);
  padding: 16px 40px; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 400;
  cursor: none; transition: all .25s;
}
.btn-ghost:hover { border-color: rgba(250,209,101,.4); color: var(--gold); }

/* Scroll indicator */
.scroll-hint {
  margin-top: 80px; animation: rise .7s .5s ease both;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: .75rem; letter-spacing: 1px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ─── DIVIDER ────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--faint), transparent);
  margin: 0 60px;
}

/* ─── SHARED SECTION LABELS ─────────────────────────── */
.sec-label {
  font-size: .7rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--plum-l);
  margin-bottom: 14px; text-align: center;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-align: center; margin-bottom: 70px;
  font-weight: 600; line-height: 1.2;
}
.sec-title em { font-style: italic; color: var(--gold); }

/* ─── FEATURES / BENTO ───────────────────────────────── */
.features {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 120px 24px;
}
.features-bento {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.bento-card {
  background: var(--ink2); border: 1px solid var(--faint);
  border-radius: var(--r); padding: 32px;
  transition: all .35s; position: relative; overflow: hidden;
}
.bento-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(250,209,101,.04), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.bento-card:hover::after { opacity: 1; }
.bento-card:hover { border-color: rgba(250,209,101,.15); transform: translateY(-3px); }
.bc-span4  { grid-column: span 4; }
.bc-span6  { grid-column: span 6; }
.bc-span8  { grid-column: span 8; }
.bc-span12 { grid-column: span 12; }
.card-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; color: var(--text);
}
.card-sub { font-size: .85rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.card-accent { color: var(--gold); font-weight: 500; }

/* Big bento card */
.bento-big { display: flex; gap: 32px; align-items: center; }
.bento-big .card-content { flex: 1; }
.bento-big .card-visual {
  flex: 1; background: var(--ink3);
  border-radius: 12px; padding: 24px; border: 1px solid var(--faint);
}
.receipt-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; text-align: right;
  margin-bottom: 12px; color: var(--text);
}
.receipt-date { font-size: .7rem; color: var(--muted); text-align: right; margin-bottom: 16px; }
.receipt-preview { font-size: .75rem; color: var(--muted); line-height: 2; }
.receipt-row {
  display: flex; justify-content: space-between;
  padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.04);
}
.receipt-row:last-child { border-bottom: none; font-weight: 600; color: var(--text); }
.receipt-row span:last-child { color: var(--gold); }

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto; padding: 120px 24px;
}
.steps-list {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 60px; position: relative;
}
.steps-list::before {
  content: ''; position: absolute; left: 23px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--plum), var(--sky), var(--pine));
}
.step-item {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 32px 0; position: relative;
}
.step-num {
  width: 48px; height: 48px; background: var(--ink2);
  border: 1.5px solid var(--faint); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  font-weight: 700; color: var(--gold); flex-shrink: 0; position: relative; z-index: 1;
}
.step-content { padding-top: 10px; }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; margin-bottom: 8px;
}
.step-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.os-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.04); border: 1px solid var(--faint);
  border-radius: 6px; padding: 4px 12px;
  font-size: .72rem; color: var(--muted); margin-top: 8px;
}

/* ─── PRICING ────────────────────────────────────────── */
.pricing {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto; padding: 120px 24px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 60px;
}
.price-card {
  background: var(--ink2); border: 1px solid var(--faint);
  border-radius: var(--r); padding: 36px 28px;
  transition: all .3s; position: relative;
}
.price-card.featured {
  border-color: rgba(250,209,101,.35);
  background: linear-gradient(160deg, rgba(250,209,101,.06), var(--ink2));
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 99px;
}
.price-tier {
  font-size: .75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--text); line-height: 1;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.price-desc { font-size: .82rem; color: var(--muted); margin: 14px 0 24px; line-height: 1.6; }
.price-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 32px;
}
.price-list li {
  font-size: .83rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.price-list li::before { content: '✓'; color: var(--pine); font-weight: 700; flex-shrink: 0; }
.price-list li.muted::before { content: '–'; color: var(--faint); }
.price-list li.muted { opacity: .5; }
.btn-price {
  width: 100%; padding: 13px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 600;
  cursor: none; transition: all .2s; border: none;
}
.btn-price-solid { background: var(--gold); color: var(--ink); }
.btn-price-solid:hover { background: var(--gold2); }
.btn-price-outline { background: transparent; color: var(--text); border: 1.5px solid var(--faint) !important; }
.btn-price-outline:hover { border-color: rgba(250,209,101,.3) !important; color: var(--gold); }

/* ─── FAQ ────────────────────────────────────────────── */
.faq {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto; padding: 120px 24px;
}
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--faint); border-radius: 10px;
  overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: rgba(250,209,101,.2); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: none;
  font-size: .92rem; font-weight: 500; gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; opacity: .5; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor;
  border-radius: 2px; transition: transform .25s;
}
.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { font-size: .88rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ─── CTA / DOWNLOAD ─────────────────────────────────── */
.cta-section { position: relative; z-index: 1; padding: 120px 24px; text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 24px; font-weight: 600; line-height: 1.15;
}
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p { color: var(--muted); font-size: 1rem; margin-bottom: 48px; line-height: 1.7; font-weight: 300; }
.cta-note { margin-top: 20px; font-size: .78rem; color: var(--faint); letter-spacing: .5px; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--faint); padding: 48px 60px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
}
.footer-brand span { color: var(--gold); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--faint); text-decoration: none; font-size: .8rem; transition: color .2s; }
.footer-links a:hover { color: var(--muted); }
.footer-copy { font-size: .78rem; color: var(--faint); }

/* ─── IMPRESSUM / DATENSCHUTZ ─────────────────────────── */
.legal-page {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto; padding: 140px 24px 80px;
}
.legal-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 600;
  margin-bottom: 48px; line-height: 1.15;
}
.legal-page h1 em { font-style: italic; color: var(--gold); }
.legal-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--text); margin: 40px 0 12px;
}
.legal-page p, .legal-page li {
  font-size: .9rem; color: var(--muted);
  line-height: 1.8; font-weight: 300; margin-bottom: 8px;
}
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page a { color: var(--gold); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); text-decoration: none;
  font-size: .85rem; margin-bottom: 40px;
  transition: color .2s;
}
.legal-back:hover { color: var(--gold); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid .price-card:last-child { grid-column: span 2; max-width: 360px; margin: 0 auto; }
}
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .features-bento { grid-template-columns: 1fr; }
  .bc-span4, .bc-span6, .bc-span8, .bc-span12 { grid-column: span 1; }
  .bento-big { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card:last-child { grid-column: span 1; max-width: none; }
  footer { padding: 32px 20px; flex-direction: column; text-align: center; }
  .section-divider { margin: 0 20px; }
}
@media (max-width: 480px) {
  .hero { padding: 120px 16px 80px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
}
