/* ==========================================================================
   Neva Sanitary Pads  |  Joyce Lifecare Pvt. Ltd.
   Brand stylesheet
   Font: Poppins  |  Framework: Bootstrap 5.3
   ========================================================================== */

/* ------------------------------ 1. Tokens ------------------------------- */
:root {
  /* Brand colours taken from the Neva logo */
  --purple: #6B2C8F;
  --purple-deep: #4A1B66;
  --purple-soft: #9C63BC;
  --green: #14A44D;
  --green-deep: #0C7C39;
  --blush: #FBEEF4;
  --blush-deep: #F5D9E7;
  --ink: #33223D;
  --ink-soft: #6E6078;
  --line: #EEE2EC;
  --white: #FFFFFF;

  --grad-brand: linear-gradient(120deg, var(--purple-deep) 0%, var(--purple) 55%, var(--purple-soft) 100%);
  --grad-leaf: linear-gradient(120deg, var(--green-deep) 0%, var(--green) 100%);

  --shadow-sm: 0 4px 18px rgba(74, 27, 102, .07);
  --shadow-md: 0 14px 40px rgba(74, 27, 102, .10);
  --shadow-lg: 0 30px 70px rgba(74, 27, 102, .16);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-pill: 999px;

  --nav-h: 86px;
  --bar-h: 42px;
}

/* ------------------------------ 2. Base --------------------------------- */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .1px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1.22;
  letter-spacing: -.4px;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { color: var(--ink-soft); max-width: 68ch; }

a { color: var(--purple); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--green); }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--blush-deep); color: var(--purple-deep); }

.container { max-width: 1240px; }

