:root {
  --bg: #090e1a;
  --bg-2: #0c0c10;
  --surface: #14161d;
  --surface-2: #1a1d25;
  --line: #2a2a32;
  --line-soft: #1e2028;
  --cream: #f5f2ee;
  --text: #f1f5f9;
  --muted: rgba(255, 255, 255, .72);
  --muted-2: rgba(255, 255, 255, .5);
  --muted-3: rgba(255, 255, 255, .42);

  --primary: #f97316;
  --primary-600: #ea580c;
  --primary-700: #c2410c;
  --primary-300: #fdba74;
  --lime: #b4e61a;

  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  --header-h: 57px;
  --shell: 1360px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }

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

:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

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

.serif {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
  text-wrap: balance;
}

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

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-3);
}

.accent { color: var(--primary); }

.lead {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.78;
  max-width: 46ch;
}

.announce {
  background: var(--lime);
  color: #10130a;
  font-size: .8125rem;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
  position: relative;
  z-index: 60;
}

.announce a { text-decoration: underline; text-underline-offset: 2px; }

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}

.site-head.is-stuck {
  background: rgba(9, 14, 26, .88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.site-head .shell {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -.01em;
  color: var(--primary);
  white-space: nowrap;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .875rem;
  font-weight: 600;
}

.nav-main a {
  color: var(--text);
  opacity: .92;
  transition: color .15s ease;
}

.nav-main a:hover { color: var(--primary); opacity: 1; }

.head-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  opacity: .8;
  cursor: pointer;
}

.icon-btn:hover { opacity: 1; background: rgba(255, 255, 255, .06); }

.icon-btn.boxed { background: var(--surface-2); opacity: 1; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  padding: 8px 18px;
  cursor: pointer;
  transition: background .15s ease;
}

.btn-pill:hover { background: var(--primary-600); color: #fff; }

.nav-toggle { display: none; }

#mobilMenu {
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  width: min(88vw, 340px);
}

#mobilMenu .offcanvas-header { border-bottom: 1px solid var(--line-soft); padding: 18px 22px; }
#mobilMenu .offcanvas-body { padding: 8px 22px 28px; }

.mobil-nav { display: flex; flex-direction: column; }

.mobil-nav a {
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
}

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

.mobil-nav a.btn-a {
  border-bottom: 0;
  margin-top: 22px;
  justify-content: center;
  color: #fff;
}

.btn-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .9375rem;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
  white-space: nowrap;
}

.btn-a svg { flex: none; transition: transform .18s ease; }
.btn-a:hover svg { transform: translateX(3px); }

