:root {
  --navy-950: #071d2d;
  --navy-900: #0a273b;
  --navy-800: #12364c;
  --navy-700: #23485c;
  --lime-500: #73ed18;
  --lime-400: #8aff33;
  --lime-100: #e8ffd8;
  --green-700: #387616;
  --green-600: #4f991d;
  --ink: #0f2636;
  --muted: #5d6e79;
  --line: #dfe6e9;
  --surface: #f4f7f6;
  --white: #ffffff;
  --amber: #ba6b0e;
  --amber-bg: #fff8e8;
  --shadow: 0 24px 80px rgba(7, 29, 45, 0.1);
  --shadow-soft: 0 12px 40px rgba(7, 29, 45, 0.07);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
summary {
  font: inherit;
}

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

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

.siteHeader {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(223, 230, 233, 0.86);
  background: rgba(244, 247, 246, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--navy-900);
  font-size: 27px;
  font-weight: 760;
  letter-spacing: -1.6px;
  line-height: 1;
}

.brand strong {
  color: var(--lime-500);
  font-weight: 800;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktopNav a,
.loginLink {
  position: relative;
  color: #3f5563;
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktopNav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--lime-500);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.desktopNav a:hover,
.loginLink:hover {
  color: var(--navy-900);
}

.desktopNav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--lime-500);
  border-radius: 11px;
  background: var(--lime-500);
  box-shadow: 0 12px 28px rgba(115, 237, 24, 0.18);
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 780;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: var(--lime-400);
  box-shadow: 0 16px 34px rgba(115, 237, 24, 0.26);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(115, 237, 24, 0.55);
  outline-offset: 3px;
}

.buttonSmall {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 9px;
}

.mobileMenu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 82px;
  background:
    linear-gradient(180deg, #fbfdfc 0%, #f4f8f6 100%);
}

.hero::before {
  position: absolute;
  top: -42px;
  left: 50%;
  width: min(1120px, 82vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 237, 24, 0.58), transparent);
  content: "";
  transform: translateX(-50%);
}

.heroGlow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.glowOne {
  top: 56px;
  left: -170px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(115, 237, 24, 0.11), transparent 68%);
}

.glowTwo {
  right: -210px;
  bottom: -190px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 39, 59, 0.08), transparent 66%);
}

.heroContent {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.84fr) minmax(650px, 1.3fr);
  align-items: center;
  gap: 66px;
}

.heroCopy {
  padding-bottom: 10px;
}

.eyebrow,
.sectionKicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.13em;
}

.eyebrow span {
  width: 23px;
  height: 2px;
  background: var(--lime-500);
}

.hero h1 {
  max-width: 570px;
  margin: 24px 0 24px;
  color: var(--navy-950);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 780;
  letter-spacing: -0.064em;
  line-height: 0.99;
}

.hero h1 em {
  position: relative;
  color: var(--green-600);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -7px;
  left: 2px;
  height: 5px;
  border-radius: 99px;
  background: var(--lime-500);
  content: "";
  opacity: 0.8;
  transform: rotate(-1deg);
}

.heroCopy > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.heroActions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 750;
}

.textLink span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 99px;
  transition: 180ms ease;
}

.textLink:hover span {
  border-color: var(--lime-500);
  background: var(--lime-100);
  transform: translateY(2px);
}

.heroMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: #536772;
  font-size: 12px;
  font-weight: 600;
}

.heroMeta > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.checkIcon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime-100);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
}

.heroMeta .checkIcon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
  font-size: 10px;
}

