:root {
  --black: #050505;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --wash: #f5f5f7;
  --line: #d2d2d7;
  --white: #fff;
  --orange: #ff9f0a;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.nowrap {
  white-space: nowrap;
}

.shell {
  width: min(var(--max), calc(100% - 44px));
  margin: auto;
}

.global-nav {
  height: 52px;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: saturate(180%) blur(20px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
  font-size: 19px;
  font-weight: 650;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  color: #333;
  white-space: nowrap;
}

.nav-cta {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
}

.nav-cta:hover,
.pill:hover {
  background: var(--blue-hover);
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 64px 0 0;
  overflow: hidden;
  background: #fff;
}

.article-type {
  font-size: 14px;
  font-weight: 650;
  color: var(--blue);
  margin: 0 0 16px;
}

.hero h1,
.subhero h1 {
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 auto;
  max-width: 1080px;
  font-weight: 750;
}

.intro {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 780px;
  margin: 22px auto 0;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #86868b;
  font-size: 13px;
}

.article-meta span + span::before {
  content: "/";
  margin-right: 10px;
}

.hero-actions,
.page-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin: 28px 0 46px;
  font-size: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
}

.arrow::after {
  content: " ->";
}

.product-stage {
  position: relative;
  height: 430px;
  max-width: 1080px;
  margin: auto;
  border-radius: 30px 30px 0 0;
  background: #121214;
  box-shadow: 0 -2px 0 #2a2a2e, 0 24px 70px rgba(0, 0, 0, .16);
  overflow: hidden;
  text-align: left;
}

.window-bar {
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid #2b2b2e;
  background: #1b1b1e;
}

.lights {
  display: flex;
  gap: 8px;
}

.lights i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.lights i:nth-child(1) {
  background: #ff5f57;
}

.lights i:nth-child(2) {
  background: #febc2e;
}

.lights i:nth-child(3) {
  background: #c7c7cc;
}

.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #888;
}

.app-body {
  height: 386px;
  display: grid;
  grid-template-columns: 190px 1fr 310px;
  color: #e8e8ed;
}

.side {
  background: #18181a;
  border-right: 1px solid #2b2b2e;
  padding: 15px 11px;
}

.side-label {
  font-size: 10px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px;
}

.project {
  padding: 9px;
  border-radius: 8px;
  background: #27272b;
  font-size: 12px;
}

.files {
  font: 11px/2 ui-monospace, SFMono-Regular, Consolas, monospace;
  color: #999;
  padding: 10px;
}

.editor {
  padding: 28px 30px;
  background: #111113;
  font: 12px/1.75 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.code-row {
  display: flex;
  gap: 18px;
}

.ln {
  color: #48484c;
}

.kw {
  color: #ff7ab2;
}

.str {
  color: #8ec5ff;
}

.fn {
  color: #82d2ff;
}

.comment {
  color: #777;
}

.codex-panel {
  background: #1d1d20;
  border-left: 1px solid #303034;
  padding: 22px 18px;
}

.codex-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.spark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.chat {
  margin-top: 24px;
}

.bubble {
  background: #2c2c30;
  border-radius: 13px;
  padding: 12px 13px;
  font-size: 12px;
  line-height: 1.5;
  margin: 11px 0;
}

.bubble.ai {
  background: transparent;
  padding-left: 0;
  color: #b5b5ba;
}

.section {
  padding: 100px 0;
}

.section.wash {
  background: var(--wash);
}

.section.dark {
  background: var(--black);
  color: #f5f5f7;
}

.eyebrow {
  font-size: 17px;
  font-weight: 650;
  margin: 0 0 12px;
  color: inherit;
}

.display {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
  max-width: 900px;
}

.display .dim {
  color: var(--muted);
}

.section-intro {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 720px;
  margin: 20px 0 0;
}

.dark .section-intro {
  color: #a1a1a6;
}

.choice-strip,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
}

