/* v2026.03.29-1.0.0 */

:root {
  --bg: #F6F7FA;
  --bg2: #EEF2FF;
  --ink: #0B1220;
  --muted: rgba(11, 18, 32, 0.70);
  --subtle: rgba(11, 18, 32, 0.56);

  --surface: rgba(255, 255, 255, 0.78);
  --surface2: rgba(255, 255, 255, 0.92);
  --stroke: rgba(15, 23, 42, 0.14);
  --stroke2: rgba(15, 23, 42, 0.22);
  --shadow: 0 20px 70px rgba(2, 6, 23, 0.14);

  --a0: #0EA5E9; /* sky */
  --a1: #22C55E; /* green */
  --a2: #F97316; /* orange */
  --a3: #111827; /* near-black */

  --radius: 18px;
  --radius2: 28px;
  --wrap: 1120px;

  --display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(14, 165, 233, 0.18), transparent 60%),
    radial-gradient(900px 520px at 92% 10%, rgba(34, 197, 94, 0.14), transparent 60%),
    radial-gradient(860px 520px at 70% 92%, rgba(249, 115, 22, 0.10), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height: 100vh;
}

/* Subtle grid to keep the background from feeling flat */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.035) 0, rgba(15, 23, 42, 0.035) 1px, transparent 1px, transparent 72px),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.032) 0, rgba(15, 23, 42, 0.032) 1px, transparent 1px, transparent 72px);
  mask-image: radial-gradient(circle at 35% 20%, rgba(0,0,0,0.75), rgba(0,0,0,0.12) 55%, transparent 78%);
  opacity: 0.55;
}

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

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-140%);
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface2);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
}
.skip:focus { transform: translateY(0); outline: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(246, 247, 250, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

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

.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.9), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(34, 197, 94, 0.90));
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.brand__name { font-weight: 700; letter-spacing: -0.2px; }
.brand__tag { font-size: 12px; color: var(--muted); margin-top: 1px; }

.topnav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}
.topnav a { padding: 10px 10px; border-radius: 12px; }
.topnav a:hover { background: rgba(15, 23, 42, 0.05); color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background:
    radial-gradient(160px 90px at 20% 12%, rgba(255,255,255,0.55), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(14, 165, 233, 1), rgba(34, 197, 94, 0.95));
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(14, 165, 233, 0.18);
}
.btn--primary:hover { box-shadow: 0 22px 58px rgba(14, 165, 233, 0.22); }

.btn--secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(15, 23, 42, 0.14);
  color: var(--ink);
}
.btn--secondary:hover { background: rgba(255, 255, 255, 0.92); }

.btn--ghost {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.16);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(15, 23, 42, 0.05); }
.btn--full { width: 100%; }

.hero {
  padding: 72px 0 24px;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--muted);
  font-weight: 650;
  margin: 0 0 16px;
  box-shadow: 0 14px 38px rgba(2, 6, 23, 0.10);
}

h1 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.03;
  font-size: clamp(42px, 4.6vw, 68px);
  margin: 0 0 14px;
}

.lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
  margin: 0 0 18px;
  max-width: 58ch;
}

.cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 18px; }

.microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.hero__card { position: relative; }

.card {
  border-radius: var(--radius2);
  background: var(--surface2);
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
}

.card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--a0);
  box-shadow: 0 0 0 7px rgba(14, 165, 233, 0.14);
  animation: pulse 2.1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.25); opacity: 0.62; }
}

.card__title { font-weight: 750; color: var(--ink); }
.card__body { padding: 14px 16px 6px; }

.stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}
.stat:last-of-type { border-bottom: none; }
.stat__k { color: var(--muted); font-weight: 650; }
.stat__v { font-weight: 800; letter-spacing: -0.2px; }

.divider { height: 1px; background: rgba(15, 23, 42, 0.10); margin: 12px 0; }
.mini__label { color: var(--muted); font-size: 12px; font-weight: 650; }

.mini__bar {
  margin: 10px 0 8px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}
.mini__bar span {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, rgba(14, 165, 233, 1), rgba(34, 197, 94, 0.95));
  border-radius: inherit;
}
.mini__hint { color: var(--subtle); font-size: 12px; }

.card__footer {
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  display: grid;
  gap: 10px;
}
.fineprint { color: var(--subtle); font-size: 12px; text-align: center; }

.glow {
  position: absolute;
  inset: -46px;
  background:
    radial-gradient(circle at 18% 15%, rgba(14, 165, 233, 0.14), transparent 62%),
    radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.12), transparent 62%),
    radial-gradient(circle at 65% 92%, rgba(249, 115, 22, 0.10), transparent 58%);
  filter: blur(16px);
  z-index: -1;
}

.logo-strip { padding: 16px 0 8px; }
.logo-strip__label { color: var(--muted); font-size: 13px; margin-bottom: 10px; font-weight: 650; }

.logo-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.logo {
  border-radius: 999px;
  padding: 10px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(11, 18, 32, 0.72);
  font-weight: 750;
  letter-spacing: -0.2px;
}

.section { padding: 56px 0; }
.section__head { margin-bottom: 22px; }

.section__head h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.6px;
  font-size: clamp(28px, 3.2vw, 44px);
  margin: 0 0 8px;
}