/* Two-colour headings (matches the Neva logo lock-up) */
.tc { color: var(--purple-deep); }
.tc span { color: var(--green); }
.tc-rev { color: var(--green); }
.tc-rev span { color: var(--purple-deep); }
.on-dark { color: #fff; }
.on-dark span { color: #7BE8A6; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-deep);
  background: rgba(20, 164, 77, .09);
  border: 1px solid rgba(20, 164, 77, .22);
  padding: .34rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.eyebrow.purple {
  color: var(--purple);
  background: rgba(107, 44, 143, .08);
  border-color: rgba(107, 44, 143, .2);
}

.lead-text { font-size: 1.08rem; color: var(--ink-soft); }

/* ------------------------------ 3. Layout ------------------------------- */
.section { padding: clamp(64px, 8vw, 116px) 0; position: relative; }
.section-tight { padding: clamp(48px, 5vw, 76px) 0; }
.bg-blush { background: var(--blush); }
.bg-soft { background: linear-gradient(180deg, var(--white) 0%, var(--blush) 100%); }
.bg-brand { background: var(--grad-brand); color: rgba(255, 255, 255, .88); }
.bg-brand p { color: rgba(255, 255, 255, .82); }
.bg-brand h1, .bg-brand h2, .bg-brand h3 { color: #fff; }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 58px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

/* Decorative botanical wash */
.leaf-wash { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.leaf-wash svg { position: absolute; opacity: .5; }
.leaf-wash .lw-1 { top: -70px; right: -60px; width: 330px; }
.leaf-wash .lw-2 { bottom: -90px; left: -70px; width: 290px; }
.section > .container { position: relative; z-index: 1; }

/* ------------------------------ 4. Buttons ------------------------------ */
.btn {
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: .85rem 1.9rem;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}
.btn:active { transform: translateY(1px); }

.btn-brand { background: var(--grad-brand); color: #fff; box-shadow: 0 12px 26px rgba(107, 44, 143, .28); }
.btn-brand:hover { color: #fff; box-shadow: 0 16px 34px rgba(107, 44, 143, .38); transform: translateY(-2px); }

.btn-leaf { background: var(--grad-leaf); color: #fff; box-shadow: 0 12px 26px rgba(20, 164, 77, .26); }
.btn-leaf:hover { color: #fff; box-shadow: 0 16px 34px rgba(20, 164, 77, .34); transform: translateY(-2px); }

.btn-outline-brand { border-color: var(--purple); color: var(--purple); background: transparent; }
.btn-outline-brand:hover { background: var(--purple); color: #fff; }

.btn-ghost-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--purple-deep); }

.btn-lg { padding: 1rem 2.3rem; font-size: 1.02rem; }

/* ------------------------------ 5. Header ------------------------------- */
.topbar {
  height: var(--bar-h);
  background: var(--grad-brand);
  color: rgba(255, 255, 255, .92);
  font-size: .84rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.topbar a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.topbar a:hover { color: #A8F0C4; }
.topbar .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7BE8A6; display: inline-block; margin-right: .5rem;
  box-shadow: 0 0 0 0 rgba(123, 232, 166, .8);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(123, 232, 166, .75); }
  70% { box-shadow: 0 0 0 12px rgba(123, 232, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(123, 232, 166, 0); }
}

.site-nav {
  min-height: var(--nav-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, min-height .3s ease;
}
.site-nav.stuck { box-shadow: var(--shadow-sm); min-height: 74px; }
.site-nav .navbar-brand img { height: 52px; width: auto; transition: height .3s ease; }
.site-nav.stuck .navbar-brand img { height: 44px; }

.site-nav .nav-link {
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink);
  padding: .55rem .85rem !important;
  border-radius: var(--r-pill);
  position: relative;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--purple); }
.site-nav .nav-link.active { font-weight: 600; background: var(--blush); }

.site-nav .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  margin-top: .6rem;
}
.site-nav .dropdown-item {
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 500;
  padding: .55rem .85rem;
  color: var(--ink);
}
.site-nav .dropdown-item:hover,
.site-nav .dropdown-item.active { background: var(--blush); color: var(--purple); }

.navbar-toggler { border: 1px solid var(--line); padding: .45rem .6rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ------------------------------ 6. Hero --------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(1100px 620px at 78% -8%, var(--blush-deep) 0%, var(--blush) 44%, #fff 78%);
  padding: clamp(56px, 7vw, 104px) 0 clamp(64px, 8vw, 118px);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -230px; transform: translateX(-50%);
  width: 130%; height: 320px;
  background: radial-gradient(closest-side, rgba(20, 164, 77, .10), transparent);
}
.hero .hero-title { margin-bottom: 1.1rem; }
.hero .lead-text { max-width: 52ch; }

.launch-chip {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff;
  border: 1px solid var(--blush-deep);
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-pill);
  padding: .5rem 1.15rem .5rem .6rem;
  font-size: .86rem; font-weight: 600; color: var(--purple-deep);
  margin-bottom: 1.4rem;
}
.launch-chip b {
  background: var(--grad-leaf); color: #fff;
  border-radius: var(--r-pill); padding: .2rem .8rem; font-size: .78rem; font-weight: 600;
}

.hero-logo-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(26px, 4vw, 46px);
  position: relative;
  border: 1px solid var(--line);
}
.hero-logo-card img { display: block; margin-inline: auto; }
.hero-logo-card .tm-note {
  text-align: center; font-size: .78rem; color: var(--ink-soft);
  margin: 1.1rem 0 0; letter-spacing: .3px;
}
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: .85rem 1.15rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--purple-deep);
  display: flex; align-items: center; gap: .6rem;
  border: 1px solid var(--line);
}
.hero-float small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .74rem; }
.hero-float.f1 { top: 14%; left: -34px; animation: floaty 6s ease-in-out infinite; }
.hero-float.f2 { bottom: 12%; right: -28px; animation: floaty 6s ease-in-out infinite 1.6s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-stats { display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 2.6rem; }
.hero-stats .num { font-size: 1.85rem; font-weight: 700; color: var(--purple-deep); line-height: 1.1; }
.hero-stats .num em { font-style: normal; color: var(--green); }
.hero-stats .lbl { font-size: .84rem; color: var(--ink-soft); }

/* Inner page banner */
.page-hero {
  background: radial-gradient(900px 420px at 80% 0%, var(--blush-deep), var(--blush) 55%, #fff 100%);
  padding: clamp(46px, 6vw, 84px) 0 clamp(40px, 5vw, 66px);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero h1 { margin-bottom: .9rem; }
.page-hero p { margin: 0 auto; }
.crumbs { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.crumbs a { color: var(--purple); font-weight: 500; }
.crumbs .sep { margin: 0 .5rem; color: var(--blush-deep); }

/* ------------------------------ 7. Cards -------------------------------- */
.card-soft {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 34px);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card-soft:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blush-deep); }
.card-soft h3, .card-soft h4 { margin-bottom: .6rem; }
.card-soft p:last-child { margin-bottom: 0; }

.icon-badge {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 1.15rem;
  background: var(--blush);
  color: var(--purple);
}
.icon-badge.leaf { background: rgba(20, 164, 77, .1); color: var(--green-deep); }
.icon-badge svg { width: 27px; height: 27px; }

/* Product pack mock-up */
.pack {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.pack:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pack-visual {
  position: relative;
  padding: 42px 26px 34px;
  display: grid; place-items: center;
  min-height: 268px;
}
.pack-visual::before {
  content: ""; position: absolute; inset: 0;
  background: var(--pack-bg, var(--blush));
}
.pack-sleeve {
  position: relative;
  width: min(210px, 72%);
  aspect-ratio: 3 / 4.1;
  border-radius: 18px 18px 22px 22px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(51, 34, 61, .22);
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 14px 16px;
  border: 1px solid rgba(255, 255, 255, .8);
}
.pack-sleeve::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 16px;
  background: var(--pack-accent, var(--purple));
  border-radius: 18px 18px 0 0;
}
.pack-sleeve::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 44px;
  height: 1px; background: var(--line);
}
.pack-sleeve img { width: 86%; margin-top: 16px; }
.pack-sleeve .sleeve-size {
  margin-top: auto;
  font-size: .74rem; font-weight: 600; letter-spacing: .6px;
  color: var(--pack-accent, var(--purple));
}
.pack-sleeve .sleeve-count { font-size: .72rem; color: var(--ink-soft); }

.pack-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.pack-tier {
  font-size: .76rem; font-weight: 600; letter-spacing: .5px;
  color: var(--pack-accent, var(--purple));
  margin-bottom: .35rem;
}
.pack-body h3 { margin-bottom: .5rem; }
.pack-spec { list-style: none; padding: 0; margin: 1.1rem 0 1.4rem; }
.pack-spec li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .88rem; padding: .48rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.pack-spec li b { color: var(--ink); font-weight: 600; }
.pack-body .btn { margin-top: auto; }

/* Feature list with leaf ticks */
.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li {
  position: relative; padding-left: 2.1rem; margin-bottom: .85rem;
  color: var(--ink-soft);
}
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .38rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(20, 164, 77, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230C7C39' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}
.tick-list li b { color: var(--ink); }

/* Story / quote */
.story-quote {
  border-left: 4px solid var(--green);
  background: #fff;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.6;
  max-width: 62ch;
}
.story-quote footer { font-size: .88rem; font-weight: 500; color: var(--ink-soft); margin-top: 1rem; }

.memorial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}
.memorial .m-name {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--purple-deep); margin: .7rem 0 .2rem;
}
.memorial .m-role { font-size: .9rem; color: var(--green-deep); font-weight: 600; }
.memorial .butterfly { width: 78px; margin-inline: auto; opacity: .95; }

/* Timeline (used only where the content is a real sequence) */
.timeline { position: relative; padding-left: 2.6rem; }
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--purple), var(--green));
}
.timeline .t-item { position: relative; padding-bottom: 2.2rem; }
.timeline .t-item:last-child { padding-bottom: 0; }
.timeline .t-item::before {
  content: ""; position: absolute; left: -2.6rem; top: .45rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--purple);
}
.timeline .t-item.leaf::before { border-color: var(--green); }
.timeline h4 { margin-bottom: .3rem; }
.timeline .t-when { font-size: .82rem; font-weight: 600; color: var(--green-deep); }

