/*
  Privacy Finance – Stylesheet
  ================================================
  Benötigte Font-Dateien (im selben Ordner):
    - dm-serif-display-regular.woff2
    - dm-serif-display-italic.woff2
    - dm-sans-variable.woff2
    - JetBrainsMono-Regular.woff2
    - JetBrainsMono-SemiBold.woff2
*/

/* ─── FONTS ─── */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/dm-sans-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/JetBrainsMono-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/JetBrainsMono-SemiBold.woff2') format('woff2');
}

/* ─── VARIABLEN ─── */
:root {
  --black: #0a0a0a;
  --off-black: #111318;
  --surface: #161b24;
  --surface2: #1e2533;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.15);
  --text: #e8eaf0;
  --text-muted: #7a8196;
  --text-dim: #4a5068;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim: rgba(201,168,76,0.12);
  --green: #2dce78;
  --green-dim: rgba(45,206,120,0.1);
  --red: #ff4d6a;
  --radius: 16px;
  --radius-sm: 10px;
}
 
/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
 
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
 
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
}
 
/* ─── BACKGROUND ─── */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
 
.bg-glow {
  position: fixed; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(120px); opacity: 0.18;
}
.bg-glow-1 {
  width: 600px; height: 600px; top: -200px; right: -100px;
  background: radial-gradient(circle, #c9a84c 0%, transparent 70%);
}
.bg-glow-2 {
  width: 500px; height: 500px; bottom: 200px; left: -150px;
  background: radial-gradient(circle, #2dce78 0%, transparent 70%);
  opacity: 0.08;
}
 
/* ─── LAYOUT ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; width: 100%; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; width: 100%; }
 
/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 20px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  overflow: hidden;
}
 
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
}
 
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
 
.nav-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  padding: 3px 8px;
  background: var(--green-dim);
  border: 1px solid rgba(45,206,120,0.25);
  color: var(--green);
  border-radius: 20px;
  letter-spacing: 0.08em;
}
 
.nav-cta {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
 
/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 80px;
  position: relative;
}
 
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
 
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}
 
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
 
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}
 
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.65s;
}
 
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 30px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.35);
}
.btn-primary:active { transform: translateY(0); }
 
.btn-secondary {
  color: var(--text-muted);
  border: 1px solid var(--border-bright);
  padding: 15px 28px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
 
.hero-trust {
  margin-top: 64px;
  display: flex; gap: 32px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}
 
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
 
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(45,206,120,0.6);
  flex-shrink: 0;
}
 
/* ─── SECTION COMMON ─── */
section { padding: 100px 0; position: relative; overflow: hidden; }
 
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
  text-transform: uppercase;
}
 
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
 
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 620px;
  margin-bottom: 56px;
}
 
/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  margin: 0;
}
 
/* ─── USP BOX ─── */
.usp-section { background: var(--off-black); }
 
.usp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
 
.usp-visual {
  position: relative;
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
 
.vault {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
  box-shadow: 0 0 60px rgba(201,168,76,0.1), inset 0 0 40px rgba(201,168,76,0.04);
  animation: vaultPulse 4s ease-in-out infinite;
}
 
@keyframes vaultPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(201,168,76,0.1), inset 0 0 40px rgba(201,168,76,0.04); }
  50% { box-shadow: 0 0 100px rgba(201,168,76,0.2), inset 0 0 60px rgba(201,168,76,0.08); }
}
 
.vault-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  animation: ringExpand 3s ease-in-out infinite;
}
.vault-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.vault-ring:nth-child(2) { width: 260px; height: 260px; animation-delay: 1s; }
.vault-ring:nth-child(3) { width: 320px; height: 320px; animation-delay: 2s; }
 
@keyframes ringExpand {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.1; transform: scale(1.03); }
}
 
.usp-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
 
.usp-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.usp-item:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateX(4px);
}
 
.usp-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
 
.usp-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.usp-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
 
