:root {
  --bg: #f2f3f0;
  --ink: #111111;
  --muted: #666666;
  --card: #ffffff;
  --border: #cbccc9;
  --accent: #ff8400;
  --accent-dark: #d36800;
  --danger: #ff5c33;
  --shadow-soft: 0 24px 60px rgba(17, 17, 17, 0.14);
  --shadow-strong: 0 30px 80px rgba(17, 17, 17, 0.22);
}

body.dark-mode {
  --bg: #0a0a0a;
  --ink: #e0e0e0;
  --muted: #a0a0a0;
  --card: #171717;
  --border: #333333;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* Dark mode specific adjustments */
body.dark-mode .nav {
  background: rgba(23, 23, 23, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

body.dark-mode .chip,
body.dark-mode .timer-dot,
body.dark-mode .vote-dot {
  background: #333;
  color: #fff;
}

body.dark-mode .device {
  box-shadow: 0 0 0 1px #333, var(--shadow-strong);
}

/* Dark Mode: Device Screen & Cards */
body.dark-mode .device-screen {
  background: #1a1a1a;
}
body.dark-mode .screen-card {
  background: #262626;
  border-color: #404040;
}
body.dark-mode .secret-card .label {
  color: #a0a0a0;
}
body.dark-mode .chip {
  background: #404040;
  color: #fff;
}
body.dark-mode .vote-dot {
  background: #404040;
  border-color: #555;
}

/* Dark Mode: UI Elements */
body.dark-mode .category-chip {
  background: var(--card);
  border-color: var(--border);
  color: var(--ink);
}

body.dark-mode .btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode input {
  background: var(--card);
  color: var(--ink);
  border-color: var(--border);
}

body.dark-mode .stat-card {
  background: var(--card);
  border-color: var(--border);
}

/* Theme Toggle Component */
.theme-toggle {
  display: flex;
  width: 64px;
  height: 32px;
  padding: 4px;
  border-radius: 999px;
  cursor: pointer;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  align-items: center;
}

.theme-toggle-track {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 6px;
  align-items: center;
}

.theme-toggle-handle {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
  z-index: 2;
  color: var(--bg);
}

body.dark-mode .theme-toggle-handle {
  transform: translateX(32px);
  background: #333;
  color: #fff;
}

.theme-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2px;
}

.toggle-icon-bg {
  color: var(--muted);
  opacity: 0.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

@keyframes bg-shift {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  50% {
    background-position: 10px 10px, -10px 15px, 5px -5px, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(255, 132, 0, 0.15), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(255, 92, 51, 0.12), transparent 38%),
    radial-gradient(circle at 25% 90%, rgba(0, 0, 0, 0.05), transparent 40%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px);
  background-size: auto, auto, auto, 70px 70px, 70px 70px;
  pointer-events: none;
  z-index: 0;
  animation: bg-shift 20s ease-in-out infinite alternate;
}

.page {
  position: relative;
  z-index: 1;
  padding: 28px clamp(20px, 4vw, 64px) 60px;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.nav {
  position: sticky;
  top: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  color: #ffffff;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.logo-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.logo-subtitle {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  align-items: center; /* Ensure vertical center alignment */
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #111111;
  box-shadow: 0 12px 24px rgba(255, 132, 0, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 132, 0, 0.35);
}

.btn.ghost {
  border-color: rgba(17, 17, 17, 0.15);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.btn.ghost:hover {
  transform: translateY(-2px);
}

.hero {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.hero-copy {
  padding-right: 12px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}

.typewriter {
  display: inline-block;
  min-height: 1.2em;
}

.cursor {
  color: var(--accent-dark);
  animation: blink 1s step-end infinite;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.6);
}

.meta span {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  gap: 24px;
}

.device {
  position: relative;
  width: min(320px, 100%);
  border-radius: 28px;
  padding: 16px;
  background: #111111;
  box-shadow: var(--shadow-strong);
}

.device::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.device-header {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.device-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.device-screen {
  display: grid;
  gap: 14px;
  background: #f2f3f0;
  border-radius: 20px;
  padding: 16px;
  min-height: 380px;
}

.screen-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #cbccc9;
  box-shadow: 0 10px 25px rgba(17, 17, 17, 0.08);
}

.secret-card h3 {
  font-size: 1.7rem;
  margin: 6px 0 4px;
}

.secret-card .label {
  font-size: 0.8rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.timer {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #666666;
}

.timer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e7e8e5;
}

.screen-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7e8e5;
  font-size: 0.75rem;
  font-weight: 600;
  color: #111111;
}

.vote-card {
  display: grid;
  gap: 10px;
}

.vote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.vote-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #cbccc9;
  background: #e7e8e5;
}

.stamp {
  position: absolute;
  top: -20px;
  right: 10px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255, 92, 51, 0.75);
  display: grid;
  place-items: center;
  color: rgba(255, 92, 51, 0.85);
  transform: rotate(-18deg);
  animation: pulse 2.5s ease-in-out infinite;
}

.stamp-ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 92, 51, 0.4);
}

.stamp-inner {
  display: grid;
  gap: 4px;
  font-size: 0.55rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2em;
}

.stamp-line {
  display: block;
  width: 50px;
  height: 1px;
  background: rgba(255, 92, 51, 0.8);
  margin: 2px auto;
}

.scan {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: rgba(255, 92, 51, 0.9);
}

.scan-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 92, 51, 0.3);
  animation: scan-pulse 1.8s ease-in-out infinite;
}

.scan-icon {
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.8;
}