.productWindow {
  display: grid;
  min-height: 555px;
  overflow: hidden;
  grid-template-columns: 142px 1fr;
  border: 1px solid rgba(13, 51, 72, 0.1);
  border-radius: 22px;
  background: #eef2f3;
  box-shadow:
    0 42px 100px rgba(7, 29, 45, 0.2),
    0 0 0 9px rgba(255, 255, 255, 0.65);
  transform: perspective(1600px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

.windowRail {
  display: flex;
  flex-direction: column;
  padding: 24px 14px 18px;
  background: var(--navy-950);
  color: #d8e4e8;
}

.windowRail .brand {
  margin: 2px 7px 30px;
  color: white;
  font-size: 19px;
  letter-spacing: -1px;
}

.railNav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.railItem {
  display: flex;
  height: 37px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-radius: 8px;
  color: #aebdc5;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.railItem i {
  width: 15px;
  color: #d7e5ea;
  font-size: 13px;
  font-style: normal;
  text-align: center;
}

.railItem.active {
  background: rgba(255, 255, 255, 0.11);
  color: white;
}

.railUser {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 13px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.railUser > span {
  display: flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--navy-950);
  font-size: 9px;
  font-weight: 900;
}

.railUser div {
  min-width: 0;
}

.railUser b,
.railUser small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.railUser b {
  color: white;
  font-size: 8px;
}

.railUser small {
  margin-top: 2px;
  color: #8da1ac;
  font-size: 7px;
}

.windowContent {
  padding: 29px 28px 26px;
}

.previewTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.previewEyebrow {
  color: var(--green-600);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.previewTop h3 {
  margin: 6px 0 3px;
  color: var(--navy-950);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.previewTop p {
  margin: 0;
  color: #7a8a92;
  font-size: 9px;
}

.previewTop button {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: var(--lime-500);
  color: var(--navy-950);
  font-size: 9px;
  font-weight: 800;
}

.metricGrid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.metricCard {
  min-width: 0;
  padding: 16px;
  border: 1px solid #e5eaeb;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 25px rgba(7, 29, 45, 0.04);
}

.metricCard > span,
.metricCard > strong,
.metricCard > small {
  display: block;
}

.metricCard > span {
  color: #71818a;
  font-size: 8px;
  font-weight: 650;
}

.metricCard > strong {
  overflow: hidden;
  margin: 7px 0 6px;
  color: var(--navy-950);
  font-size: 18px;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metricCard > small {
  color: #7f8d94;
  font-size: 7px;
  white-space: nowrap;
}

.metricCard > small b {
  color: var(--green-600);
}

.metricCard.attention strong {
  color: var(--amber);
}

.previewBody {
  display: grid;
  grid-template-columns: 1.35fr 0.86fr;
  gap: 10px;
  margin-top: 10px;
}

.mapCard,
.statusCard {
  padding: 15px;
  border: 1px solid #e5eaeb;
  border-radius: 12px;
  background: white;
}

.cardHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-950);
  font-size: 9px;
}

.cardHead span {
  color: var(--green-600);
  font-size: 8px;
  font-weight: 800;
}

.mapVisual {
  position: relative;
  height: 163px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 9px;
  background:
    linear-gradient(30deg, transparent 46%, rgba(255,255,255,.65) 47%, rgba(255,255,255,.65) 51%, transparent 52%),
    linear-gradient(125deg, transparent 45%, rgba(255,255,255,.55) 46%, rgba(255,255,255,.55) 50%, transparent 51%),
    #e5ecdf;
}

.road {
  position: absolute;
  z-index: 1;
  display: block;
  height: 5px;
  border: 1px solid rgba(111, 126, 116, 0.14);
  background: #f6f6ee;
  transform-origin: center;
}

.roadOne {
  top: 30px;
  left: -30px;
  width: 280px;
  transform: rotate(18deg);
}

.roadTwo {
  top: 100px;
  left: -50px;
  width: 330px;
  transform: rotate(-23deg);
}

.roadThree {
  top: 10px;
  left: 90px;
  width: 260px;
  transform: rotate(65deg);
}

.roadFour {
  top: 118px;
  left: 60px;
  width: 260px;
  transform: rotate(9deg);
}

.mapDot {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 3px 8px rgba(7, 29, 45, 0.25);
}

.dotOne { top: 42px; left: 32%; }
.dotTwo { top: 84px; left: 49%; background: var(--lime-500); }
.dotThree { top: 35px; right: 19%; }
.dotFour { bottom: 23px; left: 22%; }
.dotFive { right: 30%; bottom: 16px; }

.mapLabel {
  position: absolute;
  z-index: 3;
  top: 76px;
  left: 50%;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  color: #687a71;
  font-size: 7px;
  font-weight: 800;
  transform: translateX(-50%);
}

.progress {
  height: 6px;
  margin: 15px 0 18px;
  overflow: hidden;
  border-radius: 10px;
  background: #edf1f1;
}

.progress i {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: var(--green-600);
}

.statusCard ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.statusCard li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #526671;
  font-size: 8px;
}

.statusCard .checkIcon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
  font-size: 9px;
}

.statusCard li.pending {
  color: #94601a;
}

.statusCard li.pending > span {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff3d6;
  font-size: 9px;
  font-weight: 900;
}

.audienceStrip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.audienceStrip .container {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--navy-800);
}

