:root {
  color-scheme: light;
  --bg: #f4f2ed;
  --bg-soft: #fbfaf7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --ink: #11151d;
  --ink-soft: rgba(17, 21, 29, 0.76);
  --muted: #616b7b;
  --line: rgba(17, 24, 39, 0.08);
  --line-strong: rgba(17, 24, 39, 0.14);
  --accent: #2558ff;
  --accent-2: #7bc1ff;
  --accent-soft: rgba(37, 88, 255, 0.1);
  --shadow-lg: 0 28px 90px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 18px 48px rgba(17, 24, 39, 0.06);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --text-display-hero: clamp(3.2rem, 5vw, 5rem);
  --text-display-section: clamp(2.25rem, 3.2vw, 3.5rem);
  --text-display-feature: clamp(1.8rem, 2.4vw, 2.55rem);
  --text-body-lead: clamp(1.05rem, 1.25vw, 1.2rem);
  --text-body-copy: clamp(0.98rem, 0.92vw, 1.04rem);
  --text-label: 0.78rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: 'Manrope', 'Noto Sans SC', sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(93, 134, 255, 0.16), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(123, 193, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #faf8f3 0%, #f1f5fb 48%, #f6f3ed 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 88%);
  opacity: 0.36;
}

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

button {
  font: inherit;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 18px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.18)),
    linear-gradient(145deg, #2c56ff, #78c8ff);
  box-shadow: 0 18px 38px rgba(37, 88, 255, 0.26);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: rgba(17, 21, 29, 0.76);
  font-size: 0.96rem;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.button,
.mini-button,
.ghost-pill,
.settings-item,
.workspace-item {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.mini-button:hover,
.ghost-pill:hover,
.settings-item:hover,
.workspace-item:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #111823, #2558ff 86%);
  box-shadow: 0 18px 38px rgba(37, 88, 255, 0.22);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-ghost {
  min-height: 46px;
}

.hero-section,
.feature-section,
.cards-section,
.team-section,
.cta-section {
  padding: 58px 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(17, 21, 29, 0.72);
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(37, 88, 255, 0.1);
}

.hero-intro h1 {
  margin: 22px 0 16px;
  font-size: var(--text-display-hero);
  line-height: 0.96;
  letter-spacing: -0.052em;
}

.hero-intro .hero-lead {
  max-width: 760px;
  margin-inline: auto;
}

.hero-lead,
.section-heading p,
.feature-copy p,
.team-copy p,
.cta-surface p,
.value-card p,
.operator-card span,
.proof-strip span,
.settings-copy p,
.capture-card p,
.integration-entry p,
.workspace-note,
.workspace-resource-card p {
  color: var(--muted);
  font-size: var(--text-body-copy);
  line-height: 1.74;
}

.hero-lead,
.section-heading p {
  font-size: var(--text-body-lead);
  line-height: 1.66;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.hero-product-preview {
  margin-top: clamp(32px, 4vw, 56px);
}

.trust-row span,
.feature-index,
.value-index,
.preview-kicker {
  font-family: 'JetBrains Mono', monospace;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: rgba(17, 21, 29, 0.74);
  font-size: 0.82rem;
}

.surface {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 249, 253, 0.78));
  box-shadow: var(--shadow-lg);
}

.hero-preview-shell {
  padding: 18px;
}

.window-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 4px 6px 18px;
}

.window-dots {
  display: inline-flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 21, 29, 0.14);
}

.window-dots span:first-child {
  background: rgba(255, 94, 84, 0.9);
}

.window-dots span:nth-child(2) {
  background: rgba(255, 189, 46, 0.92);
}

.window-dots span:nth-child(3) {
  background: rgba(39, 201, 63, 0.9);
}

.window-search {
  justify-self: center;
  width: min(100%, 360px);
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(17, 21, 29, 0.62);
  font-size: 0.9rem;
}

.window-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(17, 21, 29, 0.62);
  font-size: 0.8rem;
}

.preview-canvas {
  display: grid;
  grid-template-columns: 64px 240px minmax(0, 1fr) 360px;
  min-height: 600px;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.preview-rail,
.preview-nav-column,
.preview-right-column {
  border-right: 1px solid var(--line);
}

.preview-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.72);
}

