/* DZYR Website - Public brand shell */
/* Shared static-site design tokens aligned to the canonical DZYR pack */

/* ========================================
   FONT FACES
   ======================================== */

@font-face {
  font-family: 'BigShouldersDisplay';
  src: url('fonts/BigShouldersDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'BigShouldersDisplay';
  src: url('fonts/BigShouldersDisplay-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'BigShouldersDisplay';
  src: url('fonts/BigShouldersDisplay-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('fonts/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('fonts/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* ========================================
   CSS VARIABLES
   ======================================== */

:root {
  /* Atmospheric backgrounds */
  --background: #07060C;         /* dzyrAbyss */
  --surface: #161222;            /* dzyrSurface */
  --surface-elevated: #1F1932;   /* dzyrSurfaceElevated */
  --surface-input: #0E0B16;      /* dzyrVoid */

  /* Primary identity (purple) */
  --primary: #4A2D7A;            /* dzyrPurple */
  --primary-light: #6B4FA0;      /* dzyrPurpleLight */
  --primary-dark: #2E1A52;       /* dzyrPurpleDark */

  /* Brand accent (crimson -- replaces gold) */
  --accent: #8B1E3A;             /* dzyrCrimson */
  --accent-light: #B8345A;       /* dzyrCrimsonLight */
  --accent-dark: #5F1328;        /* dzyrCrimsonDark (deep) */

  /* Cold metallic (restrained emphasis -- replaces gold for non-action uses) */
  --silver: #C8C9D4;             /* dzyrSilverCold */
  --silver-bright: #E8E7F0;      /* dzyrSilverBright */
  --silver-muted: #9396A8;       /* dzyrSilverMuted */

  /* Functional */
  --crimson: #8B1E3A;            /* Same as accent -- intentional */
  --crimson-light: #B8345A;
  --success: #3AA178;
  --warning: #D18B2C;

  /* Text */
  --text-primary: #F0EDF7;
  --text-secondary: #B5B0C8;
  --text-muted: #8A849E;
  --text-on-accent: #FFFFFF;
  --text-on-primary: #FFFFFF;

  /* Borders */
  --border-subtle: rgba(200, 201, 212, 0.08);
  --border-default: rgba(200, 201, 212, 0.16);
  --border-strong: rgba(200, 201, 212, 0.24);

  /* Glass */
  --glass-bg: rgba(31, 25, 50, 0.04);        /* purple-tinted */
  --glass-bg-strong: rgba(31, 25, 50, 0.07);
  --glass-border: rgba(200, 201, 212, 0.14);

  /* Gradients */
  --identity-gradient: linear-gradient(135deg, #2E1A52 0%, #4A2D7A 100%);
  --crimson-gradient: linear-gradient(135deg, #8B1E3A 0%, #B8345A 100%);
  --hero-gradient: radial-gradient(circle at top, rgba(74, 45, 122, 0.35), transparent 45%),
    linear-gradient(140deg, rgba(22, 18, 34, 0.96) 0%, rgba(7, 6, 12, 0.98) 55%, rgba(139, 30, 58, 0.20) 100%);

  /* Shadows & glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.58);
  --accent-glow: 0 0 20px rgba(139, 30, 58, 0.22);
  --accent-glow-strong: 0 0 36px rgba(139, 30, 58, 0.32);
  --primary-glow: 0 0 24px rgba(74, 45, 122, 0.28);

  /* Spacing, radii, transitions -- unchanged */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 128px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-round: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SpaceGrotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.display-large {
  font-family: 'BigShouldersDisplay', sans-serif;
  font-style: normal;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.display-medium {
  font-family: 'BigShouldersDisplay', sans-serif;
  font-style: normal;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.text-accent {
  background: var(--crimson-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.text-secondary {
  color: var(--text-secondary);
}

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

.text-center {
  text-align: center;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover {
  color: var(--accent-light);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  transition: background var(--transition-normal), backdrop-filter var(--transition-normal);
}

.nav.scrolled {
  background: rgba(7, 6, 12, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

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

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-image {
  display: block;
  width: clamp(84px, 10vw, 128px);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

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

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

.btn.btn-nav-cta {
  padding: 8px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.85rem;
  background: transparent;
  box-shadow: none;
}

.btn.btn-nav-cta:hover {
  background: rgba(139, 30, 58, 0.1);
  color: var(--accent-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-round);
  font-family: 'SpaceGrotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--crimson-gradient);
  color: var(--text-on-accent);
  box-shadow: var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--accent-glow-strong);
}

.btn-secondary {
  background: var(--glass-bg-strong);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(139, 30, 58, 0.12);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.store-btn-icon {
  font-size: 1.2rem;
}

/* iOS Waitlist Form */
.ios-waitlist {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ios-waitlist input[type="email"] {
  background: var(--surface-input);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: 'SpaceGrotesk', sans-serif;
  font-size: 0.85rem;
  min-width: 180px;
}

.ios-waitlist input[type="email"]::placeholder {
  color: var(--text-muted);
}

.ios-waitlist input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: url('images/dzyr_hero_banner.webp') center/cover no-repeat,
              url('images/dzyr_hero_banner.jpg') center/cover no-repeat,
              var(--hero-gradient);
  z-index: -2;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 6, 12, 0.55) 0%,
    rgba(7, 6, 12, 0.40) 40%,
    rgba(7, 6, 12, 0.25) 100%
  );
  z-index: -1;
}

.hero-gradient-overlay-vertical {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 6, 12, 0.85) 0%,
    rgba(7, 6, 12, 0.30) 38%,
    rgba(7, 6, 12, 0.20) 100%
  );
  z-index: -1;
}

.shimmer-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  padding: 0 var(--space-xl);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  gap: var(--space-2xl);
  align-items: center;
  text-align: left;
}

.hero-copy {
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-headline {
  margin-bottom: var(--space-lg);
}

.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 640px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
}

.store-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-check {
  color: var(--accent);
  font-weight: bold;
  font-size: 1rem;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(31, 25, 50, 0.08) 0%, rgba(31, 25, 50, 0.03) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-lg), var(--primary-glow);
}

.panel-kicker,
.proof-label {
  color: var(--silver-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero-panel h2 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.panel-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.panel-list li {
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: var(--space-md);
}

.panel-list li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* ========================================
   GRAIN OVERLAY (Tier 1 atmospheric texture)
   ======================================== */

.grain-overlay {
  position: relative;
}

.grain-overlay::after {
  content: '';
  position: absolute;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ========================================
   SECTIONS - SHARED
   ======================================== */

.section {
  position: relative;
  padding: var(--space-4xl) var(--space-xl);
}

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

.section-inner-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-header {
  margin-bottom: 80px;
}

.section-label {
  color: var(--silver-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-headline {
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-subhead {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-subhead-large {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 680px;
}

.accent-divider {
  width: 96px;
  height: 1px;
  background: var(--crimson-gradient);
  margin: var(--space-lg) auto 0;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.section-problem {
  padding: var(--space-4xl) var(--space-xl);
  overflow: hidden;
}

.problem-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(74, 45, 122, 0.12);
  filter: blur(150px);
  pointer-events: none;
}

/* ========================================
   FEATURE CARDS
   ======================================== */

.features-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature-card,
.proof-card {
  background: var(--glass-bg);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--crimson-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.feature-card:hover,
.proof-card:hover {
  border-color: rgba(139, 30, 58, 0.32);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 36px rgba(74, 45, 122, 0.12);
  background: var(--glass-bg-strong);
}

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

.feature-icon-wrap {
  margin-bottom: var(--space-md);
}

.feature-icon-img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 10px rgba(74, 45, 122, 0.25));
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.feature-card:hover .feature-icon-img {
  filter: drop-shadow(0 0 20px rgba(74, 45, 122, 0.4));
  transform: scale(1.05);
}

.feature-title,
.proof-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.feature-description,
.proof-card p:last-child {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.cta-section {
  position: relative;
  padding: var(--space-4xl) var(--space-xl);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  z-index: -1;
}

.cta-section .hero-gradient-overlay {
  z-index: 0;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(74, 45, 122, 0.12);
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  color: var(--silver-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.cta-headline {
  margin-bottom: var(--space-lg);
}

.cta-subhead {
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  font-size: 1.1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-fine-print {
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--surface);
  padding: var(--space-2xl) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--identity-gradient);
  opacity: 0.5;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-2xl);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: 'BigShouldersDisplay', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--identity-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: var(--space-sm);
}

.footer-section h4 {
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-coming-soon {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-credit {
  margin-top: var(--space-xs);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   LEGAL / SUPPORT PAGES
   ======================================== */

.legal-page {
  padding-top: 100px;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-2xl);
}

.legal-card {
  background: var(--surface);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.legal-card h1 {
  font-family: 'SpaceGrotesk', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--silver-bright);
  margin-bottom: var(--space-sm);
}

.legal-card .last-updated {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
}

.legal-card h2 {
  font-family: 'SpaceGrotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin: var(--space-xl) 0 var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.legal-card h3 {
  font-size: 1.16rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--text-primary);
}

.legal-card p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.legal-card ul,
.legal-card ol {
  color: var(--text-secondary);
  margin: var(--space-md) 0 var(--space-md) var(--space-xl);
}

.legal-card li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.legal-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-card a {
  color: var(--primary-light);
  text-decoration: underline;
  text-decoration-color: rgba(107, 79, 160, 0.3);
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.legal-card a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.support-card {
  background: var(--surface-elevated);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  margin-bottom: var(--space-xl);
}

.support-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--glass-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast);
}

.contact-item:hover {
  border-color: var(--primary);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-info strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.contact-info a {
  color: var(--primary-light);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-info a:hover {
  color: var(--silver);
}

.faq-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item a {
  color: var(--primary-light);
  transition: color var(--transition-fast);
}

.faq-item a:hover {
  color: var(--silver);
}

/* ========================================
   UTILITIES
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 24px;
    --space-2xl: 32px;
    --space-3xl: 48px;
    --space-4xl: 80px;
  }

  .nav-right {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 6, 12, 0.96);
    backdrop-filter: blur(20px);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-right.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo-image {
    width: 92px;
  }

  .hero {
    padding: var(--space-2xl) var(--space-md);
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-background {
    background: url('images/dzyr_hero_banner_tablet.webp') center 30%/cover no-repeat,
                url('images/dzyr_hero_banner.jpg') center 30%/cover no-repeat,
                var(--hero-gradient);
  }

  .hero-content {
    padding: 0 var(--space-md);
  }

  .hero-copy,
  .hero-panel {
    text-align: left;
  }

  .store-buttons {
    flex-direction: column;
    width: 100%;
  }

  .store-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

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

  .feature-icon-img {
    width: 48px;
    height: 48px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .legal-card {
    padding: var(--space-lg);
  }

  .legal-container {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  .nav-logo-image {
    width: 80px;
  }

  .display-large {
    font-size: 2rem;
  }

  .display-medium {
    font-size: 1.5rem;
  }

  .hero-background {
    background: url('images/dzyr_hero_banner_mobile.webp') center 25%/cover no-repeat,
                url('images/dzyr_hero_banner.jpg') center 25%/cover no-repeat,
                var(--hero-gradient);
  }

  .btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.95rem;
  }

  .section-header {
    margin-bottom: 48px;
  }
}

/* ========================================
   AOS CUSTOMIZATIONS
   ======================================== */

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}