.audienceStrip span {
  color: #87959c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audienceStrip strong {
  font-size: 14px;
  font-weight: 700;
}

.audienceStrip i,
.commercialNote i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime-500);
}

.section {
  padding: 126px 0;
}

.problemSection {
  background: white;
}

.sectionHeader {
  max-width: 780px;
  margin: 0 auto 62px;
  text-align: center;
}

.sectionHeader .sectionKicker {
  justify-content: center;
}

.sectionHeader h2,
.assistantCopy h2,
.faqIntro h2,
.finalCta h2 {
  margin: 18px 0 20px;
  color: var(--navy-950);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 760;
  letter-spacing: -0.054em;
  line-height: 1.06;
}

.sectionHeader > p,
.faqIntro > p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.highlightCard {
  display: grid;
  min-height: 250px;
  grid-template-rows: 1fr auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.highlightCard:hover {
  border-color: #c7dac0;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.highlightCard > span {
  color: var(--green-600);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.highlightCard h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 23px;
  letter-spacing: -0.035em;
}

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

.featuresSection {
  background: var(--surface);
}

.sectionHeader.compact {
  margin-bottom: 78px;
}

.featureStack {
  display: grid;
  gap: 94px;
}

.featureRow {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 94px;
}

.featureRow.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

.featureRow.reverse .featureCopy {
  order: 2;
}

.featureCopy h3 {
  margin: 16px 0 20px;
  color: var(--navy-950);
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.featureCopy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.featureCopy ul,
.priceCard ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.featureCopy li,
.priceCard li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3e5663;
  font-size: 14px;
  font-weight: 640;
}

.featureVisual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #dce4e5;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.overviewVisual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 42px 32px;
  background:
    linear-gradient(145deg, rgba(232, 255, 216, 0.72), rgba(255,255,255,0) 52%),
    white;
}

.assetValue span,
.assetValue strong,
.assetValue small {
  display: block;
}

.assetValue span,
.timelineTop small {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 830;
  letter-spacing: 0.12em;
}

.assetValue strong {
  margin: 11px 0 6px;
  color: var(--navy-950);
  font-size: 35px;
  letter-spacing: -0.05em;
}

.assetValue small {
  color: var(--green-600);
  font-size: 12px;
  font-weight: 750;
}

.valueChart {
  position: relative;
  height: 210px;
  margin-top: 28px;
  overflow: hidden;
  border-bottom: 1px solid #ced8d9;
}

.gridLine {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: #e6ecec;
}

.lineA { top: 20%; }
.lineB { top: 50%; }
.lineC { top: 80%; }

.chartFill {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 88%;
  background: linear-gradient(180deg, rgba(115, 237, 24, 0.2), rgba(115, 237, 24, 0.02));
  clip-path: polygon(0 84%, 18% 76%, 35% 70%, 53% 52%, 72% 44%, 100% 5%, 100% 100%, 0 100%);
}

.chartStroke {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 88%;
  background: var(--green-600);
  clip-path: polygon(0 83%, 18% 75%, 35% 69%, 53% 51%, 72% 43%, 100% 4%, 100% 6%, 72% 45%, 53% 53%, 35% 71%, 18% 77%, 0 85%);
}

.point {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 2px 7px rgba(26, 80, 21, 0.3);
}

.pointA { bottom: 19%; left: 18%; }
.pointB { bottom: 42%; left: 53%; }
.pointC { top: 3%; right: 0; }

.chartLegend {
  display: flex;
  justify-content: space-between;
  color: #87969c;
  font-size: 10px;
}

.documentsVisual {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(115, 237, 24, 0.14), transparent 38%),
    #eef4f1;
}

.docSheet {
  position: absolute;
  width: 245px;
  height: 308px;
  border: 1px solid #dae2e0;
  border-radius: 15px;
  background: white;
  box-shadow: 0 22px 55px rgba(7, 29, 45, 0.12);
}

.backSheet {
  margin: -22px 0 0 76px;
  transform: rotate(7deg);
}