/* Stat strip */
.stat-strip { background: var(--grad-brand); border-radius: var(--r-lg); padding: clamp(30px, 4vw, 52px); color: #fff; }
.stat-strip .s-num { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; color: #fff; line-height: 1.1; }
.stat-strip .s-lbl { font-size: .88rem; color: rgba(255, 255, 255, .78); }

/* Comparison table */
.compare-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare-wrap .table { margin: 0; min-width: 640px; }
.compare-wrap thead th {
  background: var(--purple);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 1rem 1.1rem;
}
.compare-wrap tbody th, .compare-wrap tbody td { padding: .95rem 1.1rem; font-size: .93rem; }
.compare-wrap tbody th { color: var(--purple-deep); font-weight: 600; background: var(--blush); }
.compare-wrap tbody td { color: var(--ink-soft); }

/* Accordion */
.accordion-item { border: 1px solid var(--line); border-radius: var(--r-sm) !important; margin-bottom: .9rem; overflow: hidden; }
.accordion-button {
  font-weight: 600; color: var(--purple-deep); background: #fff;
  padding: 1.1rem 1.3rem; font-size: 1rem;
}
.accordion-button:not(.collapsed) { background: var(--blush); color: var(--purple-deep); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--blush-deep); }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B2C8F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.accordion-body { color: var(--ink-soft); padding: 0 1.3rem 1.3rem; }

/* Forms */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 44px); box-shadow: var(--shadow-md);
}
.form-label { font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .78rem 1rem;
  font-size: .94rem;
  background: #FDFAFC;
}
.form-control:focus, .form-select:focus {
  border-color: var(--purple-soft);
  box-shadow: 0 0 0 4px rgba(107, 44, 143, .1);
  background: #fff;
}
.form-note { font-size: .8rem; color: var(--ink-soft); }
.form-msg { display: none; border-radius: 12px; padding: .85rem 1.1rem; font-size: .9rem; margin-top: 1rem; }
.form-msg.ok { display: block; background: rgba(20, 164, 77, .1); color: var(--green-deep); }