.choice,
.feature-card {
  min-height: 330px;
  border-radius: 28px;
  padding: 34px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.choice.dark-card,
.feature-card.dark-card {
  background: #111;
  color: #fff;
}

.choice small,
.feature-card small {
  color: var(--muted);
  font-size: 13px;
}

.choice h3,
.feature-card h3 {
  font-size: 30px;
  margin: 10px 0;
}

.choice p,
.feature-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 300px;
}

.choice .os-mark,
.feature-card .os-mark {
  font-size: 82px;
  line-height: 1;
  margin-top: auto;
  font-weight: 700;
  letter-spacing: 0;
  color: #d7d7dc;
}

.dark-card .os-mark {
  color: #3a3a3f;
}

.install-choice-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.install-card {
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.install-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .08);
}

.install-card h3 {
  font-size: clamp(35px, 3.15vw, 50px);
  line-height: 1.04;
  margin: 18px 0 16px;
}

.install-card p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 350px;
  min-height: 82px;
}

.choice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.choice-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 27px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 113, 227, .1);
  color: #0066cc;
  font-size: 12px;
  font-weight: 700;
}

.choice-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 28px;
  margin: 18px 0 12px;
  position: relative;
  z-index: 1;
}

.choice-features span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .045);
  color: #515154;
  font-size: 12px;
  font-weight: 650;
}

.install-card .link {
  margin-top: auto;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.install-card .os-mark {
  position: absolute;
  right: 28px;
  bottom: 18px;
  margin: 0;
  font-size: clamp(60px, 6.4vw, 104px);
  opacity: .58;
}

.app-card {
  min-height: 360px;
  border-color: rgba(0, 113, 227, .18);
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .055);
}

.app-card h3 {
  font-size: clamp(35px, 3.15vw, 50px);
}

.app-card .os-mark {
  color: rgba(0, 113, 227, .1);
}

.app-card .choice-badge {
  background: rgba(0, 113, 227, .12);
  color: #0066cc;
}

.app-card .choice-features span {
  background: rgba(0, 113, 227, .08);
  color: #225f9f;
}

.app-card .link {
  color: #0066cc;
}

.app-card .link::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: #0071e3;
}

.cli-card .link::before,
.ide-card .link::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
  opacity: .55;
}

.app-card::before,
.cli-card::before,
.ide-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  bottom: auto;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: rgba(0, 0, 0, .12);
}

.app-card::before {
  background: #0071e3;
}

.cli-card::before {
  background: #34c759;
}

.ide-card::before {
  background: #ffb13b;
}

.cli-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, 1)),
    linear-gradient(135deg, rgba(52, 199, 89, .13), transparent 46%);
  color: #1d1d1f;
  border-color: rgba(52, 199, 89, .2);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .055);
}

.cli-card p,
.cli-card small {
  color: var(--muted);
}

.cli-card .choice-features span {
  background: rgba(52, 199, 89, .09);
  color: #23743b;
}

.cli-card .choice-badge {
  background: rgba(52, 199, 89, .14);
  color: #1f7a39;
}

.cli-card .os-mark {
  color: rgba(52, 199, 89, .18);
}

.ide-card {
  background:
    linear-gradient(180deg, #fff 0%, #fffaf1 100%);
  border-color: rgba(255, 159, 10, .2);
}

.ide-card .choice-badge {
  background: rgba(255, 159, 10, .15);
  color: #9a5a00;
}

.ide-card .os-mark {
  color: rgba(255, 159, 10, .18);
}

.platform-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 48px 0 36px;
}

.tab {
  appearance: none;
  border: 0;
  background: #e8e8ed;
  color: #1d1d1f;
  padding: 11px 18px;
  border-radius: 999px;
  font: 600 14px inherit;
  cursor: pointer;
}

