:root {
  --navy: #07162f;
  --navy-2: #0b2147;
  --blue: #1d8cff;
  --blue-2: #00b2ff;
  --yellow: #ffd23f;
  --yellow-2: #ffb703;
  --white: #ffffff;
  --soft: #eef6ff;
  --muted: #6e7890;
  --text: #13213a;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(7, 22, 47, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 22, 47, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  color: var(--navy);
  font-weight: 950;
  letter-spacing: -0.06em;
  box-shadow: 0 12px 28px rgba(0, 178, 255, 0.28);
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.78rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  font-size: 0.94rem;
}
.nav-links a:hover,
.footer-links a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 210, 63, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(29, 140, 255, 0.42), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 210, 63, 0.22), transparent 26%),
    linear-gradient(135deg, #06142b 0%, #0b2147 54%, #06142b 100%);
  color: var(--white);
  padding: 86px 0 78px;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}
.hero-bg::before { width: 280px; height: 280px; right: -80px; top: 160px; }
.hero-bg::after { width: 160px; height: 160px; left: -44px; bottom: 70px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow { color: var(--yellow); }
.section-tag.light { color: var(--yellow); }

h1, h2, h3, h4, p { margin-top: 0; }

h1 {
  font-size: clamp(2.45rem, 7vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.84);
  max-width: 720px;
  margin-bottom: 30px;
}

.hero-actions, .center-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  border: 0;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(29, 140, 255, 0.32);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.btn-secondary.dark {
  background: var(--navy);
  color: var(--white);
  border: 0;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(255, 210, 63, 0.28);
}
.btn-full { width: 100%; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-row i { color: var(--yellow); }

.hero-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.hero-card-inner { padding: 26px; }

.product-badge, .pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  background: rgba(255, 210, 63, 0.16);
  color: var(--yellow);
  border: 1px solid rgba(255, 210, 63, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 950;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-card h2 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 16px 0 20px;
}

.price-box {
  background: var(--white);
  color: var(--navy);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 22px;
}
.price-box span { display: block; }
.price-label {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}
.price-box strong {
  display: block;
  font-size: 3.35rem;
  line-height: 1;
  letter-spacing: -0.065em;
  margin: 6px 0;
}
.price-note {
  color: var(--navy-2);
  font-weight: 900;
}

.feature-list, .check-list, .compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-bottom: 24px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}
.feature-list i { color: var(--yellow); margin-top: 4px; }

.section { padding: 88px 0; }
.section h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
.section h3 {
  line-height: 1.14;
  letter-spacing: -0.025em;
}
.section p { color: var(--muted); }
.section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.problem {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.cards-stack { display: grid; gap: 16px; }

.mini-card,
.include-grid article,
.policy-grid article,
.compare-card,
.free-card,
.mockup-card,
.people-card {
  background: var(--white);
  border: 1px solid rgba(7, 22, 47, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(7, 22, 47, 0.08);
}

.mini-card { padding: 24px; }

.mini-card i,
.include-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(29, 140, 255, 0.10);
  color: var(--blue);
  margin-bottom: 14px;
}

.mini-card h3,
.include-grid h3,
.policy-grid h3 { margin-bottom: 8px; }

.solution {
  background: var(--navy);
  color: var(--white);
}
.solution-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 40px;
  align-items: center;
}
.solution p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.solution-points { display: grid; gap: 14px; }
.solution-points div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}
.solution-points strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 950;
}
.solution-points span { font-weight: 850; }

.real-life {
  background: #ffffff;
}
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.people-card {
  overflow: hidden;
}
.people-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.people-card-copy {
  padding: 22px;
}
.people-card-copy h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 26px;
  align-items: stretch;
}

.free-card {
  padding: 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 210, 63, 0.16), transparent 24%),
    #ffffff;
}
.free-card .pill {
  color: var(--navy);
  background: var(--yellow);
  border: none;
}
.free-card h2 {
  margin-top: 16px;
  margin-bottom: 8px;
}
.free-card h3 {
  font-size: 1.45rem;
  color: var(--blue);
  margin-bottom: 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 950;
}

.mockup-card {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 0;
}
.mockup-topbar {
  display: flex;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}
