:root {
  --background-primary: #000000;
  --background-secondary: #0f0f0f;
  --background-third: #1b1b1b;
  --background-forth: #363636;
  --background-alpha-primary: rgba(255, 255, 255, 0.08);
  --background-alpha-hover: rgba(255, 255, 255, 0.16);
  --background-alpha-disabled: rgba(255, 255, 255, 0.04);
  --text-white-primary: #ffffff;
  --text-white-secondary: rgba(255, 255, 255, 0.6);
  --text-white-third: rgba(255, 255, 255, 0.4);
  --text-dark-primary: #000000;
  --success: #4ac97e;
  --credit: #ffd147;
  --border-primary: rgba(255, 255, 255, 0.12);
  --border-secondary: rgba(255, 255, 255, 0.06);
  --button-primary-normal: #f2f2f2;
  --button-primary-hover: #dadada;
  --button-secondary-normal: rgba(255, 255, 255, 0.08);
  --button-secondary-hover: rgba(255, 255, 255, 0.16);
  --gradient-create: linear-gradient(90deg, #ffa052 0%, #e046a4 45%, #6851eb 100%);
  --gradient-ultra: linear-gradient(90deg, #a824ff 0%, #c824cd 45%, #ff4a8f 100%);
  --font-app: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-amount: "Inconsolata", system-ui, sans-serif;
  --ease-smooth: cubic-bezier(0.15, 0.75, 0.3, 1);
}

body:has(.theme-toggle-input:checked) {
  --background-primary: #f6f7f9;
  --background-secondary: #ffffff;
  --background-third: #eef0f4;
  --background-forth: #d7dbe2;
  --background-alpha-primary: rgba(255, 255, 255, 0.78);
  --background-alpha-hover: rgba(16, 18, 24, 0.08);
  --background-alpha-disabled: rgba(16, 18, 24, 0.05);
  --text-white-primary: #111318;
  --text-white-secondary: rgba(17, 19, 24, 0.68);
  --text-white-third: rgba(17, 19, 24, 0.44);
  --text-dark-primary: #111318;
  --border-primary: rgba(17, 19, 24, 0.14);
  --border-secondary: rgba(17, 19, 24, 0.08);
  --button-secondary-normal: rgba(17, 19, 24, 0.06);
  --button-secondary-hover: rgba(17, 19, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background-primary);
  color: var(--text-white-primary);
  font-family: var(--font-app);
  font-size: 14px;
  line-height: 19px;
}

.theme-toggle-input {
  position: fixed;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 1px solid var(--text-white-primary);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 56px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: color-mix(in srgb, var(--background-primary) 86%, transparent);
  border-bottom: 1px solid var(--border-primary);
  backdrop-filter: blur(32px);
}

.brand,
.desktop-nav,
.hero-actions,
.header-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  white-space: nowrap;
}

.brand b {
  font-weight: 700;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  object-fit: contain;
}

.desktop-nav {
  gap: 18px;
  color: var(--text-white-secondary);
  font-weight: 500;
}

.desktop-nav a,
.header-cta,
.btn,
summary,
.theme-toggle {
  transition: background 160ms var(--ease-smooth), color 160ms var(--ease-smooth), transform 160ms var(--ease-smooth);
}

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

.header-cta,
.btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  white-space: nowrap;
}

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

.theme-toggle {
  min-height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: var(--button-secondary-normal);
  border: 1px solid var(--border-secondary);
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  backdrop-filter: blur(32px);
  user-select: none;
}

.theme-toggle:hover {
  background: var(--button-secondary-hover);
  color: var(--text-white-primary);
}

.theme-toggle i {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 9999px;
  background: var(--background-alpha-disabled);
  border: 1px solid var(--border-primary);
}

.theme-toggle i::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: var(--gradient-create);
  transition: transform 160ms var(--ease-smooth);
}

body:has(.theme-toggle-input:checked) .theme-toggle i::before {
  transform: translateX(14px);
}

.header-cta,
.btn-secondary {
  background: var(--button-secondary-normal);
  color: var(--text-white-primary);
  border: 1px solid var(--border-secondary);
  backdrop-filter: blur(32px);
}

