:root {
  color-scheme: light;
  --static-home-content-width: 1400px;
  --static-home-gutter: 24px;
  --static-home-container: min(
    var(--static-home-content-width),
    calc(100% - var(--static-home-gutter) * 2)
  );
  --bg-page: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-hover: #f1f5f9;
  --bg-soft: #f8fafc;
  --text-primary: #111827;
  --text-secondary: #64748b;
  --text-tertiary: #94a3b8;
  --text-inverse: #ffffff;
  --border-default: #e2e8f0;
  --border-muted: #eef2f7;
  --brand: #c832b8;
  --brand-hover: #dd43ce;
  --brand-soft: rgba(200, 50, 184, 0.1);
  --accent-gold: #d97706;
  --radius-control: 8px;
  --radius-panel: 8px;
  --shadow-1: 0 14px 42px rgba(15, 23, 42, 0.12);
  --shadow-2: 0 18px 56px rgba(15, 23, 42, 0.14);
  font-family: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

img,
video {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  color: var(--text-inverse);
  background: rgba(6, 9, 15, 0.36);
  backdrop-filter: blur(18px);
  transition: background-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(
    calc(var(--static-home-content-width) + var(--static-home-gutter) * 2),
    100%
  );
  min-height: 80px;
  margin: 0 auto;
  padding: 16px 24px;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  box-shadow: var(--shadow-1);
}

.brand,
.desktop-nav,
.header-actions,
.leaderboard-head,
.tabs,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
  font-size: 20px;
  line-height: 1.1;
}

.desktop-nav {
  justify-self: center;
  justify-content: center;
  gap: 28px;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  transform: translateX(clamp(24px, 4vw, 64px));
  white-space: nowrap;
}

.desktop-nav a,
.mobile-nav a {
  color: currentColor;
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease, background-color 160ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  opacity: 1;
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.button,
.workspace-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button-primary {
  background: var(--brand);
  color: var(--text-inverse);
  box-shadow: 0 14px 30px rgba(200, 50, 184, 0.28);
}

.button-primary:hover {
  background: var(--brand-hover);
  box-shadow:
    0 16px 34px rgba(200, 50, 184, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.button-ghost {
  color: var(--text-secondary);
}

.site-header:not(.is-scrolled) .button-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--text-inverse);
}

.site-header.is-scrolled .button-ghost {
  color: var(--text-secondary);
}

.button-ghost:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.site-header:not(.is-scrolled) .button-ghost:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-inverse);
  box-shadow: none;
}

.site-header.is-scrolled .button-ghost:hover {
  border-color: transparent;
  background: var(--bg-hover);
  color: var(--text-primary);
  box-shadow: none;
}

.workspace-button {
  gap: 8px;
  border-color: var(--border-default);
  color: var(--text-primary);
}

.site-header:not(.is-scrolled) .workspace-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

.site-header.is-scrolled .workspace-button {
  border-color: var(--border-default);
  background: transparent;
  color: var(--text-primary);
}

.site-header:not(.is-scrolled) .workspace-button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .workspace-button:hover {
  background: var(--bg-hover);
}

.static-home-auth-primary {
  padding-inline: 20px;
}

.static-home-auth-actions,
.static-home-mobile-auth-actions {
  display: contents;
}

.static-home-auth-fallback {
  display: contents;
}

body[data-static-home-auth-ready="true"] .static-home-auth-fallback {
  display: none;
}

body[data-static-home-auth-ready="true"] .static-home-auth-fallback .button {
  display: none;
}

.language-menu {
  position: relative;
}

.language-menu summary {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease;
}

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

.language-menu summary::after {
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  opacity: 0.72;
}

.language-menu[open] summary,
.language-menu summary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .language-menu[open] summary,
.site-header.is-scrolled .language-menu summary:hover {
  background: var(--bg-hover);
}

.language-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 128px;
  gap: 2px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-panel);
  background: var(--bg-card);
  padding: 6px;
  color: var(--text-primary);
  box-shadow: var(--shadow-1);
}

.language-menu-panel a {
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
}

.language-menu-panel a:hover,
.language-menu-panel [aria-current="page"] {
  background: var(--brand-soft);
  color: var(--text-primary);
}

.static-home-account {
  position: relative;
}

.static-home-account-trigger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: var(--brand);
  overflow: hidden;
}

.static-home-avatar {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  object-fit: cover;
}

.static-home-avatar-fallback {
  background: rgba(200, 50, 184, 0.16);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.static-home-account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  display: grid;
  width: 248px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-panel);
  background: var(--bg-card);
  padding: 8px;
  color: var(--text-primary);
  box-shadow: var(--shadow-2);
}

.static-home-account-summary {
  min-width: 0;
  border-radius: var(--radius-control);
  background: var(--bg-hover);
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
}

