:root {
  --green-950: #052f24;
  --green-900: #064b38;
  --green-800: #075d43;
  --green-700: #087a55;
  --green-600: #079669;
  --green-500: #12b981;
  --green-400: #43d6a3;
  --green-100: #dff8ed;
  --green-50: #f0fbf6;
  --lime: #b8ef4d;
  --ink: #13241e;
  --ink-2: #2b3b35;
  --muted: #62716c;
  --line: #dfe9e4;
  --surface: #ffffff;
  --soft: #f6f9f7;
  --cream: #fbfcfa;
  --danger-soft: #fff1eb;
  --danger: #cc4c2d;
  --shadow-sm: 0 10px 30px rgba(7, 61, 43, 0.08);
  --shadow-md: 0 22px 70px rgba(5, 47, 36, 0.13);
  --shadow-lg: 0 36px 100px rgba(3, 37, 27, 0.23);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Sora", "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand-copy strong,
.button {
  font-family: var(--font-display);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--green-900);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-note {
  position: relative;
  z-index: 60;
  min-height: 38px;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.top-note-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-note a {
  margin-left: 10px;
  color: var(--green-400);
  font-weight: 800;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 239, 77, 0.12);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184, 239, 77, 0.08); }
  50% { box-shadow: 0 0 0 9px rgba(184, 239, 77, 0.02); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 233, 226, 0.7);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 40px rgba(7, 61, 43, 0.08);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--green-500), var(--green-800));
  box-shadow: 0 9px 24px rgba(7, 122, 85, 0.25);
}

.brand-mark svg {
  width: 31px;
  fill: #fff;
}