.rail-logo,
.rail-icon,
.rail-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.rail-logo {
  background: rgba(37, 88, 255, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.rail-icon {
  color: rgba(17, 21, 29, 0.72);
}

.rail-icon.active {
  background: rgba(17, 21, 29, 0.08);
}

.rail-plus {
  width: 36px;
  height: 36px;
  border: 1px dashed var(--line-strong);
  color: rgba(17, 21, 29, 0.54);
}

.preview-nav-column {
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.84);
}

.preview-nav-head {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
}

.preview-nav-head strong {
  font-size: 1.05rem;
}

.preview-nav-head span,
.preview-nav-label {
  color: rgba(17, 21, 29, 0.54);
}

.preview-nav-label {
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-primary-action {
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: white;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
  font-weight: 700;
}

.preview-primary-action::before {
  content: '+';
  display: inline-flex;
  margin-right: 10px;
  color: rgba(17, 21, 29, 0.56);
}

.preview-main-column {
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.88);
}

.preview-main-head,
.resource-head,
.capture-head,
.preview-head,
.settings-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-main-title {
  display: grid;
  gap: 3px;
}

.preview-main-title strong {
  font-size: 1.04rem;
}

.preview-main-title span,
.preview-head span,
.settings-panel-head span {
  color: rgba(17, 21, 29, 0.54);
  font-size: 0.86rem;
}

.preview-main-actions {
  display: inline-flex;
  gap: 10px;
}

.ghost-pill,
.mini-button,
.settings-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.88rem;
}

.ghost-pill.active,
.settings-item.active {
  background: rgba(17, 21, 29, 0.08);
}

.preview-composer {
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 251, 255, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.preview-composer-copy {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.66;
  color: rgba(17, 21, 29, 0.68);
}

.preview-composer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.preview-composer-actions span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  color: rgba(17, 21, 29, 0.76);
}

.preview-composer-actions span.active {
  border-color: rgba(37, 88, 255, 0.22);
  background: rgba(37, 88, 255, 0.08);
}

.preview-empty-state {
  max-width: 660px;
  margin-top: 40px;
  color: var(--muted);
  font-size: var(--text-body-copy);
  line-height: 1.72;
}

.preview-right-column {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.76);
}

.preview-panel-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(17, 21, 29, 0.05);
}

.preview-panel-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 10px;
  color: rgba(17, 21, 29, 0.58);
  font-size: 0.86rem;
}

.preview-panel-tabs span.active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
}

.preview-resource-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.preview-resource-card:last-child {
  border-bottom: 0;
}

.resource-head h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.mini-button {
  min-height: 38px;
  padding-inline: 14px;
}

.proof-section {
  padding: 6px 0 14px;
}

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