.mockup-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
.mockup-content { padding: 28px; }
.mockup-title {
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.phrase-row {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
  border: 1px solid var(--line);
}
.phrase-row span,
.phrase-row small { display: block; }
.phrase-row span { font-weight: 950; }
.phrase-row small {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.before-after { background: #f5f9ff; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}
.compare-card { padding: 30px; }
.compare-card h3 { font-size: 1.7rem; }
.compare-card li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(7, 22, 47, 0.08);
  position: relative;
  color: #34425d;
  font-weight: 700;
}
.compare-card li:last-child { border-bottom: 0; }
.compare-card.before li::before,
.compare-card.after li::before {
  position: absolute;
  left: 0;
  font-weight: 950;
}
.compare-card.before li::before {
  content: "×";
  color: #d94848;
}
.compare-card.after {
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  border: 2px solid rgba(29, 140, 255, 0.18);
}
.compare-card.after li::before {
  content: "✓";
  color: var(--blue);
}

.premium {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 210, 63, 0.22), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}
.premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 38px;
  align-items: center;
}
.premium p { color: rgba(255, 255, 255, 0.78); }
.premium h3 {
  color: var(--yellow);
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 18px;
}
.premium-price {
  margin: 28px 0;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  width: fit-content;
  min-width: 260px;
}
.premium-price span,
.premium-price small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}
.premium-price strong {
  display: block;
  font-size: 4rem;
  letter-spacing: -0.065em;
  line-height: 1;
  margin: 6px 0;
  color: var(--yellow);
}
.premium-panel {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}
.premium-panel h4 {
  font-size: 1.65rem;
  margin-bottom: 20px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.category-grid span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.include-grid article { padding: 24px; }

.benefits { background: #f6f9fe; }
.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.benefit-list div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(7, 22, 47, 0.08);
}
.benefit-list strong {
  color: var(--navy);
  font-size: 1.1rem;
}
.benefit-list p { margin-bottom: 0; }
.center-cta {
  justify-content: center;
  margin-top: 34px;
}

.narrow { max-width: 860px; }
details {
  background: #ffffff;
  border: 1px solid rgba(7, 22, 47, 0.10);
  border-radius: 18px;
  margin: 12px 0;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(7, 22, 47, 0.06);
}
summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 950;
  color: var(--navy);
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.3rem;
}
details[open] summary::after { content: "–"; }
details p {
  padding: 0 22px 22px;
  margin-bottom: 0;
}

.policies { background: #fff; }
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.policy-grid article { padding: 24px; }
.policy-grid p {
  font-size: 1rem;
  color: #46536d;
}

.social {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
}
.social-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: center;
}
.social p { color: rgba(255, 255, 255, 0.78); }
.handle {
  display: inline-block;
  color: var(--yellow);
  font-size: 1.25rem;
  margin-top: 4px;
}
.social-links { display: grid; gap: 14px; }
.social-links a {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 950;
  font-size: 1.08rem;
  transition: transform 180ms ease, background 180ms ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}
.social-links i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 1.25rem;
}

.footer {
  background: #051126;
  color: var(--white);
  padding: 42px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}
.footer p {
  color: rgba(255, 255, 255, 0.66);
  margin: 12px 0 0;
}
.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.94rem;
}
.footer-bottom p { margin: 0; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hero { padding: 58px 0 64px; }
  .hero-grid,
  .two-column,
  .solution-box,
  .split-card,
  .premium-grid,
  .social-box,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 66px 0; }
  .include-grid,
  .policy-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .benefit-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1120px); }
  .nav { min-height: 70px; }
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .brand small { font-size: 0.72rem; }

  h1 { font-size: clamp(2.2rem, 13vw, 3.4rem); }

  .hero-actions .btn,
  .center-cta .btn,
  .free-card .btn,
  .premium .btn {
    width: 100%;
  }

  .trust-row { display: grid; gap: 10px; }
  .hero-card,
  .free-card,
  .premium-panel,
  .compare-card,
  .people-card {
    border-radius: 22px;
  }
  .hero-card-inner,
  .free-card,
  .premium-panel,
  .compare-card,
  .people-card-copy {
    padding: 22px;
  }
  .hero-photo img { height: 270px; }

  .price-box strong,
  .premium-price strong { font-size: 3.2rem; }

  .category-grid { grid-template-columns: 1fr; }
  .mockup-content { padding: 22px; }
  .people-card img { height: 240px; }
  .social-links a { min-height: 68px; }
  .footer-bottom { display: grid; }
}


/* v3 women-focused content */
.hero-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.people-card {
  overflow: hidden;
}
.people-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.people-card-copy {
  padding: 22px;
}
@media (max-width: 920px) {
  .people-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .people-card img { height: 240px; }
}