.tab.active {
  background: #1d1d1f;
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.steps {
  counter-reset: item;
  border-top: 1px solid var(--line);
}

.step {
  counter-increment: item;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.step-no::before {
  content: "0" counter(item);
  font-size: 14px;
  color: var(--muted);
}

.step h3 {
  font-size: 28px;
  margin: 0 0 10px;
}

.step p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 760px;
}

.step p + p {
  margin-top: 12px;
}

.command {
  position: relative;
  background: #151517;
  color: #f5f5f7;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 62px 20px 22px;
  font: 14px/1.8 ui-monospace, SFMono-Regular, Consolas, monospace;
  overflow: auto;
}

.copy {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 0;
  border-radius: 999px;
  background: #343438;
  color: #fff;
  padding: 7px 11px;
  font-size: 12px;
  cursor: pointer;
}

.copy:hover {
  background: #45454a;
}

.security {
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 18px;
  background: #fff3df;
  color: #663c00;
  display: flex;
  gap: 15px;
  line-height: 1.55;
}

.security b {
  display: block;
  margin-bottom: 3px;
}

.cli-stage,
.demo-stage {
  margin-top: 60px;
  border-radius: 30px;
  background: #101012;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .28);
}

.cli-top {
  height: 44px;
  border-bottom: 1px solid #2e2e32;
  display: flex;
  align-items: center;
  padding: 0 17px;
  color: #777;
  font-size: 12px;
}

.cli-body {
  padding: 42px 44px 48px;
  font: clamp(14px, 2vw, 18px)/2 ui-monospace, SFMono-Regular, Consolas, monospace;
  color: #eee;
}

.prompt {
  color: #8ec5ff;
}

.output {
  color: #85858b;
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 54px;
}

.login-option {
  padding: 42px;
  border-radius: 28px;
  background: #fff;
  min-height: 290px;
}

.login-option h3 {
  font-size: 30px;
  margin: 15px 0;
}

.login-option p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.recommended {
  display: inline-block;
  padding: 5px 10px;
  background: #e5f3ff;
  color: #0066cc;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.trouble-list {
  margin-top: 48px;
}

.trouble {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid #2d2d30;
}

.trouble:last-child {
  border-bottom: 1px solid #2d2d30;
}

.trouble-num {
  color: #777;
}

.trouble h3 {
  font-size: 22px;
  margin: 0 0 5px;
}

.trouble p {
  color: #999;
  margin: 0;
  line-height: 1.5;
}

.trouble a {
  white-space: nowrap;
}

.subhero {
  padding: 72px 0 70px;
  background: #fff;
  text-align: center;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 44px;
  align-items: center;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
}

.panel h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.65;
}

.panel ul {
  padding-left: 20px;
  margin: 0;
}

.path-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.path-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.path-item strong {
  font-size: 18px;
}

.path-item p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.api-page {
  background: #f6f7f9;
}

.api-hero {
  padding: 86px 0 74px;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 113, 227, .13), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(255, 159, 10, .14), transparent 28%),
    #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.api-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.api-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 750;
}

.api-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 1.02;
}

.api-hero .intro {
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
}

.api-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.api-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.api-metrics div,
.analytics-metrics div {
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}

.api-metrics strong,
.analytics-metrics strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}

.api-metrics span,
.analytics-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.api-hero-visual,
.screenshot-card,
.analytics-shot {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .12);
}

.api-window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #111;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.api-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.api-window-bar span:nth-child(2) {
  background: #febc2e;
}

.api-window-bar span:nth-child(3) {
  background: #c7c7cc;
}

.api-window-bar b {
  margin-left: auto;
  font-weight: 600;
}

.api-hero-visual img,
.screenshot-card img,
.analytics-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.benefit-grid article {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 24px;
  background: #fff;
}

.benefit-grid b {
  display: block;
  font-size: 22px;
}

.benefit-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 20px;
  margin-top: 56px;
}

.screenshot-card {
  margin: 0;
}

.screenshot-card.large {
  grid-row: span 3;
}

.screenshot-card figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.screenshot-card figcaption strong {
  font-size: 18px;
  white-space: nowrap;
}

.screenshot-card figcaption span {
  color: var(--muted);
  line-height: 1.55;
  text-align: right;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}

.compact-pill {
  flex: 0 0 auto;
}

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

.price-highlight article {
  min-height: 210px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
}

.price-highlight article:nth-child(2) {
  background: #111;
  color: #fff;
}

