:root {
  color-scheme: light;
  --bg: #f5f8ff;
  --panel: #ffffff;
  --ink: #141e32;
  --muted: #60708f;
  --line: rgba(30, 120, 230, 0.14);
  --brand: #1e78e6;
  --brand-2: #50b4ff;
  --dark-brand: #0f46a0;
  --danger: #dc2626;
  --shadow: 0 24px 70px rgba(15, 70, 160, 0.16);
  --radius: 28px;
  --logo-size: 102px;
  --mobile-logo-size: 64px;
  --topbar-offset: 160px;
}

html.dark {
  color-scheme: dark;
  --bg: #08111f;
  --panel: #0e1b2e;
  --ink: #edf4ff;
  --muted: #9fb0c8;
  --line: rgba(159, 176, 200, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--topbar-offset);
}

section[id] {
  scroll-margin-top: var(--topbar-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(30, 120, 230, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(80, 180, 255, 0.12), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

html.dark body {
  background:
    radial-gradient(circle at top left, rgba(30, 120, 230, 0.20), transparent 34rem),
    radial-gradient(circle at top right, rgba(80, 180, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #07101d 0%, var(--bg) 55%, #050a12 100%);
}

button,
input {
  font: inherit;
}

.app {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: var(--topbar-offset) 0 42px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0 0 34px;
  display: flex;
  justify-content: center;
}

.footer-logo {
  display: inline-flex;
  width: var(--logo-size);
  height: auto;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
}

.footer-logo img {
  width: var(--logo-size);
  height: auto;
  object-fit: contain;
}

/* Footer Styles */
.footer-content {
  width: 100%;
  display: grid;
  gap: 32px;
  padding: 40px 0 24px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-column h4 {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--brand);
}

.footer-column a.coming-soon {
  color: var(--muted);
  pointer-events: none;
}

.footer-column a.coming-soon:hover {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  margin-left: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: rgba(30, 120, 230, 0.12);
  color: var(--brand);
}

.footer-contact {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-contact h4 {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-contact p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.contact-links a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 160ms ease;
}

.contact-links a:hover {
  color: var(--dark-brand);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(30, 120, 230, 0.08);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
  color: var(--brand);
  background: rgba(30, 120, 230, 0.16);
  transform: translateY(-2px);
}

@media (min-width: 821px) and (max-width: 1100px) {
  .menu-link {
    padding: 7px 10px;
    font-size: 0.82rem;
    min-height: 34px;
  }
  .menu-bar {
    gap: 5px;
  }
}

@media (max-width: 820px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-content {
    gap: 24px;
    padding: 32px 0 16px;
  }

  .contact-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-column {
    text-align: left;
  }

  .footer-column ul {
    align-items: flex-start;
  }
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  width: min(1120px, calc(100% - 28px));
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 44px rgba(16, 32, 51, 0.08);
}

.topbar > .brand { margin-right: auto; }
.topbar > .theme-toggle { margin-left: 0; }

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.brand-logo,
.footer-logo img {
  width: var(--logo-size);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(30, 120, 230, 0.18));
}

.menu-bar {
  position: relative;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(245, 248, 255, 0.88);
}

.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.menu-link svg {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-link:hover,
.menu-link[aria-current="page"] {
  color: var(--ink);
  background: #fff;
}

.menu-link:active {
  transform: translateY(1px);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.10);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

html:not(.dark) .theme-toggle {
  background: #eef4ff;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Show sun in light mode, moon in dark mode */
.theme-toggle .icon-moon { display: none; }
html.dark .theme-toggle .icon-sun { display: none; }
html.dark .theme-toggle .icon-moon { display: inline-flex; }

.theme-toggle:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #eef4ff;
  cursor: pointer;
  padding: 0;
}

html.dark .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

/* Desktop theme toggle in topbar */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.10);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  text-decoration: none;
  text-align: center;
}

html:not(.dark) .theme-toggle {
  background: #eef4ff;
}

.theme-toggle:active {
  transform: translateY(1px);
}

/* Mobile: theme toggle always visible in topbar (next to hamburger) */
.theme-toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #eef4ff;
}

html.dark .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
}

/* Remove the in-menu duplicate (now lives in topbar) */
.menu-bar .theme-toggle { display: none; }

.verify-link {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(30, 120, 230, 0.18);
}

/* Dark brand-blue variant — AI Bot */
.verify-link.is-ai {
  background: var(--dark-brand);
  box-shadow: 0 10px 22px rgba(15, 70, 160, 0.28);
}

/* Accent variant — Verify (the #CC5500 button) */
.verify-link.is-verify {
  background: #CC5500;
  box-shadow: 0 10px 22px rgba(204, 85, 0, 0.28);
}

.verify-link:hover,
.verify-link[aria-current="page"] {
  color: #fff;
  background: var(--brand);
}
.verify-link.is-ai:hover { background: var(--dark-brand); }
.verify-link.is-verify:hover { background: #b84a00; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 228, 238, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

html.dark .topbar,
html.dark .card,
html.dark .menu-bar,
html.dark .email-box,
html.dark .message-detail,
html.dark .loading-card {
  background: rgba(14, 27, 46, 0.7);
  border-color: var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

html.dark .menu-link:hover,
html.dark .menu-link[aria-current='page'] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

html.dark .btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

html.dark .spinner.dark {
  border-color: rgba(159, 176, 200, 0.22);
  border-top-color: var(--brand);
}

.hero-copy {
  padding: clamp(22px, 4vw, 38px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.25rem, 7vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero-copy p {
  max-width: 58ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
}

.email-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

/* Hero visual panel (fills the reserved right column) */
.hero-visual {
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 14px;
  min-height: 280px;
}
.hero-visual__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: color-mix(in srgb, var(--brand) 8%, transparent);
  border-radius: 12px;
  align-self: flex-start;
}
.hero-visual__tab {
  font: 600 0.85rem/1 'DM Sans', system-ui, sans-serif;
  color: var(--muted);
  background: transparent;
  border: 0;
  padding: 0.5rem 0.9rem;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.hero-visual__tab.is-active {
  background: var(--surface, #fff);
  color: var(--brand);
  box-shadow: 0 1px 3px rgba(2,8,23,0.12);
}
html.dark .hero-visual__tab.is-active { background: rgba(255,255,255,0.1); color: var(--ink); }
.hero-visual__panel { display: none; flex: 1; }
.hero-visual__panel.is-active { display: block; }

.hv-inbox { display: flex; flex-direction: column; gap: 10px; }
.hv-inbox__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand) 4%, transparent);
}
.hv-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent); }
.hv-inbox__meta { display: flex; flex-direction: column; min-width: 0; }
.hv-inbox__meta strong { font-size: 0.88rem; color: var(--ink); }
.hv-inbox__meta span { font-size: 0.78rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hv-inbox__time { font-size: 0.72rem; color: var(--muted); }
.hv-code {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
}
.hv-code span { font-size: 0.78rem; opacity: 0.85; letter-spacing: 0.04em; }
.hv-code strong { font-size: 1.35rem; letter-spacing: 0.18em; font-variant-numeric: tabular-nums; }

.hv-chat { display: flex; flex-direction: column; gap: 10px; padding-top: 2px; }
.hv-bubble {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--ink);
}
.hv-bubble--in {
  align-self: flex-start;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border-bottom-left-radius: 4px;
}
.hv-bubble--out {
  align-self: flex-end;
  background: var(--brand);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.hv-bubble__name { display: block; font-size: 0.72rem; opacity: 0.7; margin-bottom: 2px; }
.hv-bubble__sub { display: block; font-size: 0.72rem; opacity: 0.8; margin-top: 2px; }

@media (prefers-reduced-motion: reduce) {
  .hero-visual__tab { transition: none; }
}

.email-card h2 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.email-box {
  margin: 18px 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed #b9c7dc;
  background: #f8fbff;
  overflow-wrap: anywhere;
}

.email-address {
  display: block;
  font-size: clamp(1.05rem, 3.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  word-break: break-word;
}

.email-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--dark-brand));
  box-shadow: 0 12px 24px rgba(30, 120, 230, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.danger {
  background: var(--danger);
  box-shadow: none;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

/* Hover lift on interactive surfaces (matches temp mail) */
.card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(16, 32, 51, 0.12);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(30, 120, 230, 0.28);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.08);
}

.menu-link {
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.menu-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.10);
}

/* Hero entrance — staggered fade/slide-up on load (active on all viewports) */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-copy {
  animation: heroIn 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero .card {
  animation: heroIn 620ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

section.card {
  animation: heroIn 620ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both;
}

/* Accessibility: respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.btn.danger:disabled {
  color: #98a2b3;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

/* Disabled button state */
.btn.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--line);
  box-shadow: none;
  color: var(--muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  margin-bottom: 12px;
  line-height: 1;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.feature-item p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Waitlist Section */
.waitlist-section {
  text-align: center;
  padding: 32px 24px;
}

.waitlist-section h2,
.steps-section h2,
.section-title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}

/* Products showcase */
.products-section {
  padding: clamp(28px, 4vw, 44px);
}
.products-head {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}
.products-head .eyebrow {
  justify-content: center;
}
.products-sub {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(220, 228, 238, 0.86);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(16, 32, 51, 0.12);
}
.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(30, 120, 230, 0.12);
  color: var(--brand);
}
.product-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html.dark .product-icon {
  background: rgba(30, 120, 230, 0.18);
}
.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.product-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.product-features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.product-features li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.4;
}
.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brand);
  transform: rotate(45deg);
}
.product-card .btn {
  margin-top: auto;
  width: 100%;
}
html.dark .product-card {
  background: rgba(14, 27, 46, 0.55);
  border-color: var(--line);
}