.section__head p { margin: 0; color: var(--muted); line-height: 1.65; max-width: 66ch; }

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

.tile {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 18px;
  box-shadow: 0 16px 52px rgba(2, 6, 23, 0.08);
}

.tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(11, 18, 32, 0.82);
  font-weight: 850;
  margin-bottom: 10px;
  font-family: var(--display);
}

.tile h3 { margin: 0 0 6px; font-weight: 850; letter-spacing: -0.3px; font-family: var(--display); }
.tile p { margin: 0; color: var(--muted); line-height: 1.7; }

/* "Dark" section becomes a conversion panel rather than inverted theme */
.section--dark {
  margin: 10px auto;
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(14, 165, 233, 0.12), transparent 60%),
    radial-gradient(760px 420px at 86% 0%, rgba(34, 197, 94, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.70);
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

.apply {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.checks {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checks li {
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.30);
}

.checks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 7px;
  height: 3px;
  border-left: 2px solid rgba(11, 18, 32, 0.78);
  border-bottom: 2px solid rgba(11, 18, 32, 0.78);
  transform: rotate(-45deg);
}

.embed {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.12);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.12);
  min-height: 420px;
}

.embed__placeholder {
  padding: 22px;
  height: 100%;
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 10px;
  background:
    radial-gradient(600px 280px at 15% 10%, rgba(14, 165, 233, 0.12), transparent 55%),
    radial-gradient(620px 300px at 90% 20%, rgba(34, 197, 94, 0.10), transparent 55%),
    rgba(255, 255, 255, 0.40);
}

.embed__placeholder--light {
  background: rgba(255, 255, 255, 0.55);
  min-height: 320px;
}

.embed__badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  color: rgba(11, 18, 32, 0.74);
  font-size: 12px;
  font-weight: 750;
}

.embed__title {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
  font-family: var(--display);
}
.embed__hint { color: var(--muted); line-height: 1.7; font-weight: 600; }
.embed__below { margin-top: 10px; color: var(--subtle); font-size: 13px; line-height: 1.6; font-weight: 600; }

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

.quote, .pricing {
  border-radius: var(--radius2);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 52px rgba(2, 6, 23, 0.08);
}

.quote { padding: 20px; }
.quote__text {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.4px;
  font-weight: 800;
}
.quote__byline { display: flex; gap: 12px; align-items: center; color: var(--muted); font-weight: 650; }

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.38), rgba(14, 165, 233, 0.28));
  border: 1px solid rgba(15, 23, 42, 0.12);
}
.quote__name { color: var(--ink); font-weight: 850; }
.quote__meta { font-size: 13px; color: var(--muted); }

.pricing { overflow: hidden; }
.pricing__top { padding: 18px 18px 12px; border-bottom: 1px solid rgba(15, 23, 42, 0.10); }
.pricing__name { color: var(--muted); font-weight: 750; }
.pricing__price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 44px;
  margin-top: 8px;
  letter-spacing: -0.9px;
}
.pricing__meta { color: var(--subtle); font-size: 13px; margin-top: 4px; font-weight: 650; }
.pricing__body { padding: 12px 18px 8px; display: grid; gap: 10px; color: var(--muted); font-weight: 650; }

.pricing__line {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.10);
}
.pricing__cta { padding: 14px 18px 18px; display: grid; gap: 10px; }

.faq { display: grid; gap: 10px; }
details {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 14px 16px;
  box-shadow: 0 16px 52px rgba(2, 6, 23, 0.06);
}
summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--ink);
  letter-spacing: -0.2px;
  font-family: var(--display);
}
.faq__body { margin-top: 10px; color: var(--muted); line-height: 1.75; font-weight: 600; }

.footer {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.30);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.footer__brand { font-weight: 900; letter-spacing: -0.3px; font-family: var(--display); }
.footer__fine { margin-top: 6px; color: var(--subtle); font-size: 13px; font-weight: 650; }
.footer__right { display: flex; gap: 12px; color: var(--muted); font-weight: 650; }
.footer__right a { padding: 10px 10px; border-radius: 12px; }
.footer__right a:hover { background: rgba(15, 23, 42, 0.05); color: var(--ink); }

.ty { display: grid; place-items: center; padding: 36px 0; }
.ty__wrap { width: min(860px, calc(100% - 48px)); }
.ty__card {
  border-radius: var(--radius2);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  padding: 22px;
}
.ty__badge {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.30);
  background: rgba(34, 197, 94, 0.12);
  color: rgba(11, 18, 32, 0.86);
  font-weight: 850;
  font-size: 12px;
}
.ty h1 {
  font-family: var(--display);
  margin: 14px 0 8px;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.9px;
  font-weight: 900;
}
.ty__lede { margin: 0 0 16px; color: var(--muted); line-height: 1.7; font-weight: 600; }
.ty__embed { margin: 14px 0 14px; }
.ty__actions { margin-top: 12px; }
.ty__fine { margin-top: 14px; color: var(--subtle); font-size: 13px; line-height: 1.65; font-weight: 650; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .apply { grid-template-columns: 1fr; }
  .logo-strip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .topnav { display: none; }
  .grid3 { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .footer__inner { flex-direction: column; }
}

