/* ═══════════════════════════════════════════════════
   Pathise — Premium Web Experience
   "Düzenli bir hayata ve bilgeliğe giden yolda"
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Kaushan+Script&display=swap');

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ── THEMES ── */
:root,
[data-theme="light"] {
  --bg: #f7f3eb;
  --bg-elevated: #fdfaf2;
  --bg-subtle: #f0ebe0;
  --bg-overlay: rgba(247, 243, 235, 0.85);

  --text: #3c2a14;
  --text-soft: rgba(90, 62, 28, 0.88);
  --text-muted: rgba(110, 75, 30, 0.72);
  --text-faint: rgba(110, 75, 30, 0.5);

  --accent: #7a5428;
  --accent-bright: #b8860b;
  --accent-glow: rgba(205, 175, 100, 0.6);
  --accent-glow-strong: rgba(205, 175, 100, 0.85);

  --border: rgba(120, 85, 40, 0.25);
  --border-subtle: rgba(120, 85, 40, 0.12);

  --shadow-sm: 0 2px 10px rgba(122, 84, 40, 0.08);
  --shadow-md: 0 8px 30px rgba(122, 84, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(122, 84, 40, 0.18);
  --shadow-glow: 0 0 40px rgba(205, 175, 100, 0.25);

  --grain-opacity: 0.035;
}

[data-theme="dark"] {
  --bg: #0f0a05;
  --bg-elevated: #1a1208;
  --bg-subtle: #1f160b;
  --bg-overlay: rgba(15, 10, 5, 0.85);

  --text: #f5e6cc;
  --text-soft: rgba(245, 230, 204, 0.9);
  --text-muted: rgba(210, 185, 145, 0.75);
  --text-faint: rgba(200, 175, 135, 0.5);

  --accent: #d4a55f;
  --accent-bright: #e8b85d;
  --accent-glow: rgba(232, 184, 93, 0.7);
  --accent-glow-strong: rgba(255, 210, 130, 0.95);

  --border: rgba(212, 165, 95, 0.25);
  --border-subtle: rgba(212, 165, 95, 0.12);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 40px rgba(232, 184, 93, 0.2);

  --grain-opacity: 0.05;
}

/* ── BODY ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 17.5px;
  line-height: 1.8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 500ms ease, color 500ms ease;
  position: relative;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: var(--grain-opacity);
  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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  transition: opacity 500ms ease;
}

/* Radial ambient glow behind hero */
body::after {
  content: '';
  position: fixed;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 120vh;
  background: radial-gradient(ellipse at center top, var(--accent-glow) 0%, transparent 55%);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
  transition: opacity 500ms ease;
}

[data-theme="dark"] body::after {
  opacity: 0.18;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-overlay);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 500ms ease, border-color 500ms ease;
}

.nav-brand {
  font-family: 'Philosopher', serif;
  font-size: 15px;
  letter-spacing: 5px;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 300ms ease, letter-spacing 400ms ease;
}

.nav-brand:hover {
  color: var(--accent-bright);
  letter-spacing: 6px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-family: 'Libre Baskerville', serif;
  font-size: 14.5px;
  letter-spacing: 1px;
  color: var(--text-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 300ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent-bright);
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--accent-bright);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Theme toggle */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  transform: rotate(15deg);
  box-shadow: 0 0 15px var(--accent-glow);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Mobile menu */
.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-soft);
  cursor: pointer;
  padding: 8px;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  text-align: center;
  z-index: 2;
}

.hero-logo {
  --logo-w: min(420px, 82vw);
  position: relative;
  width: var(--logo-w);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: logoEntrance 1800ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Outer circle with draw-in animation */
.hero-logo-circle {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-logo-circle svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-logo-circle circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.2;
  opacity: 0.55;
  stroke-dasharray: 1257;
  stroke-dashoffset: 1257;
  animation: drawCircle 2400ms cubic-bezier(0.65, 0, 0.35, 1) 200ms forwards,
             breathe 6s ease-in-out 2800ms infinite;
  transform-origin: center;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.015); opacity: 0.75; }
}

.hero-logo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  transform: translateY(-6%);
}