/* Contact tiles */
.contact-tile {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.4rem 1.5rem; height: 100%;
}
.contact-tile .icon-badge { margin-bottom: 0; width: 48px; height: 48px; border-radius: 14px; flex: 0 0 auto; }
.contact-tile .icon-badge svg { width: 22px; height: 22px; }
.contact-tile h4 { font-size: 1rem; margin-bottom: .2rem; }
.contact-tile p, .contact-tile a { font-size: .92rem; margin: 0; }

/* CTA band */
.cta-band {
  background: var(--grad-brand);
  border-radius: var(--r-lg);
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .84); }

/* ------------------------------ 8. Footer ------------------------------- */
.site-footer { background: #2A1636; color: rgba(255, 255, 255, .68); padding-top: clamp(52px, 6vw, 84px); }
.site-footer h5 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; font-weight: 600; }
.site-footer a { color: rgba(255, 255, 255, .68); font-size: .92rem; }
.site-footer a:hover { color: #7BE8A6; }
.site-footer .f-logo { background: #fff; border-radius: var(--r-sm); padding: 14px 18px; display: inline-block; margin-bottom: 1.3rem; }
.site-footer .f-logo img { height: 52px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .6rem; }
.site-footer .f-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: clamp(34px, 4vw, 52px);
  padding: 1.5rem 0;
  font-size: .85rem;
}
.site-footer .f-social { display: flex; gap: .65rem; }
.site-footer .f-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid; place-items: center;
  transition: background .25s ease, transform .25s ease;
}
.site-footer .f-social a:hover { background: var(--green); transform: translateY(-3px); }
.site-footer .f-social svg { width: 18px; height: 18px; }
.site-footer .f-note { font-size: .82rem; color: rgba(255, 255, 255, .5); }

/* ------------------------------ 9. Modal -------------------------------- */
.launch-modal .modal-content {
  border: none; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.launch-modal .modal-body { padding: 0; }
.launch-visual {
  background: radial-gradient(520px 320px at 50% 0%, var(--blush-deep), var(--blush));
  padding: 36px 30px 28px; text-align: center; position: relative;
}
.launch-visual img { width: min(230px, 70%); }
.launch-copy { padding: 28px 32px 34px; text-align: center; }
.launch-copy h3 { margin-bottom: .6rem; }
.launch-copy p { margin-inline: auto; font-size: .95rem; }
.countdown { display: flex; justify-content: center; gap: .65rem; margin: 1.5rem 0 1.4rem; flex-wrap: wrap; }
.countdown div {
  background: var(--blush); border-radius: 14px; min-width: 72px; padding: .7rem .4rem;
}
.countdown .cd-num { font-size: 1.45rem; font-weight: 700; color: var(--purple-deep); line-height: 1.1; }
.countdown .cd-lbl { font-size: .7rem; color: var(--ink-soft); }
.launch-modal .btn-close {
  position: absolute; top: 14px; right: 16px; z-index: 5;
  background-color: #fff; border-radius: 50%; padding: .6rem; opacity: .9;
}

/* ------------------------------ 10. Motion ------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-float, .topbar .pulse-dot { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ------------------------------ 11. Responsive -------------------------- */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-nav .nav-link { font-size: .85rem; padding: .5rem .6rem !important; }
  .site-nav .navbar-brand img { height: 44px; }
  .site-nav .nav-item .btn { padding: .6rem 1.15rem; font-size: .86rem; }
}

@media (min-width: 1200px) {
  .site-nav .nav-item .btn { width: auto; }
}

@media (max-width: 1199.98px) {
  .hero-float.f1 { left: -12px; }
  .hero-float.f2 { right: -8px; }
}

@media (max-width: 991.98px) {
  :root { --nav-h: 74px; }
  .site-nav .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    margin-top: .8rem;
  }
  .site-nav .nav-link { padding: .7rem 1rem !important; }
  .site-nav .dropdown-menu { border: none; box-shadow: none; background: var(--blush); margin-top: .3rem; }
  .hero { text-align: center; }
  .hero .lead-text, .hero .eyebrow, .hero .launch-chip { margin-inline: auto; }
  .hero-stats { justify-content: center; }
  .hero-float { display: none; }
  .story-quote { max-width: none; }
}

@media (max-width: 575.98px) {
  body { font-size: .96rem; }
  .topbar { font-size: .76rem; }
  .btn { padding: .78rem 1.5rem; }
  .hero-stats { gap: 1.6rem; }
  .countdown div { min-width: 62px; }
  .to-top { right: 14px; bottom: 14px; }
}
