/* [project]/apps/landing/src/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light dark;
  --brand-50: #eef5fc;
  --brand-100: #dcebf9;
  --brand-200: #bcd8f2;
  --brand-400: #6aa6e2;
  --brand-500: #4a90d9;
  --brand-600: #2f74c0;
  --brand-700: #255e9e;
  --brand-800: #1e4d81;
  --grad-brand: linear-gradient(135deg, #5b9de0, #2f74c0 60%, #245e9e);
  --grad-text: linear-gradient(120deg, #4a90d9, #6a5cd9);
  --bg: #fff;
  --bg-subtle: #f4f7fc;
  --bg-elev: #fff;
  --bg-glass: #ffffffb8;
  --fg: #0d1526;
  --fg-muted: #566072;
  --fg-faint: #8b95a6;
  --border: #e7ecf4;
  --border-strong: #d5dee9;
  --ok: #1eae53;
  --ring: color-mix(in srgb, var(--brand-500) 55%, transparent);
  --shadow-sm: 0 1px 2px #0d15260a, 0 1px 3px #0d15260f;
  --shadow-md: 0 6px 16px -6px #0d15261a, 0 16px 40px -16px #0d152629;
  --shadow-lg: 0 40px 90px -36px #1f4f8573, 0 12px 32px -18px #0d152633;
  --glow-brand: 0 30px 80px -30px #4a90d98c;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-pill: 999px;
  --maxw: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --lightningcss-light: ;
    --lightningcss-dark: initial;
    --brand-50: #12233a;
    --brand-100: #16304f;
    --brand-200: #1d3f66;
    --bg: #070b14;
    --bg-subtle: #0b111f;
    --bg-elev: #101828;
    --bg-glass: #101828a8;
    --fg: #eaf0f9;
    --fg-muted: #a6b5cb;
    --fg-faint: #6b7a92;
    --border: #1c2637;
    --border-strong: #2a3852;
    --shadow-md: 0 6px 16px -6px #00000080, 0 16px 40px -16px #0009;
    --shadow-lg: 0 40px 100px -34px #000000bf, 0 12px 32px -18px #0009;
    --glow-brand: 0 30px 90px -30px #4a90d966;
  }
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  margin: 0;
  line-height: 1.6;
}

h1, h2, h3 {
  letter-spacing: -.025em;
  color: var(--fg);
  margin: 0;
  line-height: 1.08;
}

p {
  margin: 0;
}

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

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--brand-500) 12%, transparent),
    color-mix(in srgb, var(--brand-500) 5%, transparent));
  border: 1px solid color-mix(in srgb, var(--brand-500) 24%, transparent);
  border-radius: var(--radius-pill);
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  box-shadow: inset 0 1px #ffffff80;
}

.section {
  padding-block: clamp(64px, 10vw, 120px);
}

.section-head {
  text-align: center;
  margin-inline: auto;
  max-width: 660px;
  margin-bottom: 56px;
}

.section-head h2 {
  margin-top: 18px;
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 750;
}

.section-head p {
  color: var(--fg-muted);
  margin-top: 18px;
  font-size: 18px;
}

.btn {
  font: inherit;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: transform .18s cubic-bezier(.16, 1, .3, 1), box-shadow .25s, filter .2s;
  display: inline-flex;
  position: relative;
}

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

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 8px 22px -8px #2f74c0b3, inset 0 1px #ffffff47;
}

.btn-primary:hover {
  filter: saturate(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px #2f74c0bf, inset 0 1px #ffffff4d;
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--fg);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  border-color: var(--brand-400);
  color: var(--brand-700);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.site-header {
  z-index: 50;
  background: var(--bg-glass);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.site-header .bar {
  justify-content: space-between;
  align-items: center;
  height: 70px;
  display: flex;
}

.nav-links {
  align-items: center;
  gap: 32px;
  display: flex;
}

.nav-links a {
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color .15s;
}

.nav-links a:hover {
  color: var(--fg);
}

.header-cta {
  align-items: center;
  gap: 14px;
  display: flex;
}

.header-cta .ghost {
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
}

.header-cta .ghost:hover {
  color: var(--fg);
}

.logo {
  letter-spacing: -.02em;
  color: var(--fg);
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  display: inline-flex;
}

.logo svg {
  border-radius: 10px;
  width: 32px;
  height: 32px;
  display: block;
  box-shadow: 0 4px 12px -4px #2f74c099;
}

.hero {
  padding-top: clamp(56px, 9vw, 104px);
  padding-bottom: clamp(48px, 8vw, 88px);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-bg .glow {
  background: radial-gradient(44% 60% at 72% 8%,
      #6a5cd938,
      transparent 72%),
    radial-gradient(50% 62% at 26% 0%,
      color-mix(in srgb, var(--brand-500) 26%, transparent),
      transparent 70%);
  filter: blur(6px);
  height: 760px;
  position: absolute;
  inset: -30% -10% auto;
}

.hero-bg .grid {
  background-image: linear-gradient(to right, color-mix(in srgb, var(--fg) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--fg) 6%, transparent) 1px, transparent 1px);
  opacity: .7;
  background-size: 56px 56px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(70% 55% at 50% 22%, #000 30%, #0000 75%);
  mask-image: radial-gradient(70% 55% at 50% 22%, #000 30%, #0000 75%);
}

.hero-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  display: grid;
}

.hero h1 {
  letter-spacing: -.035em;
  margin-top: 24px;
  font-size: clamp(38px, 6.2vw, 64px);
  font-weight: 800;
}

.hero h1 .accent {
  background: var(--grad-text);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  color: var(--fg-muted);
  max-width: 36ch;
  margin-top: 24px;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  display: flex;
}

.hero-trust {
  color: var(--fg-faint);
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14px;
  display: flex;
}

.hero-trust .dot {
  background: var(--ok);
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ok) 20%, transparent);
  border-radius: 50%;
}

.hero-visual {
  perspective: 1600px;
  position: relative;
}

.mock {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--glow-brand);
  aspect-ratio: 4 / 3.35;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  transform: rotateY(-7deg)rotateX(3deg);
}

.mock:after {
  content: "";
  border-radius: inherit;
  -webkit-mask-composite: xor;
  pointer-events: none;
  background: linear-gradient(150deg, #ffffffb3, #0000 40%);
  padding: 1px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.hero-visual:hover .mock {
  transform: rotateY(0)rotateX(0);
}

.mock-top {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-subtle), transparent);
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  display: flex;
}

.mock-top .name {
  font-size: 15px;
  font-weight: 700;
}

.badge {
  border-radius: var(--radius-pill);
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.badge-offline {
  color: #a15c00;
  background: #dc8f0926;
  border: 1px solid #dc8f0947;
}

.badge .pulse {
  background: currentColor;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 1.8s ease-in-out infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: .35;
  }

  50% {
    opacity: 1;
  }
}

.mock-body {
  padding: 18px 20px;
}

.order-row {
  border-bottom: 1px dashed var(--border);
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  display: flex;
}

.order-row .q {
  color: var(--fg-muted);
}

.order-row .p {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.mock-total {
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  font-size: 15px;
  display: flex;
}

.mock-total .amt {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  font-size: 24px;
  font-weight: 800;
}

.mock-sync {
  width: fit-content;
  color: var(--brand-700);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--brand-500) 12%, transparent),
    color-mix(in srgb, var(--brand-500) 6%, transparent));
  border: 1px solid color-mix(in srgb, var(--brand-500) 22%, transparent);
  border-radius: 13px;
  align-items: center;
  gap: 8px;
  margin: 16px 20px 20px;
  padding: 10px 13px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
}

.float-card {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  display: flex;
  position: absolute;
  bottom: 30px;
  right: -18px;
}

.float-card .spark {
  background: var(--grad-brand);
  color: #fff;
  border-radius: 11px;
  place-items: center;
  width: 38px;
  height: 38px;
  display: grid;
  box-shadow: 0 6px 16px -6px #2f74c0b3;
}

.float-card .fc-num {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  font-size: 17px;
  font-weight: 800;
}

.float-card .fc-label {
  color: var(--fg-muted);
  align-items: center;
  gap: 6px;
  font-size: 12px;
  display: flex;
}

.float-card .fc-label:before {
  content: "";
  background: var(--ok);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok) 22%, transparent);
  border-radius: 50%;
}

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-subtle), transparent);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-block: 44px;
  display: grid;
}

.stat {
  text-align: center;
  padding-inline: 20px;
}

.stat + .stat {
  border-left: 1px solid var(--border);
}

.stat .num {
  background: var(--grad-text);
  color: #0000;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.03em;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
}

.stat .label {
  color: var(--fg-muted);
  margin-top: 6px;
  font-size: 14px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  display: grid;
}

.price-base {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-subtle));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
  padding: 28px;
  display: flex;
}

.price-base h3 {
  margin: 0 0 6px;
}

.price-base p {
  color: var(--fg-muted);
  max-width: 46ch;
  margin: 0;
}

.price-tag .amt {
  background: var(--grad-text);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.9rem;
  font-weight: 700;
}

.price-tag .unit {
  color: var(--fg-faint);
  font-size: .9rem;
  font-weight: 500;
}

.price-card .price-tag {
  margin-bottom: 12px;
}

.price-note {
  text-align: center;
  color: var(--fg-muted);
  margin-top: 26px;
}

.feature {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-subtle));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s, border-color .25s;
  position: relative;
}

.feature:hover {
  box-shadow: var(--shadow-md),
    0 30px 60px -34px #4a90d973;
  border-color: color-mix(in srgb, var(--brand-500) 40%, var(--border));
  transform: translateY(-4px);
}

.feature .icon {
  background: var(--grad-brand);
  color: #fff;
  border-radius: 14px;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  box-shadow: 0 8px 20px -8px #2f74c099;
}

.feature h3 {
  letter-spacing: -.01em;
  font-size: 18px;
  font-weight: 700;
}

.feature p {
  color: var(--fg-muted);
  margin-top: 9px;
  font-size: 15px;
}

.how {
  background: var(--bg-subtle);
  position: relative;
}

.steps {
  counter-reset: step;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.step {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 26px;
  position: relative;
}

.step .n {
  counter-increment: step;
  background: var(--grad-brand);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  font-weight: 800;
  display: grid;
  box-shadow: 0 8px 20px -8px #2f74c099;
}

.step .n:before {
  content: counter(step);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
}

.step p {
  color: var(--fg-muted);
  margin-top: 9px;
  font-size: 15px;
}

.highlight {
  color: #fff;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  background: radial-gradient(120% 140% at 12% 0, #2f74c0, #1e4d81 55%, #16345c);
  padding: clamp(48px, 7vw, 84px);
  position: relative;
  overflow: hidden;
}

.highlight:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(40% 60% at 85% 20%, #ffffff29, #0000 70%), radial-gradient(50% 60% at 15% 90%, #6a5cd959, #0000 70%);
  position: absolute;
  inset: 0;
}

.highlight > * {
  position: relative;
}

.highlight h2 {
  color: #fff;
  letter-spacing: -.03em;
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 800;
}

.highlight p {
  color: #ffffffd6;
  margin-top: 20px;
  max-width: 58ch;
  margin-inline: auto;
  font-size: 18px;
}

.faq {
  max-width: 780px;
  margin-inline: auto;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  margin-bottom: 12px;
  padding: 2px 20px;
  transition: border-color .2s;
}

.faq details[open] {
  border-color: color-mix(in srgb, var(--brand-500) 35%, var(--border));
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 650;
  list-style: none;
  display: flex;
}

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

.faq summary .chev {
  color: var(--brand-500);
  flex: none;
  transition: transform .25s;
}

.faq details[open] summary .chev {
  transform: rotate(180deg);
}

.faq .answer {
  color: var(--fg-muted);
  padding: 0 0 20px;
  font-size: 16px;
}

.cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-subtle));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), var(--glow-brand);
  padding: clamp(48px, 7vw, 84px);
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: "";
  background: radial-gradient(50% 60% at 50% 0%,
    color-mix(in srgb, var(--brand-500) 22%, transparent),
    transparent 70%);
  pointer-events: none;
  height: 340px;
  position: absolute;
  inset: -40% 20% auto;
}

.cta > * {
  position: relative;
}

.cta h2 {
  letter-spacing: -.03em;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
}

.cta p {
  color: var(--fg-muted);
  margin-top: 16px;
  font-size: 18px;
}

.cta .actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  display: flex;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
  padding-block: 60px 32px;
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  display: grid;
}

.footer-brand p {
  color: var(--fg-muted);
  max-width: 32ch;
  margin-top: 14px;
  font-size: 15px;
}

.footer-col h4 {
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--fg-faint);
  margin: 0 0 14px;
  font-size: 12.5px;
}

.footer-col a {
  color: var(--fg-muted);
  padding: 6px 0;
  font-size: 15px;
  transition: color .15s;
  display: block;
}

.footer-col a:hover {
  color: var(--brand-700);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  color: var(--fg-faint);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  font-size: 14px;
  display: flex;
}

@media (max-width: 1024px) {
  .hero {
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 52px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero h1 {
    font-size: clamp(38px, 6.6vw, 54px);
  }

  .hero-sub {
    max-width: 52ch;
    margin-inline: auto;
  }

  .hero-actions, .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 640px;
  }

  .mock {
    transform: none;
  }

  .float-card {
    bottom: -16px;
    right: -6px;
  }
}

@media (max-width: 900px) {
  .feature-grid, .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .stat:nth-child(3) {
    border-left: none;
  }

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

  .nav-links {
    display: none;
  }
}

@media (max-width: 560px) {
  .feature-grid, .steps {
    grid-template-columns: 1fr;
  }

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

  .stat + .stat {
    border-left: none;
  }

  .header-cta .ghost {
    display: none;
  }

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

  .float-card {
    bottom: -14px;
    right: 0;
  }
}

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