:root {
  --black: #050806;
  --graphite: #111713;
  --graphite-soft: #18201a;
  --green: #16a34a;
  --white: #ffffff;
  --off-white: #f4f7f4;
  --gray-100: #e8ece9;
  --gray-300: #b6beb8;
  --gray-500: #6b756e;
  --gray-700: #323a35;
  --shadow: 0 28px 80px rgba(5, 8, 6, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--green);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(5, 8, 6, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--gray-500);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--gray-700);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--green);
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  cursor: pointer;
  list-style: none;
  font-size: 1.3rem;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary:focus-visible {
  outline: 2px solid var(--gray-300);
  outline-offset: 2px;
}

.mobile-menu[open] summary {
  color: var(--black);
  border-color: var(--gray-300);
  border-bottom-color: var(--green);
}

.mobile-menu nav {
  position: absolute;
  top: 68px;
  right: 20px;
  display: grid;
  min-width: 230px;
  padding: 12px;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(5, 8, 6, 0.12);
}

.btn-primary:hover {
  background: var(--green);
}

.btn-secondary {
  color: var(--black);
  background: var(--white);
  border-color: rgba(5, 8, 6, 0.14);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-light {
  color: var(--black);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 26px;
  background: linear-gradient(180deg, #f7faf7 0%, #ffffff 78%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 8, 6, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 8, 6, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.82fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--green);
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.3rem);
  letter-spacing: -0.072em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 .green {
  color: var(--green);
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--gray-500);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 26px;
  color: var(--gray-500);
  font-size: 0.78rem;
}

.operation-panel {
  position: relative;
  padding: 22px;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 38px 90px rgba(5, 8, 6, 0.22);
}

.operation-panel::after {
  display: none;
  content: none;
}

.panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--green);
  border-radius: 50%;
}

.conversation {
  margin-top: 18px;
  padding: 17px;
  color: var(--gray-100);
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.conversation small {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-list {
  display: grid;
  margin-top: 12px;
  gap: 9px;
}

.signal {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 12px;
  font-size: 0.74rem;
}

.signal b {
  color: var(--white);
  font-size: 0.78rem;
}

.signal-number {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 8px;
  font-size: 0.66rem;
  font-weight: 900;
}

.signal-state {
  color: var(--green);
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(5, 8, 6, 0.06);
}

.benefit-strip span {
  position: relative;
  padding: 20px 18px 20px 37px;
  color: var(--gray-700);
  font-size: 0.77rem;
  font-weight: 700;
}

.benefit-strip span::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.benefit-strip span + span {
  border-left: 1px solid var(--gray-100);
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--off-white);
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--green);
}

.section h2,
.section-title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.15rem, 4.2vw, 4.15rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
  text-wrap: balance;
}

.section-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--gray-500);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-dark .section-intro {
  color: var(--gray-300);
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.problem-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--gray-100);
}

.problem-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  line-height: 1.55;
}

