:root {
  --bg: #F7F5F0;
  --white: #FFFFFF;
  --paper: #FFFFFF;
  --panel: #F0EDE6;
  --panel-2: #e8ece3;
  --ink: #1A1712;
  --text: #1A1712;
  --muted: #6F6A61;
  --quiet: #A8A399;
  --light-muted: #A8A399;
  --line: #E6E1D8;
  --border: #E6E1D8;
  --dark: #1A1712;
  --dark-soft: #242118;
  --dark-text: #F7F5F0;
  --accent: #C2724A;
  --accent-dark: #9A5436;
  --accent-d: #9A5436;
  --accent-soft: #F4E4D8;
  --sand: #F1E7D6;
  --sand-d: #9A7E4E;
  --olive: #5e714e;
  --olive-soft: #e5eadf;
  --blue: #40596b;
  --max: 1180px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 24px 70px rgba(23, 20, 15, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

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

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 245, 240, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo-wrap,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.logo-svg {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.logo-name {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-brand {
  font-weight: 700;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: nowrap;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

.lang-toggle {
  width: 38px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  color: var(--text);
  border-color: var(--light-muted);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid var(--dark);
  border-radius: 99px;
  color: var(--white);
  background: var(--dark);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.nav-cta:hover {
  opacity: 0.84;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border: 0;
  background: none;
  cursor: pointer;
}

.ham span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--bg);
}

#mobile-menu.open {
  display: flex;
}

#mobile-menu a {
  color: var(--text);
  font-size: 24px;
  text-decoration: none;
}

#mobile-menu .m-cta {
  padding: 13px 24px;
  border-radius: 99px;
  color: var(--white);
  background: var(--dark);
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 128px 40px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, #FBEADD 0%, transparent 60%),
    var(--bg);
}

.hero-fluid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.6;
}

.blob1 {
  width: 560px;
  height: 560px;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, #F6C9A6 0%, transparent 70%);
  animation: drift1 24s ease-in-out infinite;
}

.blob2 {
  width: 480px;
  height: 480px;
  right: -8%;
  bottom: -12%;
  background: radial-gradient(circle, #F3D9B2 0%, transparent 70%);
  animation: drift2 28s ease-in-out infinite;
}

.blob3 {
  width: 400px;
  height: 400px;
  top: 26%;
  right: 20%;
  background: radial-gradient(circle, #EFB69A 0%, transparent 70%);
  animation: drift3 20s ease-in-out infinite;
}

.blob4 {
  width: 320px;
  height: 320px;
  top: 18%;
  left: 22%;
  background: radial-gradient(circle, #F5DCBE 0%, transparent 70%);
  animation: drift2 26s ease-in-out infinite;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--muted);
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(46px, 7.5vw, 88px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero h1 em {
  font-style: italic;
}

.hero p {
  max-width: 720px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 99px;
  color: var(--white);
  background: var(--dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 160ms ease;
}

.btn-primary:hover,
.button:hover {
  opacity: 0.84;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-ghost:hover {
  color: var(--text);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--dark);
  border: 1px solid var(--dark);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
}

@keyframes drift1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(120px, 80px) scale(1.12);
  }
}

@keyframes drift2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-100px, -70px) scale(1.08);
  }
}

@keyframes drift3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, 90px) scale(0.95);
  }
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.center .s-sub {
  margin-left: auto;
  margin-right: auto;
}

.s-pill {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--accent-soft);
  border-radius: 99px;
  color: var(--accent-d);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.s-head {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.s-head em {
  font-style: italic;
}

.s-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 500px;
  line-height: 1.65;
}

.lifecycle {
  padding: 104px 48px;
  background: var(--panel);
}

.cycle {
  position: relative;
  width: 620px;
  height: 600px;
  max-width: 100%;
  margin: 36px auto 0;
}

.cycle-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ring-track {
  fill: none;
  stroke: rgba(194, 114, 74, 0.16);
  stroke-width: 2;
}