.static-home-account-summary span {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.static-home-account-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-control);
  background: transparent;
  cursor: pointer;
  padding: 11px 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.static-home-account-item:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.static-home-account-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.mobile-nav {
  display: none;
  grid-column: 1 / -1;
  margin-top: 14px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-panel);
  background: var(--bg-page);
  padding: 16px;
  color: var(--text-secondary);
  box-shadow: var(--shadow-1);
}

.mobile-nav.is-open {
  display: grid;
  gap: 14px;
}

.mobile-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.mobile-nav .button,
.mobile-nav .workspace-button {
  width: fit-content;
  border-radius: var(--radius-control);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  width: 100%;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-muted);
  padding: 112px 24px 192px;
  color: var(--text-inverse);
  text-align: center;
}

.hero video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero video {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.44) 0%, rgba(5, 8, 14, 0.62) 32%, rgba(6, 9, 15, 0.82) 72%, rgba(6, 9, 15, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--static-home-container);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  padding: 9px 16px;
  color: var(--text-inverse);
  font-size: 12px;
  letter-spacing: 0.24em;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero .eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(200, 50, 184, 0.24);
  content: "";
}

.hero h1 {
  max-width: 1280px;
  margin: 16px auto 24px;
  color: var(--text-inverse);
  font-size: 76px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 64px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  line-height: 1.6;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.46);
}

.hero-badges {
  display: none;
}

.static-home-composer-mount {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.static-home-composer {
  display: contents;
}

.static-home-composer-error {
  margin: 8px 8px 2px;
  color: #fecaca;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.static-home-composer-container {
  max-width: 1120px;
}

.static-home-composer-container > .app-input-shell-contrast {
  background: rgba(255, 255, 255, 0.96);
}

.section {
  width: var(--static-home-container);
  margin: 0 auto;
  border-bottom: 1px solid var(--border-muted);
  padding: 96px 0;
}

.section h2 {
  margin: 0 0 24px;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.section p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.72;
}

.section strong {
  color: var(--text-primary);
}

.split,
.overview {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: center;
}

.split {
  width: var(--static-home-container);
  max-width: none;
  background: transparent;
}

.split > div {
  width: 100%;
}

.split > div:first-child {
  justify-self: end;
  max-width: 560px;
}

.split > div:last-child {
  justify-self: start;
  max-width: 800px;
}

.split h2::after,
.overview h2::after {
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 28px;
  background: var(--brand);
  content: "";
}

.score-card,
.leaderboard,
.architecture,
.static-home-pricing-state {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-panel);
  background: var(--bg-card);
  box-shadow: var(--shadow-1);
}

.score-card {
  display: inline-grid;
  gap: 8px;
  margin-top: 8px;
  padding: 24px;
}