.problem-item span:first-child {
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.flow-step {
  min-height: 250px;
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 11px;
  font-size: 0.72rem;
  font-weight: 900;
}

.flow-step h3 {
  margin: 54px 0 0;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.flow-step p {
  margin: 12px 0 0;
  color: var(--gray-300);
  font-size: 0.84rem;
  line-height: 1.65;
}

.team-head {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 60px;
}

.team-head .section-intro {
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.person-card {
  position: relative;
  min-height: 410px;
  padding: 30px;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
}

.person-card::before {
  display: none;
  content: none;
}

.person-photo-frame {
  display: block;
  width: calc(100% + 60px);
  aspect-ratio: 4 / 5;
  margin: -30px -30px 26px;
  overflow: hidden;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 0 0;
}

.person-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% var(--photo-y, 50%);
}

.person-photo--marina {
  --photo-y: 12%;
}

.person-photo--clara {
  --photo-y: 50%;
}

.person-photo--laura {
  --photo-y: 12%;
}

.person-card.has-photo .person-index {
  margin-top: 0;
}

.person-index {
  color: var(--black);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.person-card h3 {
  margin: 42px 0 0;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.person-card.has-photo h3 {
  margin-top: 18px;
}

.person-role {
  display: block;
  min-height: 54px;
  margin-top: 10px;
  color: var(--black);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.person-card p {
  margin: 28px 0 0;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
}

.person-action,
.person-limit {
  display: grid;
  margin-top: 26px;
  padding-top: 20px;
  gap: 7px;
  border-top: 1px solid var(--gray-100);
}

.person-action strong,
.person-limit strong {
  color: var(--black);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.person-action span,
.person-limit span {
  color: var(--gray-700);
  font-size: 0.82rem;
  line-height: 1.55;
}

.person-limit {
  margin-top: 18px;
  padding-top: 16px;
}

.team-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 22px 24px;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  line-height: 1.65;
}

.team-note::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.engineering-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.capability {
  min-height: 146px;
  padding: 22px;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.capability span {
  display: block;
  margin-bottom: 35px;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 900;
}

.capability strong {
  font-size: 0.94rem;
  line-height: 1.4;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.segment-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.segment-card.featured {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.segment-label {
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured .segment-label {
  color: var(--green);
}

.segment-card h3 {
  margin: 70px 0 0;
  font-size: 2rem;
  letter-spacing: -0.055em;
}

.segment-card p {
  margin: 18px 0 28px;
  color: var(--gray-500);
  font-size: 0.91rem;
  line-height: 1.75;
}

.featured p {
  color: var(--gray-300);
}

.segment-card .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.featured .text-link {
  color: var(--green);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.proof-timeline {
  display: grid;
}

.proof-item {
  position: relative;
  padding: 0 0 40px 42px;
  border-left: 1px solid var(--gray-100);
}

.proof-item::before {
  position: absolute;
  top: 2px;
  left: -6px;
  width: 11px;
  height: 11px;
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  content: "";
}

.proof-item:last-child {
  padding-bottom: 0;
}

.proof-item span {
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-item h3 {
  margin: 10px 0 0;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}

.proof-item p {
  margin: 10px 0 0;
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.65;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 52px;
  counter-reset: method;
}

.method-item {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border-top: 1px solid var(--gray-300);
  counter-increment: method;
}

.method-item::before {
  color: var(--green);
  content: "0" counter(method);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.method-item h3 {
  margin: 80px 0 0;
  font-size: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.cta-section {
  padding: 42px 0 80px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 72px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-lg);
}

.cta-box::after {
  display: none;
  content: none;
}

.cta-box h2 {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.3rem);
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.cta-box p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--gray-300);
  line-height: 1.7;
}

.cta-box .hero-actions {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 56px 0 28px;
  color: var(--gray-300);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 60px;
}

.footer-brand {
  color: var(--white);
}

.footer-copy {
  max-width: 420px;
  margin-top: 18px;
  color: var(--gray-300);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 10px 0;
  font-size: 0.86rem;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-500);
  font-size: 0.72rem;
}

.page-hero {
  padding: 92px 0 88px;
  background: var(--off-white);
}

.page-hero h1 {
  max-width: 1040px;
}

.page-hero .lead {
  max-width: 800px;
}

.page-section {
  padding: 86px 0;
}

.page-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.page-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.content-stack {
  display: grid;
  gap: 14px;
}

.content-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
}

.content-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}

.content-card p,
.legal-copy p,
.legal-copy li {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.75;
}

.content-card p {
  margin: 10px 0 0;
}

.legal-wrap {
  max-width: 850px;
  margin-inline: auto;
}

.legal-copy h2 {
  margin: 54px 0 14px;
  font-size: 1.6rem;
  letter-spacing: -0.035em;
}

.legal-copy h3 {
  margin: 34px 0 10px;
  font-size: 1.05rem;
}

.legal-copy ul {
  padding-left: 20px;
}

.legal-meta {
  display: inline-flex;
  margin-top: 26px;
  padding: 9px 12px;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  font-size: 0.75rem;
}

.notice {
  padding: 20px 22px;
  color: var(--gray-700);
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 14px;
  line-height: 1.65;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav > a:not(.btn) {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .problem-grid,
  .engineering-grid,
  .proof-grid,
  .page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 36px;
  }

  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-step:nth-child(3) {
    border-right: 0;
  }

  .flow-step:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .method-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius-lg: 26px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-copy span,
  .site-nav > .btn {
    display: none;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .operation-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .benefit-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }

  .benefit-strip span {
    border-bottom: 1px solid var(--gray-100);
  }

  .benefit-strip span + span {
    border-left: 0;
  }

  .benefit-strip span:nth-child(even) {
    border-left: 1px solid var(--gray-100);
  }

  .benefit-strip span:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section h2,
  .section-title {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .team-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-grid,
  .segments-grid {
    grid-template-columns: 1fr;
  }

  .person-card {
    min-height: 330px;
  }

  .person-card h3 {
    margin-top: 58px;
  }

  .flow-grid,
  .method-list {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .flow-step:nth-child(n + 4) {
    border-top: 0;
  }

  .flow-step h3 {
    margin-top: 28px;
  }

  .method-item {
    min-height: 150px;
  }

  .method-item h3 {
    margin-top: 48px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding-top: 0;
  }

  .cta-box {
    padding: 44px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 66px 0;
  }

  .page-section {
    padding: 66px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Hero commercial demo */
[data-reveal].hero-demo-panel {
  min-height: 750px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  opacity: 1;
  transform: none;
  box-shadow: 0 18px 42px rgba(5, 8, 6, 0.16);
}

.hero-demo-panel .panel-bar {
  flex-wrap: wrap;
  gap: 8px 14px;
  padding-bottom: 12px;
}

.hero-demo-status,
.hero-demo-channel {
  white-space: nowrap;
}

.hero-demo-channel {
  margin-left: auto;
}

.hero-demo-caption {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.62rem;
  line-height: 1.35;
}

.hero-demo-conversation {
  min-height: 340px;
  margin-top: 11px;
  padding: 12px;
  color: var(--gray-100);
  background: #0d120f;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
}

.hero-demo-thread,
.hero-demo-dynamic {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-demo-dynamic:not(:empty) {
  margin-top: 7px;
}

.hero-demo-message {
  max-width: 92%;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  font-size: 0.775rem;
  line-height: 1.42;
}

.hero-demo-message--client {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.075);
  border-bottom-right-radius: 4px;
}

.hero-demo-message--clara {
  align-self: flex-start;
  background: var(--graphite-soft);
  border-bottom-left-radius: 4px;
}

.hero-demo-speaker {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-demo-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.hero-demo-options button,
.hero-demo-restart {
  min-height: 32px;
  padding: 7px 10px;
  color: var(--gray-100);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  box-shadow: none;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.25;
  cursor: pointer;
}

.hero-demo-options button:hover:not(:disabled),
.hero-demo-restart:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-demo-options button:focus-visible,
.hero-demo-restart:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 2px;
  box-shadow: none;
}

.hero-demo-options button:disabled {
  cursor: default;
  opacity: 0.48;
}

.hero-demo-options button.is-selected {
  color: var(--white);
  background: rgba(22, 163, 74, 0.16);
  border-color: #16a34a;
  opacity: 1;
}

.hero-demo-options.is-resolved button:not(.is-selected) {
  display: none;
}

.hero-demo-panel [hidden] {
  display: none !important;
}

.hero-demo-typing {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 28px;
  gap: 4px;
  padding: 8px 11px;
  background: var(--graphite-soft);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px 12px 12px 4px;
}

.hero-demo-typing span {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  animation: heroDemoTyping 720ms ease-in-out infinite alternate;
}

.hero-demo-typing span:nth-child(2) {
  animation-delay: 120ms;
}

.hero-demo-typing span:nth-child(3) {
  animation-delay: 240ms;
}

.hero-demo-engineering {
  margin-top: 12px;
}

.hero-demo-engineering-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-demo-engineering-head span {
  color: rgba(255, 255, 255, 0.36);
}

.hero-demo-states {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-demo-states li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 1px 7px;
  min-width: 0;
  padding: 7px 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.hero-demo-state-number {
  display: grid;
  grid-row: 1 / span 2;
  width: 21px;
  height: 21px;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  font-size: 0.52rem;
  font-weight: 850;
}

.hero-demo-state-label {
  min-width: 0;
  color: var(--gray-100);
  font-size: 0.64rem;
  font-weight: 750;
  line-height: 1.25;
}

.hero-demo-state-status {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-demo-states li[data-complete="true"] {
  border-color: rgba(22, 163, 74, 0.5);
}

.hero-demo-states li[data-complete="true"] .hero-demo-state-number {
  color: var(--white);
  background: #16a34a;
  border-color: #16a34a;
}

.hero-demo-states li[data-complete="true"] .hero-demo-state-status {
  color: #16a34a;
}

.hero-demo-principle {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.hero-demo-restart {
  align-self: center;
  min-height: 29px;
  margin-top: 8px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.59rem;
}

.hero-demo-panel.is-enhanced:not(.is-started) .hero-demo-message--intro,
.hero-demo-panel.is-enhanced:not(.is-started) .hero-demo-options--primary {
  opacity: 0;
  transform: translateY(6px);
}

.hero-demo-panel.is-enhanced.is-started .hero-demo-message--intro,
.hero-demo-panel.is-enhanced.is-started .hero-demo-options--primary {
  opacity: 1;
  transform: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-demo-panel.is-enhanced.is-started .hero-demo-message--intro:nth-child(2) {
  transition-delay: 110ms;
}

.hero-demo-panel.is-enhanced.is-started .hero-demo-options--primary {
  transition-delay: 200ms;
}

.hero-demo-message--new,
.hero-demo-typing {
  animation: heroDemoMessageIn 200ms ease both;
}

@keyframes heroDemoMessageIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDemoTyping {
  from {
    opacity: 0.35;
    transform: translateY(1px);
  }
  to {
    opacity: 0.9;
    transform: translateY(-1px);
  }
}

@media (max-width: 760px) {
  [data-reveal].hero-demo-panel {
    min-height: 750px;
    padding: 16px;
  }

  .hero-demo-panel .panel-bar {
    align-items: flex-start;
  }

  .hero-demo-channel {
    margin-left: 0;
  }

  .hero-demo-conversation {
    min-height: 350px;
    padding: 8px 10px;
  }

  .hero-demo-thread,
  .hero-demo-dynamic {
    gap: 6px;
  }

  .hero-demo-engineering {
    margin-top: 8px;
  }

  .hero-demo-message {
    max-width: 96%;
  }

  .hero-demo-options button {
    flex: 1 1 calc(50% - 6px);
  }

  .hero-demo-options--primary button {
    flex-basis: calc(33.333% - 6px);
    min-width: 82px;
  }
}

@media (max-width: 380px) {
  .hero-demo-states {
    grid-template-columns: 1fr;
  }

  [data-reveal].hero-demo-panel {
    min-height: 840px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-demo-panel.is-enhanced .hero-demo-message--intro,
  .hero-demo-panel.is-enhanced .hero-demo-options--primary,
  .hero-demo-message--new,
  .hero-demo-typing,
  .hero-demo-typing span {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none !important;
  }
}