/* ─── TECH SECTION ─── */
.tech-section { background: var(--black); }
 
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
 
.tech-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tech-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
 
.tech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tech-card:hover::before { opacity: 1; }
 
.tech-card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}
 
.tech-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.tech-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}
 
.tech-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  padding: 4px 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  border-radius: 20px;
  margin-top: 18px;
  letter-spacing: 0.08em;
}
 
/* ─── FEATURES ─── */
.features-section { background: var(--off-black); }
 
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
 
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; gap: 22px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(201,168,76,0.2);
  background: var(--surface2);
}
 
.feature-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
 
.feature-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}
 
/* ─── PERMISSIONS ─── */
.perms-section { background: var(--black); }
 
.perms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
 
.perm-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  gap: 16px;
}
 
.perm-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.perm-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
 
.perm-status {
  display: flex; align-items: center; gap: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: 20px;
}
.perm-status.yes {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(45,206,120,0.2);
}
.perm-status.no {
  background: rgba(255,77,106,0.08);
  color: var(--red);
  border: 1px solid rgba(255,77,106,0.2);
}
 
/* ─── CTA ─── */
.cta-section {
  background: var(--black);
  text-align: center;
  padding: 120px 0;
}
 
.cta-box {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 24px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
 
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
 
.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  position: relative;
}
 
.cta-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}
 
.btn-hero {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 20px 48px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 40px rgba(201,168,76,0.3);
  text-decoration: none;
}
.btn-hero:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 50px rgba(201,168,76,0.4);
}
 
.cta-meta {
  margin-top: 28px;
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
 
.cta-meta span { display: flex; align-items: center; gap: 6px; }
 
/* ─── NOTIFY FORM ─── */
.notify-form {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
 
.notify-input {
  flex: 1; min-width: 220px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.notify-input::placeholder { color: var(--text-dim); }
.notify-input:focus { border-color: var(--gold); }
 
/* ─── FOOTER LINKS ─── */
.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--gold); }
 
/* ─── LEGAL MODALS ─── */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 500;
  backdrop-filter: blur(6px);
  padding: 20px;
  align-items: center;
  justify-content: center;
}
.legal-modal.open { display: flex; }
 
.legal-modal-box {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
 
.legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.legal-modal-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--text);
}
 
.legal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.legal-close:hover { color: var(--text); background: var(--surface2); }
 
.legal-modal-content {
  padding: 28px;
  overflow-y: auto;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.75;
}
.legal-modal-content h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 24px 0 8px;
}
.legal-modal-content h3:first-child { margin-top: 0; }
.legal-modal-content p { margin-bottom: 12px; color: var(--text-muted); }
 
/* ─── FOOTER ─── */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative; z-index: 1;
}
footer span { color: var(--text); }
 
/* ─── SCROLL TO TOP ─── */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 200;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}
#scrollTop:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative; z-index: 1;
}
footer span { color: var(--text); }
  
/* ─── ANIMATIONEN ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
 
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
 
/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .usp-inner { grid-template-columns: 1fr; gap: 40px; }
  .usp-visual { height: 200px; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .perms-grid { grid-template-columns: 1fr; }
}
 
@media (max-width: 700px) {
  .install-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
 
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .tech-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 20px; }
  .hero { padding: 90px 0 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .nav-cta { display: none; }
  .hero-trust { gap: 16px; }
  .trust-item { font-size: 0.78rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .usp-visual { display: none; }
  .perm-row { flex-wrap: wrap; gap: 10px; }
  .cta-meta { gap: 14px; }
  .feature-card { flex-direction: column; gap: 14px; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  nav { padding: 12px 16px; }
  .nav-logo { font-size: 1.05rem; }
  .nav-badge { display: none; }
}
 
@media (max-width: 380px) {
  .container, .container-narrow { padding: 0 14px; }
  .hero-title { font-size: 2.2rem; }
}
 