.score-card span {
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.score-card strong {
  color: var(--brand);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.score-card em {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: var(--bg-hover);
  padding: 5px 10px;
  color: var(--text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.score-card em::before {
  color: var(--accent-gold);
  content: "★";
}

.leaderboard {
  overflow: hidden;
}

.leaderboard-head {
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border-default);
  background: var(--bg-elevated);
  padding: 20px 32px;
}

.leaderboard h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.tabs {
  gap: 8px;
  border-radius: var(--radius-control);
  background: var(--bg-hover);
  padding: 4px;
}

.tabs button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.tabs [aria-pressed="true"] {
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.leaderboard-labels,
.leaderboard-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
}

.leaderboard-labels {
  border-bottom: 1px solid var(--border-default);
  background: rgba(248, 250, 252, 0.72);
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.leaderboard-row {
  border-bottom: 1px solid var(--border-muted);
}

.leaderboard-row:last-child {
  border-bottom: 0;
}

.leaderboard-row:not(.is-top):hover {
  background: var(--bg-hover);
}

.leaderboard-row.is-top {
  background: var(--brand-soft);
}

.rank {
  color: var(--text-tertiary);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.is-top .rank {
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.score {
  color: var(--text-tertiary);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 800;
  text-align: right;
}

.is-top .score {
  color: var(--text-primary);
}

.model {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.model img,
.logo-fallback {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: var(--bg-card);
  object-fit: contain;
  padding: 7px;
}

.logo-fallback {
  display: grid;
  place-items: center;
  color: var(--text-tertiary);
  font-size: 10px;
  font-weight: 900;
}

.model strong {
  min-width: 0;
  overflow: hidden;
  color: var(--text-secondary);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.is-top .model strong {
  color: var(--text-primary);
  font-size: 18px;
}

.overview {
  align-items: stretch;
}

.overview > div:first-child {
  align-self: center;
}

.architecture {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px;
}

.architecture span {
  width: 64px;
  height: 128px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-control);
  background: var(--bg-hover);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.architecture span:first-child::after,
.architecture span:last-child::before {
  display: inline-block;
  margin-top: 52px;
  color: var(--text-tertiary);
  font-size: 32px;
  line-height: 1;
  content: "→";
}

.architecture span:first-child::after {
  margin-left: 78px;
}

.architecture span:last-child::before {
  margin-left: -38px;
}

.architecture b {
  display: grid;
  width: 112px;
  min-height: 192px;
  place-items: center;
  border-radius: var(--radius-control);
  background: var(--brand);
  color: var(--text-inverse);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 44px;
  margin-top: 48px;
}

.feature-grid article {
  min-width: 0;
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.feature-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
}

.static-home-pricing {
  position: relative;
  width: var(--static-home-container);
  max-width: none;
  overflow: visible;
}

.static-home-pricing-island {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.static-home-pricing-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.static-home-pricing-heading h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
}

.static-home-pricing-heading p:not(.section-kicker) {
  margin: 18px auto 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.static-home-billing-toggle-row {
  display: flex;
  justify-content: center;
  margin: 0 auto 34px;
}

.static-home-billing-toggle {
  width: fit-content;
}

.static-home-billing-toggle-button {
  min-width: 118px;
}

.static-home-pricing-feedback {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 28px;
}

.static-home-pricing-grid {
  margin-top: 0;
}

.static-home-pricing-state {
  padding: 40px;
  color: var(--text-secondary);
  font-weight: 800;
  text-align: center;
}

.faq {
  max-width: 1000px;
  border-bottom: 0;
}

.faq h2 {
  margin-bottom: 48px;
}

.faq details {
  border-top: 1px solid var(--border-default);
}

.faq details:last-child {
  border-bottom: 1px solid var(--border-default);
}

.faq summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 44px 24px 0;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 900;
}

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

.faq summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  color: var(--text-tertiary);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
  content: "+";
}

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

.faq details p {
  margin: 0;
  max-width: 880px;
  padding: 0 44px 24px 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.72;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.8fr) repeat(3, minmax(130px, 1fr));
  align-items: start;
  gap: 40px;
  border-top: 1px solid var(--border-default);
  background: var(--bg-card);
  padding: 56px max(
      var(--static-home-gutter),
      calc((100% - var(--static-home-content-width)) / 2)
    ) 0;
}

.footer > div {
  max-width: 560px;
}

.footer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer nav {
  display: grid;
  gap: 14px;
}

.footer nav strong {
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer nav a {
  color: var(--text-secondary);
  font-size: 14px;
}

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

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  border-top: 1px solid var(--border-default);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 767px) {
  .site-header-inner {
    grid-template-columns: auto auto;
  }

  .desktop-nav,
  .language-menu,
  .header-actions .button,
  .header-actions .workspace-button {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
  }

  .split,
  .overview,
  .feature-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .split {
    width: var(--static-home-container);
    max-width: var(--static-home-content-width);
    background: transparent;
  }

  .split > div,
  .split > div:first-child,
  .split > div:last-child {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .leaderboard-head {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .desktop-nav {
    gap: 20px;
    transform: translateX(24px);
  }
}

@media (max-width: 768px) {
  :root {
    --static-home-gutter: 16px;
  }

  .site-header-inner {
    min-height: 68px;
    padding: 14px 18px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    font-size: 18px;
  }

  .hero {
    min-height: 100vh;
    padding: 96px 18px 128px;
  }

  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

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

  .hero-copy {
    margin-bottom: 42px;
    font-size: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .static-home-pricing-heading h2 {
    font-size: 36px;
  }

  .section p,
  .faq details p {
    font-size: 16px;
  }

  .leaderboard-head,
  .leaderboard-labels,
  .leaderboard-row {
    padding-right: 16px;
    padding-left: 16px;
  }

  .leaderboard-labels,
  .leaderboard-row {
    grid-template-columns: 36px minmax(0, 1fr) 68px;
    gap: 10px;
  }

  .model {
    gap: 10px;
  }

  .model img,
  .logo-fallback {
    width: 34px;
    height: 34px;
  }

  .is-top .model strong,
  .model strong {
    font-size: 14px;
  }

  .architecture {
    min-height: 240px;
    gap: 16px;
    padding: 24px;
  }

  .architecture span {
    width: 46px;
    height: 104px;
  }

  .architecture span:first-child::after,
  .architecture span:last-child::before {
    display: none;
  }

  .architecture b {
    width: 96px;
    min-height: 156px;
    font-size: 14px;
  }

  .feature-grid {
    gap: 28px;
  }

  .faq summary {
    font-size: 18px;
  }

  .footer {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .hero h1 {
    font-size: 66px;
  }
}
