/* [project]/app/(marketing)/models/models.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;
  --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;
}

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, .nav a.is-active {
  color: var(--fg);
}

.nav a.is-active {
  font-weight: 600;
}

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

.hdr-login {
  color: var(--fg-muted);
  font-size: 14.5px;
  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-arrow {
  transition: transform .18s;
  display: inline-block;
}

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

.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;
}

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

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

.s-stagger > * {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(24px);
}

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

.s-stagger.is-visible > :first-child {
  transition-delay: 0s;
}

.s-stagger.is-visible > :nth-child(2) {
  transition-delay: 80ms;
}

.s-stagger.is-visible > :nth-child(3) {
  transition-delay: .16s;
}

.s-stagger.is-visible > :nth-child(4) {
  transition-delay: .24s;
}

.s-stagger.is-visible > :nth-child(5) {
  transition-delay: .32s;
}

.s-stagger.is-visible > :nth-child(6) {
  transition-delay: .4s;
}

.s-stagger.is-visible > :nth-child(7) {
  transition-delay: .48s;
}

.s-stagger.is-visible > :nth-child(8) {
  transition-delay: .56s;
}

.s-from-left {
  opacity: 0;
  transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1);
  transform: translateX(-32px);
}

.s-from-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.s-from-right {
  opacity: 0;
  transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1);
  transform: translateX(32px);
}

.s-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.main-model-card {
  opacity: 0;
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1), border-color .3s, box-shadow .3s;
  transform: translateY(28px);
}

.main-models.is-visible .main-model-card {
  opacity: 1;
  transform: translateY(0);
}

.main-models.is-visible .main-model-card:first-child {
  transition-delay: 50ms, 50ms, 0s, 0s;
}

.main-models.is-visible .main-model-card:nth-child(2) {
  transition-delay: .18s, .18s, 0s, 0s;
}

.main-models.is-visible .main-model-card:nth-child(3) {
  transition-delay: .31s, .31s, 0s, 0s;
}

.main-models.is-visible .main-model-card:nth-child(4) {
  transition-delay: .44s, .44s, 0s, 0s;
}

.main-models.is-visible .main-model-card:hover {
  transition-delay: 0s !important;
}

.open-model-card {
  opacity: 0;
  transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1), border-color .25s, box-shadow .25s;
  transform: translateY(22px);
}

.open-models.is-visible .open-model-card {
  opacity: 1;
  transform: translateY(0);
}

.open-models.is-visible .open-model-card:first-child {
  transition-delay: 50ms, 50ms, 0s, 0s;
}

.open-models.is-visible .open-model-card:nth-child(2) {
  transition-delay: .13s, .13s, 0s, 0s;
}

.open-models.is-visible .open-model-card:nth-child(3) {
  transition-delay: .21s, .21s, 0s, 0s;
}

.open-models.is-visible .open-model-card:nth-child(4) {
  transition-delay: .29s, .29s, 0s, 0s;
}

.open-models.is-visible .open-model-card:nth-child(5) {
  transition-delay: .37s, .37s, 0s, 0s;
}

.open-models.is-visible .open-model-card:nth-child(6) {
  transition-delay: .45s, .45s, 0s, 0s;
}

.open-models.is-visible .open-model-card:nth-child(7) {
  transition-delay: .53s, .53s, 0s, 0s;
}

.open-models.is-visible .open-model-card:nth-child(8) {
  transition-delay: .61s, .61s, 0s, 0s;
}

.open-models.is-visible .open-model-card:hover {
  transition-delay: 0s !important;
}

.ranking-row {
  opacity: 0;
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1), background .2s;
  transform: translateX(-16px);
}

.ranking-wrap.is-visible .ranking-row {
  opacity: 1;
  transform: translateX(0);
}

.ranking-wrap.is-visible .ranking-row:nth-child(2) {
  transition-delay: .1s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(3) {
  transition-delay: .18s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(4) {
  transition-delay: .26s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(5) {
  transition-delay: .34s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(6) {
  transition-delay: .42s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(7) {
  transition-delay: .5s;
}

.ranking-bar-fill {
  background: var(--fg);
  border-radius: 3px;
  height: 100%;
  transition: width 1s cubic-bezier(.16, 1, .3, 1);
  width: 0 !important;
}

.ranking-wrap.is-visible .ranking-bar-fill {
  width: var(--bar-w, 0) !important;
}

.ranking-wrap.is-visible .ranking-row:nth-child(2) .ranking-bar-fill {
  transition-delay: .4s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(3) .ranking-bar-fill {
  transition-delay: .48s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(4) .ranking-bar-fill {
  transition-delay: .56s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(5) .ranking-bar-fill {
  transition-delay: .64s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(6) .ranking-bar-fill {
  transition-delay: .72s;
}

.ranking-wrap.is-visible .ranking-row:nth-child(7) .ranking-bar-fill {
  transition-delay: .8s;
}

.compare-demo-bar-fill {
  background: var(--accent);
  border-radius: 3px;
  height: 100%;
  transition: width 1.2s cubic-bezier(.16, 1, .3, 1);
  width: 0 !important;
}

.compare-cta.is-visible .compare-demo-bar-fill {
  width: var(--bar-w, 0) !important;
}

.compare-cta.is-visible .compare-demo-row:nth-child(2) .compare-demo-bar-fill {
  transition-delay: .3s;
}

.compare-cta.is-visible .compare-demo-row:nth-child(3) .compare-demo-bar-fill {
  transition-delay: .4s;
}

.compare-cta.is-visible .compare-demo-row:nth-child(4) .compare-demo-bar-fill {
  transition-delay: .5s;
}

.compare-cta.is-visible .compare-demo-row:nth-child(5) .compare-demo-bar-fill {
  transition-delay: .6s;
}

.compare-cta.is-visible .compare-demo-row:nth-child(6) .compare-demo-bar-fill {
  transition-delay: .7s;
}

.page-hero .eyebrow, .page-hero h1, .page-hero p, .page-hero-meta {
  opacity: 0;
  animation: .9s cubic-bezier(.16, 1, .3, 1) forwards heroReveal;
}

.page-hero .eyebrow {
  animation-delay: 50ms;
}

.page-hero h1 {
  animation-delay: .15s;
}

.page-hero p {
  animation-delay: .25s;
}

.page-hero-meta {
  animation-delay: .35s;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .s-reveal, .s-stagger > *, .s-from-left, .s-from-right, .main-model-card, .open-model-card, .ranking-row, .ranking-bar-fill, .compare-demo-bar-fill, .page-hero .eyebrow, .page-hero h1, .page-hero p, .page-hero-meta {
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .ranking-bar-fill, .compare-demo-bar-fill {
    width: var(--bar-w, 0) !important;
  }
}

.page-hero {
  border-bottom: 1px solid var(--border);
  padding: 80px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero:before {
  content: "";
  background: var(--accent);
  opacity: .14;
  filter: blur(140px);
  pointer-events: none;
  border-radius: 50%;
  width: 500px;
  height: 500px;
  position: absolute;
  top: -100px;
  right: -200px;
}

.page-hero-inner {
  z-index: 2;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: 64px;
  display: grid;
  position: relative;
}

.page-hero h1 {
  letter-spacing: -.04em;
  margin: 20px 0 24px;
  font-size: 64px;
  line-height: 1.05;
}

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

.page-hero p {
  color: var(--fg-muted);
  max-width: 560px;
  font-size: 19px;
  line-height: 1.65;
}

.page-hero-meta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  gap: 20px;
  padding: 24px;
  display: grid;
}

.page-hero-meta-row {
  border-bottom: 1px dashed var(--border);
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  display: flex;
}

.page-hero-meta-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-hero-meta-label {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
}

.page-hero-meta-value {
  letter-spacing: -.018em;
  font-size: 18px;
  font-weight: 700;
}

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

.cat-tabs {
  border-bottom: 1px solid var(--border);
  background: var(--card);
  z-index: 50;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, .85);
  padding: 28px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}

.cat-tabs-inner {
  align-items: center;
  gap: 8px;
  display: flex;
  overflow-x: auto;
}

.cat-tab {
  color: var(--fg-muted);
  border: 1px solid var(--border);
  white-space: nowrap;
  background: none;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  transition: all .15s;
  display: inline-flex;
}

.cat-tab:hover {
  color: var(--fg);
  border-color: var(--fg);
}

.cat-tab.is-active {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}

.cat-tab-count {
  font-family: var(--mono);
  background: var(--bg-2);
  color: var(--fg-subtle);
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 11px;
}

.cat-tab.is-active .cat-tab-count {
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .15);
}

.cat-tab-divider {
  background: var(--border);
  flex-shrink: 0;
  width: 1px;
  height: 20px;
  margin: 0 8px;
}

section.models-section {
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.section-head {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
  display: grid;
}

.section-head h2 {
  letter-spacing: -.035em;
  font-size: 40px;
  line-height: 1.15;
}

.section-head p {
  color: var(--fg-muted);
  max-width: 580px;
  margin-top: 8px;
  font-size: 16px;
}

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

.main-models {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  display: grid;
}

.main-model-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all .28s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

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

.main-model-card.is-featured {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}

.main-model-card.is-featured:before {
  content: "";
  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: 32px 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.main-model-card.is-featured:after {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(43, 227, 138, .18) 0%, rgba(0, 0, 0, 0) 60%);
  width: 300px;
  height: 300px;
  position: absolute;
  top: -100px;
  right: -100px;
}

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

.mm-top {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}

.mm-glyph {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  padding: 11px;
  display: flex;
  overflow: hidden;
}

.mm-glyph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.is-featured .mm-glyph {
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .12) !important;
}

.is-featured .mm-glyph svg path {
  fill: #fff !important;
}

.mm-badge {
  font-family: var(--mono);
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(43, 227, 138, .15);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 600;
}

.is-featured .mm-badge {
  background: var(--accent);
  color: var(--fg);
}

.mm-name {
  letter-spacing: -.025em;
  margin-bottom: 4px;
  font-size: 26px;
  font-weight: 700;
}

.mm-maker {
  font-family: var(--mono);
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
  font-size: 12px;
}

.is-featured .mm-maker {
  color: rgba(255, 255, 255, .5);
}

.mm-desc {
  color: var(--fg-muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.is-featured .mm-desc {
  color: rgba(255, 255, 255, .72);
}

.mm-stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 0;
  display: grid;
}

.is-featured .mm-stats {
  border-color: rgba(255, 255, 255, .1);
}

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

.is-featured .mm-stat-label {
  color: rgba(255, 255, 255, .45);
}

.mm-stat-value {
  letter-spacing: -.018em;
  font-size: 17px;
  font-weight: 700;
}

.mm-stat-value .unit {
  color: var(--fg-muted);
  margin-left: 2px;
  font-size: 11px;
  font-weight: 500;
}

.is-featured .mm-stat-value .unit {
  color: rgba(255, 255, 255, .5);
}

.mm-prices {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mm-price-line {
  font-family: var(--mono);
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  display: flex;
}

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

.is-featured .mm-price-line .label {
  color: rgba(255, 255, 255, .4);
}

.mm-price-line .value {
  font-weight: 600;
}

.mm-cta {
  color: var(--accent-dark);
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.is-featured .mm-cta {
  color: var(--accent);
}

.open-models {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  display: grid;
}

.open-model-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  flex-direction: column;
  padding: 22px;
  transition: all .25s;
  display: flex;
}

.open-model-card:hover {
  border-color: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, .1);
}

.om-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.om-glyph {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 7px;
  display: flex;
  overflow: hidden;
}

.om-glyph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.om-tag {
  font-family: var(--mono);
  background: var(--bg-2);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 10px;
}

.om-tag.is-new {
  background: var(--accent);
  color: var(--fg);
  font-weight: 600;
}

.om-tag.is-popular {
  color: var(--accent-dark);
  background: rgba(43, 227, 138, .15);
}

.om-name {
  letter-spacing: -.02em;
  margin-bottom: 2px;
  font-size: 17px;
  font-weight: 700;
}

.om-maker {
  color: var(--fg-subtle);
  margin-bottom: 14px;
  font-size: 12.5px;
}

.om-desc {
  color: var(--fg-muted);
  flex: 1;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.55;
}

.om-prices {
  border-top: 1px dashed var(--border);
  font-family: var(--mono);
  color: var(--fg-muted);
  justify-content: space-between;
  padding-top: 14px;
  font-size: 11.5px;
  display: flex;
}

.om-prices .value {
  color: var(--fg);
  font-weight: 600;
}

.ranking-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.ranking-head {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fg-subtle);
  grid-template-columns: 60px 1fr 120px 120px 140px;
  padding: 18px 24px;
  font-size: 11px;
  display: grid;
}

.ranking-head > div:nth-child(n+3) {
  text-align: right;
}

.ranking-row {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  grid-template-columns: 60px 1fr 120px 120px 140px;
  align-items: center;
  padding: 20px 24px;
  transition: background .2s;
  display: grid;
}

.ranking-row:last-child {
  border-bottom: none;
}

.ranking-row:hover {
  background: var(--bg-2);
}

.ranking-rank {
  letter-spacing: -.025em;
  color: var(--fg-subtle);
  font-size: 22px;
  font-weight: 700;
}

.ranking-row.is-top-3 .ranking-rank {
  color: var(--accent-dark);
}

.ranking-row.is-top-1 .ranking-rank {
  color: var(--fg);
}

.ranking-model {
  align-items: center;
  gap: 16px;
  display: flex;
}

.ranking-glyph {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 7px;
  display: flex;
  overflow: hidden;
}

.ranking-glyph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ranking-info-name {
  letter-spacing: -.018em;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.ranking-info-maker {
  color: var(--fg-subtle);
  font-size: 12.5px;
}

.ranking-bar {
  background: var(--bg-2);
  border-radius: 3px;
  height: 6px;
  position: relative;
  overflow: hidden;
}

.ranking-bar-fill {
  background: var(--fg);
  border-radius: 3px;
  height: 100%;
}

.ranking-row.is-top-3 .ranking-bar-fill {
  background: var(--accent-deep);
}

.ranking-row.is-top-1 .ranking-bar-fill {
  background: var(--accent);
}

.ranking-share {
  font-family: var(--mono);
  text-align: right;
  font-size: 13px;
  font-weight: 600;
}

.ranking-trend {
  font-family: var(--mono);
  text-align: right;
  color: var(--fg-muted);
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  display: flex;
}

.ranking-trend.up {
  color: var(--accent-dark);
}

.ranking-trend.down {
  color: #b81c24;
}

.ranking-call {
  font-family: var(--mono);
  text-align: right;
  color: var(--fg-muted);
  font-size: 13px;
}

.ranking-call .num-val {
  color: var(--fg);
  font-weight: 600;
}

.compare-cta {
  background: var(--fg);
  color: #fff;
  border-radius: 24px;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 56px;
  margin-top: 80px;
  padding: 56px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.compare-cta:before {
  content: "";
  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: 40px 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

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

.compare-cta h2 {
  color: #fff;
  letter-spacing: -.035em;
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.15;
}

.compare-cta p {
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.6;
}

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

.compare-cta-actions .btn-primary {
  background: var(--accent);
  color: var(--fg);
  font-weight: 600;
}

.compare-cta-actions .btn-primary:hover {
  background: #fff;
}

.compare-cta-actions .btn-ghost {
  color: #fff;
  background: none;
  border-color: rgba(255, 255, 255, .2);
}

.compare-cta-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, .06);
  border-color: #fff;
}

.compare-demo {
  z-index: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.compare-demo-head {
  font-family: var(--mono);
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  font-size: 11px;
}

.compare-demo-row {
  border-bottom: 1px dashed rgba(255, 255, 255, .08);
  grid-template-columns: 100px 1fr 70px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  display: grid;
}

.compare-demo-row:last-child {
  border-bottom: none;
}

.compare-demo-name {
  color: rgba(255, 255, 255, .9);
  font-size: 13.5px;
  font-weight: 500;
}

.compare-demo-bar {
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  height: 6px;
  overflow: hidden;
}

.compare-demo-bar-fill {
  background: var(--accent);
  border-radius: 3px;
  height: 100%;
}

.compare-demo-val {
  font-family: var(--mono);
  color: #fff;
  text-align: right;
  font-size: 12px;
  font-weight: 500;
}

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-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);
}

.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;
}

@media (max-width: 1100px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .main-models {
    grid-template-columns: 1fr;
  }

  .open-models {
    grid-template-columns: repeat(2, 1fr);
  }

  .ranking-head, .ranking-row {
    grid-template-columns: 40px 1fr 100px 80px;
  }

  .ranking-head > div:nth-child(5), .ranking-row > div:nth-child(5) {
    display: none;
  }

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

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

  .page-hero {
    padding: 56px 0 40px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .section-head-aside {
    text-align: left;
  }

  .open-models {
    grid-template-columns: 1fr;
  }

  .ranking-head, .ranking-row {
    grid-template-columns: 32px 1fr 80px;
  }

  .ranking-head > div:nth-child(4), .ranking-row > div:nth-child(4), .nav, .hdr-status {
    display: none;
  }

  .cat-tabs {
    top: 56px;
  }

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

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

  .compare-cta {
    padding: 32px;
  }

  .compare-cta h2 {
    font-size: 28px;
  }
}

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