/* ========================================
   vdoPulse Landing Page
   Mobile-first • Hybrid dark/light sections
   ======================================== */

:root {
  --navy: #0a0a2e;
  --navy-mid: #12123e;
  --navy-light: #1a1a4e;
  --red: #ff2d2d;
  --red-glow: #ff4444;
  --red-soft: #ff6b6b;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f0f1f5;
  --gray-100: #e2e4eb;
  --gray-200: #c5c8d4;
  --gray-400: #8b8fa3;
  --gray-600: #555872;
  --gray-800: #2a2d42;
  --text-on-dark: #e8e9f0;
  --text-muted-dark: rgba(232, 233, 240, 0.6);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --card-shadow: 0 1px 3px rgba(10, 10, 46, 0.06), 0 8px 24px rgba(10, 10, 46, 0.04);
  --card-shadow-hover: 0 4px 12px rgba(10, 10, 46, 0.08), 0 16px 40px rgba(10, 10, 46, 0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Typography ---- */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}

.text-body { font-size: clamp(0.95rem, 1.5vw, 1.1rem); }
.text-small { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-dark {
  background: var(--navy);
  color: var(--text-on-dark);
}

.section-light {
  background: var(--off-white);
  color: var(--gray-800);
}

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

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255, 45, 45, 0); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(-10%, 5%); }
  70% { transform: translate(8%, 10%); }
  90% { transform: translate(-3%, 8%); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
}

.animate-in.visible {
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staggered delays */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }
.delay-6 { animation-delay: 0.6s !important; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo span { color: var(--red); }

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

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }

.nav-links .btn-nav {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  padding: 8px 18px;
}

.nav-links .btn-nav:hover {
  background: var(--red-glow);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 4px;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 46, 0.96);
    backdrop-filter: blur(16px);
    padding: 16px 20px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, #2d1b69 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(255, 45, 45, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  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.03'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
  opacity: 0.4;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero h1 {
  max-width: 700px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--red) 0%, #ff8844 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-muted-dark);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 45, 45, 0.3);
}

