@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --brand-700: #123a7a;
  --brand-600: #1e63d0;
  --brand-500: #2f87ff;
  --brand-300: #8cc5ff;
  --accent-500: #ff7a45;
  --accent-300: #ffd2b3;

  --bg: #f5f8ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.62);
  --text: #172033;
  --muted: #60708f;
  --border: rgba(23, 32, 51, 0.11);
  --shadow-lg: 0 26px 60px rgba(18, 40, 84, 0.13);
  --shadow-md: 0 12px 28px rgba(18, 40, 84, 0.09);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    "Sora",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(960px 680px at 8% -8%, rgba(47, 135, 255, 0.25), transparent 60%),
    radial-gradient(820px 540px at 110% 10%, rgba(255, 122, 69, 0.18), transparent 58%),
    radial-gradient(900px 600px at 60% 120%, rgba(140, 197, 255, 0.26), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

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

code {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 0.92em;
  background: rgba(18, 58, 122, 0.08);
  padding: 2px 6px;
  border-radius: 8px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 248, 255, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.topbarInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logoMark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, var(--brand-700), var(--brand-500)),
    linear-gradient(145deg, var(--brand-300), transparent);
  box-shadow: 0 16px 28px rgba(30, 99, 208, 0.28);
  position: relative;
  overflow: hidden;
}

.logoMark::before {
  content: "";
  position: absolute;
  inset: 8px 9px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.logoMark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: -2px;
  top: -2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(2px);
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.nav a {
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.nav a:hover {
  background: rgba(47, 135, 255, 0.1);
  color: var(--text);
}

.nav a[aria-current="page"] {
  background: rgba(47, 135, 255, 0.12);
  border: 1px solid rgba(47, 135, 255, 0.2);
  color: var(--text);
}

.hero {
  padding: 46px 0 22px;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.panel,
.miniPanel,
.featureCard,
.flowCard,
.faqItem,
article {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.panel,
article {
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.panelHero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -150px;
  top: -230px;
  background: radial-gradient(circle, rgba(47, 135, 255, 0.34), transparent 60%);
}

.panelHero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -170px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.22), transparent 60%);
}

.panel > *,
article > * {
  position: relative;
}

.stack {
  display: grid;
  gap: 14px;
}

.miniPanel {
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--surface-soft);
}

.miniTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.miniTitle h2,
.flowCard h3,
.featureCard h3 {
  margin: 0;
  font-size: 18px;
}

.pill {
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: rgba(47, 135, 255, 0.12);
  border: 1px solid rgba(47, 135, 255, 0.16);
  padding: 6px 8px;
  border-radius: 999px;
}

.note,
.lede,
.featureCard p,
.flowCard p,
.faqItem p,
article p,
article li,
.metaLine {
  color: var(--muted);
  line-height: 1.75;
}

h1,
.sectionHead h2 {
  margin: 0;
  font-family:
    "Space Grotesk",
    "Sora",
    ui-sans-serif,
    system-ui,
    sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(36px, 4vw, 60px);
  margin-bottom: 14px;
}

h1 span {
  display: block;
  color: var(--brand-700);
}

.lede {
  margin: 0 0 16px;
  font-size: 15px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(18, 58, 122, 0.72);
}

.badges,
.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badges {
  margin-top: 14px;
}

.badge {
  font-size: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(47, 135, 255, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.ctaRow {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(23, 32, 51, 0.1);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 14px;
  transition: transform 120ms ease, filter 120ms ease;
}

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

.btnPrimary {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #fff;
  border-color: transparent;
}

.btnGhost {
  color: var(--text);
}

.statsStrip,
.sectionBlock,
.content {
  padding: 16px 0 26px;
}

.statsGrid,
.featureGrid,
.flowGrid {
  display: grid;
  gap: 14px;
}

.statsGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featureGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flowGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.statItem,
.featureCard,
.flowCard {
  border-radius: var(--radius-md);
  padding: 18px;
}

.statValue {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  font-family:
    "Space Grotesk",
    "Sora",
    sans-serif;
  letter-spacing: -0.04em;
}

.statLabel,
.featureTag,
.flowIndex {
  margin: 0;
}

.featureTag,
.flowIndex {
  color: var(--brand-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sectionHead {
  margin-bottom: 16px;
}

.sectionHead h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.faqList {
  display: grid;
  gap: 12px;
}

.faqItem {
  border-radius: var(--radius-md);
  padding: 18px 18px 2px;
}

.faqItem summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  margin-bottom: 12px;
}

.faqItem summary::-webkit-details-marker {
  display: none;
}

article h2 {
  font-family:
    "Space Grotesk",
    "Sora",
    sans-serif;
  letter-spacing: -0.03em;
  margin: 28px 0 10px;
  font-size: 28px;
}

article h2:first-child {
  margin-top: 0;
}

article ul {
  padding-left: 20px;
}

.formGrid {
  display: grid;
  gap: 16px;
}

.row2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(23, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.94);
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(47, 135, 255, 0.18);
  border-color: rgba(47, 135, 255, 0.32);
}

.helper {
  font-size: 13px;
  color: var(--muted);
}

.isHidden {
  display: none;
}

.footer {
  padding: 18px 0 30px;
}

.footerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.isFloating {
  animation: floatUp 5.2s ease-in-out infinite alternate;
}

.delay2 {
  animation-delay: 0.3s;
}

.delay3 {
  animation-delay: 0.55s;
}

@keyframes floatUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

@media (max-width: 920px) {
  .heroGrid,
  .featureGrid,
  .flowGrid,
  .statsGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbarInner,
  .footerInner,
  .row2 {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbarInner,
  .footerInner {
    justify-content: normal;
  }

  h1 {
    font-size: 40px;
  }

  .panel,
  article,
  .featureCard,
  .flowCard,
  .faqItem,
  .miniPanel,
  .statItem {
    padding: 18px;
  }
}
