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

:root {
  --bg: #080808;
  --bg-surface: #111111;
  --bg-surface-2: #181818;
  --bg-surface-3: #1e1e1e;
  --gold: #C9A84C;
  --gold-light: #E2C87E;
  --gold-dark: #A08030;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-glow-strong: rgba(201, 168, 76, 0.3);
  --text: #F0EDE6;
  --text-muted: #8A8577;
  --text-dim: #5a5649;
  --border: rgba(201, 168, 76, 0.12);
  --border-strong: rgba(201, 168, 76, 0.25);
  --danger: #a83030;

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

  --container: 1200px;
  --section-pad: clamp(80px, 12vw, 160px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--gold-light); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px var(--gold-glow-strong), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.btn-cta:hover::before { transform: translateX(100%); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-mobile-overlay.active { opacity: 1; pointer-events: all; }
.nav-mobile-overlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  transition: color 0.3s;
}
.nav-mobile-overlay a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(80px, 80px) rotate(1deg); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -30%);
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  filter: blur(80px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.4; transform: translate(-50%, -30%) scale(1); }
  100% { opacity: 0.7; transform: translate(-50%, -30%) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--gold-glow-strong); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--text);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-dim);
}

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

/* ══════════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════════ */
section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

/* ══════════════════════════════════════════════
   PROBLEMS SECTION
   ══════════════════════════════════════════════ */
.problems {
  background: var(--bg);
}

.problems-header {
  text-align: center;
  margin-bottom: 72px;
}

.problems-header .section-desc {
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-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.4s;
}

.problem-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.problem-card:hover::before { opacity: 1; }

.problem-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
}

.problem-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ══════════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════════ */
.features {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-header .section-desc { margin: 0 auto; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse .feature-visual { order: -1; }

.feature-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-inner {
  padding: 32px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual svg {
  width: 100%;
  height: 100%;
  max-width: 320px;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 12px;
}

.feature-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.feature-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.feature-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-light);
  font-style: italic;
}

.feature-highlight::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how-it-works { background: var(--bg); }

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header .section-desc { margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.step-num::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: -1;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 24px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ══════════════════════════════════════════════
   TRUST SECTION
   ══════════════════════════════════════════════ */
.trust {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.trust-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 48px;
  color: var(--text);
}

.trust-quote em { color: var(--gold); font-style: italic; }

.trust-mockup {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.trust-mockup-bar {
  height: 36px;
  background: var(--bg-surface-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.trust-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.1);
}

.trust-mockup-body {
  padding: 32px;
  min-height: 300px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
}

.mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-sidebar-item {
  height: 14px;
  border-radius: 4px;
  background: var(--bg-surface-3);
}
.mockup-sidebar-item.active {
  background: linear-gradient(90deg, var(--gold-glow-strong), transparent);
  border-left: 2px solid var(--gold);
}

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-header-row {
  display: flex;
  gap: 16px;
}

.mockup-stat-card {
  flex: 1;
  height: 60px;
  background: var(--bg-surface-3);
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-stat-label {
  height: 6px;
  width: 50%;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
}

.mockup-stat-value {
  height: 10px;
  width: 70%;
  background: var(--gold-glow-strong);
  border-radius: 3px;
}

.mockup-chart {
  flex: 1;
  background: var(--bg-surface-3);
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.mockup-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--gold-dark), var(--gold));
  opacity: 0.6;
  min-height: 20px;
}

/* ══════════════════════════════════════════════
   SECURITY SECTION
   ══════════════════════════════════════════════ */
.security {
  background: var(--bg);
}

.security-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.security-content { flex: 1; }

.security-visual {
  flex: 0 0 360px;
  display: flex;
  justify-content: center;
}

.security-diagram {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-node {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.security-node:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.security-node-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-node-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
}

.security-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ══════════════════════════════════════════════
   CTA / FORM SECTION
   ══════════════════════════════════════════════ */
.cta-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-content .section-title { margin-bottom: 24px; }

.cta-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.form-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(168, 48, 48, 0.15);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px var(--gold-glow-strong);
}

.form-success {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.form-success.active { display: block; }
.form-success svg { width: 56px; height: 56px; stroke: var(--gold); margin: 0 auto 24px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.form-success p { color: var(--text-muted); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left img { height: 28px; }

.footer-left span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-right a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-right a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.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; }

.hero-content .hero-eyebrow { animation: fadeUp 0.8s 0.2s both; }
.hero-content h1 { animation: fadeUp 0.8s 0.4s both; }
.hero-content .hero-sub { animation: fadeUp 0.8s 0.6s both; }
.hero-content .hero-cta-group { animation: fadeUp 0.8s 0.8s both; }

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

@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;
  }
  .reveal { opacity: 1; transform: none; }
}
