/* ============================================================
   VincentChat — style.css
   Museum-grade promotional site. Dark, warm, painterly.
   ============================================================ */

/* ── Google Fonts import (fallback if preconnect fails) ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --bg:           #1a1510;
  --bg-alt:       #221d16;
  --surface:      #2e2620;
  --surface-2:    #3a2f26;
  --text:         #f0e8d8;
  --text-muted:   #a89880;
  --accent:       #d4a843;
  --accent-2:     #8b4a2b;
  --accent-dim:   rgba(212, 168, 67, 0.12);
  --border:       rgba(212, 168, 67, 0.15);
  --border-soft:  rgba(240, 232, 216, 0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  /* Subtle noise texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Accessibility ──────────────────────────────────────── */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Gold rule motif ────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 48px; height: 1px;
  background: var(--accent);
  margin-bottom: var(--space-sm);
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #1a1510;
}
.btn--primary:hover { background: #e8bc52; transform: translateY(-1px); }
.btn--outline {
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost {
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}
.btn--ghost:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(26, 21, 16, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.lang-switcher {
  display: none;
  align-items: center;
  gap: 2px;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 7px;
  border-radius: 3px;
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  color: var(--accent);
  background: var(--accent-dim);
}
.nav__cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 16, 0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--text);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .lang-switcher {
  display: flex;
  margin-top: var(--space-sm);
}
.mobile-menu .nav__cta { display: inline-flex; }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .lang-switcher { display: flex; }
  .nav__cta { display: inline-flex; }
  .mobile-menu { display: none; }
}

/* ── Container ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
/* Sterrennacht-inspired abstract background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(26, 38, 72, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 70%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 90%, rgba(139, 74, 43, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__content { max-width: 600px; }
.hero__pre {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.hero__title strong {
  font-weight: 500;
  color: var(--accent);
}
.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 480px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}
.hero__appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--text);
  color: #1a1510;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}
.hero__appstore:hover { background: var(--accent); transform: translateY(-2px); }
.hero__appstore svg { width: 18px; height: 18px; }
.hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* iPhone frame — wraps real screenshot */
.iphone-frame {
  width: 240px;
  border-radius: 44px;
  overflow: hidden;
  border: 2px solid rgba(212,168,67,0.25);
  box-shadow:
    0 0 0 8px rgba(255,255,255,0.04),
    0 32px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.iphone-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hero slider */
.iphone-frame.iphone-slider {
  position: relative;
  aspect-ratio: 430 / 935;
  overflow: hidden;
}
.iphone-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.iphone-slider .slide.active { opacity: 1; }
.iphone-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.4s;
}
.dot.active { background: rgba(255,255,255,0.9); }

/* Inline phone previews inside feature cards */
.feature-phone {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.feature-phone .iphone-frame {
  width: 130px;
  border-radius: 30px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

/* Who section — phone instead of canvas */
.vincent-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-md) 0;
}
.vincent-phone .iphone-frame {
  width: 260px;
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-xl) var(--space-md);
  }
  .hero__mockup { justify-content: flex-end; }
  .iphone-frame { width: 300px; }
  .vincent-phone .iphone-frame { width: 300px; }
}

/* ── Section base ───────────────────────────────────────── */
section { padding: var(--space-lg) 0; }
section.alt { background: var(--bg-alt); }

.section-head {
  margin-bottom: var(--space-lg);
}
.section-head--center { text-align: center; }
.section-head--center .gold-rule { margin: 0 auto var(--space-sm); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
h2 em { color: var(--accent); font-style: inherit; }

.lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 56ch;
  margin-top: var(--space-sm);
}

/* ── Who is Vincent ─────────────────────────────────────── */
.vincent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.vincent-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 300;
  line-height: 1.8;
}
.vincent-text p:last-child { margin-bottom: 0; }
.vincent-text strong { color: var(--text); font-weight: 500; }
.vincent-image {
  position: relative;
}
.vincent-canvas {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.vincent-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(212, 168, 67, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 80%, rgba(139, 74, 43, 0.15) 0%, transparent 60%);
}
.vincent-canvas__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-md);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .vincent-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Features ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}
.feature-card--wide { grid-column: 1; }
.feature-icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .feature-card--wide { grid-column: span 2; }
  .features-grid .feature-card:nth-child(1) { grid-column: 1; grid-row: 1; }
  .features-grid .feature-card:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
  .features-grid .feature-card:nth-child(3) { grid-column: 1; grid-row: 2; }
  .features-grid .feature-card:nth-child(4) { grid-column: span 2; grid-row: 3; }
}