.mainSheet {
  z-index: 2;
  margin: -8px 0 0 -50px;
  padding: 35px 30px;
  transform: rotate(-3deg);
}

.docIcon {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 12px;
  background: var(--lime-100);
  color: var(--green-700);
  font-size: 22px;
}

.mainSheet b,
.mainSheet span {
  display: block;
}

.mainSheet b {
  color: var(--navy-950);
  font-size: 16px;
}

.mainSheet span {
  margin-top: 6px;
  color: #8a979c;
  font-size: 10px;
}

.docLine {
  height: 6px;
  margin-top: 15px;
  border-radius: 6px;
  background: #e8eded;
}

.docLine.long { width: 100%; margin-top: 32px; }
.docLine.medium { width: 77%; }
.docLine.short { width: 55%; }

.aiBadge {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid #dfe8dd;
  border-radius: 13px;
  background: white;
  box-shadow: 0 18px 45px rgba(7, 29, 45, 0.15);
}

.aiBadge > span {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--navy-950);
  font-size: 16px;
}

.aiBadge b,
.aiBadge small {
  display: block;
}

.aiBadge b {
  font-size: 11px;
}

.aiBadge small {
  margin-top: 3px;
  color: #809097;
  font-size: 8px;
}

.timelineVisual {
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(10, 39, 59, 0.03), transparent 48%),
    white;
}

.timelineTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.timelineTop strong {
  display: block;
  margin-top: 7px;
  color: var(--navy-950);
  font-size: 31px;
  letter-spacing: -0.04em;
}

.timelineTop > span {
  padding: 7px 10px;
  border-radius: 99px;
  background: var(--lime-100);
  color: var(--green-700);
  font-size: 9px;
  font-weight: 750;
}

.timelineLine {
  position: relative;
  display: flex;
  gap: 17px;
  padding: 28px 0 0 1px;
}

.timelineLine:not(:last-child)::after {
  position: absolute;
  top: 42px;
  bottom: -28px;
  left: 7px;
  width: 1px;
  background: #d9e2e1;
  content: "";
}

.timelineLine > i {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 4px solid #dfffc9;
  border-radius: 50%;
  background: var(--green-600);
}

.timelineLine b,
.timelineLine small {
  display: block;
}

.timelineLine b {
  color: var(--navy-900);
  font-size: 13px;
}

.timelineLine small {
  margin-top: 5px;
  color: #839198;
  font-size: 10px;
}

.assistantSection {
  padding: 92px 0;
  background: white;
}

.assistantCard {
  position: relative;
  display: grid;
  min-height: 465px;
  overflow: hidden;
  grid-template-columns: 0.62fr 1fr 1fr;
  align-items: center;
  gap: 54px;
  padding: 70px 70px;
  border-radius: 28px;
  background: var(--navy-950);
  color: white;
}

.assistantCard::before {
  position: absolute;
  top: -150px;
  right: 25%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 237, 24, 0.13), transparent 66%);
  content: "";
}

.assistantOrb {
  position: relative;
  display: flex;
  width: 170px;
  height: 170px;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.orbCore {
  position: relative;
  z-index: 2;
  display: flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: var(--lime-500);
  box-shadow: 0 0 55px rgba(115, 237, 24, 0.28);
  color: var(--navy-950);
  font-size: 35px;
  font-weight: 850;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(115, 237, 24, 0.28);
  border-radius: 50%;
}

.orbitOne {
  width: 138px;
  height: 138px;
}

.orbitTwo {
  width: 170px;
  height: 170px;
  border-color: rgba(255,255,255,.1);
}

.sectionKicker.light {
  color: var(--lime-400);
}

.assistantCopy {
  position: relative;
  z-index: 1;
}

.assistantCopy h2 {
  margin: 15px 0 20px;
  color: white;
  font-size: clamp(36px, 4vw, 52px);
}

.assistantCopy p {
  margin: 0;
  color: #aebfc8;
  font-size: 15px;
  line-height: 1.75;
}

.chatCard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}

.chatBubble {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.55;
}

.userBubble {
  justify-self: end;
  border-bottom-right-radius: 3px;
  background: var(--lime-500);
  color: var(--navy-950);
  font-weight: 650;
}

.botBubble {
  border-bottom-left-radius: 3px;
  background: white;
  color: var(--navy-900);
}

