:root {
  --blue: #1e78e6;
  --blue-2: #50b4ff;
  --dark-blue: #0f46a0;
  --bg: #f5f8ff;
  --text: #141e32;
  --muted: #60708f;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(30, 120, 230, 0.14);
  --shadow: 0 24px 70px rgba(15, 70, 160, 0.16);
  --radius: 28px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(80, 180, 255, 0.28), transparent 30%),
    radial-gradient(circle at 85% 5%, rgba(30, 120, 230, 0.2), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 42%, #d8ecff 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 120, 230, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 120, 230, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 75%);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-2), var(--blue), var(--dark-blue));
  box-shadow: 0 0 18px rgba(30, 120, 230, 0.45);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dark-blue);
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:where(a, button, input, select):focus-visible {
  outline: 3px solid rgba(80, 180, 255, 0.9);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 40px rgba(15, 70, 160, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 102px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(15, 70, 160, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #33415f;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eaf3ff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark-blue);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn:focus-visible,
.filter-btn:focus-visible,
.mock-row:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(80, 180, 255, 0.9);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  box-shadow: 0 14px 30px rgba(30, 120, 230, 0.28);
}

.btn-secondary {
  color: var(--dark-blue);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-outline {
  color: var(--dark-blue);
  background: transparent;
  border: 1px solid rgba(30, 120, 230, 0.25);
}

.btn-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 42px;
  padding: 78px 0 54px;
}

.hero-copy,
.section-heading,
.split-copy {
  text-align: center;
}

.hero-copy p,
.section-heading p,
.split-copy p,
.product-card p,
.price-card p,
.faq-answer p {
  text-align: justify;
}

.hero-actions,
.trust-row,
.logos {
  justify-content: center;
}

.product-card h3,
.price-card h3,
.waitlist-card h2 {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--dark-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 6px rgba(80, 180, 255, 0.18);
}

.hero h1,
.section-heading h2,
.split-copy h2,
.waitlist-card h2 {
  margin: 0;
  color: #0b2554;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero p,
.section-heading p,
.split-copy p,
.waitlist-card p {
  margin: 20px 0 0;
  color: #4d5f7f;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #34445f;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(80, 180, 255, 0.65), rgba(255, 255, 255, 0.15), rgba(30, 120, 230, 0.45));
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-blue);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #24d18f;
  box-shadow: 0 0 0 7px rgba(36, 209, 143, 0.14);
  animation: pulse 1.8s ease-in-out infinite;
}

.mock-window {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mock-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(245, 248, 255, 0.84);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mock-row:hover {
  transform: translateX(4px);
  border-color: rgba(30, 120, 230, 0.28);
}

.mock-row.active {
  background: linear-gradient(135deg, #eaf4ff, #ffffff);
  border-color: rgba(30, 120, 230, 0.28);
}

.mock-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 70, 160, 0.1);
}

.mock-row strong {
  display: block;
  color: var(--text);
}

.mock-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.mock-row b {
  color: var(--blue);
  font-size: 0.85rem;
}

.card-note {
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid rgba(30, 120, 230, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: #40536f;
  line-height: 1.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.card-note.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 18px 0 48px;
  color: #60708f;
  font-weight: 700;
}

.logos strong {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--dark-blue);
}

.section {
  padding: 54px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--dark-blue);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover {
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
}

.product-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.price-card,
.waitlist-card,
.privacy-panel,
.faq-list {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 18px 48px rgba(15, 70, 160, 0.08);
  backdrop-filter: blur(18px);
}

.product-card {
  padding: 24px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-card.hidden {
  display: none;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf4ff, #fff);
  font-size: 1.6rem;
}

.product-card h3,
.price-card h3 {
  margin: 0 0 10px;
  color: #0b2554;
  font-size: 1.25rem;
}

.product-card p,
.price-card p,
.faq-answer p {
  margin: 0;
  color: #5a6b86;
  line-height: 1.65;
}

.filter-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #34445f;
  font-weight: 700;
  line-height: 1.45;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.privacy-panel {
  padding: 22px;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #536580;
  font-weight: 800;
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row b {
  color: var(--dark-blue);
}

.price-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(30, 120, 230, 0.96), rgba(15, 70, 160, 0.96));
  color: #fff;
}

.price-card.featured p,
.price-card.featured ul,
.price-card.featured .price span,
.price-card.featured h3 {
  color: #fff;
}

.price-card.featured p,
.price-card.featured ul {
  color: rgba(255, 255, 255, 0.78);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--dark-blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.price {
  margin: 24px 0;
  color: var(--dark-blue);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price span {
  color: #60708f;
  font-size: 1rem;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.price-card.featured li::before {
  background: #fff;
}

.faq-section {
  max-width: 860px;
}

.faq-list {
  overflow: hidden;
}

.faq-answer[hidden] {
  display: none;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(30, 120, 230, 0.1);
  color: var(--dark-blue);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer > p {
  margin: 0;
}

.waitlist-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  text-align: center;
}

.waitlist-card > div {
  text-align: center;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  text-align: left;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: #34445f;
  font-weight: 800;
}

.waitlist-form small {
  color: #6c7d98;
  font-weight: 600;
}

.field-error {
  min-height: 18px;
  color: #b42318;
  font-size: 0.86rem;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(30, 120, 230, 0.18);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 120, 230, 0.12);
}

.waitlist-form input.is-invalid,
.waitlist-form select.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.1);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--dark-blue);
  font-weight: 800;
}

.site-footer {
  padding: 34px 0 44px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #60708f;
}

.footer-inner p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--blue);
}

