@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500&display=swap");

:root {
  --brand: #2563eb;
  --brand-deep: #1746aa;
  --brand-soft: #dbeafe;
  --ink: #0f172a;
  --ink-muted: #334155;
  --line: #dbe3ef;
  --surface: #f8fbff;
  --surface-2: #eef4ff;
  --white: #ffffff;
  --ok: #0369a1;
  --shadow: 0 18px 45px -22px rgba(17, 24, 39, 0.35);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-w: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #e6f0ff 0, #f4f8ff 42%, #f8fbff 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 2.25rem, var(--max-w));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(219, 227, 239, 0.75);
  backdrop-filter: blur(8px);
  background: rgba(248, 251, 255, 0.9);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 1.2rem;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(140deg, var(--brand), #1d4ed8);
  box-shadow: 0 12px 22px -12px rgba(37, 99, 235, 0.78);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.primary-nav a {
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--white);
  color: var(--ink);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), #1e40af);
  box-shadow: 0 13px 24px -14px rgba(30, 64, 175, 0.9);
}

.btn-primary:hover {
  box-shadow: 0 20px 28px -16px rgba(30, 64, 175, 0.95);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

main {
  padding-block: 2.4rem 4rem;
}

.kicker {
  margin: 0;
  color: var(--brand-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

p {
  margin-top: 0;
  color: var(--ink-muted);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f2f7ff 0, #ffffff 55%);
  border: 1px solid #d9e4f6;
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 3.2rem);
}

.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.24) 0, rgba(37, 99, 235, 0.03) 72%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.1rem, 4vw, 2.3rem);
}

.hero-points {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #0f2b63;
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}

.metric-card {
  background: linear-gradient(155deg, #ffffff 0, #eff5ff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
}

.metric-chip {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1d4ed8;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric-value {
  margin: 0.35rem 0 0;
  font-size: 2.2rem;
  line-height: 1;
}

.metric-copy {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.panel {
  margin-top: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.2vw, 1.55rem);
}

.trust-strip {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag {
  padding: 0.45rem 0.7rem;
  background: #edf4ff;
  border: 1px solid #dbe7fb;
  color: #16356f;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.section {
  margin-top: 3rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.95rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

.span-8 {
  grid-column: span 8;
}

.span-12 {
  grid-column: span 12;
}

.steps {
  counter-reset: flow;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.steps li {
  position: relative;
  padding-left: 3rem;
}

.steps li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--brand-deep);
  font-size: 0.88rem;
  font-weight: 700;
  background: #e5eeff;
  border: 1px solid #bfd3ff;
}

.demo-shell {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(170deg, #f6faff 0, #e9f2ff 100%);
  overflow: hidden;
}

.demo-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.2rem;
}

.demo-placeholder p {
  max-width: 36ch;
}

.checklist,
.faq-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-muted);
}

.checklist li,
.faq-list li {
  margin-bottom: 0.45rem;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid #cfdcf3;
  padding: 1.35rem;
  background: linear-gradient(160deg, #ffffff 0, #f2f7ff 100%);
}

.price-card.featured {
  border-color: #95b4f5;
  box-shadow: var(--shadow);
}

.price {
  margin: 0.5rem 0;
  font-size: 2.2rem;
  line-height: 1;
}

.price small {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd6e9;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.2);
  border-color: var(--brand);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.inline-badge {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #e8f1ff;
  border: 1px solid #d2e2fb;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
}

.notice {
  border-radius: var(--radius-sm);
  border: 1px solid #c4d9fb;
  background: #eff6ff;
  color: #133a79;
  padding: 0.8rem 0.95rem;
  font-size: 0.86rem;
}

.success-box {
  border-radius: var(--radius-lg);
  border: 1px solid #b6d7f5;
  background: linear-gradient(150deg, #f7fcff 0, #eef8ff 100%);
  padding: 1.35rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.legal-nav a {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.site-footer {
  border-top: 1px solid #dce6f5;
  background: #f2f7ff;
  margin-top: 3rem;
  padding: 2rem 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.footer-title {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-list a {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.footer-meta {
  margin-top: 0.95rem;
  font-size: 0.78rem;
  color: #4b5a75;
}

.fade-in {
  animation: rise 0.66s ease both;
}

.fade-in.delay {
  animation-delay: 0.12s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .primary-nav {
    flex-wrap: wrap;
  }

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

  .span-3,
  .span-4,
  .span-6,
  .span-8 {
    grid-column: span 12;
  }

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

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

@media (max-width: 760px) {
  body {
    line-height: 1.55;
  }

  main {
    padding-top: 1.5rem;
  }

  .header-cta {
    width: 100%;
    justify-content: space-between;
  }

  .header-cta .btn {
    flex: 1;
  }

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

  .container {
    width: min(100% - 1.2rem, var(--max-w));
  }
}