.hero-title {
  font-family: 'Philosopher', serif;
  font-size: calc(var(--logo-w) * 0.055);
  font-weight: 400;
  letter-spacing: 0.55em;
  padding-left: 0.55em;
  color: var(--text-soft);
  opacity: 0;
  animation: fadeInLetters 1400ms ease 600ms forwards;
  transition: color 500ms ease;
  margin-bottom: -0.05em;
}

@keyframes fadeInLetters {
  from {
    opacity: 0;
    letter-spacing: 0.2em;
  }
  to {
    opacity: 1;
    letter-spacing: 0.55em;
  }
}

.hero-subtitle {
  font-family: 'Kaushan Script', cursive;
  font-size: calc(var(--logo-w) * 0.17);
  line-height: 1;
  color: var(--text-soft);
  white-space: nowrap;
  text-shadow: 0 0 22px var(--accent-glow);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInSubtitle 1600ms cubic-bezier(0.16, 1, 0.3, 1) 1000ms forwards;
  transition: color 500ms ease;
  margin-top: -0.04em;
  /* Kaushan italik — optik merkezleme için hafif sola kaydır */
  margin-left: -0.06em;
  margin-right: 0.06em;
}

@keyframes fadeInSubtitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 18px var(--accent-glow); }
  50%     { text-shadow: 0 0 28px var(--accent-glow); }
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-tagline {
  margin-top: 48px;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(18px, 2.25vw, 23px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 1200ms ease 1800ms forwards;
  transition: color 500ms ease;
}

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

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Philosopher', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-faint);
  opacity: 0;
  animation: fadeIn 800ms ease 2400ms forwards, bounce 2s ease-in-out 3200ms infinite;
  text-decoration: none;
}

.scroll-hint::after {
  content: '';
  display: block;
  margin: 10px auto 0;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
}

@keyframes fadeIn { to { opacity: 1; } }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════ */
.section {
  padding: 120px 24px;
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-inner--narrow {
  max-width: 780px;
}

.section-eyebrow {
  font-family: 'Philosopher', serif;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--accent-bright);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: 'Philosopher', serif;
  font-size: clamp(30px, 4.1vw, 46px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.22;
  margin: 14px auto 20px;
  max-width: 820px;
  letter-spacing: 0.5px;
  text-wrap: balance;
  transition: color 500ms ease;
}

.section-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 18.5px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  text-wrap: balance;
  transition: color 500ms ease;
}

/* Section dividers — golden ornament */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 22px;
  width: fit-content;
}

.divider::before,
.divider::after {
  content: '';
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--accent-bright);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ═══════════════════════════════════════════════════
   INTRO / PHILOSOPHY SECTION
   ═══════════════════════════════════════════════════ */
.intro {
  text-align: center;
  padding: 80px 24px;
}

.intro-quote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
  text-wrap: balance;
  transition: color 500ms ease;
}

.intro-quote::before,
.intro-quote::after {
  font-family: 'Philosopher', serif;
  color: var(--accent-bright);
  font-size: 48px;
  position: absolute;
  opacity: 0.5;
  line-height: 1;
}

.intro-quote::before {
  content: '"';
  left: 0;
  top: -10px;
}

.intro-quote::after {
  content: '"';
  right: 0;
  bottom: -30px;
}

/* ═══════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════ */
.features-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 500ms ease,
    border-color 400ms ease,
    background 500ms ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), var(--accent-glow) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 0.35;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: all 400ms ease;
}

.feature-card:hover .feature-icon {
  color: var(--accent-bright);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: scale(1.05);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-family: 'Philosopher', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  transition: color 500ms ease;
}

[data-theme="dark"] .feature-title {
  color: var(--accent-bright);
}

.feature-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  transition: color 500ms ease;
}

/* ═══════════════════════════════════════════════════
   DOWNLOAD / CTA
   ═══════════════════════════════════════════════════ */
.cta {
  text-align: center;
  padding: 120px 24px 100px;
}

.cta-title {
  font-family: 'Philosopher', serif;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--text);
  margin-bottom: 16px;
  transition: color 500ms ease;
}

.cta-text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 19px;
  transition: color 500ms ease;
}