.waitlist-desc {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.waitlist-form {
  max-width: 480px;
  margin: 0 auto 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

html.dark .waitlist-input {
  background: rgba(14, 27, 46, 0.8);
  border-color: var(--line);
}

.waitlist-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 120, 230, 0.15);
}

.waitlist-btn {
  min-width: 120px;
  padding: 12px 20px;
  white-space: nowrap;
}

.waitlist-message {
  margin-top: 16px;
  min-height: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 160ms ease;
}

.waitlist-message.success {
  color: #059669;
}

.waitlist-message.error {
  color: var(--danger);
}

.waitlist-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* How It Works / Steps Section */
.steps-section {
  text-align: center;
  padding: 32px 24px;
}

.steps-section h2,
.section-title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}

.steps-desc {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.steps-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.step {
  text-align: left;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(220, 228, 238, 0.6);
}

html.dark .step {
  background: rgba(14, 27, 46, 0.7);
  border-color: var(--line);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 999px;
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.inbox {
  padding: 20px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.empty {
  border: 1px dashed #c7d3e3;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  background: #f8fbff;
}

.message-list {
  display: grid;
  gap: 10px;
}

.message-item {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.message-item:hover {
  border-color: #a9b9d0;
  transform: translateY(-1px);
}

.message-title {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.message-from {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.message-preview {
  margin: 8px 0 0;
  color: #334155;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.message-item {
  overflow: hidden;
}

.message-detail {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.message-detail h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.message-detail .meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.message-body {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 8px;
  line-height: 1.6;
}

.message-detail {
  position: relative;
  max-height: 70vh;
  overflow: hidden;
}

.message-detail .close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.06);
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.message-detail .close-btn:hover {
  background: rgba(16, 32, 51, 0.12);
  color: var(--ink);
}

.message-detail .close-btn:active {
  transform: scale(0.95);
}

html.dark .message-detail .close-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

html.dark .message-detail .close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  background: #102033;
  color: #fff;
  border-radius: 999px;
  padding: 11px 15px;
  box-shadow: 0 16px 32px rgba(16, 32, 51, 0.2);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 0.92rem;
  z-index: 10;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 999px;
  animation: spin 800ms linear infinite;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 8px;
}

.spinner.dark {
  border-color: rgba(30, 120, 230, 0.18);
  border-top-color: var(--brand);
}

.loading-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.loading-line {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #edf2f8, #f8fbff, #edf2f8);
  background-size: 200% 100%;
  animation: shimmer 1.1s linear infinite;
}

.loading-line.short {
  width: 58%;
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer Styles */
.footer-content {
  width: 100%;
  display: grid;
  gap: 32px;
  padding: 40px 0 24px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-column h4 {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--brand);
}

.footer-column a.coming-soon {
  color: var(--muted);
  pointer-events: none;
}

.footer-column a.coming-soon:hover {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  margin-left: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: rgba(30, 120, 230, 0.12);
  color: var(--brand);
}

.footer-contact {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-contact h4 {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-contact p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.contact-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.contact-links a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 1120px;
  margin: 0 auto;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(30, 120, 230, 0.08);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

html.dark .footer-social a {
  background: rgba(255, 255, 255, 0.06);
}

html.dark .footer-social a:hover {
  background: var(--brand);
  color: #fff;
}

@media (max-width: 820px) {
  .footer-content {
    padding: 32px 0 16px;
    gap: 24px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-column h4 {
    font-size: 0.75rem;
  }

  .footer-column a {
    font-size: 0.88rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-cta .btn {
  flex: 1;
  min-width: 160px;
}

@media (max-width: 820px) {
  .hero-cta .btn {
    width: 100%;
    flex: none;
  }
}

/* Secondary button */
.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

html.dark .btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

/* Trust Section */
.trust-section {
  text-align: center;
  padding: 48px 32px;
}

.trust-subtitle {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 3rem;
  max-width: 600px;
}

.trust-grid {
  max-width: 800px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: left;
}

.trust-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.trust-icon {
  margin-bottom: 12px;
  line-height: 1;
}

.trust-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 70, 160, 0.12);
  border-color: rgba(30, 120, 230, 0.3);
}

html.dark .trust-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.trust-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .trust-section {
    padding: 40px 24px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-item {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 820px) {
  :root {
    --topbar-offset: 108px;
  }
  .app {
    width: min(100% - 20px, 480px);
    padding-top: var(--topbar-offset);
  }

  .topbar {
    position: fixed;
    top: 10px;
    left: 50%;
    width: calc(100% - 20px);
    transform: translateX(-50%);
    margin: 0;
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
  }

  .menu-toggle {
    display: block;
    z-index: 102;
  }

  .menu-bar {
    display: flex;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 66px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 36px rgba(16, 32, 51, 0.12);
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0ms linear 250ms;
    visibility: hidden;
  }

  html.dark .menu-bar {
    background: rgba(14, 27, 46, 0.96);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  }

  .menu-bar.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .menu-link {
    justify-content: flex-start;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
  }

  .menu-link.verify-link {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--dark-brand));
    box-shadow: 0 8px 20px rgba(30, 120, 230, 0.2);
  }

  .brand-logo,
  .footer-logo img {
    width: var(--mobile-logo-size);
  }

  .menu-bar:not(.open) {
    margin-left: auto;
    gap: 6px;
    padding: 5px;
  }

  .menu-link {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.86rem;
  }

  .status-pill {
    display: none;
  }

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

  .hero-copy {
    padding: 24px;
  }

  h1 {
    max-width: 9ch;
  }

  .email-card {
    min-height: auto;
  }

  .inbox {
    padding: 16px;
  }

  .btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .actions {
    display: grid;
    gap: 8px;
  }

  /* Email address - prevent horizontal overflow */
  .email-address {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
    font-size: clamp(1rem, 5vw, 1.2rem);
  }

  /* Message detail - fit in remaining viewport */
  .message-body {
    max-height: 40vh;
  }

  /* Close button - larger touch target */
  .message-detail .close-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  /* Message detail - fit in remaining viewport on mobile */
  .message-body {
    max-height: 40vh;
  }

  .message-detail {
    max-height: 55vh;
  }

  /* Message list items - better tap target */
  .message-item {
    padding: 16px;
  }

  /* Collapse hero copy after inbox created */
  .hero-copy.collapsed {
    display: none;
  }

  .hero-copy.collapsed + .email-card {
    margin-top: 0;
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feature-item {
  text-align: center;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 70, 160, 0.12);
  border-color: rgba(30, 120, 230, 0.3);
}

html.dark .feature-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.feature-icon {
  margin-bottom: 16px;
  line-height: 1;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.feature-item p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-item .btn {
  width: 100%;
}

.btn.disabled {
  color: var(--muted);
  background: rgba(159, 176, 200, 0.12);
  box-shadow: none;
  pointer-events: none;
}

html.dark .btn.disabled {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

/* Waitlist Section */
.waitlist-section,
.steps-section {
  text-align: center;
  padding: 40px 32px;
}

.waitlist-desc,
.steps-desc {
  max-width: 480px;
  margin: 16px auto 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.waitlist-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.waitlist-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 120, 230, 0.15);
}

html.dark .waitlist-input {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--ink);
}

.waitlist-btn {
  min-width: 140px;
  padding: 14px 20px;
  font-weight: 800;
}

.waitlist-message {
  min-height: 24px;
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity 200ms ease;
}

.waitlist-message.success {
  color: #16a34a;
}

.waitlist-message.error {
  color: var(--danger);
}

.waitlist-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Waitlist Alternatives */
.waitlist-alternatives {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 24px auto 16px;
  max-width: 480px;
}

.waitlist-divider {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.waitlist-divider::before,
.waitlist-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.waitlist-divider span {
  padding: 0 12px;
  white-space: nowrap;
}

.waitlist-alternatives .btn {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .waitlist-alternatives {
    flex-direction: column;
    gap: 12px;
  }
  
  .waitlist-divider {
    width: 100%;
  }
  
  .waitlist-alternatives .btn {
    width: 100%;
    max-width: none;
  }
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 28px auto 0;
}

.step {
  text-align: left;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 70, 160, 0.12);
  border-color: rgba(30, 120, 230, 0.3);
}

html.dark .step {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 999px;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-cta .btn {
  flex: 1;
  min-width: 160px;
}

@media (max-width: 820px) {
  .hero-cta .btn {
    width: 100%;
    flex: none;
  }
}

/* Secondary button */
.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

html.dark .btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(30, 120, 230, 0.08);
  border-color: var(--brand);
}

/* Trust Section */
.trust-section {
  padding: 40px 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 70, 160, 0.12);
  border-color: rgba(30, 120, 230, 0.3);
}

html.dark .trust-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.trust-item h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .trust-section {
    padding: 32px 24px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .waitlist-section,
  .steps-section {
    padding: 32px 24px;
  }

  .waitlist-desc,
  .steps-desc {
    font-size: 1rem;
  }

  .waitlist-form {
    flex-direction: column;
    gap: 10px;
  }

  .waitlist-input,
  .waitlist-btn {
    width: 100%;
    min-width: 0;
  }

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

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

  .step {
    text-align: center;
  }

  .step-number {
    margin: 0 auto 16px;
  }
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Products grid: collapse to single column on small screens */
@media (max-width: 820px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