.btn-light { background: var(--cream); color: #14161d; }
.btn-light:hover { background: #fff; color: #14161d; }

.btn-dark { background: rgba(18, 20, 27, .92); color: var(--text); border-color: var(--line); }
.btn-dark:hover { background: #191c24; color: var(--text); }

.btn-primary-a { background: var(--primary); color: #fff; }
.btn-primary-a:hover { background: var(--primary-600); color: #fff; }

.btn-outline-a { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline-a:hover { border-color: var(--muted-2); color: var(--text); }

.hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
  opacity: .22;
  filter: saturate(.75) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 78% 34%, rgba(249, 115, 22, .14) 0%, rgba(249, 115, 22, 0) 58%),
    linear-gradient(90deg, var(--bg) 10%, rgba(9, 14, 26, .96) 40%, rgba(9, 14, 26, .72) 70%, rgba(9, 14, 26, .9) 100%),
    linear-gradient(180deg, rgba(9, 14, 26, .96) 0%, rgba(9, 14, 26, .5) 22%, rgba(9, 14, 26, .55) 58%, var(--bg) 96%);
}

.hero-body { padding-block: 70px 78px; }

.badge-new {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 3px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
  font-size: clamp(2.75rem, 6.4vw, 5.25rem);
  margin: 0 0 22px;
  max-width: 14ch;
  text-wrap: balance;
}

.hero p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.0625rem;
  line-height: 1.78;
  max-width: 45ch;
  margin: 0 0 30px;
}

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

.hero-rail {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.rail-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  max-width: 100%;
}

.rail-track::-webkit-scrollbar { display: none; }

.rail-card {
  flex: none;
  width: 152px;
}

.rail-card span {
  display: block;
  font-size: .8125rem;
  color: var(--muted-2);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rail-card img {
  width: 152px;
  height: 74px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: border-color .18s ease, transform .18s ease;
}

.rail-card.is-active img { border-color: var(--cream); }
.rail-card:hover img { transform: translateY(-2px); }

.rail-meter {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 640px);
}

.rail-meter .count { font-family: var(--mono); font-size: .75rem; color: var(--muted-2); }

.rail-bar { flex: 1; height: 2px; background: rgba(255, 255, 255, .16); position: relative; }
.rail-bar i { position: absolute; inset-block: 0; left: 0; width: 40%; background: var(--primary); transition: left .3s ease; }

.rail-nav { display: flex; gap: 6px; }

.rail-nav button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  background: rgba(20, 22, 29, .8);
  color: var(--text);
  border-radius: 4px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.rail-nav button:hover { border-color: var(--muted-2); }

.prompt-wrap { margin-top: -46px; position: relative; z-index: 20; }

.prompt-box {
  background: rgba(14, 16, 22, .96);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .6);
  position: relative;
}

.prompt-spark {
  position: absolute;
  top: -14px;
  left: 18px;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, .4);
}

.prompt-tabs { display: flex; gap: 22px; padding: 6px 4px 14px 44px; }

.prompt-tab {
  background: none;
  border: 0;
  padding: 0 0 8px;
  color: var(--muted-2);
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.prompt-tab.is-active { color: var(--primary); border-bottom-color: var(--primary); }

.prompt-field { display: flex; align-items: center; gap: 12px; padding: 4px 4px 16px; }

.chip-upload {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  font-size: .8125rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 8px 13px;
  cursor: pointer;
  white-space: nowrap;
}

.chip-upload:hover { border-color: var(--muted-3); }

.prompt-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 8px 2px;
}

.prompt-input::placeholder { color: var(--muted-3); }

.prompt-bottom { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.model-select {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 8px;
  padding: 9px 13px;
  font-family: var(--mono);
  font-size: .8125rem;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
}

.model-select .dot { width: 14px; height: 14px; border-radius: 4px; background: linear-gradient(135deg, var(--primary-300), var(--primary-600)); flex: none; }

.sample-scroll { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; }
.sample-scroll::-webkit-scrollbar { display: none; }

.sample {
  flex: none;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .03);
  color: var(--muted-2);
  font-size: .8125rem;
  border-radius: 8px;
  padding: 9px 14px;
  cursor: pointer;
  white-space: nowrap;
}

.sample:hover { border-color: var(--line); color: var(--text); }

.btn-generate {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  padding: 11px 22px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-generate:hover { background: var(--primary-600); }

.sec { padding-block: clamp(64px, 9vw, 128px); }
.sec-tight { padding-block: clamp(48px, 6vw, 84px); }

.sec-title {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
  font-size: clamp(2rem, 4.1vw, 3rem);
  margin: 0;
  text-wrap: balance;
}

.sec-title .line-2 { display: block; color: var(--primary); }

.sec-head-center { text-align: center; }

.scroll-cue { display: block; margin: 26px auto 0; color: var(--muted-3); }

.models { border-top: 1px solid var(--line-soft); margin-top: 38px; }

.model-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.6fr) minmax(120px, .8fr) minmax(140px, .9fr) minmax(150px, .9fr) 92px 60px;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: .875rem;
  transition: background .15s ease;
}

.model-row:hover { background: rgba(255, 255, 255, .022); }

.model-row > * { min-width: 0; }
.model-row .name { color: var(--text); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; overflow-wrap: anywhere; }
.model-row .vendor, .model-row .kind { color: var(--muted-2); }

.tag-featured {
  background: var(--primary);
  color: #fff;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 7px;
  border-radius: 3px;
}

.price { color: var(--text); white-space: nowrap; }
.price s { color: var(--muted-3); margin-right: 8px; }

.off {
  justify-self: start;
  background: var(--primary-600);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.bars { display: flex; gap: 2px; justify-self: end; }
.bars i { width: 4px; height: 14px; background: var(--lime); border-radius: 1px; }
.bars i.off { background: rgba(255, 255, 255, .14); }

.models-foot { display: flex; justify-content: center; margin-top: 34px; }

.tools-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.tools-title {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .94;
  font-size: clamp(2.25rem, 5.2vw, 4.5rem);
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.link-arrow:hover { color: var(--primary-300); }

.marquee { overflow: hidden; margin-bottom: 18px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }

.marquee-track { display: flex; gap: 18px; width: max-content; animation: slide 54s linear infinite; }
.marquee-b .marquee-track { animation-duration: 66s; animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.tool-card {
  flex: none;
  width: 380px;
  height: 330px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.tool-card img { width: 100%; height: 100%; object-fit: cover; object-position: 12% 18%; opacity: .3; transform: scale(1.75); transform-origin: 18% 22%; filter: saturate(.6); }

.tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 14, 26, .86) 0%, rgba(9, 14, 26, .42) 40%, rgba(9, 14, 26, .97) 100%);
}

.tool-card h3 {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  z-index: 2;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.tool-card ul {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: .8125rem;
  color: rgba(255, 255, 255, .82);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.split-text h2 { margin: 0 0 20px; }
.split-text .lead { margin: 0 0 28px; }

.split-wide { grid-template-columns: minmax(0, .82fr) minmax(0, 1.38fr); }

.frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}

.checks { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 14px; }

.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .9375rem; }

.checks svg { flex: none; color: var(--primary); margin-top: 3px; }

.specs { margin: 0 0 30px; border-top: 1px solid var(--line-soft); }

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.spec-row dt { color: var(--muted-2); font-size: .9375rem; margin: 0; }
.spec-row dd { margin: 0; font-family: var(--mono); font-size: .8125rem; color: var(--primary); text-align: right; }

.code-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
}

