@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Archivo:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&family=Barlow+Condensed:wght@500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");
:root {
  --brand: #3b6fa6;
  --brand-strong: #2f5d8e;
  --brand-soft: #7e97c8;
  --brand-tint: color-mix(in srgb, var(--brand) 12%, #fff);
  --navy: #16273c;
  --bg: #eef2f8;
  --surface: #ffffff;
  --surface-2: #f6f8fc;
  --raised: #ffffff;
  --ink: #1d2735;
  --ink-2: #46546a;
  --muted: #7b8696;
  --line: #e3e9f2;
  --line-strong: #cdd7e6;
  --pos: #1f9d6b;
  --danger: #d64545;
  --warn: #e0a800;
  --live: #e23a3a;
  --pitch-a: #3f7d52;
  --pitch-b: #388049;
  --r-sm: 7px;
  --r: 11px;
  --r-lg: 16px;
  --r-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(22, 39, 60, 0.06), 0 1px 3px rgba(22, 39, 60, 0.04);
  --shadow: 0 4px 16px rgba(22, 39, 60, 0.08), 0 1px 3px rgba(22, 39, 60, 0.05);
  --shadow-lg: 0 18px 50px rgba(22, 39, 60, 0.16), 0 4px 14px rgba(22, 39, 60, 0.08);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-score: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

[data-font=archivo] {
  --font-display: 'Archivo', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-score: 'Archivo', sans-serif;
}

[data-font=condensed] {
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-score: 'Barlow Condensed', sans-serif;
}

[data-theme=dark] {
  --bg: #0e1722;
  --surface: #16212f;
  --surface-2: #111b27;
  --raised: #1d2b3c;
  --ink: #e9eff7;
  --ink-2: #b3c0d2;
  --muted: #8190a4;
  --line: #27374b;
  --line-strong: #33465e;
  --brand: #5b8ac9;
  --brand-strong: #79a1d8;
  --brand-tint: color-mix(in srgb, var(--brand) 20%, var(--surface));
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 55px rgba(0, 0, 0, 0.55);
}

[data-theme=midnight] {
  --bg: #0a1a2f;
  --surface: #0f2540;
  --surface-2: #0c2038;
  --raised: #143257;
  --ink: #eaf2fb;
  --ink-2: #aec4dd;
  --muted: #7e96b2;
  --line: #1d3b5e;
  --line-strong: #2a4f78;
  --brand: #6aa0e0;
  --brand-strong: #8bb6ea;
  --brand-tint: color-mix(in srgb, var(--brand) 26%, var(--surface));
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--brand-soft);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
.ss-kicker, .lp-kicker {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.lp {
  background: var(--bg);
  overflow-x: hidden;
}
.lp section {
  position: relative;
}

.lp-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: 24px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 20px;
  border-radius: 11px;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  transition: 0.15s;
}
.lp-btn:hover {
  border-color: var(--brand-soft);
  transform: translateY(-1px);
}
.lp-btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--brand) 32%, transparent);
}
.lp-btn.primary:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}
.lp-btn.lg {
  font-size: 15.5px;
  padding: 14px 24px;
}
.lp-btn.ghost-dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.lp-btn.ghost-dark:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lp-sec {
  padding-block: 74px;
  scroll-margin-top: 84px;
}

.lp-sec-head {
  max-width: 640px;
  margin: 0 auto 46px;
  text-align: center;
}

.lp-kicker {
  font-size: 12px;
}

.lp-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  color: var(--ink);
  text-wrap: balance;
}

.lp-lead {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 14px 0 0;
  text-wrap: pretty;
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .js .reveal.in-view {
    opacity: 1;
    transform: none;
  }
}
.lp-toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  background: var(--navy);
  color: #fff;
  padding: 11px 18px;
  border-radius: 11px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 9px;
  animation: lp-toastin 0.3s ease;
}

@keyframes lp-toastin {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.lp-nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.lp-nav-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.lp-nav-links {
  display: flex;
  gap: 26px;
  margin-left: 18px;
}
.lp-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  transition: 0.15s;
  white-space: nowrap;
}
.lp-nav-links a:hover {
  color: var(--brand);
}