.store-badges {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-soft);
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  transition: all 400ms ease;
  position: relative;
  overflow: hidden;
}

.store-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, var(--accent-glow) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}

.store-badge:hover {
  border-color: var(--accent-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--accent-bright);
}

.store-badge:hover::before {
  transform: translateX(100%);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-badge-small {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-faint);
  text-transform: uppercase;
}

.store-badge-large {
  font-family: 'Philosopher', serif;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 2px;
}

.coming-soon {
  display: inline-block;
  padding: 7px 16px;
  background: var(--accent-bright);
  color: var(--bg);
  font-family: 'Philosopher', serif;
  font-size: 13px;
  letter-spacing: 3px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px var(--accent-glow);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 50px 24px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--bg-subtle);
  transition: background 500ms ease, border-color 500ms ease;
}

.footer-mark {
  font-family: 'Philosopher', serif;
  font-size: 15px;
  letter-spacing: 6px;
  color: var(--text-soft);
  margin-bottom: 22px;
  transition: color 500ms ease;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.footer-links a {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 300ms ease;
}

.footer-links a:hover {
  color: var(--accent-bright);
}

.footer-copy {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  color: var(--text-faint);
  font-style: italic;
  letter-spacing: 0.3px;
  transition: color 500ms ease;
}

/* ═══════════════════════════════════════════════════
   LEGAL PAGES (Gizlilik, Şartlar, İletişim)
   ═══════════════════════════════════════════════════ */
.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: 140px 28px 80px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 800ms ease both;
  font-size: 18px;
}

.legal-header {
  text-align: center;
  margin-bottom: 64px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal h1 {
  font-family: 'Philosopher', serif;
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 16px;
  transition: color 500ms ease;
}

.legal .meta {
  color: var(--text-muted);
  font-style: italic;
  font-size: 15px;
  transition: color 500ms ease;
}

.legal h2 {
  font-family: 'Philosopher', serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--accent);
  margin: 52px 0 16px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: color 500ms ease;
}

[data-theme="dark"] .legal h2 {
  color: var(--accent-bright);
}

.legal h2::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

.legal h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 30px 0 12px;
  transition: color 500ms ease;
}

.legal p {
  margin: 16px 0;
  line-height: 1.85;
  color: var(--text-soft);
  transition: color 500ms ease;
}

.legal > p,
.legal > section p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.legal-header p,
.legal-header .meta {
  text-align: center;
}

.legal ul,
.legal ol {
  margin: 16px 0 16px 22px;
  color: var(--text-soft);
}

.legal li {
  margin: 10px 0;
  line-height: 1.8;
  font-size: 17.5px;
  transition: color 500ms ease;
}

.legal li::marker {
  color: var(--accent-bright);
}

.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border);
  transition: all 300ms ease;
}

[data-theme="dark"] .legal a {
  color: var(--accent-bright);
}

.legal a:hover {
  color: var(--accent-bright);
  text-decoration-color: var(--accent-bright);
}

.legal strong {
  color: var(--text);
  font-weight: 700;
  transition: color 500ms ease;
}

/* Contact page specific */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 36px 0;
}

.contact-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 400ms ease;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-family: 'Philosopher', serif;
  color: var(--accent);
  margin: 0 0 10px;
  font-size: 20px;
}

[data-theme="dark"] .contact-card h3 {
  color: var(--accent-bright);
}

.contact-card p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.email-block {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}

.email-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}

.email-block-label {
  font-family: 'Philosopher', serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--accent-bright);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}

.email-block a {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  transition: all 300ms ease;
}

.email-block a:hover {
  color: var(--accent-bright);
  border-bottom-color: var(--accent-bright);
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 360ms; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-overlay);
    backdrop-filter: blur(14px);
    padding: 16px 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .section {
    padding: 80px 20px;
  }

  .cta, .intro {
    padding: 80px 20px;
  }

  .legal {
    padding: 110px 22px 60px;
  }

  .intro-quote {
    padding: 0 24px;
  }

  .intro-quote::before,
  .intro-quote::after {
    font-size: 36px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Selection */
::selection {
  background: var(--accent-glow);
  color: var(--text);
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