.code-main { border-right: 1px solid var(--line); min-width: 0; }

.code-tabs { display: flex; gap: 22px; padding: 14px 20px 0; border-bottom: 1px solid var(--line); }

.code-tab {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: .8125rem;
  padding: 0 0 11px;
  cursor: pointer;
}

.code-tab.is-active { color: var(--primary); border-bottom-color: var(--primary); }

.code-body { padding: 18px 14px 22px 0; overflow-x: auto; }

.code-body ol {
  margin: 0;
  padding: 0 0 0 52px;
  list-style: none;
  counter-reset: ln;
  font-family: var(--mono);
  font-size: .75rem;
  line-height: 1.95;
  color: #cfd6e4;
}

.code-body li { counter-increment: ln; position: relative; white-space: pre; }

.code-body li::before {
  content: counter(ln);
  position: absolute;
  left: -34px;
  width: 22px;
  text-align: right;
  color: var(--muted-3);
}

.tk-key { color: #d8b4fe; }
.tk-str { color: #9fe08a; }
.tk-fn { color: var(--primary-300); }
.tk-num { color: #86d9f7; }
.tk-cm { color: var(--muted-3); }

.code-side { padding: 18px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }

.run-state { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .75rem; color: var(--muted); }
.run-state i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(180, 230, 26, .16); }

.run-card { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; position: relative; }
.run-card img { width: 100%; height: 150px; object-fit: cover; }
.run-card span { position: absolute; right: 10px; bottom: 8px; font-weight: 700; font-size: .9375rem; text-shadow: 0 2px 10px rgba(0, 0, 0, .8); }

.run-meta { display: flex; flex-direction: column; gap: 9px; font-family: var(--mono); font-size: .75rem; }
.run-meta div { display: flex; justify-content: space-between; gap: 12px; }
.run-meta dt, .run-meta span:first-child { color: var(--muted-3); }
.run-meta span:last-child { color: var(--muted); text-align: right; }

.why-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 42px; }
.why-head p { color: var(--muted-2); max-width: 38ch; text-align: right; margin: 0; font-size: .9375rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-soft);
}

.why-cell { padding: 30px 28px 34px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.why-grid .why-cell:nth-child(3n) { border-right: 0; }
.why-grid .why-cell:nth-last-child(-n+3) { border-bottom: 0; }

.why-cell svg { color: var(--primary); margin-bottom: 18px; }
.why-cell h3 { font-family: var(--display); font-weight: 400; font-size: 1.3125rem; letter-spacing: -.02em; margin: 0 0 10px; }
.why-cell p { color: var(--muted-2); font-size: .875rem; line-height: 1.7; margin: 0; max-width: 34ch; }

.faq-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.55fr); gap: clamp(28px, 6vw, 80px); align-items: start; }
.faq-intro p { color: var(--muted-2); margin: 14px 0 0; font-size: .9375rem; }

