:root {
  --navy: #0b1f38;
  --navy-2: #0c2138;
  --blue: #2f7df6;
  --blue-dark: #1f6ae0;
  --green: #19b36b;
  --red: #e23b3b;
  --ink: #16202c;
  --muted: #5d6b7a;
  --line: #e6ebf2;
  --soft: #f4f7fb;
  --gold: #f59e0b;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(17, 37, 63, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 31, 56, 0.18);
  --grad-brand: linear-gradient(135deg, #3b8bff 0%, #2f7df6 45%, #1f6ae0 100%);
  --font-display: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 800;
}

.muted {
  color: var(--muted);
}

.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;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 30px;
  font-size: 1.05rem;
  border-radius: 14px;
}
.btn-block {
  width: 100%;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 125, 246, 0.4);
}
.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(47, 125, 246, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}
.btn-outline {
  background: #fff;
  color: var(--blue-dark);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 1.02rem;
}
.brand img {
  width: 30px;
  height: 30px;
}
.brand:hover {
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}
.nav-links a:hover {
  text-decoration: none;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav .btn {
  padding: 9px 18px;
  font-size: 0.92rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      900px 480px at 78% -8%,
      rgba(47, 125, 246, 0.35),
      transparent 60%
    ),
    radial-gradient(700px 400px at 8% 110%, rgba(25, 179, 107, 0.18), transparent 55%),
    linear-gradient(165deg, #0e2542 0%, #0a1c33 100%);
  color: #fff;
  padding: 64px 0 80px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}
.blob-1 {
  width: 380px;
  height: 380px;
  background: #2f7df6;
  top: -120px;
  right: -60px;
}
.blob-2 {
  width: 320px;
  height: 320px;
  background: #19b36b;
  bottom: -140px;
  left: -80px;
  opacity: 0.4;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cfe0f7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 16px;
  border-radius: 999px;
  margin: 0 0 26px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(25, 179, 107, 0.25);
}
.hero-banner {
  display: block;
  width: 100%;
  max-width: 880px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-banner img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}
.hero-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
  text-decoration: none;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}
.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  padding: 0;
  margin: 26px 0 0;
  font-size: 0.9rem;
  color: #aebfd4;
}
.trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

/* ---------- Compatibility strip ---------- */
.logo-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.logo-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 40px;
}
.logo-strip-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo-strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #9aa8b8;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.site-logo:hover {
  color: var(--navy);
}

/* ---------- Product showcase ---------- */
.showcase {
  overflow: hidden;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 56px;
  align-items: center;
}
.showcase-copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 0.35em;
}
.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 28px;
}
.showcase-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mock-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px;
}
.mock-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    360px 360px at 50% 50%,
    rgba(47, 125, 246, 0.16),
    transparent 70%
  );
  z-index: 0;
}
.mock {
  position: relative;
  z-index: 1;
  width: 330px;
  max-width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--ink);
  border: 1px solid var(--line);
}
.mock-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.mock-head img {
  width: 20px;
  height: 20px;
}
.mock-head .t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
}
.mock-head .pro {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #f7b500, var(--gold));
  padding: 3px 8px;
  border-radius: 10px;
}
.mock-tabs {
  display: flex;
  gap: 16px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}
.mock-tabs span {
  padding: 10px 2px;
  color: var(--muted);
}
.mock-tabs span.on {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}
.mock-actions {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
}
.mock-actions .b {
  flex: 1;
  text-align: center;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 9px 4px;
  border-radius: 8px;
}
.mock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 0 14px 16px;
}
.mock-grid .tile {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 7px;
}
.mock-grid .tile::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.tile.a {
  background: linear-gradient(135deg, #6ea8ff, #2f7df6);
}
.tile.b {
  background: linear-gradient(135deg, #45d49a, #19b36b);
}
.tile.c {
  background: linear-gradient(135deg, #ff7b7b, #e23b3b);
}
.tile.d {
  background: linear-gradient(135deg, #c9d6e8, #9fb2c8);
}

/* ---------- Sections ---------- */
section {
  padding: 84px 0;
}
.section-soft {
  background: var(--soft);
}
.section-title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-title p {
  font-size: 1.1rem;
}
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(47, 125, 246, 0.1);
  padding: 5px 14px;
  border-radius: 999px;
  margin: 0 0 14px;
}

/* ---------- Feature cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 125, 246, 0.3);
}
.card .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 16px;
  color: #fff;
}
.ico-blue {
  background: linear-gradient(135deg, #6ea8ff, #2f7df6);
}
.ico-green {
  background: linear-gradient(135deg, #45d49a, #19b36b);
}
.ico-red {
  background: linear-gradient(135deg, #ff7b7b, #e23b3b);
}
.ico-gold {
  background: linear-gradient(135deg, #ffd166, #f59e0b);
}
.card h3 {
  font-size: 1.2rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(47, 125, 246, 0.35);
}
.step h3 {
  font-size: 1.15rem;
}
.step p {
  margin: 0;
  color: var(--muted);
}

/* ---------- Personas ---------- */
.personas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.persona {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.persona:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.persona-ico {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 14px;
  background: rgba(47, 125, 246, 0.1);
}
.persona h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.persona p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
  align-items: start;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.plan.featured {
  border: 2px solid var(--blue);
  position: relative;
  box-shadow: 0 24px 60px rgba(47, 125, 246, 0.22);
}
.plan.featured .tag {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(47, 125, 246, 0.4);
}
.plan h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  margin: 6px 0 2px;
}
.price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.plan-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 6px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}
.plan li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink);
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.plan li.no {
  color: var(--muted);
}
.plan li.no::before {
  content: "—";
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 22px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details[open] {
  border-color: rgba(47, 125, 246, 0.35);
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  margin: 0 0 18px;
  color: var(--muted);
}

/* ---------- CTA banner ---------- */
.cta-section {
  padding-bottom: 96px;
}
.cta {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      600px 300px at 85% -20%,
      rgba(47, 125, 246, 0.45),
      transparent 60%
    ),
    linear-gradient(160deg, var(--navy), #0c2138);
  color: #fff;
  text-align: center;
  border-radius: 26px;
  padding: 64px 24px;
}
.cta .blob-3 {
  width: 300px;
  height: 300px;
  background: #19b36b;
  bottom: -160px;
  left: -60px;
  opacity: 0.35;
  filter: blur(70px);
}
.cta h2 {
  color: #fff;
  position: relative;
  z-index: 2;
}
.cta p {
  color: #c8d6e8;
  max-width: 52ch;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}
.cta .btn {
  position: relative;
  z-index: 2;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  font-weight: 500;
}
.disclaimer {
  margin-top: 22px;
  font-size: 0.82rem;
  color: #93a1b1;
  max-width: 80ch;
}

/* ---------- Legal / privacy page ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0;
}
.legal h1 {
  font-size: 2.2rem;
}
.legal h2 {
  font-size: 1.4rem;
  margin-top: 38px;
}
.legal p,
.legal li {
  color: #33414f;
}
.legal .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-banner.reveal {
  animation-delay: 0.08s;
}
.hero-cta.reveal {
  animation-delay: 0.18s;
}
.trust.reveal {
  animation-delay: 0.28s;
}
@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .cards,
  .personas {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 48px 0 60px;
  }
  .cards,
  .steps,
  .pricing,
  .personas {
    grid-template-columns: 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .showcase-cta {
    justify-content: center;
  }
  .mock-wrap {
    order: -1;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .nav-links {
    display: none;
  }
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