.scan-line {
  position: absolute;
  width: 100px;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(255, 92, 51, 0),
    rgba(255, 92, 51, 0.8),
    rgba(255, 255, 255, 0.6),
    rgba(255, 92, 51, 0.8),
    rgba(255, 92, 51, 0)
  );
  filter: blur(0.5px);
  animation: scan-line 1.6s linear infinite;
}

.section {
  margin-top: 90px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 32px;
}

.steps,
.feature-grid,
.stats-grid {
  display: grid;
  gap: 20px;
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.08);
}

.step-index {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: rgba(17, 17, 17, 0.4);
  margin-bottom: 8px;
}

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

/* Glowing Effect Feature Cards */
.feature-card {
  position: relative;
  background: var(--card);
  border-radius: 20px;
  padding: 1px; /* Space for the border */
  box-shadow: 0 20px 35px rgba(17, 17, 17, 0.08);
  border: none;
  overflow: hidden;
}

.feature-content {
  background: var(--card);
  border-radius: 19px;
  padding: 22px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.glow-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

/* The gradient glow */
.glow-border::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from calc(var(--angle, 0) * 1deg),
    transparent 0deg,
    var(--accent) 60deg,
    transparent 120deg
  );
  opacity: var(--active, 0);
  transition: opacity 0.2s ease;
}

/* Static fallback border */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid var(--border);
  z-index: 3; /* On top of glow but pointer-events none */
  pointer-events: none;
}

.highlight {
  background: #111111;
  color: #ffffff;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 48px);
}

.highlight p {
  color: rgba(255, 255, 255, 0.65);
}

.highlight-content {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.highlight-cards {
  display: grid;
  gap: 14px;
}

.toggle-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-label {
  display: block;
  font-weight: 600;
}

.toggle-sub {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.toggle-pill {
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  position: relative;
}

.toggle-pill::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.toggle-pill.active {
  background: rgba(255, 132, 0, 0.8);
}

.toggle-pill.active::after {
  transform: translateX(22px);
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-card {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--border);
}

.stat-card h3 {
  font-size: 1.8rem;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

/* Waitlist Form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.input-group {
  display: flex;
  gap: 8px;
}

.input-group input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.input-group input:focus {
  border-color: var(--accent);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
}

/* Category Grid */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-chip {
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.category-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border-color: var(--accent);
}

/* Interactive Hover Button */
.interactive-hover-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.3s ease;
  z-index: 10;
}

.interactive-hover-btn span.btn-text {
  display: inline-block;
  transform: translateX(4px);
  transition: all 0.3s ease;
  z-index: 20;
}

.interactive-hover-btn:hover span.btn-text {
  transform: translateX(48px);
  opacity: 0;
}

.interactive-hover-btn .btn-reveal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink); /* Matches current primary btn text color */
  opacity: 0;
  transform: translateX(48px);
  transition: all 0.3s ease;
  z-index: 20;
}

.interactive-hover-btn:hover .btn-reveal {
  opacity: 1;
  transform: translateX(-2px);
}

.interactive-hover-btn .btn-fill {
  position: absolute;
  left: 20%;
  top: 40%;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--accent);
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}

.interactive-hover-btn:hover .btn-fill {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: scale(2.5);
  opacity: 1;
}

/* 3D Scroll Container */
.scroll-container-wrapper {
  padding: 60px 0;
  overflow: hidden; /* Prevent horizontal scroll from rotation */
}

.scroll-perspective {
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-header {
  text-align: center;
  max-width: 600px;
  margin-bottom: 40px;
  transform: translateY(0); /* Will be animated via JS */
  transition: opacity 0.3s;
}

.scroll-card-3d {
  width: 100%;
  max-width: 800px;
  border-radius: 30px;
  background: #111111; /* Dark frame background */
  padding: 12px;
  border: 4px solid #333333;
  box-shadow: 
    0 0 0 1px rgba(0,0,0,0.1),
    0 20px 50px rgba(0,0,0,0.3);
  
  /* Initial State for JS Animation */
  transform: rotateX(20deg) scale(0.9);
  opacity: 0.8;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.scroll-card-inner {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 24px;
  height: 480px;
  overflow: hidden;
  position: relative;
}

/* Mock Settings UI inside the 3D Card */
.settings-ui {
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.2rem;
  font-weight: 700;
}

.settings-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.settings-group {
  display: grid;
  gap: 12px;
}

/* Override toggle-card for dark mode inside 3D card */
.settings-ui .toggle-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.05);
}

.settings-ui .toggle-label {
  font-size: 0.95rem;
}

.settings-ui .toggle-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.download-card {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 25px 50px rgba(17, 17, 17, 0.1);
}

.fineprint {
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.5);
}

.footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.6);
}

/* Support Page Container */
.support-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px; /* Reduced vertical padding for mobile, consistent side padding */
}

@media (min-width: 768px) {
  .support-container {
    padding: 100px 40px; /* More padding on larger screens */
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 51, 0.3);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 92, 51, 0);
  }
}

@keyframes scan-pulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes scan-line {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .nav {
    position: static;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

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

  /* .hero-visual { order: -1; } REMOVED so text stays on top */
}

/* Waitlist Container & Transitions */
.waitlist-container {
  margin: 24px 0 18px;
  min-height: 80px; /* Reserve height to reduce layout shift */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.waitlist-form-wrapper {
  animation: fadeIn 0.4s ease forwards;
}

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

.hero .waitlist-container {
  align-items: flex-start; /* Aligns button to the left */
}

@media (max-width: 600px) {
  .nav {
    padding: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .device {
    width: 100%;
  }

  .cta-group {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
