:root {
  --sf-blue: #037ef3;
  --sf-teal: #0a9ea8;
  --sf-deep: #041526;
  --sf-ink: #0b1c2c;
  --sf-mist: #d7e8f2;
  --sf-paper: #f4f8fb;
  --sf-line: rgba(4, 21, 38, 0.12);
  --sf-font: "Figtree", "Segoe UI", system-ui, sans-serif;
  --sf-display: "Syne", "Figtree", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing {
  margin: 0;
  font-family: var(--sf-font);
  color: var(--sf-ink);
  background: var(--sf-paper);
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.lp-top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 28px;
  background: rgba(4, 21, 38, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-mark {
  font-family: var(--sf-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lp-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.lp-nav-cta {
  background: #fff;
  color: var(--sf-deep) !important;
  padding: 8px 14px;
  border-radius: 10px;
}

.lp-nav-quiet { opacity: 0.75; font-weight: 500 !important; }

.lp-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.lp-menu span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.lp-drawer {
  position: fixed;
  inset: 72px 16px auto;
  z-index: 39;
  background: var(--sf-deep);
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lp-drawer.is-open { display: grid; }
.lp-drawer[hidden] { display: none !important; }

.lp-drawer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 8px;
}

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(155deg, #03101f 0%, #053a6b 48%, #0a7f8a 100%);
  padding: 120px 28px 72px;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
}

.lp-orb-a {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  background: var(--sf-blue);
  top: 8%;
  right: -8%;
}

.lp-orb-b {
  width: 36vw;
  height: 36vw;
  max-width: 420px;
  max-height: 420px;
  background: var(--sf-teal);
  bottom: 5%;
  left: -10%;
}

.lp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 40% 40%, #000 20%, transparent 75%);
}

.lp-hero-inner {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.lp-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.8;
  margin: 0 0 10px;
}

.lp-brand {
  font-family: var(--sf-display);
  font-size: clamp(3.4rem, 11vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 0 0 12px;
  font-weight: 800;
}

.lp-subbrand {
  font-family: var(--sf-display);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  margin: 0 0 16px;
  opacity: 0.92;
  letter-spacing: -0.02em;
}

.lp-headline {
  font-family: var(--sf-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.lp-lede {
  font-size: 1.08rem;
  max-width: 38rem;
  opacity: 0.92;
  margin: 0 0 28px;
}

.lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.lp-btn-primary {
  background: #fff;
  color: var(--sf-deep);
}

.lp-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.lp-staff {
  margin: 22px 0 0;
  font-size: 0.95rem;
}

.lp-staff a { color: rgba(255, 255, 255, 0.8); }

.lp-stats {
  background: var(--sf-deep);
  color: #fff;
  padding: 28px 28px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-stat-num {
  display: block;
  font-family: var(--sf-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #9bd7ff;
}

.lp-stat-label {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.lp-section { padding: 88px 28px; }

.lp-section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.lp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sf-teal);
  margin: 0 0 10px;
}

.lp-section h2 {
  font-family: var(--sf-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  line-height: 1.1;
}

.lp-prose {
  font-size: 1.08rem;
  color: #334155;
  margin: 0 0 16px;
  max-width: 42rem;
}

.lp-brief {
  background:
    radial-gradient(circle at 100% 0%, rgba(3, 126, 243, 0.08), transparent 40%),
    var(--sf-paper);
}

.lp-how { background: #fff; }

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 22px;
}

.lp-step {
  text-align: left;
  border: 1px solid var(--sf-line);
  background: var(--sf-paper);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lp-step:hover { transform: translateY(-2px); }

.lp-step.is-active {
  border-color: transparent;
  background: linear-gradient(145deg, var(--sf-blue), var(--sf-teal));
  color: #fff;
}

.lp-step-i {
  display: block;
  font-family: var(--sf-display);
  font-weight: 800;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 6px;
}

.lp-step-t { font-weight: 700; }

.lp-panel {
  border: 1px solid var(--sf-line);
  border-radius: 18px;
  padding: 24px;
  background: var(--sf-paper);
  min-height: 150px;
}

.lp-panel h3 {
  font-family: var(--sf-display);
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.lp-panel p { margin: 0 0 14px; color: #475569; }

.lp-panel a {
  color: var(--sf-blue);
  font-weight: 700;
  text-decoration: none;
}

.lp-who {
  background: linear-gradient(180deg, #eef6fb 0%, #f4f8fb 100%);
}

.lp-audience-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 18px;
}

.lp-audience-tabs button {
  border: 1px solid var(--sf-line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: var(--sf-ink);
}

.lp-audience-tabs button.is-active {
  background: var(--sf-deep);
  color: #fff;
  border-color: var(--sf-deep);
}

.lp-aud h3 {
  font-family: var(--sf-display);
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.lp-aud p {
  margin: 0;
  color: #475569;
  max-width: 40rem;
  font-size: 1.05rem;
}

.lp-close {
  padding: 96px 28px;
  background: linear-gradient(145deg, #04233f, #0a6f7a);
  color: #fff;
  text-align: center;
}

.lp-close-inner { max-width: 640px; margin: 0 auto; }

.lp-close h2 {
  font-family: var(--sf-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.lp-close p { margin: 0 0 24px; opacity: 0.9; }

.lp-close .lp-cta { justify-content: center; }

.lp-foot {
  background: var(--sf-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 28px;
}

.lp-foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}

.lp-foot strong {
  color: #fff;
  font-family: var(--sf-display);
}

.lp-foot nav {
  margin-left: auto;
  display: flex;
  gap: 16px;
}

.lp-foot a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 860px) {
  .lp-nav { display: none; }
  .lp-menu { display: flex; }
  .lp-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .lp-hero { padding: 108px 18px 56px; }
  .lp-section { padding: 64px 18px; }
  .lp-stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lp-foot nav { margin-left: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-btn:hover,
  .lp-step:hover { transform: none; }
}
