:root {
  --navy: #071d57;
  --blue: #075ee8;
  --cyan: #16c8f3;
  --mint: #35ead2;
  --ink: #10233f;
  --muted: #5d6d85;
  --line: #dbe7f5;
  --mist: #f4f9ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 29, 87, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--blue); }
img { max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219,231,245,.8);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; font-weight: 800; }
.brand img { width: 44px; height: 44px; border-radius: 13px; box-shadow: 0 8px 20px rgba(7,94,232,.2); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 650; font-size: .94rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #0743b8);
  color: white;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  box-shadow: 0 12px 28px rgba(7,94,232,.23);
}
.button.secondary { background: white; color: var(--navy); border: 1px solid var(--line); box-shadow: none; }
.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(53,234,210,.22), transparent 24rem),
    radial-gradient(circle at 15% 30%, rgba(22,200,243,.13), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 72px; padding: 84px 0; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: .82rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 0; color: var(--navy); font-size: clamp(2.7rem, 6vw, 5.25rem); line-height: .98; letter-spacing: -.055em; }
.hero-copy { max-width: 660px; margin: 25px 0 0; color: var(--muted); font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; color: #31445f; font-size: .93rem; font-weight: 650; }
.trust-line span::before { content: "✓"; color: #008f81; margin-right: 8px; }
.logo-stage { position: relative; display: grid; place-items: center; min-height: 440px; }
.logo-stage::before { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: linear-gradient(135deg, rgba(7,94,232,.14), rgba(53,234,210,.28)); filter: blur(2px); }
.logo-stage img { position: relative; width: min(370px, 82vw); aspect-ratio: 1; object-fit: cover; border-radius: 28%; box-shadow: var(--shadow); }
.section { padding: 96px 0; }
.section.tint { background: var(--mist); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.04em; }
.section-lead { color: var(--muted); font-size: 1.08rem; margin: 16px 0 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 14px 35px rgba(7,29,87,.06); }
.card strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); }
.icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 13px; color: var(--navy); background: linear-gradient(135deg, rgba(22,200,243,.18), rgba(53,234,210,.28)); font-weight: 900; }
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 860px; }
.price-card { position: relative; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: white; }
.price-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow); }
.badge { display: inline-block; margin-bottom: 18px; padding: 5px 10px; border-radius: 999px; background: #dffbf7; color: #056b61; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.price { color: var(--navy); font-size: 3rem; line-height: 1; font-weight: 900; letter-spacing: -.05em; }
.price small { color: var(--muted); font-size: 1rem; font-weight: 650; letter-spacing: 0; }
.price-card ul { padding-left: 21px; color: var(--muted); }
.stripe-button-wrap { min-height: 48px; margin-top: 18px; overflow: hidden; }
.stripe-button-wrap stripe-buy-button { display: block; width: 100%; }
.notice { margin-top: 28px; max-width: 860px; padding: 18px 22px; background: #eef7ff; border: 1px solid #cfe5fb; border-radius: 16px; color: #29435f; }
.faq { max-width: 860px; }
.faq details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 800; }
.faq p { color: var(--muted); }
.cta { overflow: hidden; padding: 52px; border-radius: 28px; background: linear-gradient(135deg, var(--navy), #0847bd); color: white; box-shadow: var(--shadow); }
.cta h2 { color: white; }
.cta p { max-width: 660px; color: #dbeaff; }
.footer { padding: 44px 0; border-top: 1px solid var(--line); background: #07152f; color: #b9c9df; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.footer .brand { color: white; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.footer a { color: #d9e7fa; }
.legal { padding: 76px 0 110px; }
.legal article { max-width: 820px; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.legal h2 { margin-top: 42px; font-size: 1.55rem; letter-spacing: -.02em; }
.legal p, .legal li { color: #4a5d77; }
.meta { margin-top: 12px; color: var(--muted); }

@media (max-width: 820px) {
  .nav-links a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 72px 0 60px; }
  .logo-stage { min-height: 330px; order: -1; }
  .logo-stage::before { width: 300px; height: 300px; }
  .logo-stage img { width: 280px; }
  .cards { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta { padding: 34px 26px; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 480px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .brand span { max-width: 150px; line-height: 1.15; }
  .button { width: 100%; }
  .nav .button { width: auto; padding: 0 14px; }
}