.header-cta:hover,
.btn-secondary:hover {
  background: var(--button-secondary-hover);
}

.btn-gradient {
  background: var(--gradient-create);
  color: var(--text-white-primary);
}

.btn:hover {
  transform: translateY(-1px);
}

main {
  overflow: hidden;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  min-height: min(760px, calc(100vh - 56px));
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.84fr);
  gap: 56px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.9vw, 68px);
  line-height: 1.08;
  font-weight: 700;
}

.hero-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--text-white-secondary);
  font-size: 18px;
  line-height: 28px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.source-note {
  margin: 14px 0 0;
  color: var(--text-white-third);
  font-size: 12px;
  line-height: 17px;
}

.team-console {
  padding: 16px;
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  background: var(--background-alpha-primary);
  backdrop-filter: blur(32px);
}

.console-top {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white-secondary);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--background-alpha-hover);
}

.console-top span:nth-child(1) {
  background: var(--button-primary-normal);
}

.console-top span:nth-child(2) {
  background: var(--credit);
}

.console-top span:nth-child(3) {
  background: var(--success);
}

.console-top strong {
  margin-left: auto;
  font-size: 12px;
  line-height: 17px;
  color: var(--text-white-secondary);
}

.workspace-card,
.console-grid article,
.model-savings-panel,
.benefit-grid article,
.workflow-steps article,
.operating-strip article,
.pricing-panel,
.feature-list article,
.reliability-panel,
.reliability-grid article,
.cert-badge,
.comparison-table,
.upgrade-notes article,
.team-logo-card,
.model-panel,
.platform-primary,
.platform-feature-grid article,
.faq details {
  border: 1px solid var(--border-primary);
  background: var(--background-alpha-primary);
  backdrop-filter: blur(32px);
}

.plan-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
}

.plan-card p,
.console-grid span,
.model-savings-head span,
.benefit-grid span,
.workflow-steps span {
  margin: 0;
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 600;
}

.plan-card h2 {
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 38px;
}

.price-lockup,
.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-amount);
  white-space: nowrap;
}

.price-lockup span,
.pricing-row span {
  color: var(--text-white-secondary);
  font-size: 20px;
  line-height: 30px;
}

.price-lockup strong {
  font-size: 44px;
  line-height: 48px;
}

.price-lockup small,
.pricing-row small {
  color: var(--text-white-secondary);
  font-size: 14px;
  line-height: 19px;
}

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

.console-grid article {
  min-height: 132px;
  padding: 16px;
  border-radius: 16px;
}

.console-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  line-height: 32px;
}

.console-grid p {
  margin: 8px 0 0;
  color: var(--text-white-third);
}

.model-savings-panel {
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
}

.model-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.model-row span {
  padding: 6px 9px;
  border-radius: 9999px;
  background: var(--background-alpha-disabled);
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 600;
}

.model-savings-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.model-savings-head strong {
  color: var(--credit);
  font-family: var(--font-amount);
  font-size: 18px;
  line-height: 28px;
}

.model-savings-bar {
  height: 8px;
  margin-top: 12px;
  border-radius: 9999px;
  background: var(--background-alpha-disabled);
  overflow: hidden;
}

.model-savings-bar span {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-ultra);
}

.model-savings-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.model-savings-legend span {
  padding: 5px 8px;
  border-radius: 9999px;
  background: var(--background-alpha-disabled);
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 700;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--text-white-secondary);
  font-size: 16px;
  line-height: 23px;
}

.benefit-grid,
.fit-grid,
.workflow-steps,
.feature-list,
.operating-strip,
.reliability-layout,
.reliability-grid,
.cert-grid,
.team-logo-wall,
.model-access-layout,
.platform-layout,
.platform-feature-grid,
.upgrade-notes {
  display: grid;
  gap: 16px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid article,
.workflow-steps article,
.feature-list article {
  min-height: 196px;
  padding: 18px;
  border-radius: 16px;
}

.benefit-grid h3,
.workflow-steps h3,
.feature-list h3,
.fit-grid h3,
.platform-primary h3,
.platform-feature-grid h3 {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 28px;
}

.benefit-grid p,
.workflow-steps p,
.feature-list p,
.fit-grid p,
.reliability-panel p,
.reliability-grid p,
.platform-primary p,
.platform-feature-grid p,
.pricing-panel p,
.faq p {
  margin: 10px 0 0;
  color: var(--text-white-secondary);
  font-size: 14px;
  line-height: 19px;
}

.fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-access {
  padding-top: 64px;
}

.model-access-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.model-panel {
  padding: 18px;
  border-radius: 16px;
}

.model-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-secondary);
}