.price-highlight small {
  color: var(--muted);
  font-weight: 700;
}

.price-highlight article:nth-child(2) small,
.price-highlight article:nth-child(2) p {
  color: rgba(255, 255, 255, .64);
}

.price-highlight strong {
  display: block;
  margin-top: 14px;
  font-size: 30px;
}

.price-highlight p {
  color: var(--muted);
  line-height: 1.6;
  margin: 16px 0 0;
}

.model-catalog {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
  margin-top: 54px;
}

.catalog-filter {
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 24px;
  background: #fff;
}

.catalog-filter strong {
  font-size: 19px;
}

.catalog-filter span {
  color: var(--muted);
  line-height: 1.45;
}

.model-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.model-card-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 24px;
  background: #fff;
}

.model-card-grid b {
  display: block;
  font-size: 19px;
}

.model-card-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin: 14px 0;
}

.model-card-grid span {
  color: #0d6efd;
  font-size: 13px;
  font-weight: 700;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.usecase-grid article {
  min-height: 280px;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
}

.usecase-grid span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 113, 227, .1);
  color: #0066cc;
  font-size: 12px;
  font-weight: 750;
}

.usecase-grid h3 {
  font-size: 30px;
  margin: 24px 0 14px;
}

.usecase-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.api-process-section {
  background: #fff;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.process-cards article {
  min-height: 230px;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
  text-align: center;
}

.process-cards span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 750;
}

.process-cards h3 {
  font-size: 28px;
  margin: 22px 0 12px;
}

.process-cards p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.analytics-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: 42px;
  align-items: center;
}

.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.analytics-metrics div {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.analytics-metrics strong {
  color: #fff;
}

.analytics-shot {
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.api-ready-panel {
  background: #0f1115;
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
}

.api-ready-panel li {
  color: rgba(255, 255, 255, .7);
}

.api-final-cta {
  padding: 90px 0;
  background: #f6f7f9;
}

.api-final-card {
  padding: clamp(34px, 5vw, 70px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .1), transparent 28%),
    linear-gradient(135deg, #111 0%, #171a20 100%);
  color: #fff;
}

.api-final-card h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.api-final-card p {
  max-width: 780px;
  color: rgba(255, 255, 255, .68);
  font-size: 19px;
  line-height: 1.6;
}

.api-v2 {
  background: #f6f7f9;
}

.api-v2-hero {
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 113, 227, .13), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(210, 210, 215, .42), transparent 30%),
    #fff;
}

.api-v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: 42px;
  align-items: center;
}

.api-v2-copy h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(52px, 7vw, 98px);
  line-height: 1.02;
}

.api-v2-copy .intro {
  margin-left: 0;
  max-width: 770px;
}

.latest-56-panel {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background: #111;
  color: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .22);
  overflow: hidden;
}

.latest-56-panel::after {
  content: "5.6";
  position: absolute;
  right: -14px;
  bottom: -30px;
  color: rgba(255, 255, 255, .07);
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
}

.latest-ribbon,
.new-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0, 113, 227, .1);
  color: #0066cc;
  font-size: 12px;
  font-weight: 800;
}

.latest-56-panel h2 {
  margin: 20px 0 14px;
  font-size: clamp(42px, 5vw, 68px);
}

.latest-56-panel p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .68);
  line-height: 1.65;
}

.latest-pair {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.latest-pair div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.latest-pair strong,
.latest-pair span {
  display: block;
}

.latest-pair span {
  margin-top: 10px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.5;
}

.price-first {
  padding-top: 92px;
}

.hero-price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.hero-price-cards article {
  min-height: 290px;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .07);
}

.hero-price-cards article.featured {
  background: #111;
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .22);
}

.hero-price-cards small {
  color: var(--muted);
  font-weight: 750;
}

.hero-price-cards .featured small,
.hero-price-cards .featured p {
  color: rgba(255, 255, 255, .66);
}

.hero-price-cards h3 {
  margin: 18px 0 14px;
  font-size: clamp(31px, 3vw, 46px);
}

