/* ===========================
   VOLSLINE AI — STYLESHEET
   Colors: #6223DF, #58537F, #0A0A0F, #FFFFFF
   =========================== */

:root {
  --purple:      #6223DF;
  --purple-mid:  #7B3FFF;
  --purple-muted:#58537F;
  --purple-glow: rgba(98, 35, 223, 0.35);
  --black:       #0A0A0F;
  --black-card:  #111118;
  --black-card2: #16161F;
  --white:       #FFFFFF;
  --white-dim:   rgba(255,255,255,0.7);
  --white-faint: rgba(255,255,255,0.08);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================
   LOADING SCREEN
   ===================== */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#loading-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

#loading-fallback {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-logo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--purple);
  box-shadow: 0 0 32px var(--purple-glow);
  animation: loadingPulse 2s ease-in-out infinite;
}

.loading-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loading-bar-track {
  width: 200px;
  height: 3px;
  background: var(--white-faint);
  border-radius: 99px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--purple-mid));
  border-radius: 99px;
  animation: loadBar 2.5s ease forwards;
}

.loading-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white-dim);
  letter-spacing: 0.08em;
}

.dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

@keyframes loadBar {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

@keyframes loadingPulse {
  0%, 100% { box-shadow: 0 0 32px var(--purple-glow); }
  50%       { box-shadow: 0 0 56px rgba(98,35,223,0.6); }
}

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-logo em {
  font-style: normal;
  color: var(--purple-mid);
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white-dim);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--purple-mid) !important;
  transform: translateY(-1px);
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 12px 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-dim);
  border-bottom: 1px solid var(--white-faint);
  transition: color var(--transition);
}

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

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

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-1 {
  width: 500px; height: 500px;
  background: var(--purple);
  top: -100px; left: -150px;
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px; height: 300px;
  background: var(--purple-mid);
  top: 40%; right: -50px;
  opacity: 0.2;
  animation: orbFloat 11s ease-in-out infinite reverse;
}