/* ── How it works ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  position: relative;
}
.step {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.step__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.step__body p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step { flex-direction: column; }
  .step__num { font-size: 4rem; }
}

/* ── Premium ────────────────────────────────────────────── */
.premium-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.premium-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
}
.premium-table th {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.premium-table th:last-child { color: var(--accent); }
.premium-table td {
  padding: 0.7rem var(--space-md);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}
.premium-table td:last-child { color: var(--text); }
.premium-table tr:last-child td { border-bottom: none; }
.premium-table td .check {
  color: var(--accent);
  font-size: 1rem;
}
.premium-table td .dash { color: rgba(168, 152, 128, 0.3); }
.premium-cta {
  text-align: center;
  padding-top: var(--space-sm);
}
.premium-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── Screenshots strip ──────────────────────────────────── */
.screenshots-strip {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) transparent;
}
.screenshot-item {
  flex-shrink: 0;
  text-align: center;
}
.screenshot-frame {
  width: 180px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212,168,67,0.2);
  background: var(--surface);
  aspect-ratio: 9/19.5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.75rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.screenshot-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 8px;
  background: var(--bg);
  border-radius: 0 0 6px 6px;
  z-index: 1;
}
.screenshot-placeholder {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-sm);
}
.screenshot-caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

@media (min-width: 768px) {
  .screenshot-frame { width: 220px; }
}

/* ── Quote ──────────────────────────────────────────────── */
.quote-section {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 18rem;
  color: rgba(212, 168, 67, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto var(--space-sm);
  position: relative;
  z-index: 1;
}
.quote-source {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.contact-intro p {
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 40ch;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a89880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--surface); }

.captcha-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.captcha-row input { width: 80px; text-align: center; }

.form-submit { align-self: flex-start; }
.form-message {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form-message.success { background: rgba(212, 168, 67, 0.1); color: var(--accent); border: 1px solid var(--border); display: block; }
.form-message.error { background: rgba(139, 74, 43, 0.15); color: #e08060; border: 1px solid rgba(139, 74, 43, 0.3); display: block; }

/* Honeypot */
.hp-field { display: none; }

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.footer__brand .footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.footer__brand .footer__logo span { color: var(--accent); }
.footer__brand p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 28ch;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: flex-start;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }
.footer__links .sep { color: var(--border); }
.footer__bottom {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}
.footer__disclaimer {
  font-size: 0.7rem;
  color: rgba(168, 152, 128, 0.5);
  max-width: 40ch;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
}

/* ── Privacy page ───────────────────────────────────────── */
.privacy-page {
  padding-top: calc(var(--nav-h) + var(--space-lg));
  padding-bottom: var(--space-xl);
}
.privacy-content {
  max-width: 720px;
  margin: 0 auto;
}
.privacy-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.privacy-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}
.privacy-content p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-weight: 300;
}
.privacy-content ul li { margin-bottom: 0.4rem; }
.privacy-content a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; }
.privacy-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

/* ── Logo with subtitle ─────────────────────────────────── */
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
  margin-top: 3px;
}

/* ── Language dropdown ──────────────────────────────────── */
.lang-dropdown {
  position: relative;
}
.lang-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
  border: 1px solid transparent;
}
.lang-dropdown__btn:hover,
.lang-dropdown__btn[aria-expanded="true"] {
  color: var(--accent);
  border-color: var(--border);
  background: var(--accent-dim);
}
.lang-dropdown__chevron {
  transition: transform 0.2s ease;
  opacity: 0.6;
}
.lang-dropdown__btn[aria-expanded="true"] .lang-dropdown__chevron {
  transform: rotate(180deg);
}
.lang-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 200;
  list-style: none;
}
.lang-dropdown__menu.open { display: block; }
.lang-dropdown__menu--up {
  top: auto;
  bottom: calc(100% + 6px);
}
.lang-dropdown__menu li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 7px 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: transparent;
}
.lang-dropdown__menu li button:hover,
.lang-dropdown__menu li button.active {
  color: var(--accent);
  background: var(--accent-dim);
}

/* ── Feature note ───────────────────────────────────────── */
.feature-note {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
}

/* ── Feature quote (Brieffragmenten card) ───────────────── */
.feature-quote {
  margin-top: 1.25rem;
  padding: 1rem 1rem 1rem 0.875rem;
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.feature-quote footer {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ── Feature wide card: new layout ─────────────────────────*/
.feature-wide-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.feature-tags span {
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.feature-wide-phone {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .feature-wide-inner { grid-template-columns: 1fr; }
  .feature-wide-phone { display: none; }
}

/* ── Who ideal note ─────────────────────────────────────── */
.who-ideal {
  font-style: italic;
  color: var(--text-muted);
}

/* ── Hide old lang-switcher if still present ────────────── */
.lang-switcher { display: none !important; }

/* ── Placeholder screen ─────────────────────────────────── */
.placeholder-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  background: var(--surface);
  opacity: 0.5;
}

/* ── Logo subtitle — lichter goud ───────────────────────── */
.logo-sub {
  color: rgba(212, 168, 67, 0.42);
}

/* ── Feature blocks — alternating layout ───────────────── */
.features-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-soft);
}
.feature-block:last-child { border-bottom: none; }
.feature-block__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-block__text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}
.feature-block__text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.feature-block__media {
  display: flex;
  justify-content: center;
}

