/* SheDrive landing — brand: primary #121256, secondary #E55A9A, rose soft surfaces */
:root {
  --primary: #121256;
  --primary-deep: #0a0a38;
  --secondary: #e55a9a;
  --secondary-soft: #fceff5;
  --rose: #fff1f7;
  --rose-border: #ffccdd;
  --text: #121256;
  --muted: #5c5c7a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 18, 86, 0.12);
  --radius: 20px;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --wrap: min(1120px, calc(100% - 2rem));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--rose);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--secondary); text-decoration: none; }
a:hover { color: var(--primary); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rose-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
/* Same asset as the mobile app icon; fixed square so it never stretches */
.brand-logo,
.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}
.brand--footer .brand-logo,
.brand--footer img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.nav {
  display: none;
  gap: 1.1rem;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
}
.nav a { color: var(--primary); opacity: 0.85; }
.nav a:hover { opacity: 1; color: var(--secondary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--secondary); color: #fff !important; }

@media (min-width: 880px) {
  .nav { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3.5rem;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(229, 90, 154, 0.35), transparent 55%),
    linear-gradient(145deg, var(--primary-deep) 0%, var(--primary) 55%, #3a1a4a 100%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero {
    padding: 3.5rem 0 4.5rem;
    min-height: min(92vh, 820px);
    display: flex;
    align-items: center;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.75rem;
}

.hero .eyebrow { color: #ffc1d5; }

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--secondary);
  color: #fff;
}
.btn-primary:hover { background: #c9528c; color: #fff; }
.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-secondary:hover { background: #1a1a6e; color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.store-row--center { justify-content: center; }
.store-row--compact .store-btn { padding: 0.55rem 0.85rem; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  background: #111;
  color: #fff !important;
  min-width: 168px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.store-btn:hover { background: #222; color: #fff !important; }
.store-btn__icon { font-size: 1.35rem; line-height: 1; width: 1.4rem; text-align: center; }
.store-btn__text { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn__text small { font-size: 0.65rem; opacity: 0.8; font-weight: 500; }
.store-btn__text strong { font-size: 0.95rem; font-weight: 700; }
.store-btn--disabled {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}
.store-btn__soon {
  position: absolute;
  top: -0.4rem;
  right: -0.35rem;
  background: var(--secondary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.phone-stack {
  position: relative;
  height: 420px;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .phone-stack { height: 520px; margin-right: 0; margin-left: auto; }
}

.phone {
  margin: 0;
  position: absolute;
  width: min(240px, 58vw);
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
  background: #0a0a38;
}
.phone img {
  width: 100%;
  aspect-ratio: 9 / 19;
  object-fit: cover;
}
.phone--back {
  right: 8%;
  top: 8%;
  transform: rotate(6deg);
  opacity: 0.92;
}
.phone--front {
  left: 6%;
  bottom: 0;
  transform: rotate(-4deg);
  z-index: 2;
}

/* Sections */
.section {
  padding: 4.25rem 0;
}
.section--tint { background: #fff; }
.section--dark {
  background: linear-gradient(160deg, var(--primary-deep), var(--primary));
  color: #fff;
}
.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.section-head h2,
.section h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--primary);
}
.section-head p { margin: 0; color: var(--muted); font-weight: 500; }
.section-head--light h2 { color: #fff; }
.section-head--light p { color: rgba(255, 255, 255, 0.78); }
.section--dark .eyebrow { color: #ffc1d5; }

.cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: #fff;
  border: 1px solid var(--rose-border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 10px 28px rgba(18, 18, 86, 0.05);
}
.card-icon { margin-bottom: 0.85rem; }
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.safety-grid,
.two-col {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .safety-grid,
  .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}
.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.7rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px var(--secondary-soft);
}

.safety-visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--rose-border);
  box-shadow: var(--shadow);
  max-width: 360px;
  justify-self: center;
}
.safety-visual img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--rose-border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.step-num {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: var(--secondary-soft);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.step h3 { margin: 0 0 0.25rem; font-size: 1rem; color: var(--primary); }
.step p { margin: 0; color: var(--muted); font-size: 0.9rem; font-weight: 500; }

.gallery {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.2);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.panel {
  background: #fff;
  border: 1px solid var(--rose-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 28px rgba(18, 18, 86, 0.05);
}
.panel--accent {
  background: linear-gradient(160deg, var(--primary) 0%, #2a1848 100%);
  color: #fff;
  border: none;
}
.panel--accent h3 { margin: 0 0 0.5rem; color: #fff; }
.panel--accent p { color: rgba(255, 255, 255, 0.88); font-weight: 500; }
.panel-logo { margin-bottom: 1rem; border-radius: 16px; }
.panel p { margin: 0; color: var(--muted); font-weight: 500; }

.cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(229, 90, 154, 0.18), transparent 60%),
    #fff;
  text-align: center;
}
.cta-inner h2 {
  max-width: 28ch;
  margin-inline: auto;
}
.cta-inner > p {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.brand--footer { color: #fff; margin-bottom: 0.75rem; }
.footer-desc {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffc1d5;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.92rem;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom p { margin: 0; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}