.model-panel-head span {
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.model-panel-head strong {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-align: right;
}

.model-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.model-list li {
  min-height: 32px;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: var(--text-white-secondary);
}

.model-list li::before {
  content: "✓";
  grid-column: 1;
  color: var(--text-white-primary);
}

.model-list span {
  grid-column: 2;
  font-size: 14px;
  line-height: 19px;
}

.model-list b {
  grid-column: 3;
  justify-self: end;
  padding: 5px 9px;
  border-radius: 9999px;
  background: var(--credit);
  color: var(--text-dark-primary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.model-proof-strip {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-proof-strip span {
  padding: 8px 11px;
  border-radius: 9999px;
  background: var(--background-alpha-disabled);
  color: var(--text-white-secondary);
  border: 1px solid var(--border-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
}

.fit-grid article {
  overflow: hidden;
  border-radius: 16px;
  background: var(--background-alpha-primary);
  border: 1px solid var(--border-primary);
}

.fit-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fit-grid div {
  padding: 18px;
}

.fit-grid h3 {
  margin-top: 0;
}

.customers {
  padding-top: 64px;
}

.team-logo-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-logo-card {
  min-height: 128px;
  padding: 18px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  text-align: left;
}

.team-logo-card img {
  width: 54px;
  height: 54px;
  justify-self: center;
  flex: 0 0 auto;
  padding: 6px;
  background: var(--button-primary-normal);
  object-fit: contain;
  border-radius: 8px;
}

.team-logo-card strong {
  max-width: 100%;
  color: var(--text-white-primary);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 32px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.team-logo-card.wordmark {
  background: var(--background-alpha-disabled);
}

.team-logo-card.wordmark strong {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 38px;
}

.platform-section {
  padding-top: 64px;
}

.platform-layout {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.platform-primary {
  min-height: 420px;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.platform-primary > span,
.platform-feature-grid span {
  display: block;
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-primary h3 {
  max-width: 440px;
  margin-top: 18px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.12;
}

.platform-primary p {
  max-width: 460px;
  font-size: 16px;
  line-height: 23px;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.platform-tags span {
  padding: 8px 11px;
  border-radius: 9999px;
  background: var(--background-alpha-disabled);
  color: var(--text-white-secondary);
  border: 1px solid var(--border-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
}

.platform-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-feature-grid article {
  min-height: 198px;
  padding: 18px;
  border-radius: 16px;
}

.more-customers-strip {
  margin-top: 16px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  background: var(--background-alpha-primary);
  backdrop-filter: blur(32px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.more-customers-mark {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-ultra);
  color: var(--text-white-primary);
  font-family: var(--font-amount);
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

.more-customers-strip strong {
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.more-customers-strip p {
  max-width: 660px;
  margin: 8px 0 0;
  color: var(--text-white-secondary);
  font-size: 14px;
  line-height: 19px;
}

.customer-segments {
  max-width: 360px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.customer-segments span {
  padding: 6px 9px;
  border-radius: 9999px;
  background: var(--background-alpha-disabled);
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.workflow-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.operating-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.operating-strip article,
.upgrade-notes article {
  min-height: 120px;
  padding: 16px;
  border-radius: 16px;
}

.operating-strip span,
.upgrade-notes span {
  display: block;
  color: var(--text-white-primary);
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
}

.operating-strip p,
.upgrade-notes p {
  margin: 8px 0 0;
  color: var(--text-white-secondary);
}

.reliability-section {
  padding-top: 64px;
}

.reliability-layout {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.reliability-panel {
  min-height: 430px;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reliability-panel > span,
.reliability-grid span {
  display: block;
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.reliability-panel h3 {
  max-width: 460px;
  margin: 18px 0 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.12;
}

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

.reliability-grid article {
  min-height: 207px;
  padding: 18px;
  border-radius: 16px;
}

.reliability-grid h3 {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 28px;
}

.cert-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.cert-badge {
  min-height: 168px;
  padding: 18px;
  border-radius: 16px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.cert-badge small {
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.cert-badge strong {
  margin-top: 8px;
  font-family: var(--font-amount);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
}

.cert-badge span {
  max-width: 160px;
  margin-top: 10px;
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
}

.cert-badge.soc2 strong {
  color: var(--credit);
}

.cert-badge.iso strong {
  background: var(--gradient-create);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
}

.pricing-panel {
  min-height: 360px;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.tier-badge {
  padding: 6px 10px;
  border-radius: 9999px;
  background: var(--gradient-ultra);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
}

.pricing-row strong {
  font-size: 72px;
  line-height: 90px;
}

.feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list article {
  min-height: 168px;
}

.comparison-table {
  overflow: hidden;
  border-radius: 16px;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-secondary);
}

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

.comparison-head {
  background: var(--background-alpha-disabled);
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-row span {
  color: var(--text-white-secondary);
}

.comparison-row strong {
  color: var(--text-white-primary);
  font-weight: 700;
}

.upgrade-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: 16px;
  padding: 0;
}

.faq summary {
  cursor: pointer;
  padding: 18px;
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
}

.faq summary:hover {
  background: var(--background-alpha-hover);
}

.faq p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-cta {
  text-align: center;
  display: grid;
  justify-items: center;
}

.final-cta h2 {
  max-width: 820px;
}

.site-footer {
  min-height: 72px;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  color: var(--text-white-secondary);
  border-top: 1px solid var(--border-primary);
}

.site-footer a {
  color: var(--text-white-primary);
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .plan-layout,
  .model-access-layout,
  .reliability-layout,
  .platform-layout {
    grid-template-columns: 1fr;
  }

  .team-console {
    max-width: 680px;
  }

  .benefit-grid,
  .fit-grid,
  .operating-strip,
  .reliability-grid,
  .team-logo-wall,
  .upgrade-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .more-customers-strip {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .customer-segments {
    grid-column: 1 / -1;
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 16px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 13px;
    line-height: 19px;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
  }

  .header-cta {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
    line-height: 17px;
    border-radius: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .theme-toggle {
    min-height: 32px;
    padding: 0 8px;
    border-radius: 8px;
  }

  .theme-toggle span {
    display: none;
  }

  .section-shell {
    width: min(100% - 32px, 560px);
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    gap: 36px;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .hero-lede {
    font-size: 16px;
    line-height: 23px;
  }

  .btn {
    width: 100%;
  }

  .team-console {
    padding: 12px;
    border-radius: 20px;
  }

  .plan-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .console-grid,
  .benefit-grid,
  .fit-grid,
  .workflow-steps,
  .model-access-layout,
  .platform-layout,
  .platform-feature-grid,
  .reliability-layout,
  .reliability-grid,
  .cert-grid,
  .feature-list,
  .operating-strip,
  .team-logo-wall,
  .upgrade-notes {
    grid-template-columns: 1fr;
  }

  .team-logo-card {
    min-height: 104px;
  }

  .team-logo-card strong {
    font-size: 20px;
    line-height: 30px;
  }

  .platform-primary {
    min-height: 0;
  }

  .platform-primary h3,
  .reliability-panel h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .reliability-panel {
    min-height: 0;
  }

  .more-customers-strip {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .more-customers-mark {
    width: 52px;
    height: 52px;
    font-size: 36px;
    line-height: 44px;
  }

  .more-customers-strip strong {
    font-size: 20px;
    line-height: 30px;
  }

  .model-panel-head {
    display: grid;
  }

  .model-panel-head strong {
    text-align: left;
  }

  .model-list li {
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 6px;
    align-items: start;
  }

  .model-list span {
    padding-top: 4px;
  }

  .model-list b {
    grid-column: 2;
    justify-self: start;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .comparison-head {
    display: none;
  }

  .pricing-row strong {
    font-size: 60px;
    line-height: 72px;
  }

  .site-footer {
    width: min(100% - 32px, 560px);
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