.orb-3 {
  width: 200px; height: 200px;
  background: var(--purple-muted);
  bottom: 10%; left: 30%;
  opacity: 0.15;
  animation: orbFloat 14s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0); }
  33%       { transform: translate(20px, -30px); }
  66%       { transform: translate(-15px, 20px); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(98,35,223,0.15);
  border: 1px solid rgba(98,35,223,0.4);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  width: fit-content;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #7B3FFF;
  border-radius: 50%;
  box-shadow: 0 0 8px #7B3FFF;
  animation: blink 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-title .line-1 {
  display: block;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  color: var(--white);
}

.hero-title .line-2 {
  display: block;
  font-size: clamp(5rem, 15vw, 9.5rem);
  background: linear-gradient(135deg, #7B3FFF 0%, #A87AFF 50%, #6223DF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 520px;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--purple-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  width: fit-content;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(98,35,223,0.4);
}

.hero-btn svg { width: 16px; height: 16px; }
.hero-btn:hover {
  background: var(--purple-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(98,35,223,0.55);
}

.hero-logo-float {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
}

.hero-logo-img {
  width: 180px;
  height: 180px;
  border-radius: 32px;
  object-fit: cover;
  position: relative;
  z-index: 3;
  animation: heroLogoFloat 6s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(98,35,223,0.5);
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(98,35,223,0.3);
  animation: ringExpand 4s ease-in-out infinite;
}

.ring-1 { width: 220px; height: 220px; animation-delay: 0s; }
.ring-2 { width: 260px; height: 260px; animation-delay: 0.8s; opacity: 0.6; }
.ring-3 { width: 300px; height: 300px; animation-delay: 1.6s; opacity: 0.3; }

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

@keyframes ringExpand {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.15; transform: scale(1.05); }
}

/* =====================
   SECTIONS
   ===================== */
.section {
  padding: 100px 24px;
}

.section-dark {
  background: var(--black-card);
}

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

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple-mid);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #7B3FFF, #A87AFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================
   ABOUT CARDS
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.about-card {
  background: var(--black-card2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.about-card:hover {
  border-color: rgba(98,35,223,0.5);
  transform: translateY(-4px);
}

.about-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--purple-mid);
  background: rgba(98,35,223,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.about-card-icon svg {
  width: 100%;
  height: 100%;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* =====================
   TIMELINE
   ===================== */
.timeline {
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-marker {
  position: absolute;
  left: -48px;
  top: 0;
  width: 34px;
  height: 34px;
  background: var(--black-card);
  border: 2px solid var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-mid);
  padding: 7px;
}

.timeline-marker svg {
  width: 100%;
  height: 100%;
}

.timeline-content {
  background: var(--black-card2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}

.tl-date {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-mid);
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 12px;
}

.timeline-content p em { font-style: italic; color: var(--white); }

.tl-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.tl-tag-fail    { background: rgba(239,68,68,0.15); color: #F87171; border: 1px solid rgba(239,68,68,0.3); }
.tl-tag-success { background: rgba(34,197,94,0.15); color: #4ADE80; border: 1px solid rgba(34,197,94,0.3); }
.tl-tag-live    { background: rgba(98,35,223,0.2);  color: #A87AFF;  border: 1px solid rgba(98,35,223,0.4); }

/* =====================
   CAPABILITIES
   ===================== */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.cap-card {
  background: var(--black-card2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cap-card:hover {
  border-color: rgba(98,35,223,0.4);
  transform: translateY(-4px);
}

.cap-card-highlight {
  border-color: rgba(98,35,223,0.4);
  background: linear-gradient(135deg, rgba(98,35,223,0.12), rgba(10,10,15,0.8));
}

.cap-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--purple-mid);
  background: rgba(98,35,223,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}

.cap-icon svg {
  width: 100%;
  height: 100%;
}

.cap-card-highlight .cap-icon {
  background: rgba(98,35,223,0.22);
}

.cap-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.cap-card p {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* =====================
   DISCLAIMER
   ===================== */
.section-disclaimer {
  padding: 60px 24px;
}

.disclaimer-box {
  background: rgba(88,83,127,0.12);
  border: 1px solid rgba(88,83,127,0.35);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}

.disclaimer-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: #A87AFF;
  margin-top: 2px;
}

.disclaimer-icon svg {
  width: 100%;
  height: 100%;
}

.disclaimer-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
}

.disclaimer-text p {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.75;
}

.disclaimer-text strong { color: var(--white); font-weight: 600; }

/* =====================
   LAUNCH / COMING SOON
   ===================== */
.section-launch {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
}

.launch-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 20px;
}

.launch-badge {
  display: inline-block;
  background: rgba(98,35,223,0.2);
  border: 1px solid rgba(123,63,255,0.5);
  color: #A87AFF;
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.launch-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.launch-sub {
  font-size: 0.95rem;
  color: var(--white-dim);
}

.launch-date {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #7B3FFF, #A87AFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.launch-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--black-card2);
  border: 1px solid rgba(98,35,223,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 80px;
}

.cd-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

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

.cd-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-muted);
  margin-bottom: 20px;
}

.notify-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  margin-top: 8px;
}

.notify-form input {
  flex: 1;
  background: var(--black-card2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.notify-form input::placeholder { color: rgba(255,255,255,0.3); }
.notify-form input:focus { border-color: var(--purple); }

.notify-form button {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.notify-form button:hover {
  background: var(--purple-mid);
  transform: translateY(-1px);
}

.notify-note {
  font-size: 0.85rem;
  color: #4ADE80;
  margin-top: -8px;
}

.launch-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lorb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.lorb-1 {
  width: 400px; height: 400px;
  background: var(--purple);
  top: -100px; left: -100px;
  opacity: 0.18;
}

.lorb-2 {
  width: 300px; height: 300px;
  background: var(--purple-mid);
  bottom: -80px; right: -60px;
  opacity: 0.15;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--black-card);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 24px;
}

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

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

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-brand span {
  font-size: 0.75rem;
  color: var(--purple-mid);
}

.footer-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-info strong { color: rgba(255,255,255,0.75); }

.footer-right { text-align: right; }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: flex-start; padding-top: 100px; }
  .hero-logo-float {
    position: relative;
    right: auto; top: auto; transform: none;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    margin-top: 24px;
  }
  .hero-logo-img { width: 130px; height: 130px; }
  .ring-1 { width: 160px; height: 160px; }
  .ring-2 { width: 200px; height: 200px; }
  .ring-3 { width: 240px; height: 240px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 72px 20px; }
  .timeline { padding-left: 36px; }
  .timeline::before { left: 12px; }
  .timeline-marker { left: -36px; width: 28px; height: 28px; font-size: 0.85rem; }
  .timeline-content { padding: 20px 22px; }
  .disclaimer-box { flex-direction: column; padding: 24px; }
  .countdown { gap: 6px; }
  .cd-block { padding: 12px 14px; min-width: 64px; }
  .cd-num { font-size: 1.5rem; }
  .notify-form { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}

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