.proof-strip > div {
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2,
.team-copy h2,
.cta-surface h2 {
  margin: 16px 0 14px;
  font-size: var(--text-display-section);
  line-height: 1.02;
  letter-spacing: -0.046em;
}

.feature-stack {
  display: grid;
  gap: 28px;
}

.feature-block {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.feature-block.reverse > *:first-child {
  order: 2;
}

.feature-block.reverse > *:last-child {
  order: 1;
}

.feature-copy {
  padding: 8px 4px;
}

.feature-index,
.preview-kicker {
  color: rgba(17, 21, 29, 0.56);
  font-size: 0.78rem;
}

.feature-copy h3 {
  margin: 16px 0 14px;
  font-size: var(--text-display-feature);
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.feature-visual {
  padding: 28px;
  min-height: 420px;
}

.flow-preview,
.memory-board,
.settings-layout {
  display: grid;
  gap: 16px;
  height: 100%;
}

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

.flow-column,
.memory-column {
  display: grid;
  gap: 14px;
}

.flow-column span,
.memory-column span,
.capture-head span:first-child {
  color: rgba(17, 21, 29, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-card,
.memory-card,
.capture-card,
.preview-summary-card,
.integration-entry,
.value-card,
.operator-card,
.settings-panel,
.settings-sidebar {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.04);
}

.flow-card,
.memory-card,
.capture-card,
.preview-summary-card {
  padding: 18px;
}

.flow-card--active,
.memory-card--active {
  border-color: rgba(37, 88, 255, 0.22);
  background: linear-gradient(180deg, rgba(37, 88, 255, 0.1), rgba(255, 255, 255, 0.92));
}

.capture-board,
.integrations-preview {
  display: grid;
  gap: 22px;
}

.capture-head span:last-child,
.preview-head span,
.preview-summary-card span,
.integration-meta span {
  color: rgba(17, 21, 29, 0.54);
  font-size: 0.86rem;
}

.capture-grid,
.preview-summary-grid,
.integration-list,
.card-grid,
.operator-grid {
  display: grid;
  gap: 16px;
}

.capture-grid,
.preview-summary-grid,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capture-card strong,
.preview-summary-card strong,
.value-card h3,
.operator-card strong,
.settings-copy strong,
.integration-meta h4 {
  display: block;
  margin: 0 0 10px;
}

.integrations-preview .preview-head strong,
.settings-panel-head h4 {
  font-size: 1.12rem;
}

.integration-list {
  grid-template-columns: 1fr;
}

.integration-entry {
  position: relative;
  padding: 22px 88px 22px 22px;
}

.integration-entry .mini-button {
  position: absolute;
  top: 22px;
  right: 22px;
}

.integration-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.integration-meta h4 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

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

.settings-layout {
  grid-template-columns: 240px minmax(0, 1fr);
}

.settings-sidebar {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.settings-group {
  display: grid;
  gap: 12px;
}

.settings-group > span {
  color: rgba(17, 21, 29, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
}

.settings-item {
  justify-content: flex-start;
  min-height: 46px;
  border-radius: 14px;
}

.settings-panel {
  padding: 22px 24px;
}

.settings-panel-head {
  margin-bottom: 18px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.settings-row:first-of-type {
  border-top: 0;
}

.settings-copy {
  max-width: 560px;
}

.settings-control {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: white;
  font-size: 0.92rem;
}

.settings-toggle {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: rgba(17, 21, 29, 0.12);
}

.settings-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.12);
}

.cards-section {
  position: relative;
}

.value-card {
  min-height: 260px;
  padding: 26px;
}

.value-index {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
}

.value-card h3 {
  font-size: 1.5rem;
  line-height: 1.18;
}

.team-band,
.cta-surface {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

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

.operator-card {
  min-height: 180px;
  padding: 24px;
}

.cta-surface {
  padding: 38px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(245, 248, 255, 0.88));
  box-shadow: var(--shadow-lg);
}

.cta-side {
  display: grid;
  gap: 18px;
  align-self: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-facts {
  display: grid;
  gap: 12px;
}

.cta-fact {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.cta-fact strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.cta-fact span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.site-footer {
  padding: 18px 0 46px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(17, 21, 29, 0.66);
  font-size: 0.94rem;
}

@media (max-width: 1280px) {
  .preview-canvas {
    grid-template-columns: 56px 210px minmax(0, 1fr);
  }

  .preview-right-column {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-right: 0;
  }
}

@media (max-width: 1120px) {
  .feature-block,
  .team-band,
  .cta-surface {
    grid-template-columns: 1fr;
  }

  .feature-block.reverse > *:first-child,
  .feature-block.reverse > *:last-child {
    order: initial;
  }

  .site-nav {
    display: none;
  }

  .capture-grid,
  .preview-summary-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .window-bar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .window-search {
    width: 100%;
  }

  .preview-canvas,
  .settings-layout,
  .memory-board,
  .operator-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .preview-rail {
    display: none;
  }

  .preview-nav-column,
  .preview-right-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .preview-main-column {
    order: 2;
  }

  .preview-nav-column {
    order: 1;
  }

  .preview-right-column {
    order: 3;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 14px;
  }

  .nav-row {
    border-radius: 24px;
  }

  .button-ghost {
    display: none;
  }

  .hero-section,
  .feature-section,
  .cards-section,
  .team-section,
  .cta-section {
    padding: 46px 0;
  }

  .hero-preview-shell,
  .feature-visual,
  .cta-surface {
    padding: 22px;
  }

  .proof-strip > div {
    padding: 22px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body::before {
    background-size: 46px 46px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero-copy h1,
  .section-heading h2,
  .team-copy h2,
  .cta-surface h2,
  .feature-copy h3 {
    letter-spacing: -0.04em;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .hero-lead,
  .section-heading p {
    font-size: 1.04rem;
  }

  .workspace-compose-tabs,
  .hero-actions,
  .trust-row,
  .cta-actions {
    gap: 10px;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .trust-row span,
  .button,
  .button-secondary,
  .button-primary {
    width: 100%;
  }

  .settings-row,
  .resource-head,
  .capture-head,
  .preview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .integration-entry {
    padding-right: 22px;
  }

  .integration-entry .mini-button {
    position: static;
    margin-top: 12px;
  }
}
