/* ==========================================================================
   Priyanka4Pharma - Software Launch Landing Page Stylesheet
   Brand Colors: Navy (#0D1E3A), Rose Pink (#E84A7F), Elegant Gold (#C59B4B)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Primary Colors */
  --navy: #0D1E3A;
  --navy-dark: #071325;
  --navy-light: #1A3258;
  --navy-muted: #566882;
  --navy-subtle: #899AB0;

  /* Rose Pink Accents */
  --pink: #E84A7F;
  --pink-hover: #D83B70;
  --pink-dark: #BD275B;
  --pink-soft: #FFF2F7;
  --pink-subtle: #FDF0F5;
  --pink-border: rgba(232, 74, 127, 0.22);
  --pink-border-subtle: rgba(232, 74, 127, 0.12);
  --pink-glow: rgba(232, 74, 127, 0.25);

  /* Elegant Gold */
  --gold: #C59B4B;
  --gold-light: #E0BA6E;
  --gold-dark: #A57D32;
  --gold-soft: #FCF8F0;

  /* Neutrals & Backgrounds */
  --bg-white: #FFFFFF;
  --bg-cream: #FAF7F5;
  --bg-gradient-page: linear-gradient(180deg, #FFFFFF 0%, #FDF4F7 25%, #FAF7F5 60%, #FFFFFF 100%);
  --bg-card: #FFFFFF;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', cursive;

  /* Elevations & Shadows */
  --shadow-xs: 0 2px 6px rgba(13, 30, 58, 0.04);
  --shadow-sm: 0 4px 14px rgba(222, 59, 118, 0.06);
  --shadow-md: 0 12px 32px rgba(222, 59, 118, 0.09), 0 4px 12px rgba(13, 30, 58, 0.03);
  --shadow-lg: 0 20px 48px rgba(222, 59, 118, 0.12), 0 8px 20px rgba(13, 30, 58, 0.04);
  --shadow-pill: 0 8px 24px rgba(232, 74, 127, 0.3);

  /* Layout */
  --container-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-smooth: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--navy-muted);
  background-color: var(--bg-white);
  background-image: 
    radial-gradient(at 90% 10%, rgba(248, 203, 219, 0.35) 0px, transparent 60%),
    radial-gradient(at 10% 30%, rgba(254, 240, 245, 0.5) 0px, transparent 50%),
    radial-gradient(at 80% 75%, rgba(248, 215, 226, 0.3) 0px, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FDF7F9 35%, #FBF7F5 70%, #FFFFFF 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

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

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

button, input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   3. Ambient Decorative Glows
   -------------------------------------------------------------------------- */
.ambient-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.ambient-glow-top-right {
  top: -120px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(248, 185, 208, 0.45) 0%, rgba(254, 235, 242, 0.1) 70%);
}

.ambient-glow-left {
  top: 400px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(252, 225, 235, 0.35) 0%, transparent 70%);
}

.ambient-glow-bottom {
  bottom: 50px;
  right: 15%;
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(248, 205, 220, 0.3) 0%, transparent 70%);
}

/* --------------------------------------------------------------------------
   4. Header Section
   -------------------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 20;
  padding: 24px 0 16px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  display: inline-block;
  transition: opacity var(--transition-fast);
}

.brand-link:hover {
  opacity: 0.92;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.launch-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.launch-pill-text {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--navy);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.launch-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--pink);
  box-shadow: 0 0 0 0 rgba(232, 74, 127, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(232, 74, 127, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(232, 74, 127, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(232, 74, 127, 0);
  }
}

.launch-accent-line {
  margin-top: 6px;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--pink) 100%);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  z-index: 10;
  padding: 30px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background-color: var(--pink);
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.9rem, 4.4vw, 4.3rem);
  line-height: 1.06;
  font-weight: 700;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  letter-spacing: -0.015em;
}

.headline-smarter {
  color: var(--navy);
}

.headline-pharma {
  color: var(--pink);
}

.headline-care {
  color: var(--gold);
}

.hero-description {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--navy-muted);
  max-width: 540px;
  margin-bottom: 24px;
}

.hero-accent-divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--gold) 100%);
  border-radius: 3px;
  margin-bottom: 36px;
}

/* 4 Feature Blocks */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 22px 18px 20px;
  border-radius: 20px;
  background: var(--bg-white);
  background-image: linear-gradient(180deg, #FFFFFF 0%, #FFF9FB 100%);
  border: 1.5px solid rgba(232, 74, 127, 0.16);
  box-shadow: 0 8px 24px rgba(222, 59, 118, 0.05), 0 2px 6px rgba(13, 30, 58, 0.02);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 74, 127, 0.35);
  box-shadow: 0 14px 30px rgba(222, 59, 118, 0.10), 0 4px 10px rgba(13, 30, 58, 0.04);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF0F5 0%, #FEE5ED 100%);
  border: 1.5px solid rgba(232, 74, 127, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.05);
}

