/* Clark public pages.
   Mirrors the in-app design system in clark-ui/src/index.css so static SEO
   pages feel like part of the same product as the authenticated app. */

@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-sans-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-sans-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/dm-sans-normal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/dm-sans-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/newsreader-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --bg-primary: #faf8f5;
  --bg-secondary: #f2efe9;
  --bg-tertiary: #e8e4db;
  --bg-elevated: #fcfcfb;
  --bg-hover: #f0ece3;
  --text-primary: #2e2925;
  --text-secondary: #57504a;
  --text-muted: #685f58;
  --text-faint: #716860;
  --text-on-accent: #ffffff;
  --accent: #79594d;
  --accent-hover: #6a4f44;
  --border: rgba(60, 50, 40, 0.12);
  --border-subtle: rgba(60, 50, 40, 0.06);
  --border-strong: rgba(60, 50, 40, 0.22);
  --focus: var(--accent);
  --max-width: 1030px;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --font-editorial: "Newsreader", Georgia, serif;
  --font-mono: "JetBrains Mono", "SF Mono", "Fira Code", "Cascadia Code", ui-monospace, monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-lg: 1.0625rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.375rem;
  --text-5xl: 3rem;
  --text-6xl: 3.375rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

* {
  box-sizing: border-box;
}

*:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 38%, transparent);
  border-radius: 6px;
}

html {
  scrollbar-gutter: stable both-edges;
}

html[lang="ja"] {
  --font-sans: "DM Sans", "Hiragino Sans", "Yu Gothic", "Meiryo", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
}

html[lang="zh-CN"] {
  --font-sans: "DM Sans", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Heiti SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
}

html[lang="hi"] {
  --font-sans: "DM Sans", "Nirmala UI", "Noto Sans Devanagari", "Mangal", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
}

html[lang="ar"] {
  --font-sans: "DM Sans", "Geeza Pro", "Noto Sans Arabic", "Tahoma", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
}

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