.chatStatus {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(115,237,24,.1);
  color: #d9ffbd;
  font-size: 9px;
  font-weight: 700;
}

.chatStatus span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--navy-950);
}

.pricingSection {
  background: #f8faf9;
}

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.priceCard {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.priceCard.featured {
  border-color: var(--lime-500);
  box-shadow: 0 25px 65px rgba(28, 78, 41, 0.12);
  transform: translateY(-12px);
}

.popularTag {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 14px;
  border-radius: 0 0 9px 9px;
  background: var(--lime-500);
  color: var(--navy-950);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.planTop h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.planTop p {
  min-height: 48px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 32px 0 6px;
  color: var(--navy-950);
}

.price > span {
  margin: 8px 5px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.price strong {
  font-size: 54px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price small {
  align-self: flex-end;
  margin: 0 0 7px 6px;
  color: #7b8b93;
  font-size: 11px;
}

.planLimit {
  color: var(--green-700);
  font-size: 12px;
}

.priceCard .button {
  width: 100%;
  margin-top: 26px;
}

.buttonSecondary {
  border-color: #cbd6d8;
  background: white;
  box-shadow: none;
  color: var(--navy-900);
}

.buttonSecondary:hover {
  border-color: var(--lime-500);
  background: var(--lime-100);
  box-shadow: none;
}

.priceCard ul {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.priceCard li {
  font-size: 13px;
}

.commercialNote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 40px;
  color: #6a7b84;
  font-size: 12px;
  font-weight: 650;
}

.faqSection {
  background: white;
}

.faqLayout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.faqIntro h2 {
  margin-top: 16px;
  font-size: clamp(38px, 4vw, 52px);
}

.faqIntro > p {
  margin: 0 0 28px;
  font-size: 15px;
}

.faqList {
  border-top: 1px solid var(--line);
}

.faqList details {
  border-bottom: 1px solid var(--line);
}

.faqList summary {
  display: flex;
  min-height: 78px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 720;
}

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

.faqList summary span {
  color: var(--green-600);
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faqList details p {
  max-width: 640px;
  margin: -4px 50px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.finalCta {
  padding: 80px 0;
  background: var(--navy-950);
}

.finalCtaInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.finalCta h2 {
  max-width: 700px;
  margin: 15px 0 8px;
  color: white;
  font-size: clamp(38px, 4vw, 56px);
}

.finalCta p {
  margin: 0;
  color: #9fb3bd;
  font-size: 15px;
}

.buttonLight {
  min-width: 220px;
  border-color: white;
  background: white;
  box-shadow: none;
}

.buttonLight:hover {
  border-color: var(--lime-500);
  background: var(--lime-500);
}

footer {
  padding: 70px 0 28px;
  background: #04141f;
  color: white;
}

.footerMain {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 60px;
}

.footerMain .brand {
  color: white;
}

.footerMain > div:first-child p {
  max-width: 300px;
  margin: 18px 0 0;
  color: #8197a2;
  font-size: 13px;
  line-height: 1.6;
}

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

.footerLinks > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footerLinks b {
  margin-bottom: 5px;
  color: white;
  font-size: 12px;
}

.footerLinks a {
  color: #8299a4;
  font-size: 12px;
  transition: color 180ms ease;
}

.footerLinks a:hover {
  color: var(--lime-400);
}

.footerBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #647e8a;
  font-size: 10px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .heroContent {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 40px;
  }

  .productWindow {
    min-height: 510px;
    grid-template-columns: 120px 1fr;
  }

  .windowContent {
    padding: 25px 20px;
  }

  .featureRow,
  .featureRow.reverse {
    gap: 60px;
  }

  .assistantCard {
    grid-template-columns: 0.42fr 1fr 0.9fr;
    gap: 35px;
    padding: 58px 46px;
  }

  .assistantOrb {
    width: 130px;
    height: 130px;
  }

  .orbCore {
    width: 76px;
    height: 76px;
  }

  .orbitOne { width: 110px; height: 110px; }
  .orbitTwo { width: 135px; height: 135px; }
}

@media (max-width: 900px) {
  .desktopNav,
  .headerActions {
    display: none;
  }

  .mobileMenu {
    position: relative;
    display: block;
  }

  .mobileMenu summary {
    display: flex;
    width: 42px;
    height: 42px;
    cursor: pointer;
    list-style: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 9px;
  }

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

  .mobileMenu summary span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy-900);
  }

  .mobilePanel {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 48px));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: white;
    box-shadow: var(--shadow-soft);
  }

  .mobilePanel a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--navy-900);
    font-size: 14px;
    font-weight: 700;
  }

  .mobilePanel a:last-child {
    border: 0;
    background: var(--lime-100);
  }

  .hero {
    padding-top: 70px;
  }

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

  .heroCopy {
    max-width: 680px;
    text-align: center;
  }

  .eyebrow,
  .heroActions,
  .heroMeta {
    justify-content: center;
  }

  .hero h1,
  .heroCopy > p {
    margin-inline: auto;
  }

  .productWindow {
    width: min(720px, 100%);
    margin-inline: auto;
    transform: none;
  }

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

  .highlightCard {
    min-height: 180px;
  }

  .featureRow,
  .featureRow.reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .featureRow.reverse .featureCopy {
    order: initial;
  }

  .featureCopy {
    max-width: 650px;
  }

  .assistantCard {
    grid-template-columns: 0.45fr 1.1fr;
  }

  .chatCard {
    grid-column: 1 / -1;
  }

  .pricingGrid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .priceCard,
  .priceCard.featured {
    min-height: auto;
    transform: none;
  }

  .planTop p {
    min-height: 0;
  }

  .faqLayout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .headerInner {
    min-height: 68px;
  }

  .hero {
    padding: 60px 0 58px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  .hero h1 em {
    white-space: normal;
  }

  .heroCopy > p {
    font-size: 16px;
  }

  .heroActions {
    flex-direction: column;
  }

  .heroActions .button {
    width: 100%;
  }

  .heroMeta {
    gap: 10px 16px;
  }

  .productWindow {
    min-height: 410px;
    grid-template-columns: 1fr;
    border-radius: 17px;
    box-shadow: 0 25px 60px rgba(7, 29, 45, 0.16);
  }

  .windowRail {
    display: none;
  }

  .windowContent {
    padding: 20px 16px;
  }

  .previewTop h3 {
    font-size: 18px;
  }

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

  .metricCard:first-child {
    grid-column: 1 / -1;
  }

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

  .statusCard {
    display: none;
  }

  .mapVisual {
    height: 125px;
  }

  .audienceStrip .container {
    min-height: 112px;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding-block: 24px;
  }

  .audienceStrip span {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 88px 0;
  }

  .sectionHeader {
    margin-bottom: 42px;
  }

  .sectionHeader h2,
  .assistantCopy h2,
  .faqIntro h2,
  .finalCta h2 {
    font-size: 38px;
  }

  .sectionHeader > p {
    font-size: 15px;
  }

  .highlightCard {
    min-height: 190px;
    padding: 24px;
  }

  .sectionHeader.compact {
    margin-bottom: 52px;
  }

  .featureStack {
    gap: 75px;
  }

  .featureCopy h3 {
    font-size: 36px;
  }

  .featureVisual {
    min-height: 360px;
  }

  .overviewVisual {
    padding: 30px 25px 25px;
  }

  .assetValue strong {
    font-size: 29px;
  }

  .documentsVisual {
    min-height: 390px;
  }

  .docSheet {
    width: 210px;
    height: 278px;
  }

  .mainSheet {
    margin-left: -30px;
  }

  .backSheet {
    margin-left: 50px;
  }

  .aiBadge {
    right: 18px;
    bottom: 28px;
  }

  .timelineVisual {
    padding: 28px 23px;
  }

  .assistantSection {
    padding: 15px 0;
    background: var(--navy-950);
  }

  .assistantCard {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 64px 24px;
    border-radius: 0;
  }

  .assistantOrb {
    width: 120px;
    height: 120px;
  }

  .assistantCopy {
    text-align: center;
  }

  .assistantCopy .sectionKicker {
    justify-content: center;
  }

  .pricingGrid {
    gap: 14px;
  }

  .priceCard {
    padding: 30px 24px;
  }

  .commercialNote {
    flex-direction: column;
    gap: 10px;
  }

  .commercialNote i {
    display: none;
  }

  .finalCta {
    padding: 65px 0;
  }

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

  .finalCta .button {
    width: 100%;
  }

  .footerMain {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footerLinks {
    gap: 35px;
  }

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