/* ============================================================
   Status Value — Premium Card Benefits Tracker
   Status Value LLC
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ============================
   2. CUSTOM PROPERTIES
   ============================ */
:root {
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-tertiary: #18181b;
  --bg-card: #1c1c1f;

  --gold-primary: #c9a962;
  --gold-secondary: #e8d5a3;
  --gold-muted: #8b7a4a;
  --gold-glow: rgba(201, 169, 98, 0.15);
  --gold-glow-strong: rgba(201, 169, 98, 0.25);

  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-on-gold: #1a1a1a;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(201, 169, 98, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================
   3. TYPOGRAPHY
   ============================ */
.display {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

/* Brand wordmark — sans-serif override for "Status Value" */
.brand-name {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

/* ============================
   4. LAYOUT
   ============================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 96px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   5. NOISE OVERLAY
   ============================ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ============================
   6. NAVIGATION
   ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition-smooth),
              padding var(--transition-smooth),
              backdrop-filter var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  color: var(--gold-primary);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

/* CTA Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--text-on-gold);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 100px;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--gold-glow-strong);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 100px;
  border: 1px solid var(--gold-muted);
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
  letter-spacing: 0.02em;
}

.btn-secondary:hover {
  background: var(--gold-glow);
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast),
              opacity var(--transition-fast);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 11, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--gold-primary);
}

/* ============================
   7. HERO SECTION
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.hero::before {
  content: "";
  position: absolute;
  top: 15%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: ambientPulse 8s infinite ease-in-out;
}

/* Cursor glow */
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.4s ease-out, top 0.4s ease-out;
  opacity: 0;
  z-index: 0;
}

.hero:hover .hero-glow {
  opacity: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Text */
.hero-content {
  max-width: 560px;
}

.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-headline .word.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-headline .word.gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}

.hero-subheadline.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 1.1s, transform 0.6s ease 1.1s;
}

.hero-actions.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.hero-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: badgePulse 2s infinite ease-in-out;
}

/* ============================
   8. STATUS TILE STACK
   ============================ */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 420px;
  overflow: hidden;
}

.card-stack {
  position: relative;
  width: 300px;
  height: 220px;
  perspective: 1200px;
}

.status-tile {
  position: absolute;
  width: 300px;
  height: 220px;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 10px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: none;
  border: 1px solid var(--border-subtle);
}

.status-tile.animate {
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.8s ease;
  opacity: 1;
}

.status-tile.settled {
  animation: cardFloat 6s infinite ease-in-out;
}

/* Shimmer overlay */
.status-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 60%
  );
  animation: shimmer 5s infinite ease-in-out;
  pointer-events: none;
}

/* Tile Variants */
.tile-card {
  background: linear-gradient(145deg, #141418 0%, #1e1e26 50%, #18181e 100%);
  z-index: 3;
}

.tile-airline {
  background: linear-gradient(145deg, #0c1830 0%, #162a52 50%, #0e1e3e 100%);
  z-index: 2;
}

.tile-hotel {
  background: linear-gradient(145deg, #1a1428 0%, #2a1e3a 50%, #1e1830 100%);
  z-index: 1;
}

/* Tile Layout */
.tile-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.tile-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tile-icon svg {
  width: 18px;
  height: 18px;
}

.tile-card .tile-icon {
  background: rgba(201, 169, 98, 0.15);
  color: var(--gold-primary);
}

.tile-airline .tile-icon {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.tile-hotel .tile-icon {
  background: rgba(192, 132, 252, 0.15);
  color: #c084fc;
}

.tile-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tile-tier {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.tile-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.875rem;
}

.tile-stat {
  display: flex;
  flex-direction: column;
}

.tile-stat-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.tile-stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tile-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.tile-card .tile-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-primary));
}

.tile-airline .tile-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.tile-hotel .tile-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #8b5cf6, #c084fc);
}

/* Fan positions — hotel far-left, airline center, card tilted right */
.tile-hotel.fan {
  transform: translateX(-110px) translateY(10px) rotate(-8deg);
  z-index: 1;
}

.tile-airline.fan {
  transform: translateY(-10px) rotate(0deg);
  z-index: 2;
}

.tile-card.fan {
  transform: translateX(110px) translateY(10px) rotate(8deg);
  z-index: 3;
}

/* ============================
   9. FEATURES SECTION
   ============================ */
.features {
  background: var(--bg-secondary);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-primary), var(--gold-muted));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-primary);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================
   10. HOW IT WORKS SECTION
   ============================ */
.how-it-works {
  position: relative;
}

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

/* Connecting line */
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-primary), var(--gold-muted));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  position: relative;
  z-index: 1;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.step:hover .step-number {
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px var(--gold-glow);
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
}

.step p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* ============================
   11. SECURITY SECTION
   ============================ */
.security {
  background: var(--bg-secondary);
  position: relative;
}

.security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-fast);
}

.trust-item:hover {
  border-color: var(--border-gold);
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold-primary);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================
   12. CONTACT SECTION
   ============================ */
.contact {
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.04) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 0;
  font-size: 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-medium);
  transition: border-color var(--transition-fast);
  background: transparent;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--gold-primary);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border-medium);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background var(--transition-fast),
              border-color var(--transition-fast);
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--text-on-gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Visually hidden form fields (screen-reader accessible pattern) */
.form-group--a11y {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Submit Button */
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Form Messages */
.form-message {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  color: #4ade80;
}

.form-message.error {
  color: #f87171;
}

/* Turnstile container */
.turnstile-container {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

/* ============================
   13. FOOTER
   ============================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  color: var(--gold-primary);
}

.footer-logo-img {
  height: 22px;
  width: auto;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-primary);
}

/* ============================
   14. SCROLL REVEAL
   ============================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger delays */
.scroll-reveal[data-delay="1"] { transition-delay: 0.08s; }
.scroll-reveal[data-delay="2"] { transition-delay: 0.16s; }
.scroll-reveal[data-delay="3"] { transition-delay: 0.24s; }
.scroll-reveal[data-delay="4"] { transition-delay: 0.32s; }
.scroll-reveal[data-delay="5"] { transition-delay: 0.40s; }
.scroll-reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ============================
   15. KEYFRAME ANIMATIONS
   ============================ */
@keyframes ambientPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes shimmer {
  0% { transform: translateX(-200%); }
  100% { transform: translateX(200%); }
}

@keyframes cardFloat {
  0%, 100% { transform: var(--float-base) translateY(0px); }
  50% { transform: var(--float-base) translateY(-8px); }
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ============================
   16. FOCUS STYLES
   ============================ */
*:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.form-input:focus-visible {
  outline: none;
}

/* ============================
   17. LEGAL PAGES
   ============================ */
.legal-page {
  min-height: 100vh;
  padding: 140px 0 80px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.legal-content .legal-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  list-style: disc;
  margin-bottom: 0.25rem;
}

.legal-content a {
  color: var(--gold-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--gold-secondary);
}

/* ============================
   18. MEDIA QUERIES
   ============================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subheadline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    height: 350px;
  }

  .card-stack {
    transform: scale(0.82);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-visual {
    height: 280px;
  }

  .card-stack {
    transform: scale(0.7);
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }
}

/* ============================
   19. REDUCED MOTION
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-headline .word,
  .hero-subheadline,
  .hero-actions,
  .hero-badge,
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .status-tile {
    opacity: 1 !important;
  }
}