.lp-nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  place-items: center;
  flex: none;
}

.lp-burger {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: 0.2s;
}
.lp-burger::before, .lp-burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s, top 0.2s, bottom 0.2s, opacity 0.2s;
}
.lp-burger::before {
  top: -6px;
}
.lp-burger::after {
  bottom: -6px;
}

.lp-nav-toggle[aria-expanded=true] .lp-burger {
  background: transparent;
}
.lp-nav-toggle[aria-expanded=true] .lp-burger::before {
  top: 0;
  transform: rotate(45deg);
}
.lp-nav-toggle[aria-expanded=true] .lp-burger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (max-width: 640px) {
  .lp-nav-toggle {
    display: inline-grid;
    order: 3;
    margin-left: auto;
  }
  .lp-nav-cta {
    display: none;
  }
  .lp-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding: 6px 24px 12px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .lp-nav-links.open {
    display: flex;
  }
  .lp-nav-links a {
    padding: 13px 2px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  .lp-nav-links a:last-child {
    border-bottom: 0;
  }
}
.lp-hero {
  padding: 70px 0 80px;
  scroll-margin-top: 84px;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(60% 50% at 78% 18%, color-mix(in srgb, var(--brand) 22%, transparent), transparent 60%), radial-gradient(50% 40% at 8% 0%, color-mix(in srgb, var(--brand-soft) 24%, transparent), transparent 55%);
}

.lp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 920px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-strong);
  background: var(--brand-tint);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  padding: 6px 13px;
  border-radius: 100px;
}
.lp-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pos);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--pos) 25%, transparent);
}

.lp-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 22px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.lp-h1 .accent {
  color: var(--brand);
}

.lp-sub {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 20px 0 0;
  max-width: 520px;
  text-wrap: pretty;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.lp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 30px;
}
.lp-hero-meta div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.lp-hero-meta svg {
  color: var(--brand);
  flex: none;
}

.lp-visual {
  position: relative;
}

.bw {
  border-radius: 15px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

.bw-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.bw-dots {
  display: flex;
  gap: 7px;
}
.bw-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.bw-url {
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  background: var(--surface);
  white-space: nowrap;
  border: 1px solid var(--line);
  padding: 5px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bw-shot {
  display: block;
  width: 100%;
  height: auto;
}

.iphone {
  position: absolute;
  right: -30px;
  bottom: -48px;
  width: 194px;
  aspect-ratio: 9/19.5;
  z-index: 3;
  background: linear-gradient(150deg, #3a4554, #0d131b);
  border-radius: 38px;
  padding: 7px;
  box-shadow: 0 32px 60px -20px rgba(13, 22, 38, 0.62), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 0 0 2.5px rgba(255, 255, 255, 0.07);
}
.iphone::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 108px;
  width: 3px;
  height: 50px;
  border-radius: 0 2px 2px 0;
  background: #1b232e;
}
@media (max-width: 920px) {
  .iphone {
    right: -12px;
    bottom: -34px;
    width: 168px;
  }
}
@media (max-width: 640px) {
  .iphone {
    position: relative;
    right: auto;
    bottom: auto;
    width: 236px;
    margin: 0 auto;
  }
}

.iphone-side {
  position: absolute;
  left: -2px;
  top: 96px;
  width: 3px;
  height: 30px;
  border-radius: 2px 0 0 2px;
  background: #1b232e;
  box-shadow: 0 42px 0 #1b232e, 0 -52px 0 0 #1b232e;
}

.iphone-screen {
  position: relative;
  height: 100%;
  border-radius: 31px;
  overflow: hidden;
  background: #fff;
  padding-top: 22px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}
.iphone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.iphone-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 17px;
  border-radius: 100px;
  background: #05080d;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (max-width: 640px) {
  .lp-hero {
    padding: 46px 0 60px;
  }
  .bw {
    display: none;
  }
}
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 920px) {
  .lp-features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .lp-features {
    grid-template-columns: 1fr;
  }
}

.feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: 0.18s;
}
.feat:hover {
  border-color: var(--brand-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feat h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 7px;
}
.feat p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.feat-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-tint);
  margin-bottom: 16px;
}