.hero-price-cards p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-price-cards b {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 16px;
}

.hero-price-cards .featured b {
  color: #8ec5ff;
}

.price-table-wrap {
  margin-top: 42px;
  overflow-x: auto;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 24px;
  background: #fff;
}

.price-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  text-align: left;
}

.price-table th {
  color: #6e6e73;
  font-size: 12px;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:nth-child(1) {
  font-weight: 800;
}

.price-table td:nth-child(3),
.price-table td:nth-child(4) {
  color: var(--blue);
  font-weight: 750;
  white-space: nowrap;
}

.price-table .row-hot {
  background: #f5f9ff;
}

.stability-first {
  background: #fff;
}

.stability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.stability-grid article {
  min-height: 245px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
}

.stability-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 113, 227, .1);
  color: #0066cc;
  font-size: 13px;
  font-weight: 800;
}

.stability-grid h3 {
  margin: 26px 0 12px;
  font-size: 28px;
}

.stability-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.model-plaza-text {
  background: #fff;
}

.plaza-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.plaza-filter-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #f7f8fa;
}

.plaza-filter-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.plaza-filter-card p,
.plaza-filter-card dd {
  color: var(--muted);
}

.plaza-filter-card dl {
  margin: 24px 0 0;
}

.plaza-filter-card dt {
  margin-top: 18px;
  font-weight: 800;
}

.plaza-filter-card dd {
  margin: 6px 0 0;
  line-height: 1.45;
}

.plaza-model-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.model-text-card {
  min-height: 210px;
  padding: 25px;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
}

.model-text-card.hot {
  border-color: rgba(0, 113, 227, .18);
  background: linear-gradient(180deg, #fff, #f5f9ff);
  box-shadow: 0 18px 45px rgba(0, 113, 227, .08);
}

.model-text-card span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 113, 227, .1);
  color: #0066cc;
  font-size: 12px;
  font-weight: 800;
}

.model-text-card.hot span {
  background: rgba(0, 113, 227, .1);
  color: #0066cc;
}

.model-text-card h3 {
  margin: 18px 0 12px;
  font-size: 25px;
}

.model-text-card p {
  color: var(--muted);
  line-height: 1.58;
}

.model-text-card b {
  display: block;
  color: var(--blue);
  line-height: 1.5;
}

.convenience-marketplace {
  background: #fff;
}