.ring-arc {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.ring-node {
  fill: var(--bg);
  stroke: rgba(194, 114, 74, 0.4);
  stroke-width: 2;
  transition: fill 0.16s ease, stroke 0.16s ease;
}

.ring-node.lit {
  fill: var(--accent);
  stroke: var(--accent);
}

.cyc-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.cyc-center svg {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  display: block;
}

.cyc-center span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.cyc-label {
  position: absolute;
  width: 190px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.cyc-label .n {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  border: 1px solid var(--light-muted);
  border-radius: 50%;
  color: var(--muted);
  background: var(--bg);
  font-size: 12px;
  font-weight: 500;
  transition:
    color 0.16s ease,
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.cyc-label.on .n {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.cyc-label h4 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.cyc-label p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.cyc-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 99px;
  color: var(--accent-d);
  background: var(--accent-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cyc-loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--light-muted);
  font-size: 13px;
  text-align: center;
}

.cyc-loop svg {
  width: 15px;
  height: 15px;
}

.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.rv.on {
  opacity: 1;
  transform: none;
}

.rv-d1 {
  transition-delay: 0.07s;
}

.rv-d2 {
  transition-delay: 0.14s;
}

.rv-d3 {
  transition-delay: 0.21s;
}

.section {
  padding: 104px 0;
}

.trust-section {
  background: #FBF8F1;
}

.jobs-section {
  background: var(--sand);
}

.agents-section {
  padding: 104px 48px;
  background: var(--white);
}

.verticals-section {
  background: #F4F6F0;
}

.pricing-section {
  color: var(--dark-text);
  background: var(--dark-soft);
}

.pricing-heading {
  max-width: 920px;
  margin-bottom: 46px;
}

.pricing-section .section-kicker {
  color: #E5BC9B;
}

.pricing-section .section-title {
  color: var(--dark-text);
}

.pricing-section .body-copy {
  max-width: 740px;
  margin-top: 22px;
  color: rgba(247, 245, 240, 0.68);
}

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

.pricing-card {
  min-height: 308px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(247, 245, 240, 0.14);
  border-radius: var(--radius);
  background: rgba(247, 245, 240, 0.055);
}

.pricing-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: #E5BC9B;
  font-size: 11px;
  font-weight: 800;
}

.pricing-card h3 {
  max-width: 520px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.pricing-card p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(247, 245, 240, 0.66);
  font-size: 16px;
  line-height: 1.66;
}

.pricing-card strong {
  display: inline-flex;
  margin-top: auto;
  padding-top: 28px;
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 600;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 30px;
  border: 1px solid rgba(247, 245, 240, 0.14);
  border-radius: var(--radius);
  background: rgba(247, 245, 240, 0.08);
}

.pricing-cta p {
  max-width: 680px;
  color: rgba(247, 245, 240, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.pricing-cta .btn-primary {
  flex: none;
  color: var(--dark);
  background: var(--dark-text);
}

#agents .s-sub {
  max-width: 860px;
  text-wrap: balance;
}

.tt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.tt-card {
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.tt-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
}

.tt-icon svg {
  width: 21px;
  height: 21px;
}

.tt-icon.conv {
  color: var(--accent-d);
  background: var(--accent-soft);
}

.tt-icon.head {
  color: var(--sand-d);
  background: var(--sand);
}

.tt-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.tt-card h4 {
  max-width: 560px;
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tt-card > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.tt-shot-wrap {
  margin: 28px -32px -32px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

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

.hitl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  text-align: center;
}

.hitl svg {
  width: 18px;
  height: 18px;
  color: var(--accent-d);
  flex: none;
}

.hitl span {
  color: var(--text);
  font-size: 15px;
}

.hitl b {
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

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

.section-heading .body-copy {
  margin-top: 20px;
}

.centered-heading {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .section-kicker {
  justify-content: center;
}

.centered-heading .body-copy {
  margin-right: auto;
  margin-left: auto;
}

.agents-heading {
  max-width: 1140px;
}

.jobs-heading .section-title {
  text-align: center;
  text-align-last: auto;
  text-wrap: balance;
}

.jobs-heading {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.jobs-heading .section-kicker {
  justify-content: center;
}

#jobs .jobs-heading {
  max-width: 1080px;
}

#jobs .jobs-heading .section-title {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.section-title {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.body-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.body-copy p + p {
  margin-top: 28px;
}

.job-card,
.trust-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.agent-card h3,
.job-card h3,
.trust-list h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.trust-list h3 {
  font-size: 20px;
  line-height: 1.14;
}

.agent-card p,
.job-card p,
.trust-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.trust-list p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}

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

.agent-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.agent-card-dark {
  color: var(--dark-text);
  border-color: rgba(23, 20, 15, 0.2);
  background: var(--dark-soft);
}

.agent-copy {
  padding: 30px 30px 6px;
}

.agent-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.agent-card-dark .agent-label {
  color: #e5bc9b;
}

.agent-card-dark p {
  color: rgba(248, 244, 235, 0.68);
}

.agent-card img {
  width: calc(100% - 48px);
  margin: 20px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(23, 20, 15, 0.1);
}

.agent-card-dark img {
  border-color: rgba(248, 244, 235, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.trust-heading {
  max-width: 880px;
  margin-bottom: 48px;
}

.trust-heading .body-copy {
  max-width: 680px;
  margin-top: 22px;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
  gap: 34px;
  align-items: center;
}

.workspace-frame {
  margin: 0;
}

.workspace-frame img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.workspace-frame figcaption {
  margin-top: 14px;
  color: var(--quiet);
  font-size: 13px;
}

.trust-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, auto));
  align-self: center;
  height: auto;
  gap: 12px;
}

.trust-list article {
  padding: 20px;
}

.trust-list span,
.vertical-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
}

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

.job-card {
  min-height: 204px;
  padding: 26px;
}

.vertical-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.vertical-list div {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 22px;
  background: var(--paper);
}

.vertical-list span {
  margin: 0;
}

.vertical-list strong {
  font-size: 18px;
  font-weight: 600;
}

.verticals-section .split {
  align-items: stretch;
}

.verticals-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.verticals-heading .body-copy {
  max-width: 520px;
  margin-top: 24px;
}

.verticals-section .vertical-list {
  align-self: stretch;
}

.verticals-section .vertical-list div {
  min-height: 0;
}

.trust-list article {
  min-height: 0;
  padding: 20px;
  background: rgba(255, 253, 250, 0.76);
}

.title-line {
  display: block;
}

.footer {
  padding: 34px 0;
  color: rgba(248, 244, 235, 0.54);
  background: var(--dark);
  border-top: 1px solid rgba(248, 244, 235, 0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.footer-brand {
  color: var(--dark-text);
}

.footer a:not(.footer-brand) {
  transition: color 160ms ease;
}

.footer a:not(.footer-brand):hover {
  color: var(--dark-text);
}

@media (max-width: 1160px) {
  nav {
    padding: 0 24px;
  }

  .nav-right,
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 1040px) {
  .nav {
    gap: 14px;
  }

  .nav-menu {
    gap: 14px;
  }

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

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

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

@media (max-width: 780px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .nav {
    height: 64px;
  }

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

  .menu-toggle {
    display: flex;
    order: 4;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
  }

  .nav-menu a:hover {
    background: var(--panel);
  }

  .language-switcher button {
    min-width: 30px;
  }

  .hero {
    min-height: 82svh;
    padding: 104px 0 46px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(18, 14, 10, 0.78) 0%, rgba(18, 14, 10, 0.72) 42%, rgba(18, 14, 10, 0.9) 100%),
      url("assets/workspace.png") center / cover no-repeat;
  }

  .hero-inner {
    margin-left: auto;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 84px);
  }

  .hero-copy {
    font-size: 19px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .split,
  .agent-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 72px 0;
  }

  .lifecycle {
    padding: 72px 20px;
  }

  .cycle {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .cycle-svg,
  .cyc-center {
    display: none;
  }

  .cyc-label {
    position: static;
    width: auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    text-align: left;
    transform: none;
  }

  .cyc-label .n {
    flex: none;
    margin: 0;
  }

  .cyc-label .cyc-body {
    flex: 1;
  }

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

  .agents-heading .section-title,
  .jobs-heading .section-title {
    text-align: center;
    text-align-last: auto;
    text-wrap: balance;
  }

  .jobs-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

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

  .pricing-card {
    min-height: 0;
    padding: 24px;
  }

  .pricing-card span {
    margin-bottom: 28px;
  }

  .pricing-card h3 {
    font-size: 25px;
  }

  .pricing-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .agents-section {
    padding: 72px 20px;
  }

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

  .agent-card {
    min-height: auto;
  }

  .agent-card img {
    width: calc(100% - 28px);
    margin: 20px 14px 18px;
  }

  .vertical-list div {
    grid-template-columns: 46px 1fr;
  }

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

@media (max-width: 420px) {
  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero-copy,
  .body-copy {
    font-size: 16px;
  }

  .section-title {
    font-size: 34px;
  }

  .job-card,
  .trust-list article {
    padding: 22px;
  }
}

@media (max-width: 1040px) {
  nav {
    padding: 0 24px;
  }

  .nav-right,
  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-right {
    margin-left: auto;
    gap: 14px;
  }

  .ham {
    display: flex;
    order: 3;
  }
}

@media (max-width: 780px) {
  nav {
    height: 64px;
    padding: 0 18px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-right {
    margin-left: auto;
    gap: 14px;
  }

  .ham {
    display: flex;
    order: 3;
  }

  .logo-name {
    font-size: 14px;
  }

  .logo-svg {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 104px 20px 64px;
    color: var(--text);
    text-align: center;
    background:
      radial-gradient(ellipse 80% 55% at 50% -5%, #FBEADD 0%, transparent 60%),
      var(--bg);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 14vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 0;
    gap: 16px;
  }

  .btn-primary {
    width: auto;
    min-height: 48px;
  }

}