.lp-theme {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 84px;
}

.lp-theme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 920px) {
  .lp-theme-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.theme-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.theme-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: var(--r-lg);
  padding: 16px 18px;
  color: #fff;
  box-shadow: var(--shadow);
}
.theme-card .tc-crest {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.theme-card .tc-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.theme-card .tc-score {
  margin-left: auto;
  font-family: var(--font-score);
  font-weight: 700;
  font-size: 22px;
}

.swatch-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.swatch i {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
}

.studio-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 38px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 34px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) {
  .studio-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 22px;
  }
}

.ss-kicker {
  font-size: 11px;
}

.ss-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 9px 0 0;
  text-wrap: pretty;
}
.ss-text b {
  color: var(--ink);
  font-weight: 600;
}

.ss-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.ss-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ss-contact {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface-2);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.ss-contact .ss-ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-tint);
  color: var(--brand-strong);
  transition: 0.18s ease;
}
.ss-contact .ss-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ss-contact .ss-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ss-contact .ss-val {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  word-break: break-word;
}
.ss-contact .ss-arrow {
  flex: none;
  margin-left: auto;
  color: var(--muted);
  transform: translateX(-3px);
  opacity: 0;
  transition: 0.18s ease;
}
.ss-contact:hover, .ss-contact:focus-visible {
  border-color: var(--brand-soft);
  background: var(--brand-tint);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  outline: none;
}
.ss-contact:hover .ss-ic, .ss-contact:focus-visible .ss-ic {
  background: var(--brand);
  color: #fff;
}
.ss-contact:hover .ss-val, .ss-contact:focus-visible .ss-val {
  color: var(--brand-strong);
}
.ss-contact:hover .ss-arrow, .ss-contact:focus-visible .ss-arrow {
  color: var(--brand-strong);
  transform: translateX(0);
  opacity: 1;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}
@media (max-width: 920px) {
  .lp-steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 10px 0 7px;
}
.step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.step h3 code,
.step p code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--brand-tint);
  color: var(--brand-strong);
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
}

.step-n {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
}

.code-block {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
}
.code-block pre {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.85;
  color: #cdd9ec;
}
.code-block .c-com {
  color: #6f86a8;
}
.code-block .c-cmd {
  color: #eaf1fb;
}
.code-block .c-tok {
  color: #8fb4e0;
}

.lp-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 920px) {
  .lp-ai-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.ai-points {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 24px;
}

.ai-point {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.ai-point svg {
  color: var(--brand);
  flex: none;
}

.ai-term pre {
  line-height: 1.75;
}
.ai-term .ai-u {
  color: #eaf1fb;
  font-weight: 600;
}
.ai-term .ai-a {
  color: #8fb4e0;
}
.ai-term .ai-ok {
  color: #7fcf9f;
  font-weight: 600;
}

.lp-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 56px 40px;
  text-align: center;
  color: #eaf1fb;
  background: linear-gradient(150deg, var(--navy), #0b1726);
  box-shadow: var(--shadow-lg);
}
.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 50% -20%, rgba(123, 151, 200, 0.3), transparent 60%);
}
@media (max-width: 640px) {
  .lp-cta {
    padding: 42px 22px;
  }
}

.lp-cta-inner {
  position: relative;
}

.lp-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.lp-cta p {
  font-size: 16px;
  color: #b9c8df;
  margin: 14px auto 28px;
  max-width: 480px;
}

.lp-cta-btns {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo-mark {
  flex: none;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgba(22, 39, 60, 0.18);
}

.logo-text .logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
}
.logo-text .logo-name b {
  color: var(--brand);
  font-weight: 700;
}
.logo-text .logo-sub {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

.os-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-strong);
  background: var(--brand-tint);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  padding: 4px 9px;
  border-radius: 100px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 26px 22px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-credit .fc-text {
  font-size: 13px;
  color: var(--ink-2);
}
.footer-credit .fc-text b {
  color: var(--ink);
  font-weight: 700;
}
.footer-credit .fc-text a {
  color: var(--brand-strong);
  text-decoration: none;
  font-weight: 600;
}

.footer-meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}

/*# sourceMappingURL=main.css.map */