.marketplace-shot {
  margin: 54px 0 0;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.marketplace-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.convenience-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.convenience-proof article {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 22px;
  background: #f7f8fa;
}

.convenience-proof strong {
  font-size: 20px;
}

.convenience-proof p {
  color: var(--muted);
  line-height: 1.58;
  margin: 10px 0 0;
}

.api-v6 .price-table-wrap {
  margin-top: 28px;
  border-radius: 22px;
}

.api-v6 .price-table {
  font-size: 13px;
}

.api-v6 .price-table th,
.api-v6 .price-table td {
  padding: 14px 18px;
  line-height: 1.35;
}

.api-v6 .price-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.api-v6 .price-table td {
  color: #424245;
  font-weight: 500;
}

.api-v6 .price-table td:nth-child(1) {
  color: #1d1d1f;
  font-weight: 700;
}

.api-v6 .price-table td:nth-child(3),
.api-v6 .price-table td:nth-child(4) {
  color: #0071e3;
  font-weight: 700;
}

.api-v6 .price-table .row-hot {
  background: #f7fbff;
}

.api-v6 .api-lineup article {
  min-height: 260px;
  padding: 24px;
}

.api-v6 .api-lineup h3 {
  min-height: 78px;
  font-size: clamp(25px, 2vw, 32px);
}

.api-v6 .api-lineup p,
.api-v6 .api-lineup b {
  font-size: 14px;
}

.api-v6 .convenience-marketplace {
  padding: 88px 0;
}

.api-v6 .convenience-marketplace .display {
  max-width: 720px;
  font-size: clamp(28px, 2.55vw, 36px);
  line-height: 1.16;
}

.api-v6 .convenience-marketplace .section-intro {
  max-width: 680px;
  font-size: 16px;
}

.marketplace-text-board {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 18px;
  margin-top: 42px;
  align-items: stretch;
}

.market-filter-copy,
.market-model-copy article {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 22px;
  background: #fff;
}

.market-filter-copy {
  padding: 28px;
}

.market-filter-copy small {
  color: #0071e3;
  font-size: 13px;
  font-weight: 760;
}

.market-filter-copy h3 {
  margin: 14px 0 12px;
  font-size: 24px;
  line-height: 1.16;
}

.market-filter-copy p {
  margin: 0;
  max-width: 330px;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.7;
}

.market-model-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.market-model-copy article {
  min-height: 150px;
  padding: 22px 24px;
}

.market-model-copy span,
.market-model-copy b,
.market-model-copy em {
  display: block;
}

.market-model-copy span {
  color: #86868b;
  font-size: 12px;
  font-weight: 760;
}

.market-model-copy b {
  margin-top: 18px;
  color: #1d1d1f;
  font-size: 22px;
  line-height: 1.12;
}

.market-model-copy em {
  margin-top: 12px;
  color: #6e6e73;
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.api-v6 .convenience-proof {
  margin-top: 18px;
}

.api-v6 .convenience-proof article {
  padding: 20px 22px;
  border-radius: 18px;
}

.api-v6 .convenience-proof strong {
  font-size: 17px;
}

.api-v6 .convenience-proof p {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 850px) {
  .marketplace-text-board,
  .market-model-copy {
    grid-template-columns: 1fr;
  }

  .api-v6 .api-lineup h3 {
    min-height: auto;
  }
}

.convenience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.convenience-grid article {
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
}

.convenience-grid strong {
  font-size: 24px;
}

.convenience-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.steps-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.steps-line article {
  min-height: 255px;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
}

.steps-line span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 800;
}

.steps-line h3 {
  margin: 24px 0 12px;
  font-size: 28px;
}

.steps-line p {
  color: var(--muted);
  line-height: 1.6;
}

.analytics-layout-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 48px;
  align-items: center;
}

.analysis-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.analysis-stat-grid div {
  min-height: 120px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.analysis-stat-grid strong {
  display: block;
  color: #fff;
  font-size: 30px;
}

.analysis-stat-grid span {
  display: block;
  color: rgba(255, 255, 255, .62);
  margin-top: 10px;
}

.sources {
  padding: 70px 0;
  background: var(--wash);
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 25px;
  font-size: 14px;
}

.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 30px;
  max-width: 850px;
}

.footer {
  background: var(--wash);
  border-top: 1px solid var(--line);
  padding: 22px 0 36px;
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.choice-stage {
  padding: 78px 0 112px;
}

.choice-stage .shell {
  max-width: 1180px;
}

.choice-stage .eyebrow,
.app-install-stage .eyebrow {
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.choice-stage .display {
  max-width: 700px;
  font-size: clamp(27px, 2.35vw, 34px);
  line-height: 1.16;
  font-weight: 730;
}

.choice-stage .section-intro {
  max-width: 660px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.62;
}

.choice-stage .install-choice-strip {
  margin-top: 52px;
  gap: 22px;
}

.install-card {
  min-height: 352px;
  padding: 30px;
  border-radius: 24px;
  overflow: hidden;
  border-color: rgba(0, 0, 0, .075);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.install-card h3 {
  max-width: 230px;
  margin: 20px 0 14px;
  font-size: clamp(32px, 2.5vw, 40px);
  line-height: 1.08;
  font-weight: 760;
}

.install-card p {
  max-width: 310px;
  min-height: 86px;
  font-size: 16px;
  line-height: 1.62;
}

.choice-badge {
  min-height: 25px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 760;
}

.choice-features {
  gap: 6px;
  margin: 20px 0 12px;
}

.choice-features span {
  min-height: 25px;
  padding: 4px 9px;
  border-radius: 9px;
  font-size: 12px;
}

.install-card .os-mark {
  right: 28px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
  opacity: 1;
}

.app-card {
  border-color: rgba(0, 113, 227, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, 1)),
    linear-gradient(135deg, rgba(0, 113, 227, .12), transparent 42%);
}

.app-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0071e3, rgba(0, 113, 227, 0));
}