.faq { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item.is-open .faq-q::after { content: "\2013"; }

.faq-a { display: none; padding: 0 40px 24px 0; color: var(--muted-2); font-size: .9375rem; line-height: 1.85; max-width: 68ch; }
.faq-item.is-open .faq-a { display: block; }

.cta-band { background: var(--primary-600); color: #fff; padding-block: clamp(56px, 7vw, 96px); }

.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

.cta-band h2 { font-family: var(--display); font-weight: 400; letter-spacing: -.035em; line-height: 1; font-size: clamp(2.1rem, 4.6vw, 3.5rem); margin: 0 0 18px; max-width: 15ch; }
.cta-band p { color: rgba(255, 255, 255, .88); margin: 0; max-width: 44ch; font-size: 1rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-outline-a { border-color: rgba(255, 255, 255, .55); color: #fff; }
.cta-band .btn-outline-a:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

.site-foot { background: var(--bg-2); padding-block: 64px 28px; position: relative; overflow: hidden; }

.foot-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr)); gap: 36px; }

.foot-brand .brand { font-size: 1.25rem; display: inline-block; margin-bottom: 14px; }
.foot-brand p { color: var(--muted-3); font-size: .875rem; max-width: 34ch; margin: 0; line-height: 1.7; }

.foot-col h4 { font-family: var(--mono); font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-3); margin: 0 0 18px; font-weight: 500; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { color: var(--muted-2); font-size: .875rem; }
.foot-col a:hover { color: var(--primary); }

.foot-bottom { margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--line-soft); color: var(--muted-3); font-size: .8125rem; position: relative; z-index: 2; }

.foot-mark {
  position: absolute;
  right: 18px;
  bottom: -18px;
  font-weight: 800;
  font-size: clamp(4rem, 11vw, 9rem);
  letter-spacing: -.05em;
  color: rgba(255, 255, 255, .035);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.to-top.is-on { opacity: 1; pointer-events: auto; }
.to-top:hover { border-color: var(--muted-2); }

@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid .why-cell:nth-child(3n) { border-right: 1px solid var(--line-soft); }
  .why-grid .why-cell:nth-child(2n) { border-right: 0; }
  .why-grid .why-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--line-soft); }
  .why-grid .why-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
}

@media (max-width: 991px) {
  .nav-main { display: none; }
  .nav-toggle { display: grid; }
  .head-tools .icon-btn.only-lg { display: none; }

  .split, .faq-wrap, .code-panel { grid-template-columns: 1fr; }
  .code-main { border-right: 0; border-bottom: 1px solid var(--line); }
  .split-media { order: -1; }
  .why-head p { text-align: left; }
}

@media (max-width: 767px) {
  .hero { min-height: 640px; }
  .hero-media img { object-position: 64% 26%; opacity: .38; }
  .hero-veil { background: linear-gradient(180deg, rgba(9, 14, 26, .8) 0%, rgba(9, 14, 26, .55) 40%, rgba(9, 14, 26, .96) 88%); }
  .hero h1 { max-width: 100%; }
  .hero-actions #mobilMenu {
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  width: min(88vw, 340px);
}

#mobilMenu .offcanvas-header { border-bottom: 1px solid var(--line-soft); padding: 18px 22px; }
#mobilMenu .offcanvas-body { padding: 8px 22px 28px; }

.mobil-nav { display: flex; flex-direction: column; }

.mobil-nav a {
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
}

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

.mobil-nav a.btn-a {
  border-bottom: 0;
  margin-top: 22px;
  justify-content: center;
  color: #fff;
}

.btn-a { width: 100%; }
  .hero-rail { align-items: stretch; }
  .prompt-wrap { margin-top: -34px; }
  .prompt-tabs { padding-left: 4px; padding-top: 22px; }
  .prompt-spark { left: 16px; }
  .prompt-field { flex-wrap: wrap; }
  .prompt-input { width: 100%; flex-basis: 100%; }
  .btn-generate { width: 100%; justify-content: center; }
  .sample-scroll { order: 3; width: 100%; }

  .model-row {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    padding: 16px 2px;
  }

  .model-row .name { grid-column: 1 / -1; }
  .model-row .kind { display: none; }
  .model-row .bars { display: none; }
  .model-row .vendor { font-size: .8125rem; }
  .model-row .price { text-align: right; font-size: .8125rem; }
  .model-row .off { grid-column: 2; justify-self: end; }

  .tool-card { width: 260px; height: 250px; }
  .tool-card h3 { font-size: 1.125rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid .why-cell { border-right: 0 !important; border-bottom: 1px solid var(--line-soft) !important; }
  .why-grid .why-cell:last-child { border-bottom: 0 !important; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-actions { width: 100%; }
  .cta-actions #mobilMenu {
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  width: min(88vw, 340px);
}

#mobilMenu .offcanvas-header { border-bottom: 1px solid var(--line-soft); padding: 18px 22px; }
#mobilMenu .offcanvas-body { padding: 8px 22px 28px; }

.mobil-nav { display: flex; flex-direction: column; }

.mobil-nav a {
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
}

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

.mobil-nav a.btn-a {
  border-bottom: 0;
  margin-top: 22px;
  justify-content: center;
  color: #fff;
}

.btn-a { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  * { transition-duration: .01ms !important; }
}