.btn-primary:hover {
  background: var(--red-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 45, 45, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Phone mockup */
.hero-phone {
  position: relative;
  width: 260px;
  height: 520px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
}

.hero-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
}

.hero-phone .placeholder-text {
  color: var(--text-muted-dark);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

@media (min-width: 1024px) {
  .hero { padding: 160px 0 100px; }
  .hero .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    text-align: left;
    align-items: center;
  }
  .hero h1 { margin: 0 0 20px; }
  .hero-sub { margin: 0 0 36px; }
  .hero-ctas { justify-content: flex-start; }
  .hero-phone { margin: 0; }
}

/* ---- Features Section ---- */
.features {
  padding: 80px 0;
}

.section-label {
  text-align: center;
  margin-bottom: 12px;
  color: var(--red);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
  color: var(--gray-800);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: transparent;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-icon.ai { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.feature-icon.bookmark { background: linear-gradient(135deg, #fee2e2, #fecaca); }
.feature-icon.qa { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.feature-icon.tts { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.feature-icon.analytics { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.feature-icon.social { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.feature-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---- Pricing Section ---- */
.pricing {
  padding: 80px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 8px 30px rgba(255, 45, 45, 0.1);
}

.pricing-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.pricing-card .plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card .price-period {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.pricing-card .price-note {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-card.coming-soon {
  opacity: 0.65;
  pointer-events: none;
}

.pricing-card .coming-soon-badge {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.pricing-card.lifetime-enquiry {
  border-style: dashed;
  border-color: var(--gray-200);
  opacity: 1;
  pointer-events: auto;
}

.pricing-card.lifetime-enquiry .price {
  font-size: 1.4rem;
  color: var(--gray-600);
}

.btn-enquiry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
}

.btn-enquiry:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.pricing-trial {
  text-align: center;
  margin-top: 24px;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.pricing-trial strong { color: var(--gray-800); }

/* ---- Beta Signup Section ---- */
.beta-signup {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.beta-signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 0%, rgba(255, 45, 45, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.beta-signup .container {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.beta-signup .section-title { color: var(--text-on-dark); }
.beta-signup .section-label { color: var(--red-soft); }

.beta-incentive {
  text-align: center;
  margin-bottom: 32px;
  padding: 16px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.beta-incentive .gift { font-size: 1.5rem; margin-bottom: 4px; }
.beta-incentive p {
  color: var(--text-on-dark);
  font-weight: 500;
  font-size: 1rem;
}
.beta-incentive .highlight {
  color: var(--red-soft);
  font-weight: 700;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #555872;
}

.form-input {
  background: #f5f6fa;
  border: 1px solid #e2e4eb;
  border-radius: var(--radius);
  padding: 12px 16px;
  color: #1a1a2e;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder { color: #a0a3b5; }
.form-input:focus {
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

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

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

@media (max-width: 640px) {
  .form-row { flex-direction: column; gap: 16px; }
}

.form-row .form-group { flex: 1; }

/* ---- Verification code input ---- */
.code-input {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 8px;
  text-align: center;
  font-family: var(--font-display);
}

.step-intro {
  color: #1a1a2e;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.step-intro strong { color: var(--white); }

.resend-link {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resend-link:hover { color: var(--red); }

/* ---- Device rows ---- */
.device-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  align-items: center;
}

.device-row select.form-input {
  flex: 1;
  cursor: pointer;
  appearance: auto;
}

.btn-remove-device {
  background: #f5f6fa;
  border: 1px solid #e2e4eb;
  color: #8b8fa3;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-remove-device:hover {
  background: rgba(255, 45, 45, 0.08);
  border-color: rgba(255, 45, 45, 0.3);
  color: var(--red);
}

.btn-add-device {
  background: transparent;
  border: 1px dashed #d0d2dc;
  color: #8b8fa3;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-add-device:hover {
  border-color: #999;
  color: #555872;
  background: #f5f6fa;
}

/* ---- Success state ---- */
.success-state {
  text-align: center;
  padding: 32px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-state h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.success-state p {
  color: #555872;
  font-size: 1rem;
  line-height: 1.5;
}

/* Honeypot — visually hidden */
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.btn-submit {
  margin-top: 8px;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 45, 45, 0.25);
}

.btn-submit:hover {
  background: var(--red-glow);
  box-shadow: 0 8px 30px rgba(255, 45, 45, 0.35);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #16a34a;
}

.form-message.error {
  display: block;
  background: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.25);
  color: #dc2626;
}

.form-trust {
  text-align: center;
  font-size: 0.8rem;
  color: #8b8fa3;
  margin-top: 8px;
}

/* ---- Coming Soon / QR Section ---- */
.download-section {
  padding: 80px 0;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .download-grid { grid-template-columns: 1fr; max-width: 260px; }
}

.download-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  opacity: 0.7;
}

.download-card .store-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.download-card .store-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.download-card .store-status {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  margin: 16px auto 0;
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gray-400);
}

/* ---- Lifetime Interest Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 46, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gray-50);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover { background: var(--gray-100); }

.modal-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.modal-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.modal-form { display: flex; flex-direction: column; gap: 12px; }

.modal-input {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  outline: none;
  transition: var(--transition);
}

.modal-input:focus {
  border-color: var(--navy);
  background: var(--white);
}

.modal-submit {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.modal-submit:hover { background: var(--navy-light); }

.modal-message {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px;
  border-radius: var(--radius);
  display: none;
}

.modal-message.success {
  display: block;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.modal-message.error {
  display: block;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* ---- Footer ---- */
.footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--gray-100);
}

.footer p {
  color: var(--gray-400);
  font-size: 0.8rem;
}

.footer .disclaimer {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--gray-300);
}