.app-card .os-mark {
  background: rgba(0, 113, 227, .1);
  color: #0066cc;
  border: 1px solid rgba(0, 113, 227, .16);
}

.cli-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, 1)),
    linear-gradient(135deg, rgba(52, 199, 89, .13), transparent 46%);
  color: #1d1d1f;
  border-color: rgba(52, 199, 89, .2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.cli-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #34c759, rgba(52, 199, 89, 0));
}

.cli-card .os-mark {
  background: rgba(52, 199, 89, .1);
  color: #1f7a39;
  border: 1px solid rgba(52, 199, 89, .18);
}

.ide-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, 1)),
    linear-gradient(135deg, rgba(255, 159, 10, .14), transparent 46%);
}

.ide-card .os-mark {
  background: rgba(255, 159, 10, .1);
  color: #9a5a00;
  border: 1px solid rgba(255, 159, 10, .18);
}

.app-install-stage {
  padding: 66px 0 96px;
}

.app-install-stage .display {
  max-width: 620px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.2;
  font-weight: 720;
}

.app-install-stage .section-intro {
  max-width: 620px;
  margin-top: 10px;
  font-size: 15px;
}

@media (max-width: 850px) {
  .nav-inner {
    width: calc(100% - 24px);
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    padding-top: 48px;
  }

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

  .intro {
    font-size: 18px;
  }

  .product-stage {
    height: 365px;
    border-radius: 24px 24px 0 0;
  }

  .app-body {
    grid-template-columns: 1fr 160px;
    height: 321px;
  }

  .side {
    display: none;
  }

  .editor {
    padding: 24px 16px;
    font-size: 10px;
    overflow: hidden;
  }

  .codex-panel {
    padding: 18px 12px;
  }

  .bubble {
    font-size: 10px;
  }

  .section {
    padding: 78px 0;
  }

  .choice-strip,
  .install-choice-strip,
  .feature-grid,
  .benefit-grid,
  .price-highlight,
  .usecase-grid,
  .api-v2-hero-grid,
  .hero-price-cards,
  .stability-grid,
  .plaza-layout,
  .plaza-model-list,
  .convenience-proof,
  .convenience-grid,
  .steps-line,
  .analytics-layout-v2,
  .process-cards,
  .screenshot-grid,
  .model-catalog,
  .api-hero-grid,
  .analytics-layout,
  .login-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .choice,
  .feature-card {
    min-height: 280px;
  }

  .step,
  .path-item {
    grid-template-columns: 54px 1fr;
  }

  .step h3 {
    font-size: 23px;
  }

  .trouble {
    grid-template-columns: 42px 1fr;
  }

  .trouble a {
    grid-column: 2;
  }

  .source-links {
    flex-direction: column;
    gap: 12px;
  }

  .marketplace-shot {
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .shell {
    width: calc(100% - 32px);
  }

  .global-nav {
    height: auto;
    min-height: 48px;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .nav-links {
    width: 100%;
    padding-bottom: 2px;
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
    gap: 13px;
  }

  .product-stage {
    height: 330px;
  }

  .app-body {
    grid-template-columns: 1fr 125px;
    height: 286px;
  }

  .codex-panel {
    padding: 15px 9px;
  }

  .display {
    font-size: 36px;
  }

  .section-intro {
    font-size: 17px;
  }

  .step,
  .path-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .choice h3,
  .feature-card h3,
  .login-option h3 {
    font-size: 27px;
  }

  .install-card h3,
  .usecase-grid h3,
  .process-cards h3,
  .price-highlight strong {
    font-size: 26px;
  }

  .api-metrics,
  .analytics-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .screenshot-card figcaption {
    flex-direction: column;
  }

  .screenshot-card figcaption span {
    text-align: left;
  }

  .model-card-grid,
  .benefit-grid,
  .price-highlight,
  .process-cards,
  .hero-price-cards,
  .plaza-model-list,
  .convenience-grid,
  .steps-line,
  .analysis-stat-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .login-option,
  .panel {
    padding: 28px;
  }

  .tab {
    padding: 10px 13px;
  }

  .api-metrics,
  .analytics-metrics {
    grid-template-columns: 1fr;
  }

  .latest-pair {
    grid-template-columns: 1fr;
  }

  .hero-price-cards article.featured {
    transform: none;
  }

  .api-v2-copy h1 {
    font-size: 44px;
  }
}

.api-v3 .api-v2-hero {
  padding: 84px 0 74px;
  background:
    linear-gradient(90deg, rgba(228, 242, 255, .58) 0%, rgba(255, 255, 255, .98) 46%, rgba(245, 245, 247, .72) 100%),
    #fff;
}

.api-v3 .api-v2-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .62fr);
  gap: 54px;
}