.mobile-cta {
  display: none;
}

.noise,
.orb,
.reveal {
  position: fixed;
  pointer-events: none;
}

.reveal {
  position: relative;
  pointer-events: auto;
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.noise {
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.65'/%3E%3C/svg%3E");
}

.orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.45;
}

.orb-one {
  left: -120px;
  top: 280px;
  background: #50b4ff;
}

.orb-two {
  right: -120px;
  top: 720px;
  background: #1e78e6;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(36, 209, 143, 0.14);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 11px rgba(36, 209, 143, 0.08);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .nav-links,
  .nav .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 58px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-links.open a:hover {
    background: #eaf4ff;
  }

  .nav-links.open a::after {
    display: none;
  }

  .hero,
  .split,
  .waitlist-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .hero-copy {
    padding: 18px 14px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 34px rgba(15, 70, 160, 0.08);
    backdrop-filter: blur(12px);
  }

  .product-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-panel {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  body {
    min-height: 100dvh;
    padding-bottom: 108px;
    background:
      linear-gradient(180deg, #ffffff 0%, #f5f8ff 52%, #e8f3ff 100%);
  }

  .site-header {
    padding: 8px 0 12px;
    background: rgba(251, 253, 255, 0.82);
    border-bottom: 1px solid rgba(30, 120, 230, 0.1);
  }

  .nav {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 14px;
  }

  .brand {
    width: auto;
    height: auto;
    min-width: 0;
  }

  .brand img {
    width: 84px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(234, 244, 255, 0.92);
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .eyebrow {
    color: #0f46a0;
  }

  .hero h1,
  .section-heading h2,
  .split-copy h2,
  .waitlist-card h2 {
    color: #08234d;
    font-size: clamp(2rem, 9.5vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .hero-copy,
  .hero h1 {
    color: #08234d;
  }

  .hero p,
  .section-heading p,
  .split-copy p,
  .waitlist-card p {
    color: #172c4f;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .product-card p,
  .price-card p,
  .faq-answer p {
    color: #33445f;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .trust-row span {
    background: rgba(255, 255, 255, 0.92);
    color: #172c4f;
  }

  .hero-card,
  .product-card,
  .price-card,
  .waitlist-card,
  .privacy-panel,
  .faq-list {
    background: rgba(255, 255, 255, 0.95);
  }

  .mock-row {
    background: #f5f8ff;
  }

  .mock-row.active {
    background: linear-gradient(135deg, #eaf4ff, #ffffff);
  }

  .card-note {
    background: #f7fbff;
    color: #24344f;
  }

  .hero-actions .btn,
  .mobile-cta a {
    width: 100%;
    min-height: 50px;
  }

  .btn-primary {
    background: #073b88;
    box-shadow: 0 14px 30px rgba(7, 59, 136, 0.28);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.96);
    color: #073b88;
    border: 1px solid rgba(7, 59, 136, 0.18);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
    justify-content: center;
  }

  .trust-row {
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
  }

  .trust-row span {
    justify-self: center;
  }

  .product-card,
  .price-card {
    text-align: center;
  }

  .product-card p,
  .price-card p {
    text-align: justify;
  }

  .trust-row span {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 20px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(15, 70, 160, 0.12);
  }

  .mock-window {
    gap: 10px;
    margin-top: 14px;
  }

  .mock-row {
    grid-template-columns: auto 1fr;
    padding: 12px;
    border-radius: 18px;
  }

  .mock-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .mock-row small {
    font-size: 0.78rem;
  }

  .mock-row b {
    grid-column: 2;
    justify-self: start;
    margin-top: -2px;
    font-size: 0.78rem;
  }

  .card-note {
    padding: 13px;
    border-radius: 17px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .product-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .price-card,
  .waitlist-card,
  .privacy-panel {
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 70, 160, 0.08);
  }

  .product-card,
  .price-card,
  .waitlist-card,
  .privacy-panel {
    padding: 18px;
  }

  .product-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 13px;
    border-radius: 15px;
    font-size: 1.35rem;
  }

  .product-card h3,
  .price-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
  }

  .price {
    font-size: 2.35rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
    font-size: 0.9rem;
  }

  .footer-links {
    gap: 12px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 26px 26px 0 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -16px 40px rgba(15, 70, 160, 0.14);
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 18px;
    font-size: 0.95rem;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: #eaf4ff;
    color: #063a8a;
  }

  .mobile-cta a:last-child {
    background: #073b88;
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-contrast: more) {
  body {
    background: #ffffff;
  }

  .nav,
  .hero-card,
  .product-card,
  .price-card,
  .privacy-panel,
  .faq-list,
  .waitlist-card {
    border-color: var(--dark-blue);
  }

  .btn-primary,
  .filter-btn.active,
  .mobile-cta a:last-child {
    background: var(--dark-blue);
  }
}