a:hover {
  color: var(--accent-hover);
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

p,
li {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

::selection {
  background: rgba(121, 89, 77, 0.18);
}

/* ─── Header ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__inner {
  max-width: var(--max-width);
  min-height: 56px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.site-nameplate {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  color: var(--text-primary);
  font-weight: 600;
}

.site-nameplate__icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
}

.site-nameplate__mark {
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: center;
}

.site-nav__link {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 200ms ease;
}

.site-nav__link:hover {
  color: var(--text-primary);
}

.site-nav__cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--text-primary);
  color: var(--text-on-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background-color 200ms ease;
}

.site-nav__cta:hover {
  background: var(--accent-hover);
  color: var(--text-on-accent);
}

.site-announcement {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background-color 200ms ease, color 200ms ease;
}

.site-announcement:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

/* ─── Page layout ────────────────────────────────── */
.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 0;
}

.page--narrow {
  max-width: 760px;
}

.crumbs {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
}

.crumbs a {
  color: var(--text-muted);
}

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

.crumbs span {
  margin: 0 8px;
  color: var(--text-faint);
}

/* Mono small-caps eyebrow above display headings. Mirrors `.text-eyebrow`. */
.rubric {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-xl {
  max-width: 820px;
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.display-xl em,
.display-lg em,
.display-md em,
.launch-banner__title em {
  font-style: normal;
}

.display-lg {
  max-width: 760px;
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.display-md {
  max-width: 700px;
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

html[lang="hi"] .display-xl,
html[lang="hi"] .display-lg,
html[lang="hi"] .display-md,
html[lang="ar"] .display-xl,
html[lang="ar"] .display-lg,
html[lang="ar"] .display-md {
  line-height: 1.2;
}

html[lang="ja"] .display-xl,
html[lang="zh-CN"] .display-xl {
  line-height: 1.16;
}

.lede {
  max-width: 64ch;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.65;
}

.body-lg,
.body {
  max-width: 64ch;
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

.footnote {
  color: var(--text-muted);
  font-size: var(--text-xs);
  font-weight: 500;
}

.doc-lede-quote {
  max-width: 64ch;
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.6;
}

.doc-subhead {
  margin: 28px 0 8px;
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.raw-docs-footnote {
  margin: 48px 0 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.raw-docs-footnote__label {
  margin-right: 6px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.raw-docs-footnote a {
  color: var(--text-secondary);
  transition: color 200ms ease;
}

.raw-docs-footnote a:hover {
  color: var(--text-primary);
}

.section-rule {
  margin: 64px 0;
  border: 0;
  border-top: 1px solid var(--border-subtle);
}

/* ─── Layout grids ──────────────────────────────── */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

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

.col-8 {
  grid-column: span 8;
}

.col-4 {
  grid-column: span 4;
}

/* ─── Static prompt card on home ────────────────── */
.static-prompt {
  max-width: 720px;
  margin-top: 32px;
  padding: 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.static-prompt label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
}

.static-prompt textarea {
  width: 100%;
  min-height: 80px;
  resize: none;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text-primary);
  font: inherit;
  font-size: var(--text-base);
  line-height: 1.5;
}

.static-prompt__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.static-prompt__actions span {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.static-prompt__actions a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--text-primary);
  color: var(--text-on-accent);
  font-size: var(--text-base);
  transition: background-color 200ms ease;
}

.static-prompt__actions a:hover {
  background: var(--accent-hover);
  color: var(--text-on-accent);
}

/* ─── Numbered list (mirrors `NumberedList` component) ─ */
.numbered {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.numbered > li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
}

.numbered > li:first-child {
  border-top: 0;
  padding-top: 0;
}

.numbered__serial {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  line-height: 1.25;
}

.numbered__title {
  margin: 0 0 8px;
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

.numbered__body {
  max-width: 64ch;
  margin: 0;
  color: var(--text-secondary);
}

/* ─── Cards (mirrors rounded-2xl elevated surface) ─── */
.card {
  display: block;
  min-height: 140px;
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-elevated);
  transition: border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  border-color: var(--border);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.card__kicker {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card__title {
  margin: 0 0 8px;
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

.card__body {
  margin: 0;
  color: var(--text-secondary);
}

/* ─── Ledger (compare table) ────────────────────── */
.ledger {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.ledger th,
.ledger td {
  padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: left;
  vertical-align: top;
}

.ledger thead th {
  border-top: 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ledger td {
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.ledger td:first-child {
  width: 30%;
  padding-right: 24px;
  color: var(--text-primary);
  font-weight: 600;
}

.ledger td:nth-child(2) {
  width: 32%;
  padding-right: 28px;
}

/* ─── Bullets ───────────────────────────────────── */
.bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.bullets li {
  position: relative;
  padding: 9px 0 9px 20px;
  color: var(--text-secondary);
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--text-faint);
}

/* ─── Launch banner (mirrors `LaunchBanner` component) ── */
.launch-banner {
  margin-top: 80px;
  padding: 28px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.launch-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.launch-banner__rubric {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-banner__title {
  max-width: 560px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.launch-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--text-primary);
  color: var(--text-on-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background-color 200ms ease;
}

.launch-cta:hover {
  background: var(--accent-hover);
  color: var(--text-on-accent);
}

.launch-cta__arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.launch-cta:hover .launch-cta__arrow {
  transform: translateX(2px);
}

/* ─── Team pricing and contact pages ────────────── */
.team-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 56px;
  padding: 12px 0 64px;
}

.team-display,
.team-section-title,
.team-final-cta h2 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-editorial);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.02;
}

.team-display {
  max-width: 760px;
  font-size: 68px;
}

.team-lede {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.6;
}

.team-hero__actions,
.team-final-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.team-hero__actions {
  margin-top: 30px;
}

.team-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.team-button--primary {
  border-color: var(--text-primary);
  background: #171715;
  color: #fffaf1;
}

.team-button--primary:hover {
  background: #34302c;
  color: #fffaf1;
}

.team-button--secondary {
  background: rgba(255, 255, 255, 0.54);
  color: var(--text-primary);
}

.team-button--secondary:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.team-hero__visual {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(143, 171, 209, 0.45), transparent 35%),
    linear-gradient(145deg, #d8e9ec, #f8f2e6 62%, #e5ded2);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(46, 41, 37, 0.08), 0 24px 80px rgba(46, 41, 37, 0.14);
}

.team-window {
  position: absolute;
  left: 12%;
  right: 9%;
  top: 18%;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 28px 70px rgba(46, 41, 37, 0.18);
  overflow: hidden;
}

.team-window__bar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.team-window__bar span,
.mock-browser__bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.team-window__bar span:nth-child(1),
.mock-browser__bar span:nth-child(1) {
  background: #e87968;
}

.team-window__bar span:nth-child(2),
.mock-browser__bar span:nth-child(2) {
  background: #e9c45e;
}

.team-window__bar span:nth-child(3),
.mock-browser__bar span:nth-child(3) {
  background: #73c681;
}

.team-window__body {
  padding: 34px;
}

.team-window__task {
  padding: 22px;
  border-radius: 18px;
  background: #181816;
}

.team-window__task b,
.team-window__task span {
  display: block;
}

.team-window__task b {
  color: #f7efe4;
  font-size: var(--text-sm);
}

.team-window__task span {
  margin-top: 8px;
  color: rgba(247, 239, 228, 0.72);
  font-size: var(--text-sm);
}

.team-window__progress {
  height: 10px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-tertiary);
}

.team-window__progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8db5ff, #6f8fe7);
}

.team-window__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.team-window__tiles i {
  height: 74px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.team-orbit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.82);
  color: var(--text-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(46, 41, 37, 0.12);
}

.team-orbit::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #41c56a;
}

.team-orbit--one {
  top: 11%;
  right: 8%;
}

.team-orbit--two {
  left: 9%;
  bottom: 14%;
}

.team-section {
  margin-top: 96px;
}

.team-section-title {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  font-size: 52px;
  text-align: center;
}

.team-section-title--wide {
  max-width: 940px;
}

.team-section-lede {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--text-muted);
  text-align: center;
  font-size: var(--text-base);
  font-weight: 600;
}

.team-workflow__switcher {
  position: relative;
  margin-top: 42px;
}

.team-workflow__radio {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.team-workflow__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.team-workflow__tabs label {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease;
}

.team-workflow__tabs label:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.team-workflow__panel {
  display: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

#workflow-web-app:checked ~ .team-workflow__tabs label[for="workflow-web-app"],
#workflow-wide-research:checked ~ .team-workflow__tabs label[for="workflow-wide-research"],
#workflow-scheduled-task:checked ~ .team-workflow__tabs label[for="workflow-scheduled-task"],
#workflow-cloud-browser:checked ~ .team-workflow__tabs label[for="workflow-cloud-browser"],
#workflow-data-visualization:checked ~ .team-workflow__tabs label[for="workflow-data-visualization"],
#workflow-knowledge:checked ~ .team-workflow__tabs label[for="workflow-knowledge"],
#workflow-computer:checked ~ .team-workflow__tabs label[for="workflow-computer"] {
  background: var(--bg-elevated);
  color: var(--text-primary);
  box-shadow: inset 0 0 0 1px var(--border-subtle);
}

#workflow-web-app:checked ~ .team-workflow__panels [data-panel="web-app"],
#workflow-wide-research:checked ~ .team-workflow__panels [data-panel="wide-research"],
#workflow-scheduled-task:checked ~ .team-workflow__panels [data-panel="scheduled-task"],
#workflow-cloud-browser:checked ~ .team-workflow__panels [data-panel="cloud-browser"],
#workflow-data-visualization:checked ~ .team-workflow__panels [data-panel="data-visualization"],
#workflow-knowledge:checked ~ .team-workflow__panels [data-panel="knowledge"],
#workflow-computer:checked ~ .team-workflow__panels [data-panel="computer"] {
  display: grid;
}

.team-workflow__mockup {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 41, 37, 0.12);
  border-radius: 18px;
  background: #cfe0e5;
  overflow: hidden;
}

.team-workflow__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.team-workflow__copy h3 {
  max-width: 360px;
  color: var(--text-primary);
  font-size: var(--text-2xl);
  line-height: 1.15;
}

.team-workflow__copy p {
  max-width: 42ch;
  margin: 14px 0 0;
}

.team-workflow__prompt {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 54px;
  padding: 20px 24px;
  border: 1px solid rgba(46, 41, 37, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(46, 41, 37, 0.16);
}

.team-workflow__prompt span {
  display: block;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.team-workflow__prompt p {
  margin: 6px 0 0;
  color: var(--text-primary);
  font-size: var(--text-lg);
  line-height: 1.35;
}

.team-workflow__live {
  position: absolute;
  top: 64px;
  right: 21%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-primary);
  font-size: var(--text-xl);
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(46, 41, 37, 0.1);
}

.team-workflow__live span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #24c655;
}

.mock-app,
.mock-browser,
.mock-card,
.mock-calendar,
.mock-chart,
.mock-stack,
.mock-terminal {
  width: min(520px, 68%);
  min-height: 310px;
  border: 1px solid rgba(46, 41, 37, 0.1);
  border-radius: 12px;
  background: #f8fbff;
  box-shadow: 0 24px 55px rgba(46, 41, 37, 0.12);
}

.mock-app {
  padding: 28px;
}

.mock-app__nav {
  width: 140px;
  height: 12px;
  border-radius: 999px;
  background: #7959dd;
}

.mock-app__hero {
  width: 52%;
  height: 120px;
  margin: 42px auto 0;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 45%, #f8fbff 0 32%, #cbc6ff 33% 58%, transparent 59%);
}

.mock-app__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.mock-app__grid span,
.mock-card .mock-lines span {
  height: 34px;
  border-radius: 8px;
  background: #e9eef8;
}

.mock-card {
  padding: 34px 42px;
  background: #fff;
  transform: rotate(-2deg);
}

.mock-card__title {
  color: var(--text-primary);
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  font-weight: 760;
}

.mock-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mock-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 26px;
}

.mock-table span {
  height: 28px;
  background: #eef2ea;
}

.mock-calendar {
  padding: 26px;
  background: #fffaf3;
}

.mock-calendar__head,
.mock-calendar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mock-calendar__head span {
  color: var(--text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
}

.mock-calendar__grid {
  margin-top: 14px;
}

.mock-calendar__grid b {
  height: 54px;
  border-radius: 10px;
  background: #f0ece3;
}

.mock-calendar__grid b:nth-child(3),
.mock-calendar__grid b:nth-child(6) {
  background: #dbe7ff;
}

.mock-calendar__task {
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  background: #171715;
  color: #fffaf1;
  font-weight: 700;
}

.mock-browser {
  background: #fff;
  overflow: hidden;
}

.mock-browser__bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.mock-browser__bar strong {
  margin-left: 8px;
  color: var(--text-muted);
  font-size: var(--text-xs);
}

.mock-browser__body {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 18px;
  padding: 20px;
}

.mock-browser__side {
  min-height: 220px;
  border-radius: 12px;
  background: #eef2f5;
}

.mock-browser__main {
  display: grid;
  gap: 12px;
}

.mock-browser__main i {
  border-radius: 10px;
  background: #f2efe9;
}

.mock-chart {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
  background: #fff;
}

.mock-chart__bars {
  height: 210px;
  display: flex;
  align-items: end;
  gap: 16px;
}

.mock-chart__bars span {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: #8eb3ff;
}

.mock-chart__bars span:nth-child(1) { height: 38%; }
.mock-chart__bars span:nth-child(2) { height: 58%; }
.mock-chart__bars span:nth-child(3) { height: 42%; }
.mock-chart__bars span:nth-child(4) { height: 78%; }
.mock-chart__bars span:nth-child(5) { height: 64%; }

.mock-chart__caption {
  margin-top: 20px;
  color: var(--text-primary);
  font-weight: 700;
}

.mock-stack {
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mock-stack div {
  position: absolute;
  inset: 36px 58px;
  border: 1px solid rgba(46, 41, 37, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(46, 41, 37, 0.12);
}

.mock-stack div:nth-child(2) {
  transform: translate(-42px, 34px) rotate(-6deg);
}

.mock-stack div:nth-child(3) {
  transform: translate(48px, 58px) rotate(5deg);
}

.mock-terminal {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 32px;
  background: #171715;
}

.mock-terminal span {
  color: #d8f4de;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
}

.team-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.team-feature-card {
  min-height: 220px;
  padding: 28px 24px;
  border: 1px solid rgba(46, 41, 37, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
}

.team-feature-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 9px;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.team-feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.team-feature-card h3,
.team-result-card h3,
.team-faq-wrap h3,
.team-pricing-card h3,
.team-trust h3,
.contact-sales__features h2 {
  color: var(--text-primary);
  font-family: var(--font-editorial);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.1;
}

.team-feature-card h3 {
  font-size: var(--text-xl);
}

.team-feature-card p {
  margin: 8px 0 0;
}

.team-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.team-result-card {
  min-width: 0;
}

.result-visual {
  position: relative;
  height: 210px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #ebe9e6;
  overflow: hidden;
}

.result-visual--report b,
.result-visual--report span,
.result-visual--site b,
.result-visual--site span,
.result-visual--site i {
  display: block;
  border-radius: 5px;
  background: #fff;
}

.result-visual--report {
  align-content: center;
  justify-items: center;
  gap: 10px;
}

.result-visual--report b {
  width: 45%;
  height: 14px;
  background: #668de6;
}

.result-visual--report span {
  width: 58%;
  height: 10px;
}

.result-visual--map {
  background:
    linear-gradient(28deg, transparent 0 48%, rgba(120, 170, 120, 0.3) 49% 51%, transparent 52%),
    linear-gradient(112deg, transparent 0 44%, rgba(100, 130, 190, 0.28) 45% 47%, transparent 48%),
    #edf0e7;
}

.result-visual--map span {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #e55647;
}

.result-visual--map span:nth-child(1) { left: 39%; top: 38%; }
.result-visual--map span:nth-child(2) { left: 58%; top: 47%; }
.result-visual--map span:nth-child(3) { left: 50%; top: 62%; }
.result-visual--map span:nth-child(4) { left: 63%; top: 31%; }

.result-visual--docs span {
  position: absolute;
  width: 38%;
  height: 70%;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(46, 41, 37, 0.12);
}

.result-visual--docs span:nth-child(1) {
  transform: translateX(-34px) rotate(-7deg);
}

.result-visual--docs span:nth-child(2) {
  transform: translateX(34px) rotate(6deg);
}

.result-visual--sheet {
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  padding: 42px;
  background: #eeeeec;
}

.result-visual--sheet span {
  width: 100%;
  height: 18px;
  background: #fff;
}

.result-visual--sheet span:nth-child(6n + 1) {
  background: #d9e5ff;
}

.result-visual--site {
  align-content: center;
  justify-items: center;
  gap: 12px;
  background: linear-gradient(145deg, #5b2de1, #7b37e8 46%, #2a1e8d);
}

.result-visual--site b {
  width: 56%;
  height: 18px;
}

.result-visual--site span {
  width: 42%;
  height: 10px;
  opacity: 0.8;
}

.result-visual--site i {
  width: 62%;
  height: 72px;
  opacity: 0.88;
}

.team-result-card__category {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 700;
}

.team-result-card h3 {
  font-size: var(--text-xl);
}

.team-pricing-section {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.team-pricing-card {
  margin-top: 42px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.team-pricing-card__main {
  padding: 26px;
}

.team-pricing-card h3 {
  font-size: var(--text-2xl);
}

.team-billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.team-billing-toggle label {
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: center;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.team-billing-toggle input {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 20px;
  height: 20px;
  accent-color: #1685f7;
}

.team-billing-toggle span {
  display: grid;
  gap: 7px;
  margin-left: 2px;
  padding-top: 20px;
}

.team-billing-toggle strong {
  color: var(--text-primary);
  font-size: var(--text-xl);
}

.team-billing-toggle small {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.team-billing-toggle b {
  position: absolute;
  top: 6px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 7px;
  background: #e2f0ff;
  color: #0b76e0;
  font-size: var(--text-xs);
}

.team-billing-toggle input:checked + span,
.team-billing-toggle label:has(input:checked) {
  border-color: #1685f7;
  background: #edf6ff;
}

.team-seat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.team-seat-row label,
.team-credit-select span,
.contact-field span {
  color: var(--text-primary);
  font-size: var(--text-sm);
  font-weight: 700;
}

.team-stepper {
  display: grid;
  grid-template-columns: 36px 98px 36px;
  gap: 4px;
}

.team-stepper button,
.team-stepper input,
.team-credit-select select,
.contact-field input,
.contact-field select,
.contact-field textarea {
  min-height: 38px;
  border: 1px solid var(--border-subtle);
  border-radius: 9px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font: inherit;
  font-size: var(--text-sm);
}

.team-stepper button {
  cursor: pointer;
  font-size: var(--text-xl);
}

.team-stepper input {
  text-align: center;
  font-weight: 700;
}

.team-credit-select {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.team-credit-select select {
  width: 100%;
  padding: 0 12px;
}

.team-pricing-card__cta {
  width: 100%;
  margin-top: 20px;
}

.team-pricing-features {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.team-pricing-features li {
  position: relative;
  padding: 7px 0 7px 24px;
}

.team-pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--text-primary);
}

.team-pricing-card__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 18px 26px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(250, 248, 245, 0.7);
}

.team-pricing-card__summary div {
  min-height: 88px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.team-pricing-card__summary span {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.team-pricing-card__summary strong {
  margin-top: 8px;
  color: var(--text-primary);
  font-size: var(--text-lg);
}

.team-pricing-card__summary p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-muted);
  text-align: center;
  font-size: var(--text-sm);
  line-height: 1.4;
}

.team-faq-wrap {
  margin-top: 58px;
}

.team-faq-wrap h3 {
  margin-bottom: 16px;
  font-size: var(--text-2xl);
}

.team-faq {
  border-top: 1px solid var(--border-subtle);
}

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

.team-faq summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-primary);
  cursor: pointer;
  font-weight: 700;
}

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

.team-faq summary::after {
  content: "+";
  color: var(--text-muted);
  font-size: var(--text-xl);
}

.team-faq[open] summary::after {
  content: "−";
}

.team-faq p {
  margin: 0;
  padding: 0 0 20px;
}

.team-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding: 26px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--bg-secondary);
}

.team-trust h3 {
  font-size: var(--text-2xl);
}

.team-trust p {
  max-width: 52ch;
  margin: 8px 0 0;
}

.team-final-cta {
  justify-content: center;
  margin-top: 88px;
  padding: 56px 24px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.team-final-cta h2 {
  width: 100%;
  font-size: 46px;
  text-align: center;
}

.contact-sales {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 80px;
  align-items: center;
}

.contact-sales .team-display {
  font-size: 52px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field--full,
.contact-form__submit {
  grid-column: 1 / -1;
}

.contact-field--bot {
  display: none;
}

.contact-field b {
  color: #d44231;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0 12px;
  border: 0;
  background: var(--bg-secondary);
}

.contact-field textarea {
  padding: 14px 12px;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  border-radius: 999px;
  cursor: pointer;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.64;
}

.contact-form__status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.contact-form__status[data-kind="success"] {
  color: #267246;
}

.contact-form__status[data-kind="error"] {
  color: #b33125;
}

.contact-sales__support {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.contact-sales__panel {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(31, 96, 125, 0.15)),
    linear-gradient(140deg, #d8edf7, #b7dce8 42%, #0f6387);
  overflow: hidden;
}

.contact-sales__art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(160deg, transparent 0 52%, rgba(255, 255, 255, 0.42) 53% 55%, transparent 56%),
    linear-gradient(20deg, transparent 0 62%, rgba(255, 255, 255, 0.3) 63% 65%, transparent 66%);
}

.contact-sales__features {
  position: relative;
  width: min(86%, 430px);
  margin: 0 auto;
  padding: 34px 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-sales__features h2 {
  font-size: var(--text-xl);
}

.contact-sales__features ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.contact-sales__features li {
  position: relative;
  padding: 8px 0 8px 34px;
  color: var(--text-primary);
}

.contact-sales__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(46, 41, 37, 0.35);
  border-radius: 5px;
}

/* ─── Footer (mirrors `PublicFooter` component) ──── */
.site-footer {
  margin-top: 96px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 30px;
}

.site-footer__title {
  max-width: 480px;
  margin: 0 0 40px;
  color: var(--text-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.site-footer__grid h2 {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__grid a,
.site-footer__links a {
  display: block;
  padding: 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.85;
  transition: color 200ms ease;
}

.site-footer__grid a:hover,
.site-footer__links a:hover {
  color: var(--text-primary);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 32px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

@media (max-width: 900px) {
  .grid-12,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .col-8,
  .col-4 {
    grid-column: 1 / -1;
  }

  .site-nav__link {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-hero,
  .team-workflow__panel,
  .contact-sales {
    grid-template-columns: 1fr;
  }

  .team-hero {
    min-height: 0;
    gap: 34px;
  }

  .team-display {
    font-size: 54px;
  }

  .team-section-title {
    font-size: 44px;
  }

  .team-feature-grid,
  .team-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-workflow__mockup {
    min-height: 430px;
  }

  .contact-sales {
    gap: 44px;
  }
}

@media (max-width: 680px) {
  .site-header__inner {
    padding: 0 18px;
  }

  .site-announcement {
    justify-content: flex-start;
    text-align: left;
  }

  .page {
    padding: 48px 18px 0;
  }

  .display-xl {
    font-size: var(--text-4xl);
  }

  .section-rule {
    margin: 48px 0;
  }

  .numbered > li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .grid-2 {
    gap: 12px;
  }

  .ledger {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .launch-banner {
    margin-top: 64px;
    padding: 22px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .team-hero {
    padding-bottom: 36px;
  }

  .team-display,
  .contact-sales .team-display {
    font-size: 42px;
  }

  .team-section {
    margin-top: 68px;
  }

  .team-section-title,
  .team-final-cta h2 {
    font-size: 36px;
  }

  .team-lede {
    font-size: var(--text-base);
  }

  .team-hero__visual,
  .contact-sales__panel {
    min-height: 380px;
    border-radius: 18px;
  }

  .team-window {
    left: 7%;
    right: 7%;
    top: 18%;
  }

  .team-window__body {
    padding: 22px;
  }

  .team-orbit {
    display: none;
  }

  .team-workflow__tabs {
    justify-content: flex-start;
  }

  .team-workflow__mockup {
    min-height: 420px;
  }

  .team-workflow__prompt {
    left: 7%;
    right: 7%;
    bottom: 28px;
  }

  .team-workflow__prompt p {
    font-size: var(--text-base);
  }

  .team-workflow__live {
    top: 34px;
    right: 8%;
    font-size: var(--text-base);
  }

  .team-workflow__copy {
    padding: 24px;
  }

  .mock-app,
  .mock-browser,
  .mock-card,
  .mock-calendar,
  .mock-chart,
  .mock-stack,
  .mock-terminal {
    width: 78%;
    min-height: 260px;
  }

  .team-feature-grid,
  .team-results-grid,
  .team-billing-toggle,
  .team-pricing-card__summary,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .team-feature-card {
    min-height: 0;
  }

  .result-visual {
    height: 190px;
  }

  .team-pricing-card__main,
  .team-pricing-card__summary {
    padding: 20px;
  }

  .team-seat-row,
  .team-trust {
    align-items: stretch;
    flex-direction: column;
  }

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

  .team-pricing-card__summary div,
  .team-pricing-card__summary p {
    grid-column: auto;
  }

  .contact-field--full,
  .contact-form__submit {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
  }
}