/* ── Video in phone frame ───────────────────────────────── */
.feature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Tour slider (inside iphone-frame) ──────────────────── */
.feature-tour-slider {
  position: relative;
  overflow: hidden;
}
.tour-slide {
  display: none;
  width: 100%;
}
.tour-slide.active { display: block; }
.tour-slide img { width: 100%; display: block; }

/* ── Zoom triple: 3 phones side by side ─────────────────── */
.feature-triple {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  justify-content: center;
}
.feature-triple .iphone-frame {
  flex: 1;
  min-width: 0;
  max-width: 160px;
}
.feature-triple .iphone-frame--center {
  transform: translateY(-12px);
}

/* ── Feature block icon ─────────────────────────────────── */
.feature-block__text .feature-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

/* ── Responsive feature blocks ──────────────────────────── */
@media (max-width: 768px) {
  .feature-block,
  .feature-block--reversed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-block__media { order: -1; }
  .feature-triple { gap: 0.5rem; }
  .feature-triple .iphone-frame { max-width: 110px; }
}

/* ── Logo subtitle — nog lichter ────────────────────────── */
.logo-sub {
  color: rgba(240, 232, 216, 0.28);
}

/* ── Zoom triple: rechte lijn ───────────────────────────── */
.feature-triple .iphone-frame--center {
  transform: none;
}

/* ── Logo subtitle — goud, duidelijk anders dan Vincent ─── */
.logo-sub {
  color: rgba(212, 168, 67, 0.52) !important;
  letter-spacing: 0.14em;
}

/* ── Feature text large variant ────────────────────────────*/
.feature-block__text--large {
  justify-content: center;
}
.feature-block__text--large h3 {
  font-size: 2.1rem;
}
.feature-block__text--large p {
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ── Feature footnote ───────────────────────────────────── */
.feature-footnote {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 0.5rem;
}
sup.fn-mark {
  font-size: 0.65rem;
  color: var(--accent);
  vertical-align: super;
  line-height: 0;
}

/* ── Tall iphone frame (voor brief) ────────────────────────*/
.iphone-frame--tall {
  /* inherits iphone-frame, no extra needed — full image shows */
}

/* ── Zoom full-width block ──────────────────────────────── */
.feature-block--zoom-full {
  display: block !important;
  padding: var(--space-lg) 0;
  border-bottom: none;
}
.feature-zoom-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.feature-zoom-text {
  max-width: 680px;
}
.feature-zoom-text h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}
.feature-zoom-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
}
@media (max-width: 768px) {
  .feature-zoom-images { grid-template-columns: repeat(2, 1fr); }
}

/* ── Screenshots infinite scroll ticker ────────────────── */
.screenshots-ticker-section {
  padding: var(--space-lg) 0;
  overflow: hidden;
}
.screenshots-ticker-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.screenshots-ticker {
  display: flex;
  gap: 1.25rem;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.screenshots-ticker:hover { animation-play-state: paused; }
.ticker-item .screenshot-frame {
  height: 420px;
  width: auto;
  flex-shrink: 0;
}
.ticker-item img {
  height: 100%;
  width: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Contact link section ───────────────────────────────── */
.contact-link-section {
  text-align: left;
  max-width: 600px;
}

/* ── Logo subtitle — zelfde kleur als 'praat met' ──────── */
.logo-sub {
  color: rgba(240, 232, 216, 0.55) !important;
}

/* ── Chat block extra large text ────────────────────────── */
.feature-block__text--xlarge {
  justify-content: center;
  padding: 2rem 0;
}
.feature-block__text--xlarge h3 {
  font-size: 2.6rem;
  line-height: 1.1;
}
.feature-block__text--xlarge p {
  font-size: 1.15rem;
  line-height: 1.9;
}

/* ── Brieffragment losse visual (geen telefoonkader) ────── */
.brief-visual {
  max-width: 360px;
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* ── Zoom block: smal tekst, brede afbeeldingen ─────────── */
.feature-block--zoom-wide {
  grid-template-columns: 1fr 2.5fr;
}
.feature-block__text--narrow h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}
.feature-block__text--narrow p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.feature-triple--large .iphone-frame {
  max-width: none;
  flex: 1;
}

/* ── Premium tabel: check & limited stijlen ─────────────── */
.prem-check {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
}
.prem-limited {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── Zoom: 2 afbeeldingen + smal tekst ─────────────────── */
.feature-block--zoom-wide {
  grid-template-columns: 1fr 2fr;
}
.feature-triple--large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feature-triple--large .iphone-frame {
  max-width: none;
  width: 100%;
}
