/* [project]/app/(marketing)/landing.css [app-client] (css) */
:root {
  --bg: #fafaf7;
  --bg-2: #f2f1ec;
  --fg: #0a0a0a;
  --fg-2: #1f1f1b;
  --fg-muted: #5a5a55;
  --fg-subtle: #8a8a85;
  --accent: #2be38a;
  --accent-deep: #00b86a;
  --accent-dark: #006b3d;
  --card: #fff;
  --border: #e8e6df;
  --border-strong: #1a1a1a;
  --shadow-lift: 0 1px 0 rgba(0, 0, 0, .04), 0 24px 60px -20px rgba(0, 0, 0, .08);
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-feature-settings: "ss06", "ss07", "cv01";
  letter-spacing: -.011em;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 1;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

::selection {
  background: var(--accent);
  color: var(--fg);
}

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

button {
  cursor: pointer;
  color: inherit;
  background: none;
  border: none;
  font-family: inherit;
}

.container {
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.num {
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
}

.mono {
  font-family: var(--mono);
}

h1, h2, h3 {
  letter-spacing: -.035em;
  font-weight: 700;
  line-height: 1.14;
}

.hdr {
  z-index: 100;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 247, .78);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.hdr-inner {
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  display: flex;
}

.nav {
  gap: 32px;
  display: flex;
}

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

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

.hdr-right {
  align-items: center;
  gap: 12px;
  display: flex;
}

.hdr-login {
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}

.hdr-login:hover {
  color: var(--fg);
}

.hdr-status {
  font-family: var(--mono);
  color: var(--fg-muted);
  border-right: 1px solid var(--border);
  align-items: center;
  gap: 6px;
  margin-right: 6px;
  padding-right: 14px;
  font-size: 11px;
  display: flex;
}

.status-dot {
  background: var(--accent-deep);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s ease-in-out infinite pulse;
  box-shadow: 0 0 0 3px rgba(43, 227, 138, .18);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(43, 227, 138, .18);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(43, 227, 138, .08);
  }
}

.logo {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.logo-mark {
  background: var(--fg);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo-mark:before {
  content: "";
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 40%, rgba(43, 227, 138, .3) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.logo-dot {
  background: var(--accent);
  z-index: 1;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  position: relative;
}

.logo-text {
  letter-spacing: -.03em;
  font-size: 21px;
  font-weight: 700;
}

.btn {
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: all .18s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14.5px;
}

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

.btn-primary {
  background: var(--fg);
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 1px 2px rgba(0, 0, 0, .1);
}

.btn-primary:hover {
  background: var(--fg-2);
  transform: translateY(-1px);
  box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 8px 24px -8px rgba(0, 0, 0, .25);
}

.btn-ghost {
  color: var(--fg);
  border: 1px solid var(--border);
  background: none;
}

.btn-ghost:hover {
  background: var(--card);
  border-color: var(--fg);
}

.btn-accent {
  background: var(--accent);
  color: var(--fg);
  font-weight: 600;
  box-shadow: inset 0 1px rgba(255, 255, 255, .3);
}

.btn-accent:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-on-dark {
  color: #fff;
  background: none;
  border: 1px solid rgba(255, 255, 255, .18);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, .06);
  border-color: #fff;
}

.btn-arrow {
  transition: transform .18s;
  display: inline-block;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.pill {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--fg-muted);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 16px 7px 11px;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
}

.pill-tag {
  font-family: var(--mono);
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  background: rgba(43, 227, 138, .15);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  animation: .9s cubic-bezier(.16, 1, .3, 1) forwards reveal;
  transform: translateY(20px);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-1 {
  animation-delay: 50ms;
}

.reveal-2 {
  animation-delay: .15s;
}

.reveal-3 {
  animation-delay: .25s;
}

.reveal-4 {
  animation-delay: .35s;
}

.reveal-5 {
  animation-delay: .45s;
}

.reveal-6 {
  animation-delay: .6s;
}

.s-reveal {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(28px);
}

.s-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: 1.15fr 1fr;
  align-items: start;
  gap: 80px;
  display: grid;
}

.hero-left {
  padding-top: 16px;
}

.hero h1 {
  letter-spacing: -.044em;
  margin: 24px 0;
  font-size: 78px;
  font-weight: 700;
  line-height: 1.14;
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent {
  color: var(--fg);
  background: var(--accent);
  border-radius: 6px;
  margin: 0 2px;
  padding: 2px 14px;
  line-height: 1;
  display: inline-block;
  transform: translateY(-4px);
}

.hero-sub {
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 32px;
  font-size: 22px;
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  display: flex;
}

.hero-perks {
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 28px;
  display: flex;
}

.perk {
  color: var(--fg-muted);
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  display: flex;
}

.perk svg {
  width: 15px;
  height: 15px;
  color: var(--accent-deep);
  flex-shrink: 0;
}

.hero-demo {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.demo-bar {
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  display: flex;
}

.demo-dots {
  gap: 7px;
  display: flex;
}

.demo-dot {
  opacity: .7;
  border-radius: 50%;
  width: 11px;
  height: 11px;
}

.demo-path {
  font-family: var(--mono);
  color: var(--fg-subtle);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11.5px;
}

.demo-body {
  padding: 22px;
}

.demo-h {
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  display: flex;
}

.demo-h-title {
  font-size: 14.5px;
  font-weight: 600;
}

.demo-h-meta {
  font-family: var(--mono);
  color: var(--fg-subtle);
  font-size: 11.5px;
}

.chart {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 18px 18px 12px;
  position: relative;
}

.chart-header {
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  display: flex;
}

.chart-label {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 10.5px;
}

.chart-value {
  letter-spacing: -.022em;
  font-size: 22px;
  font-weight: 700;
}

.chart-value-unit {
  color: var(--fg-muted);
  margin-left: 3px;
  font-size: 13px;
  font-weight: 500;
}

.chart-bars {
  align-items: flex-end;
  gap: 4px;
  height: 56px;
  display: flex;
}

.chart-bar {
  background: var(--bg-2);
  border-radius: 3px 3px 0 0;
  flex: 1;
  transition: background .2s;
  position: relative;
}

.chart-bar.active {
  background: var(--fg);
}

.chart-bar.peak, .chart-bar:hover {
  background: var(--accent-deep);
}

.chart-xlabels {
  font-family: var(--mono);
  color: var(--fg-subtle);
  justify-content: space-between;
  margin-top: 6px;
  font-size: 9.5px;
  display: flex;
}

.demo-models {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.demo-models-h {
  justify-content: space-between;
  margin-bottom: 14px;
  display: flex;
}

.demo-models-stack {
  border-radius: 4px;
  height: 8px;
  margin-bottom: 14px;
  display: flex;
  overflow: hidden;
}

.demo-models-stack span {
  height: 100%;
  display: block;
}

.demo-models-legend {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.demo-legend-row {
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  display: flex;
}

.demo-legend-left {
  color: var(--fg-muted);
  align-items: center;
  gap: 8px;
  display: flex;
}

.demo-legend-dot {
  border-radius: 2px;
  width: 8px;
  height: 8px;
}

.demo-legend-val {
  font-family: var(--mono);
  font-weight: 500;
}

.demo-notif {
  background: rgba(43, 227, 138, .1);
  border: 1px solid rgba(43, 227, 138, .25);
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 11px 14px;
  display: flex;
}

.demo-notif-icon {
  background: var(--accent-deep);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.demo-notif-body {
  font-size: 13.5px;
  line-height: 1.45;
}

.demo-notif-body strong {
  font-weight: 600;
}

.demo-notif-body span {
  color: var(--fg-muted);
}

.hairline-stats {
  background: var(--fg);
  color: var(--paper, #fafaf7);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.hairline-stats:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .024) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 48px 48px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.ticker-wrap {
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.ticker-inner {
  background: rgba(255, 255, 255, .016);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.ticker-live {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .024);
  border-right: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  font-size: 10.5px;
  display: flex;
}

.ticker-live-dot {
  background: var(--accent);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2s ease-in-out infinite pulse;
  box-shadow: 0 0 0 3px rgba(43, 227, 138, .2);
}

.ticker-stats {
  flex: 1;
  display: flex;
  overflow-x: auto;
}

.ticker-stat {
  border-right: 1px solid rgba(255, 255, 255, .08);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  min-width: 0;
  padding: 16px 24px;
  transition: background .2s;
  display: flex;
}

.ticker-stat:hover {
  background: rgba(255, 255, 255, .03);
}

.ticker-stat:last-child {
  border-right: none;
}

.ticker-stat-label {
  font-family: var(--mono);
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
  font-size: 11px;
}

.ticker-stat-row {
  align-items: baseline;
  gap: 10px;
  display: flex;
}

.ticker-stat-value {
  letter-spacing: -.025em;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.ticker-stat-value .unit {
  color: rgba(255, 255, 255, .4);
  margin-left: 2px;
  font-size: 13px;
  font-weight: 500;
}

.ticker-stat-delta {
  font-family: var(--mono);
  color: var(--accent);
  background: rgba(43, 227, 138, .12);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 11.5px;
  font-weight: 500;
}

.ticker-stat-delta.neutral {
  color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .05);
}

section {
  padding: 120px 0;
}

.section-bg-card {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.eyebrow {
  font-family: var(--mono);
  color: var(--accent-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 11.5px;
  font-weight: 500;
  display: inline-flex;
}

.eyebrow:before {
  content: "";
  background: var(--accent-dark);
  width: 14px;
  height: 1px;
}

.section-h {
  letter-spacing: -.04em;
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 1.14;
}

.section-deck {
  color: var(--fg-muted);
  max-width: 600px;
  font-size: 19px;
  line-height: 1.6;
}

.flow {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  margin-top: 56px;
  display: grid;
}

.flow-arrow {
  color: var(--fg-subtle);
  font-family: var(--mono);
  justify-content: center;
  align-items: center;
  font-size: 18px;
  display: flex;
}

.flow-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  flex-direction: column;
  padding: 28px 26px;
  transition: all .28s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
}

.flow-card:hover {
  border-color: var(--fg);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, .12);
}

.flow-card-num {
  background: var(--bg-2);
  width: 26px;
  height: 26px;
  font-family: var(--mono);
  color: var(--fg-2);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.flow-card.is-auto .flow-card-num {
  background: var(--accent);
  color: var(--fg);
}

.flow-card h3 {
  letter-spacing: -.025em;
  margin-bottom: 12px;
  font-size: 23px;
}

.flow-card p {
  color: var(--fg-muted);
  flex: 1;
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.65;
}

.flow-card-tech {
  font-family: var(--mono);
  color: var(--fg-subtle);
  border-top: 1px dashed var(--border);
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  font-size: 12.5px;
  display: flex;
}

.flow-card-tech span {
  background: var(--bg-2);
  color: var(--fg-muted);
  border-radius: 4px;
  padding: 2px 8px;
}

.models-grid {
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
  gap: 64px;
  display: grid;
}

.models-left {
  flex-direction: column;
  display: flex;
}

.models-aside {
  flex-direction: column;
  min-height: 0;
  display: flex;
}

.models-aside-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 28px;
  display: flex;
  overflow: hidden;
}

.models-aside-card h3 {
  letter-spacing: -.022em;
  margin-bottom: 10px;
  font-size: 23px;
}

.models-aside-desc {
  color: var(--fg-muted);
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.65;
}

.code-block {
  font-family: var(--mono);
  background: var(--fg);
  color: #e5e5e0;
  border-radius: 12px;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 18px 20px;
  font-size: 12px;
  line-height: 1.7;
  display: flex;
  position: relative;
  overflow: hidden;
}

.code-block pre {
  font-family: var(--mono);
  white-space: pre;
  color: #e5e5e0;
  flex: 1;
  min-height: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  overflow: auto;
}

.code-header {
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 0 12px;
  font-size: 10.5px;
  display: flex;
}

.code-header-tag {
  color: var(--accent);
}

.code-comment {
  color: #6b655b;
}

.code-string {
  color: var(--accent);
}

.code-keyword {
  color: #ffb86c;
}

.code-prop {
  color: #8ab7ff;
}

.code-fn {
  color: #c2e5ff;
}

.models-aside-foot {
  color: var(--fg-subtle);
  border-top: 1px dashed var(--border);
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  display: flex;
}

.models-aside-foot:before {
  content: "●";
  color: var(--accent-dark);
  margin-top: 5px;
  font-size: 9px;
}

.model-rows {
  border-top: 1px solid var(--fg);
  flex-direction: column;
  flex: 1;
  display: flex;
}

.model-row {
  border-bottom: 1px solid var(--border);
  flex: 1;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  transition: all .2s;
  display: grid;
}

.model-row:hover {
  padding-left: 8px;
  padding-right: 8px;
}

.model-row-left {
  align-items: center;
  gap: 18px;
  display: flex;
}

.model-glyph {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  overflow: hidden;
}

.model-glyph svg {
  width: 22px;
  height: 22px;
  display: block;
}

.model-glyph-Anthropic {
  background: #f5efe7;
}

.model-glyph-OpenAI {
  background: #e8f1ec;
}

.model-glyph-Google {
  background: #eceef7;
}

.model-glyph-DeepSeek {
  background: #e8eef7;
}

.model-info-top {
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
  display: flex;
}

.model-info-name {
  letter-spacing: -.018em;
  font-size: 18px;
  font-weight: 700;
}

.model-info-maker {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 11.5px;
}

.model-info-tag {
  color: var(--fg-muted);
  font-size: 13.5px;
}

.model-row-right {
  text-align: right;
  font-family: var(--mono);
  grid-template-columns: auto auto;
  gap: 4px 20px;
  font-size: 14px;
  display: grid;
}

.model-price-label {
  color: var(--fg-subtle);
}

.model-price-value {
  font-weight: 500;
}

.calc-section {
  padding: 120px 0;
}

.calc-grid {
  grid-template-columns: 1fr 1.3fr;
  align-items: start;
  gap: 72px;
  display: grid;
}

.calc-left h2 {
  margin-bottom: 24px;
  font-size: 52px;
  line-height: 1.16;
}

.calc-left h2 .accent {
  color: #fff;
  background: var(--fg);
  border-radius: 6px;
  margin: 0 2px;
  padding: 2px 12px;
  line-height: 1;
  display: inline-block;
  transform: translateY(-3px);
}

.calc-left p {
  color: var(--fg-muted);
  max-width: 460px;
  margin-bottom: 36px;
  font-size: 18px;
  line-height: 1.7;
}

.calc-controls {
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 28px;
  padding: 28px 0 0;
  display: flex;
}

.calc-control {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.calc-control-top {
  justify-content: space-between;
  align-items: baseline;
  display: flex;
}

.calc-control-label {
  font-family: var(--mono);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.calc-control-value {
  letter-spacing: -.022em;
  font-size: 24px;
  font-weight: 700;
}

.calc-control-value .unit {
  color: var(--fg-muted);
  margin-left: 4px;
  font-size: 14.5px;
  font-weight: 500;
}

input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--border);
  cursor: pointer;
  border-radius: 999px;
  outline: none;
  width: 100%;
  height: 6px;
}

input[type="range"]::-webkit-slider-runnable-track {
  border-radius: 999px;
  height: 6px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--fg);
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  margin-top: -8px;
  transition: transform .15s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.08);
}

input[type="range"]::-moz-range-thumb {
  background: var(--fg);
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

.calc-result {
  background: var(--fg);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.calc-grid-bg {
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .024) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 32px 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.calc-result-inner {
  z-index: 1;
  position: relative;
}

.calc-result-head {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  display: flex;
}

.calc-result-tag {
  font-family: var(--mono);
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
}

.calc-result-live {
  font-family: var(--mono);
  color: var(--accent);
  align-items: center;
  gap: 6px;
  font-size: 11px;
  display: flex;
}

.calc-result-live .dot {
  background: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s ease-in-out infinite pulse;
}

.calc-headline {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 8px;
  font-size: 17px;
}

.calc-amount {
  letter-spacing: -.04em;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 36px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

.calc-amount .unit {
  color: rgba(255, 255, 255, .55);
  font-size: 18px;
  font-weight: 500;
}

.bars {
  flex-direction: column;
  gap: 18px;
  display: flex;
}

.bar-row {
  grid-template-columns: 1fr;
  gap: 8px;
  display: grid;
}

.bar-label {
  justify-content: space-between;
  font-size: 14px;
  display: flex;
}

.bar-label-name {
  color: rgba(255, 255, 255, .7);
}

.bar-label-value {
  font-family: var(--mono);
  color: #fff;
  font-weight: 500;
}

.bar-track {
  background: rgba(255, 255, 255, .06);
  border-radius: 5px;
  height: 10px;
  overflow: hidden;
}

.bar-fill {
  border-radius: 5px;
  height: 100%;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
}

.bar-fill-muted {
  background: rgba(255, 255, 255, .3);
}

.bar-fill-accent {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(43, 227, 138, .4);
}

.bar-fill-bad {
  background: #ffa28a;
}

.calc-total {
  border-top: 1px solid rgba(255, 255, 255, .08);
  justify-content: space-between;
  align-items: baseline;
  margin-top: 28px;
  padding-top: 20px;
  display: flex;
}

.calc-total-label {
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
}

.calc-total-value {
  color: var(--accent);
  letter-spacing: -.025em;
  font-size: 28px;
  font-weight: 700;
}

.why-grid {
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  display: grid;
  overflow: hidden;
}

.why-card {
  background: var(--bg);
  flex-direction: column;
  grid-column: span 2;
  padding: 36px 32px;
  transition: background .2s;
  display: flex;
}

.why-card:hover {
  background: var(--card);
}

.why-card.wide {
  grid-column: span 3;
}

.why-card.feature {
  background: var(--fg);
  color: #fff;
  grid-column: span 6;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 48px 40px;
  display: grid;
}

.why-num {
  font-family: var(--mono);
  color: var(--fg-subtle);
  letter-spacing: .05em;
  margin-bottom: 16px;
  font-size: 11.5px;
}

.why-card.feature .why-num {
  color: rgba(255, 255, 255, .4);
}

.why-h {
  letter-spacing: -.025em;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.why-card.feature .why-h {
  letter-spacing: -.035em;
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.1;
}

.why-card.feature .why-h em {
  color: var(--fg);
  background: var(--accent);
  border-radius: 4px;
  margin: 0 2px;
  padding: 2px 10px;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  transform: translateY(-2px);
}

.why-body {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

.why-card.feature .why-body {
  color: rgba(255, 255, 255, .72);
  font-size: 16.5px;
  line-height: 1.65;
}

.testimonial-section {
  background: var(--bg-2);
  padding: 120px 0;
}

.testimonial-head {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
  display: grid;
}

.testimonial-aside {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-align: right;
  font-size: 11px;
  line-height: 1.6;
}

.testimonial-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  display: grid;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all .3s;
  position: relative;
}

.testimonial:hover {
  border-color: var(--fg);
  transform: translateY(-3px);
}

.testimonial-meta {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px dashed var(--border);
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  font-size: 10.5px;
  display: flex;
}

.testimonial-text {
  letter-spacing: -.015em;
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  display: flex;
}

.testimonial-avatar {
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-2) 100%);
  color: #fff;
  letter-spacing: -.015em;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.testimonial-name {
  letter-spacing: -.015em;
  font-size: 15.5px;
  font-weight: 700;
}

.testimonial-role {
  color: var(--fg-muted);
  margin-top: 2px;
  font-size: 13.5px;
}

.cta-section {
  padding: 80px 0 120px;
}

.cta {
  background: var(--fg);
  color: #fff;
  border-radius: 28px;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 72px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.cta-grid-bg {
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 48px 48px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.cta-accent {
  pointer-events: none;
  background: radial-gradient(circle, rgba(43, 227, 138, .12) 0%, rgba(0, 0, 0, 0) 60%);
  width: 600px;
  height: 600px;
  position: absolute;
  top: -50%;
  right: -10%;
}

.cta-inner {
  z-index: 1;
  position: relative;
}

.cta h2 {
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 24px;
  padding-top: 4px;
  font-size: 56px;
  line-height: 1.18;
}

.cta h2 em {
  color: var(--fg);
  background: var(--accent);
  border-radius: 4px;
  margin: 0 2px;
  padding: 2px 12px;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  transform: translateY(-2px);
}

.cta-sub {
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin-bottom: 36px;
  font-size: 18.5px;
  line-height: 1.6;
}

.cta-actions {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.cta-aside {
  z-index: 1;
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding-left: 36px;
  position: relative;
}

.cta-aside-label {
  font-family: var(--mono);
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  font-size: 11px;
}

.cta-aside-list {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.cta-aside-item {
  color: rgba(255, 255, 255, .88);
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
}

.cta-aside-check {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  border-bottom: 1px solid var(--border);
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
  padding-bottom: 48px;
  display: grid;
}

.footer-brand-desc {
  color: var(--fg-muted);
  max-width: 340px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-runs {
  font-family: var(--mono);
  color: var(--fg-subtle);
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 11.5px;
  display: flex;
}

.footer-col-h {
  letter-spacing: -.01em;
  color: var(--fg);
  margin-bottom: 18px;
  font-size: 13.5px;
  font-weight: 600;
}

.footer-col {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.footer-col a {
  color: var(--fg-muted);
  font-size: 14.5px;
  transition: color .15s;
}

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

.footer-bottom {
  font-family: var(--mono);
  color: var(--fg-subtle);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  display: flex;
}

.footer-legal {
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  padding: 24px 0;
}

.footer-legal-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  display: grid;
}

.footer-legal-row {
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
}

.footer-legal-row-full {
  grid-column: 1 / -1;
}

.footer-legal-label {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
  min-width: 100px;
  font-size: 11px;
}

.footer-legal-value {
  color: var(--fg-muted);
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-demo {
    max-width: 580px;
  }

  .models-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .models-aside {
    position: static;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-card, .why-card.wide {
    grid-column: span 3;
  }

  .why-card.feature {
    grid-column: span 6;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px;
  }

  .cta-aside {
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: none;
    padding-top: 32px;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  section, .calc-section, .testimonial-section {
    padding: 80px 0;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .section-h, .calc-left h2, .cta h2 {
    font-size: 36px !important;
  }

  .hairline-grid, .ticker-stats {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .ticker-stat {
    min-width: 160px;
    padding: 16px 24px;
  }

  .ticker-live {
    padding: 16px 20px;
  }

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

  .flow-arrow {
    padding: 8px 0;
    transform: rotate(90deg);
  }

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

  .why-card, .why-card.wide, .why-card.feature {
    grid-column: span 1;
  }

  .testimonial-grid, .testimonial-head {
    grid-template-columns: 1fr;
  }

  .testimonial-aside {
    text-align: left;
  }

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

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

  .nav, .hdr-status {
    display: none;
  }

  .cta {
    padding: 40px 32px;
  }

  .cta-amount, .calc-amount {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-actions, .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

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

/*# sourceMappingURL=app_%28marketing%29_landing_866a6e4a.css.map*/