.feature-icon {
  width: 24px;
  height: 24px;
}

.feature-text {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--navy-muted);
}

.feature-badge-wrap {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 4px 12px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--pink);
  border: 1.5px solid var(--pink);
  border-radius: var(--radius-pill);
  background: rgba(232, 74, 127, 0.05);
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-clock-icon {
  width: 13px;
  height: 13px;
  stroke: var(--pink);
  stroke-width: 1.8;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. Hero Visual Stage (Right Side)
   -------------------------------------------------------------------------- */
.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cursive Script Phrase */
.script-banner {
  position: absolute;
  top: 18%;
  left: -8%;
  z-index: 15;
  transform: rotate(-7deg);
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.95);
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(232, 74, 127, 0.15));
}

.script-banner span {
  display: block;
}

.script-line-2 {
  color: var(--pink);
  padding-left: 14px;
}

/* Floating Hexagons */
.floating-badge {
  position: absolute;
  z-index: 12;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(232, 74, 127, 0.15));
  animation: floatBadge 6s ease-in-out infinite;
}

.hex-svg {
  width: 44px;
  height: 48px;
}

.badge-hex-1 {
  top: 4%;
  right: 18%;
  animation-delay: 0s;
}

.badge-hex-2 {
  top: 8%;
  left: 20%;
  animation-delay: 1.5s;
}

.badge-hex-3 {
  top: 22%;
  right: 4%;
  animation-delay: 3s;
}

.badge-hex-4 {
  top: 20%;
  left: 8%;
  animation-delay: 4.5s;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.03);
  }
}

/* 3D Image Wrapper with Soft Fade Blend */
.visual-img-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 
    0 24px 60px -10px rgba(222, 59, 118, 0.16),
    0 12px 28px -5px rgba(13, 30, 58, 0.08);
  background: radial-gradient(circle at center, #FFFFFF 0%, #FFF0F5 100%);
  border: 1px solid rgba(248, 203, 219, 0.4);
}

.pharma-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-stage:hover .pharma-hero-img {
  transform: scale(1.03);
}

.visual-blend-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 50% 50%, transparent 68%, rgba(253, 242, 246, 0.5) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%, rgba(253, 235, 242, 0.25) 100%);
  mix-blend-mode: multiply;
}

/* --------------------------------------------------------------------------
   7. Launching Soon Section & Countdown
   -------------------------------------------------------------------------- */
.launch-section {
  position: relative;
  z-index: 10;
  padding: 50px 0 60px;
}

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

.section-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}

.gold-separator {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  border-radius: 2px;
}

.section-title-box .gold-separator:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.launch-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--pink);
  text-transform: uppercase;
}

.launch-subtitle {
  font-size: 1.05rem;
  color: var(--navy-muted);
  max-width: 660px;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Countdown Cards */
.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
  width: 100%;
  max-width: 640px;
}