.api-v3 .api-kicker {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 760;
  color: #0071e3;
}

.api-v3 .api-v2-copy h1 {
  max-width: 690px;
  font-size: clamp(48px, 4.55vw, 64px);
  line-height: 1.08;
}

.api-v3 .api-v2-copy .intro {
  max-width: 690px;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.58;
}

.api-dashboard-preview {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 32px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 28px 75px rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px);
}

.preview-top,
.preview-grid,
.preview-hero {
  position: relative;
}

.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  color: #6e6e73;
  font-size: 13px;
  font-weight: 720;
}

.preview-top b {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 113, 227, .1);
  color: #0066cc;
  font-size: 12px;
}

.preview-hero {
  padding: 26px 0 24px;
}

.preview-hero small {
  display: block;
  margin-bottom: 10px;
  color: #86868b;
  font-weight: 720;
}

.preview-hero strong {
  display: block;
  max-width: 410px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.16;
  letter-spacing: 0;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preview-grid div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 20px;
  background: #fff;
}

.preview-grid i,
.preview-grid b,
.preview-grid span {
  display: block;
  font-style: normal;
}

.preview-grid i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f5f5f7;
  color: #0071e3;
  font-size: 12px;
  font-weight: 800;
}

.preview-grid b {
  margin-top: 16px;
  color: #1d1d1f;
  font-size: 18px;
}

.preview-grid span {
  margin-top: 6px;
  color: #86868b;
  font-size: 13px;
}

.api-v3 .price-first {
  padding-top: 84px;
}

.api-v3 .price-first .display {
  max-width: 820px;
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.14;
}

.api-v3 .api-lineup {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.api-v3 .api-lineup article {
  min-height: 286px;
  padding: 28px;
  border-radius: 26px;
  box-shadow: none;
}

.api-v3 .api-lineup article.featured {
  transform: none;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
}

.api-v3 .api-lineup h3 {
  min-height: 92px;
  margin: 18px 0 12px;
  font-size: clamp(28px, 2.35vw, 39px);
  line-height: 1.08;
}

.api-v3 .api-lineup p {
  min-height: 54px;
  font-size: 15px;
}

.api-v3 .api-lineup b {
  font-size: 15px;
}

.api-v3 .new-badge {
  margin-right: 8px;
}

.api-v3 .price-table-wrap {
  margin-top: 34px;
  box-shadow: none;
}

.api-v3 .model-plaza-text .display,
.api-v3 .convenience-section .display,
.api-v3 .steps-focused .display {
  font-size: clamp(34px, 3.6vw, 50px);
}

@media (max-width: 850px) {
  .api-v3 .api-v2-hero-grid,
  .api-v3 .api-lineup {
    grid-template-columns: 1fr;
  }

  .api-v3 .api-v2-hero-grid {
    gap: 34px;
  }

  .api-v3 .api-v2-copy h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .api-v3 .api-lineup h3 {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .api-v3 .api-v2-hero {
    padding: 52px 0 58px;
  }

  .api-dashboard-preview {
    padding: 18px;
    border-radius: 24px;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