.brand-mark .brand-mark-line {
  fill: none;
  stroke: var(--green-950);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  color: var(--green-950);
  font-size: 18px;
  letter-spacing: -0.035em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a,
.nav-login {
  position: relative;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 750;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.nav-login:hover {
  color: var(--green-700);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(18, 185, 129, 0.35);
  outline-offset: 4px;
}

.button-sm {
  min-height: 43px;
  padding: 0 19px;
  border-radius: 12px;
  font-size: 12px;
}

.button-lg {
  min-height: 58px;
  padding: 0 26px;
  border-radius: 15px;
  font-size: 14px;
}

.button-primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  box-shadow: 0 13px 30px rgba(7, 150, 105, 0.24);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(7, 150, 105, 0.32);
}

.button-light {
  background: #fff;
  color: var(--green-900);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.button-full {
  width: 100%;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 0;
  background:
    radial-gradient(circle at 93% 12%, rgba(18, 185, 129, 0.15), transparent 29%),
    radial-gradient(circle at 0% 40%, rgba(184, 239, 77, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fcf9 0%, #fff 73%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6, 75, 56, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 75, 56, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 130px;
  right: -170px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(18, 185, 129, 0.12);
  box-shadow: 0 0 0 65px rgba(18, 185, 129, 0.025), 0 0 0 130px rgba(18, 185, 129, 0.018);
}

.hero-glow-two {
  bottom: 110px;
  left: -100px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(7, 122, 85, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker,
.bento-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(7, 122, 85, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow span {
  color: var(--green-500);
  font-size: 9px;
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 22px;
  color: var(--green-950);
  font-size: clamp(42px, 5vw, 67px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

h1 em,
h2 em {
  color: var(--green-600);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 850;
}

.text-link:hover {
  color: var(--green-500);
}

.play-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 10px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 750;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-checks span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 34px;
  background: var(--green-950);
  box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  min-width: 178px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 45px rgba(5, 47, 36, 0.19);
  backdrop-filter: blur(14px);
}

.visual-badge strong {
  color: var(--green-950);
  font-size: 11px;
  line-height: 1.2;
}

.visual-badge small {
  grid-column: 2;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
}

.visual-badge-top {
  top: -22px;
  right: 28px;
}

.visual-badge-bottom {
  right: auto;
  bottom: -24px;
  left: -28px;
}

.status-ring {
  grid-row: 1 / span 2;
  width: 13px;
  height: 13px;
  align-self: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px var(--green-100);
}

.mini-stars {
  grid-row: 1 / span 2;
  align-self: center;
  color: #f0a824;
  font-size: 9px;
  letter-spacing: -1px;
}

.capability-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 104px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow: 0 -12px 50px rgba(5, 47, 36, 0.06);
}

.capability-strip > div {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 13px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.capability-strip > div:last-child {
  border-right: 0;
}

.capability-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 900;
}

.capability-strip p {
  display: grid;
  margin: 0;
  line-height: 1.3;
}

.capability-strip strong {
  color: var(--green-950);
  font-size: 11px;
}

.capability-strip small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.pain-section {
  background: var(--soft);
}

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

.section-heading.centered {
  max-width: 790px;
  margin-right: auto;
  margin-bottom: 58px;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.robot-copy h2,
.team-copy h2,
.metrics-copy h2,
.security-copy h2,
.pricing-copy h2,
.faq-heading h2,
.audience-shell h2 {
  margin: 15px 0 17px;
  color: var(--green-950);
  font-size: clamp(33px, 4.2vw, 51px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.section-heading p,
.robot-copy > p,
.team-copy > p,
.pricing-copy > p,
.faq-heading > p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-heading.centered p {
  margin-inline: auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pain-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 35px rgba(5, 47, 36, 0.045);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pain-card:hover {
  border-color: rgba(7, 150, 105, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pain-number,
.benefit-index {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #d4ded9;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pain-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  background: var(--danger-soft);
  color: var(--danger);
  font-size: 21px;
  font-weight: 900;
}

.pain-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -0.03em;
}

.pain-card > p {
  min-height: 77px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.pain-outcome {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pain-outcome span {
  color: var(--green-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pain-outcome strong {
  color: var(--green-950);
  font-size: 12px;
}

.transformation-section {
  padding: 58px 0;
  background: linear-gradient(125deg, var(--green-950), #075942 72%, #087d58);
  color: #fff;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.section-kicker-light {
  color: var(--green-400);
}

.transformation-copy h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.transformation-list {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.transformation-list > div {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.transformation-list .after {
  border-color: rgba(67, 214, 163, 0.35);
  background: rgba(67, 214, 163, 0.1);
}

.transformation-list span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transformation-list strong {
  font-size: 12px;
}

.transformation-list i {
  color: var(--green-400);
  font-style: normal;
  font-weight: 900;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 265px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-card:hover {
  border-color: rgba(7, 150, 105, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.benefit-card.featured {
  grid-column: span 2;
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  color: #fff;
  box-shadow: 0 22px 55px rgba(5, 47, 36, 0.18);
}

.benefit-card.featured::after {
  position: absolute;
  right: -50px;
  bottom: -75px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.025);
  content: "";
}

.benefit-card.final-card {
  grid-column: span 2;
  background: var(--green-50);
}

.benefit-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 14px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 17px;
  font-weight: 900;
}

.featured .benefit-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--green-400);
}

.benefit-card h3 {
  max-width: 320px;
  margin-bottom: 9px;
  color: var(--green-950);
  font-size: 17px;
  letter-spacing: -0.03em;
  line-height: 1.28;
}

.benefit-card p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.72;
}

.benefit-card.featured h3 {
  color: #fff;
  font-size: 24px;
}

.benefit-card.featured p {
  color: rgba(255, 255, 255, 0.67);
}

.featured .benefit-index {
  color: rgba(255, 255, 255, 0.28);
}

.benefit-tag {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(184, 239, 77, 0.13);
  color: var(--lime);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.robot-section {
  background: var(--soft);
}

.robot-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
}

.robot-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.robot-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-check-list {
  display: grid;
  gap: 17px;
  margin: 27px 0;
  padding: 0;
  list-style: none;
}

.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.feature-check-list li > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 9px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 11px;
  font-weight: 900;
}

.feature-check-list div {
  display: grid;
  gap: 2px;
}

.feature-check-list strong {
  color: var(--ink);
  font-size: 13px;
}

.feature-check-list small {
  color: var(--muted);
  font-size: 11px;
}

.impact-quote {
  display: flex;
  gap: 13px;
  padding: 18px 20px;
  border-left: 3px solid var(--green-500);
  border-radius: 0 12px 12px 0;
  background: #fff;
}

.impact-quote span {
  color: var(--green-500);
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.impact-quote p {
  margin: 0;
  color: var(--green-950);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.6;
}

.funnel-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 13px;
  margin-top: 68px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.funnel-flow > div {
  display: grid;
  min-width: 0;
  text-align: center;
}

.funnel-flow div > span {
  display: grid;
  width: 26px;
  height: 26px;
  margin: 0 auto 9px;
  place-items: center;
  border-radius: 9px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 10px;
  font-weight: 900;
}

.funnel-flow strong {
  color: var(--green-950);
  font-size: 10px;
  line-height: 1.25;
}

.funnel-flow small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.25;
}

.funnel-flow > i {
  color: var(--green-400);
  font-style: normal;
  font-weight: 900;
}

.how-section {
  background: #fff;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.how-card {
  position: relative;
  padding: 34px 28px;
  border-top: 1px solid var(--line);
}

.how-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.how-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green-600);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.how-line {
  position: absolute;
  top: -2px;
  left: 28px;
  width: 34px;
  height: 3px;
  border-radius: 4px;
  background: var(--green-500);
}

.how-card h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 17px;
  letter-spacing: -0.03em;
}

.how-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.center-cta {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 52px;
}

.center-cta small {
  color: var(--muted);
  font-size: 10px;
}

.team-section {
  background: var(--soft);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.team-image {
  position: relative;
}

.team-image > img {
  width: 100%;
  min-height: 480px;
  border-radius: 34px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.team-floating-card {
  position: absolute;
  right: -24px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.online-dots {
  display: flex;
  align-items: center;
  padding-right: 6px;
}

.online-dots i {
  width: 27px;
  height: 27px;
  margin-right: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-400), var(--green-800));
}

.team-floating-card > div {
  display: grid;
}

.team-floating-card strong {
  color: var(--green-950);
  font-size: 10px;
}

.team-floating-card small {
  color: var(--muted);
  font-size: 8px;
}

.team-features {
  display: grid;
  gap: 0;
  margin-top: 29px;
  border-top: 1px solid var(--line);
}

.team-features > div {
  display: flex;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.team-features > div > span {
  color: var(--green-500);
  font-size: 9px;
  font-weight: 900;
}

.team-features p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.team-features strong {
  color: var(--ink);
  font-size: 12px;
}

.team-features small {
  color: var(--muted);
  font-size: 10px;
}

.resources-section {
  background: #fff;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--soft);
}

.bento-card h3 {
  max-width: 390px;
  margin: 10px 0 9px;
  color: var(--green-950);
  font-size: 21px;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.bento-card p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.bento-chat {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 25px;
  min-height: 360px;
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
}

.bento-chat .bento-label {
  color: var(--green-400);
}

.bento-chat h3 {
  color: #fff;
}

.bento-chat p {
  color: rgba(255, 255, 255, 0.66);
}

.bento-media {
  grid-column: span 5;
  background: var(--green-50);
}

.bento-client,
.bento-notify {
  grid-column: span 4;
}

.bento-more {
  grid-column: span 4;
  background: #f3f2ff;
}

.chat-demo {
  display: grid;
  grid-template-columns: 0.37fr 0.63fr;
  height: 265px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: #f7faf8;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
  transform: rotate(1.5deg);
}

.chat-side {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 35px 10px 10px;
  border-right: 1px solid #dce5e0;
  background: #fff;
}

.chat-side i {
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(90deg, #e2eee8 30%, #f4f8f6 30%);
}

.chat-side i:first-child {
  background: linear-gradient(90deg, #c2efdb 30%, #e4f8ef 30%);
}

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 42px 12px 12px;
}

.message {
  width: 74%;
  height: 33px;
  border-radius: 9px;
}

.message-in {
  align-self: flex-start;
  background: #fff;
  box-shadow: 0 4px 10px rgba(5, 47, 36, 0.06);
}

.message-out {
  align-self: flex-end;
  background: #bff0d9;
}

.message.short {
  width: 47%;
}

.chat-input {
  height: 27px;
  margin-top: auto;
  border: 1px solid #dde6e1;
  border-radius: 999px;
  background: #fff;
}

.media-row {
  position: absolute;
  right: 28px;
  bottom: 29px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.media-row span {
  display: grid;
  height: 67px;
  place-items: center;
  border: 1px solid rgba(7, 122, 85, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--green-700);
  font-size: 20px;
}

.client-card-demo {
  position: absolute;
  right: 29px;
  bottom: 30px;
  left: 29px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.avatar-demo {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.client-card-demo > div:last-child {
  display: grid;
  width: 100%;
  gap: 6px;
}

.client-card-demo i {
  display: block;
  width: 86%;
  height: 6px;
  border-radius: 8px;
  background: #dfe8e3;
}

.client-card-demo i:nth-child(2) { width: 64%; }
.client-card-demo i:nth-child(3) { width: 73%; background: var(--green-100); }

.notification-demo {
  position: absolute;
  right: 26px;
  bottom: 29px;
  left: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.notification-demo > span {
  color: var(--green-500);
  font-size: 12px;
}

.notification-demo div {
  display: grid;
  gap: 6px;
}

.notification-demo i {
  width: 110px;
  height: 6px;
  border-radius: 6px;
  background: #dfe8e3;
}

.notification-demo i:last-child { width: 74px; }
.notification-demo b { color: var(--muted); font-size: 8px; }

.more-tags {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.more-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(76, 64, 153, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #5b4ca1;
  font-size: 9px;
  font-weight: 800;
}

.metrics-section {
  background: var(--green-950);
  color: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: 70px;
}

.metrics-copy h2 {
  color: #fff;
}

.metrics-copy > p {
  color: rgba(255, 255, 255, 0.64);
}

.metrics-copy ul {
  display: grid;
  gap: 13px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.metrics-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.81);
  font-size: 12px;
}

.metrics-copy li span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  background: rgba(67, 214, 163, 0.13);
  color: var(--green-400);
  font-size: 9px;
}

.dashboard-mock {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  background: #f8faf9;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  color: var(--ink);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.dash-top > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dash-logo {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  background: var(--green-700);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.dash-top i {
  width: 76px;
  height: 7px;
  border-radius: 7px;
  background: #d9e3de;
}

.dash-chip {
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 8px;
  font-weight: 850;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.dash-cards > div,
.chart-card,
.score-card {
  padding: 15px;
  border: 1px solid #e0e8e4;
  border-radius: 14px;
  background: #fff;
}

.dash-cards > div {
  display: grid;
}

.dash-cards span,
.score-card > span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
}

.dash-cards strong {
  margin: 5px 0 1px;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: -0.04em;
}

.dash-cards small {
  color: var(--green-600);
  font-size: 7px;
}

.dash-bottom {
  display: grid;
  grid-template-columns: 1fr 0.36fr;
  gap: 11px;
  margin-top: 11px;
}

.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-title strong {
  color: var(--green-950);
  font-size: 9px;
}

.chart-title span {
  color: var(--muted);
  font-size: 7px;
}

.bar-chart {
  display: flex;
  height: 125px;
  align-items: end;
  justify-content: space-around;
  gap: 9px;
  padding: 22px 10px 0;
  border-bottom: 1px solid #e1e9e5;
  background: repeating-linear-gradient(to top, #eff3f1 0, #eff3f1 1px, transparent 1px, transparent 31px);
}

.bar-chart i {
  width: 19px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(to top, var(--green-700), var(--green-400));
}

.score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.score-card strong {
  margin: 8px 0 0;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 34px;
}

.score-stars {
  color: #f0a824;
  font-size: 9px;
  letter-spacing: -1px;
}

.score-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 7px;
}

.security-section {
  background: var(--soft);
}

.security-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 70px;
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.security-copy h2 {
  font-size: 36px;
}

.security-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.security-grid article {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--soft);
}

.security-grid article > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 900;
}

.security-grid article div {
  display: grid;
}

.security-grid strong {
  color: var(--green-950);
  font-size: 10px;
}

.security-grid small {
  color: var(--muted);
  font-size: 8px;
}

.pricing-section {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
  max-width: 1000px;
}

.pricing-note {
  display: flex;
  gap: 13px;
  margin-top: 30px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--soft);
}

.pricing-note > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border-radius: 11px;
  background: var(--green-100);
  color: var(--green-700);
}

.pricing-note p {
  display: grid;
  margin: 0;
}

.pricing-note strong {
  color: var(--green-950);
  font-size: 11px;
}

.pricing-note small {
  color: var(--muted);
  font-size: 9px;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(7, 150, 105, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fffb, #fff 42%);
  box-shadow: var(--shadow-md);
}

.price-ribbon {
  position: absolute;
  top: 20px;
  right: -38px;
  width: 150px;
  padding: 7px 0;
  background: var(--green-500);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(38deg);
}

.price-top > span {
  color: var(--green-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: center;
  margin: 15px 0 6px;
  color: var(--green-950);
}

.price sup {
  margin-right: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.price > strong {
  font-family: var(--font-display);
  font-size: 68px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.price > div {
  display: grid;
  align-self: center;
  margin-left: 5px;
}

.price b {
  font-family: var(--font-display);
  font-size: 20px;
}

.price small {
  color: var(--muted);
  font-size: 10px;
}

.price-top > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 11px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 29px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 11px;
}

.price-card li > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 7px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 8px;
  font-weight: 900;
}

.additional-users {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.audience-section {
  padding-top: 0;
}

.audience-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  padding: 54px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: #fff;
}

.audience-shell h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: 32px;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
}

.faq-section {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  font-size: 40px;
}

.text-link-dark {
  margin-top: 22px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(7, 150, 105, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  display: flex;
  min-height: 69px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 21px;
  color: var(--green-950);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 9px;
  background: var(--green-50);
  color: var(--green-700);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 55px 20px 21px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: linear-gradient(135deg, #063d2f, #087652 65%, #0aa06e);
  color: #fff;
}

.final-cta-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  content: "";
  mask-image: radial-gradient(circle at center, #000, transparent 70%);
}

.final-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.025), 0 0 0 88px rgba(255, 255, 255, 0.015);
}

.orb-one { top: 50px; left: -80px; width: 230px; height: 230px; }
.orb-two { right: -70px; bottom: 20px; width: 290px; height: 290px; }

.final-cta {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 850px;
  justify-items: center;
  text-align: center;
}

.cta-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 19px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
  font-size: 22px;
  font-weight: 900;
}

.final-cta > span {
  color: var(--green-400);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(38px, 5vw, 59px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.final-cta p {
  max-width: 690px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.final-cta small {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.site-footer {
  background: #041e18;
  color: rgba(255, 255, 255, 0.66);
}

.footer-top {
  display: flex;
  min-height: 145px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-footer .brand-copy strong {
  color: #fff;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.42);
}

.footer-top > p {
  margin: 0;
  color: var(--green-400);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 750;
}

.footer-top nav {
  display: flex;
  gap: 23px;
}

.footer-top nav a {
  font-size: 10px;
  font-weight: 750;
}

.footer-top nav a:hover {
  color: var(--green-400);
}

.footer-bottom {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: none;
  min-height: 49px;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 14px 36px rgba(5, 47, 36, 0.33);
  font-size: 11px;
}

.floating-cta span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-500);
  font-size: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .nav-login { display: none; }
  .hero-grid { gap: 32px; }
  .hero h1 { font-size: 52px; }
  .visual-badge-top { right: 14px; }
  .visual-badge-bottom { left: -10px; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-card.featured, .benefit-card.final-card { grid-column: span 1; }
  .benefit-card.featured h3 { font-size: 19px; }
  .robot-grid, .team-grid, .metrics-grid { gap: 45px; }
  .funnel-flow { gap: 7px; padding: 18px 12px; }
  .pricing-grid { gap: 60px; }
  .faq-grid { gap: 55px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 36px, 740px); }
  .section { padding: 88px 0; }
  .top-note-inner { justify-content: flex-start; }
  .top-note a { margin-left: auto; }
  .desktop-nav, .nav-actions > .button, .nav-login { display: none; }
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
  }
  .menu-toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--green-900); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    top: 116px;
    right: 0;
    left: 0;
    z-index: 49;
    display: grid;
    gap: 4px;
    padding: 20px 24px 26px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 50px rgba(5, 47, 36, 0.15);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav > a:not(.button) { padding: 12px 3px; border-bottom: 1px solid var(--line); color: var(--green-950); font-size: 13px; font-weight: 750; }
  .mobile-nav .button { margin-top: 12px; }
  .hero { padding-top: 67px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 670px; text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1 { max-width: 680px; font-size: clamp(43px, 8vw, 63px); }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-checks { justify-content: center; }
  .hero-visual { margin-top: 34px; }
  .capability-strip { grid-template-columns: repeat(2, 1fr); margin-top: 85px; }
  .capability-strip > div:nth-child(2) { border-right: 0; }
  .capability-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card > p { min-height: auto; }
  .transformation-grid { grid-template-columns: 1fr; gap: 25px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .robot-grid, .team-grid, .metrics-grid, .pricing-grid, .faq-grid, .security-shell { grid-template-columns: 1fr; }
  .robot-copy { max-width: 670px; }
  .funnel-flow { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .funnel-flow > i { display: none; }
  .funnel-flow > div { padding: 12px; border: 1px solid var(--line); border-radius: 12px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-card:nth-child(2) { border-right: 0; }
  .team-image { order: 2; }
  .team-copy { order: 1; }
  .team-image > img { min-height: auto; }
  .bento-chat { grid-column: span 12; }
  .bento-media { grid-column: span 12; }
  .bento-client, .bento-notify, .bento-more { grid-column: span 4; }
  .security-shell { gap: 35px; padding: 42px; }
  .pricing-grid { max-width: 680px; gap: 42px; }
  .faq-heading { position: static; }
  .audience-shell { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 540px); }
  .section { padding: 74px 0; }
  .top-note { display: none; }
  .nav-shell { min-height: 70px; }
  .brand-mark { width: 41px; height: 41px; flex-basis: 41px; border-radius: 13px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 7px; }
  .mobile-nav { top: 70px; }
  .hero { padding-top: 48px; }
  .eyebrow { padding: 7px 10px; font-size: 9px; }
  .hero h1 { margin-top: 19px; font-size: clamp(37px, 11vw, 52px); line-height: 1.05; }
  .hero-lead { font-size: 15px; line-height: 1.7; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-checks { gap: 10px 14px; font-size: 9px; }
  .hero-visual picture { border-radius: 21px; transform: none; }
  .visual-badge { min-width: 150px; padding: 10px; }
  .visual-badge-top { top: -18px; right: 8px; }
  .visual-badge-bottom { bottom: -22px; left: 8px; }
  .capability-strip { margin-top: 73px; }
  .capability-strip > div { min-height: 94px; gap: 9px; padding: 15px; }
  .capability-icon { width: 32px; height: 32px; flex-basis: 32px; }
  .capability-strip strong { font-size: 9px; }
  .capability-strip small { font-size: 7px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading.centered { margin-bottom: 43px; }
  .section-heading h2, .robot-copy h2, .team-copy h2, .metrics-copy h2, .security-copy h2, .pricing-copy h2, .faq-heading h2, .audience-shell h2 { font-size: 34px; }
  .section-heading p, .robot-copy > p, .team-copy > p, .pricing-copy > p, .faq-heading > p { font-size: 14px; }
  .pain-card { padding: 27px; }
  .transformation-list { grid-template-columns: 1fr; }
  .transformation-list i { display: none; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card, .benefit-card.featured, .benefit-card.final-card { grid-column: auto; min-height: 235px; }
  .robot-grid { gap: 38px; }
  .robot-visual { border-radius: 22px; }
  .funnel-flow { grid-template-columns: repeat(2, 1fr); margin-top: 45px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-card { border-right: 0 !important; }
  .how-card:not(:last-child) { border-bottom: 1px solid var(--line); }
  .team-image > img { border-radius: 23px; }
  .team-floating-card { right: 11px; bottom: 11px; min-width: 190px; }
  .bento-card { min-height: 290px; padding: 26px; }
  .bento-chat { grid-template-columns: 1fr; min-height: 610px; }
  .chat-demo { height: 310px; }
  .bento-client, .bento-notify, .bento-more { grid-column: span 12; }
  .dash-cards { grid-template-columns: 1fr; }
  .dash-bottom { grid-template-columns: 1fr; }
  .score-card { min-height: 150px; }
  .security-shell { padding: 30px 23px; border-radius: 24px; }
  .security-grid { grid-template-columns: 1fr; }
  .price-card { padding: 34px 26px; }
  .price > strong { font-size: 59px; }
  .audience-section { padding-top: 0; }
  .audience-shell { padding: 37px 25px; border-radius: 24px; }
  .faq-list summary { font-size: 11px; }
  .final-cta-section { padding: 88px 0; }
  .final-cta p { font-size: 14px; }
  .footer-top { flex-direction: column; align-items: flex-start; padding: 42px 0; }
  .footer-top nav { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; }
  .floating-cta { display: flex; }
}

@media print {
  .top-note, .site-header, .floating-cta, .final-cta-section { display: none !important; }
  .section { padding: 42px 0; }
  .reveal { opacity: 1; transform: none; }
}