.timer-card {
  flex: 1;
  min-width: 105px;
  padding: 18px 12px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1.5px solid var(--pink-border-subtle);
  box-shadow: 
    0 12px 28px rgba(222, 59, 118, 0.08),
    0 4px 10px rgba(13, 30, 58, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.timer-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 36px rgba(222, 59, 118, 0.12),
    0 6px 14px rgba(13, 30, 58, 0.04);
}

.timer-num {
  font-size: clamp(2.1rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.timer-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   8. "Be the First to Know" Notification Card
   -------------------------------------------------------------------------- */
.notify-card {
  width: 100%;
  max-width: 780px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(232, 74, 127, 0.18);
  box-shadow: 
    0 20px 48px rgba(222, 59, 118, 0.09),
    0 6px 18px rgba(13, 30, 58, 0.03);
  padding: 32px 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  text-align: left;
}

.notify-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF0F5 0%, #FEE5ED 100%);
  border: 1.5px solid rgba(232, 74, 127, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(232, 74, 127, 0.12);
}

.notify-mail-svg {
  width: 32px;
  height: 32px;
}

.notify-content {
  flex: 1;
}

.notify-header {
  margin-bottom: 16px;
}

.notify-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.notify-text {
  font-size: 0.925rem;
  color: var(--navy-muted);
}

.notify-form {
  position: relative;
  margin-bottom: 12px;
}

.notify-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notify-email-input {
  flex: 1;
  padding: 14px 18px;
  font-size: 0.9375rem;
  color: var(--navy);
  background: #FCF9FA;
  border: 1.5px solid #F4CBD7;
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.notify-email-input:focus {
  background: #FFFFFF;
  border-color: var(--pink);
  box-shadow: 0 0 0 3.5px rgba(232, 74, 127, 0.15);
}

.notify-email-input::placeholder {
  color: #A0B0C4;
}

.notify-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-hover) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(232, 74, 127, 0.28);
  transition: all var(--transition-smooth);
}

.notify-submit-btn:hover {
  background: linear-gradient(135deg, #ED578B 0%, var(--pink-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 74, 127, 0.38);
}

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

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.notify-submit-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.form-feedback {
  font-size: 0.85rem;
  margin-top: 8px;
  min-height: 20px;
  transition: all var(--transition-fast);
}

.form-feedback.success {
  color: #12824C;
  font-weight: 600;
}

.form-feedback.error {
  color: #D32F2F;
  font-weight: 600;
}

.notify-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--navy-subtle);
}

.lock-svg {
  width: 14px;
  height: 14px;
  color: var(--navy-subtle);
}

/* --------------------------------------------------------------------------
   9. Value Strip Section
   -------------------------------------------------------------------------- */
.value-strip-section {
  position: relative;
  z-index: 10;
  padding: 30px 0;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(254, 240, 245, 0.4) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(254, 240, 245, 0.4) 100%);
  border-top: 1px solid var(--pink-border-subtle);
  border-bottom: 1px solid var(--pink-border-subtle);
}

.value-strip-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.value-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.value-item:hover .value-icon-box {
  transform: scale(1.1);
  background: #FCE6EE;
}

.value-svg {
  width: 20px;
  height: 20px;
}

.value-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.value-divider {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(232, 74, 127, 0.2), transparent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 10;
  padding: 36px 0 40px;
  background: transparent;
}

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

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--navy-subtle);
  text-transform: uppercase;
}

.footer-contact-emails {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 10px;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-email-link:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-email-icon {
  width: 14px;
  height: 14px;
  color: var(--navy-subtle);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.footer-email-link:hover .footer-email-icon {
  color: var(--pink);
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-motto {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--navy-subtle);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   11. Toast Component
   -------------------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: var(--navy);
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  box-shadow: 0 10px 30px rgba(13, 30, 58, 0.25);
  border-left: 4px solid var(--pink);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition-smooth);
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   12. Responsive Media Queries
   -------------------------------------------------------------------------- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .script-banner {
    left: -4%;
    top: 14%;
  }

  .value-strip-container {
    flex-wrap: wrap;
    gap: 16px;
  }

  .value-divider {
    display: none;
  }

  .value-item {
    flex: 1 1 45%;
    justify-content: flex-start;
  }
}

/* Small Tablet & Large Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .site-header {
    padding: 18px 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .launch-pill {
    align-items: center;
  }

  .hero-section {
    padding: 16px 0 30px;
  }

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

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .eyebrow-badge {
    align-self: center;
  }

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

  .hero-accent-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual-col {
    order: -1; /* Place medical visual right below header/hero */
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .script-banner {
    left: 2%;
    top: 10%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }

  .countdown-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .timer-card {
    min-width: unset;
  }

  .notify-card {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
    gap: 18px;
  }

  .notify-input-group {
    flex-direction: column;
    width: 100%;
  }

  .notify-email-input, .notify-submit-btn {
    width: 100%;
  }

  .notify-privacy {
    justify-content: center;
  }

  .value-item {
    flex: 1 1 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .footer-left {
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact-emails {
    align-items: flex-start;
  }
}

/* Mobile: Single-column feature cards (max-width: 640px) */
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .brand-logo {
    height: 46px;
  }

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

  .script-banner {
    font-size: 1.4rem;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
