:root {
  --ink: #0b1b2d;
  --ink-soft: #33465c;
  --muted: #6b7888;
  --line: #dce5e9;
  --surface: #ffffff;
  --surface-alt: #f5f8fa;
  --teal: #32afa1;
  --teal-dark: #0d887d;
  --teal-soft: #e5f7f4;
  --blue: #1468d8;
  --blue-soft: #eaf3ff;
  --navy: #0a2039;
  --shadow: 0 24px 64px rgba(11, 27, 45, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

::selection {
  background: rgba(50, 175, 161, 0.24);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 229, 233, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-lockup {
  display: block;
  width: clamp(146px, 13vw, 174px);
  height: auto;
}

.brand-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-logo > .brand-mark,
.brand-logo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brand-logo > .brand-mark {
  grid-template-columns: repeat(2, 8px);
  place-content: center;
}

.brand-logo > .brand-mark i {
  width: 8px;
  height: 8px;
}

.brand-logo > img {
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f7f8f5;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  gap: 3px;
  padding: 7px;
  border: 1px solid rgba(50, 175, 161, 0.24);
  border-radius: 9px;
  background: var(--teal-soft);
}

.brand-mark i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--teal);
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(3) {
  background: var(--blue);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-header nav a {
  transition: color 140ms ease;
}

.site-header nav a:hover {
  color: var(--ink);
}

.header-label {
  justify-self: end;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.header-actions {
  display: flex;
  justify-self: end;
  gap: 8px;
  align-items: center;
}

.header-login,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 9px 15px;
  border-radius: 11px;
  font-size: 0.84rem;
  font-weight: 820;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-login {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 5px 14px rgba(7, 24, 44, 0.055);
}

.header-cta {
  border: 1px solid #10231f;
  background: #10231f;
  color: #ffffff;
  box-shadow: 0 9px 22px rgba(16, 35, 31, 0.18);
}

.header-login:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.header-login:hover {
  border-color: #b8c5bd;
  background: #ffffff;
}

.header-cta:hover {
  background: #17342e;
  box-shadow: 0 12px 27px rgba(16, 35, 31, 0.24);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  padding: 112px clamp(24px, 6vw, 96px) 96px;
  background:
    radial-gradient(circle at 78% 28%, rgba(50, 175, 161, 0.16), transparent 27%),
    linear-gradient(135deg, #f9fcfc 0%, #f4f9fb 54%, #edf6f7 100%);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(20, 104, 216, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(20, 104, 216, 0.025), 0 0 0 140px rgba(50, 175, 161, 0.025);
  content: "";
}

.hero-copy,
.hero-loop {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow,
.step-label {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 6.7vw, 7.3rem);
  line-height: 0.89;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--teal-dark);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.7vw, 1.3rem);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(50, 175, 161, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-loop {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.loop-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.loop-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loop-heading span {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-loop ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
}

.hero-loop li {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px 0;
}

.hero-loop li:not(:last-child)::after {
  position: absolute;
  top: 50px;
  bottom: -3px;
  left: 16px;
  width: 1px;
  background: linear-gradient(var(--teal), var(--line));
  content: "";
}

.hero-loop li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-loop strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.97rem;
}

.hero-loop li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.promise {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(28px, 7vw, 110px);
  padding: clamp(56px, 8vw, 104px) clamp(24px, 6vw, 96px);
  border-block: 1px solid var(--line);
}

.promise p {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promise h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.offer-section {
  padding: clamp(76px, 10vw, 140px) clamp(24px, 6vw, 96px);
}

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

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  max-width: 1500px;
  margin: 0 auto 52px;
}

.section-intro > div:first-child {
  max-width: 860px;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-label span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.67rem;
}

.section-intro h2,
.custom-heading h2,
.recap h2 {
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.section-intro > div:first-child > p:last-child,
.custom-heading > p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.price-block {
  min-width: 245px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-alt);
}

.price-block p,
.price-block span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-block strong {
  display: block;
  margin: 2px 0 1px;
  font-size: 2.45rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.foundation-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
}

.core-card {
  position: sticky;
  top: 106px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 22px;
  background: var(--navy);
  color: var(--surface);
  box-shadow: var(--shadow);
}

.core-card::after {
  position: absolute;
  right: -95px;
  bottom: -95px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(50, 175, 161, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(50, 175, 161, 0.06), 0 0 0 82px rgba(20, 104, 216, 0.055);
  content: "";
}

.core-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
}

.core-card-top p {
  margin: 0;
  color: #9fc6c8;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-mark {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--teal);
  box-shadow: 8px 8px 0 var(--blue);
}

.core-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.core-card > p {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  color: #bdcbd7;
}

.context-stream {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.context-stream span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #d8e1e9;
  font-size: 0.76rem;
  font-weight: 750;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  min-height: 195px;
  padding: 26px 24px 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list article:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.feature-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.feature-list h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1500px;
  margin: 46px auto 0;
}

.control-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(50, 175, 161, 0.25);
  border-radius: 16px;
  background: var(--teal-soft);
}

.usage-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--teal-dark);
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 900;
}

.control-grid strong {
  display: block;
  margin-bottom: 2px;
}

.control-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.agents {
  background: var(--surface-alt);
}

.price-block-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--surface);
}

.price-block-dark p,
.price-block-dark span {
  color: #aab9c6;
}

.included-base {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1500px;
  margin: 0 auto 26px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.included-base i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.included-base strong {
  color: var(--teal-dark);
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1500px;
  margin: 0 auto;
}

.agent-grid article {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.agent-grid .agent-card-featured {
  border-color: rgba(50, 175, 161, 0.42);
  box-shadow: 0 18px 45px rgba(11, 27, 45, 0.09);
}

.agent-grid header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: auto;
  padding-bottom: 58px;
}

.agent-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.agent-type {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.agent-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.agent-grid article > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.agent-grid ul {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.agent-grid li {
  position: relative;
  padding-left: 21px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.agent-grid li::before {
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 900;
  content: "✓";
}

.agents-note {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
}

.custom-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 11vw, 150px) clamp(24px, 6vw, 96px);
  background: var(--navy);
  color: var(--surface);
}

.custom-section::before {
  position: absolute;
  top: -300px;
  right: -240px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(50, 175, 161, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(50, 175, 161, 0.035), 0 0 0 160px rgba(20, 104, 216, 0.03);
  content: "";
}

.custom-heading,
.custom-grid,
.custom-footer {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin-inline: auto;
}

.custom-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  column-gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.step-label-light {
  grid-column: 1 / -1;
  color: #6ed1c6;
}

.custom-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.custom-heading > p:last-child {
  color: #aebdca;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.custom-grid article {
  min-height: 260px;
  padding: 26px 26px 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.custom-grid article + article {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.custom-grid article > span {
  display: block;
  margin-bottom: 58px;
  color: #6ed1c6;
  font-size: 0.7rem;
  font-weight: 900;
}

.custom-grid h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.custom-grid p {
  margin: 0;
  color: #aebdca;
  font-size: 0.88rem;
}

.custom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 26px 0 0;
}

.custom-footer p {
  margin-bottom: 3px;
  color: #7f93a5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-footer strong {
  font-size: 1.02rem;
}

.custom-footer > span {
  padding: 11px 16px;
  border: 1px solid rgba(110, 209, 198, 0.38);
  border-radius: 999px;
  background: rgba(110, 209, 198, 0.08);
  color: #87ded4;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recap {
  padding: clamp(76px, 10vw, 140px) clamp(24px, 6vw, 96px);
}

.recap > .eyebrow,
.recap > h2,
.recap-grid {
  max-width: 1500px;
  margin-inline: auto;
}

.recap h2 {
  margin-bottom: 48px;
}

.recap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.recap-grid article {
  padding: 28px 30px 16px 0;
}

.recap-grid article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.recap-grid span {
  display: block;
  margin-bottom: 52px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recap-grid h3 {
  max-width: 360px;
  margin-bottom: 12px;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.recap-grid p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(24px, 6vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-legal a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-legal a:hover {
  color: var(--teal);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-loop {
    max-width: 720px;
  }

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

  .core-card {
    position: relative;
    top: auto;
  }

  .custom-heading {
    grid-template-columns: 1fr;
  }

  .custom-heading h2 {
    margin-bottom: 24px;
  }

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

  .custom-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .section-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .price-block {
    width: min(100%, 360px);
  }

  .feature-list,
  .agent-grid,
  .recap-grid,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .feature-list article:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .agent-grid article {
    min-height: 430px;
  }

  .recap-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .recap-grid span {
    margin-bottom: 24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding-inline: 18px;
  }

  .header-label {
    display: none;
  }

  .hero {
    gap: 52px;
    padding: 76px 20px 68px;
  }

  .hero h1 {
    overflow-wrap: break-word;
    font-size: clamp(2.85rem, 12vw, 3.35rem);
  }

  .hero-loop {
    width: 100%;
    padding: 22px;
  }

  .promise {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .offer-section,
  .custom-section,
  .recap {
    padding-inline: 20px;
  }

  .section-intro h2,
  .custom-heading h2,
  .recap h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .core-card {
    padding: 28px 24px;
  }

  .core-card-top {
    margin-bottom: 38px;
  }

  .feature-list article {
    min-height: auto;
    padding: 24px 0;
  }

  .control-grid article {
    grid-template-columns: 1fr;
  }

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

  .included-base i {
    width: 100%;
    flex: none;
  }

  .agent-grid article {
    min-height: 0;
  }

  .agent-grid header {
    margin-bottom: 50px;
    padding-bottom: 0;
  }

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

  .custom-grid article,
  .custom-grid article + article,
  .custom-grid article:nth-child(3) {
    min-height: 0;
    padding: 26px 0;
    border-left: 0;
  }

  .custom-grid article > span {
    margin-bottom: 26px;
  }

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

  footer {
    padding-inline: 20px;
  }

  .footer-identity {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

@media print {
  .site-header {
    position: static;
  }

  .hero {
    min-height: 0;
    padding-block: 64px;
  }

  .core-card {
    position: relative;
    top: auto;
  }

  .offer-section,
  .custom-section,
  .recap {
    break-inside: avoid;
  }
}

/* Modern visual refresh */
:root {
  --ink: #07182c;
  --ink-soft: #314760;
  --muted: #68798d;
  --line: #dce8ed;
  --surface-alt: #f3f8fa;
  --teal: #22c7b8;
  --teal-dark: #078f84;
  --teal-soft: #e3faf7;
  --blue: #2778f2;
  --blue-soft: #eaf2ff;
  --navy: #071b32;
  --shadow: 0 28px 90px rgba(7, 24, 44, 0.13);
}

@media screen {
  section {
    scroll-margin-top: 100px;
  }

  body {
    background: #f7fafc;
  }

  .site-header {
    position: fixed;
    top: 14px;
    right: clamp(14px, 2.2vw, 34px);
    left: clamp(14px, 2.2vw, 34px);
    grid-template-columns: 1fr auto 1fr;
    min-height: 62px;
    padding: 9px 12px 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 19px;
    background: rgba(250, 253, 255, 0.76);
    box-shadow: 0 16px 50px rgba(7, 24, 44, 0.08);
    backdrop-filter: blur(24px) saturate(150%);
  }

  .brand-mark {
    border-color: rgba(34, 199, 184, 0.22);
    background: linear-gradient(145deg, rgba(227, 250, 247, 0.95), rgba(234, 242, 255, 0.95));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 20px rgba(39, 120, 242, 0.09);
  }

  .brand-mark i {
    background: linear-gradient(145deg, #27d0bf, #0ca597);
    box-shadow: 0 3px 8px rgba(34, 199, 184, 0.26);
  }

  .brand-mark i:nth-child(2),
  .brand-mark i:nth-child(3) {
    background: linear-gradient(145deg, #438cff, #1468dc);
    box-shadow: 0 3px 8px rgba(39, 120, 242, 0.26);
  }

  .site-header nav {
    gap: 8px;
    padding: 4px;
    border: 1px solid rgba(220, 232, 237, 0.72);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.64);
  }

  .site-header nav a {
    padding: 7px 12px;
    border-radius: 9px;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
  }

  .site-header nav a:hover {
    background: var(--surface);
    box-shadow: 0 6px 16px rgba(7, 24, 44, 0.06);
    transform: translateY(-1px);
  }

  .header-label {
    border-color: rgba(7, 143, 132, 0.14);
    background: var(--teal-soft);
    color: var(--teal-dark);
  }

  .hero {
    isolation: isolate;
    grid-template-columns: minmax(0, 1.16fr) minmax(390px, 0.84fr);
    min-height: 880px;
    padding-top: 152px;
    background:
      radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.98) 0, transparent 30%),
      radial-gradient(circle at 78% 22%, rgba(34, 199, 184, 0.2), transparent 29%),
      radial-gradient(circle at 96% 78%, rgba(39, 120, 242, 0.16), transparent 29%),
      linear-gradient(135deg, #f7fbfd 0%, #eef8f8 47%, #edf4fb 100%);
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
      linear-gradient(rgba(7, 24, 44, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(7, 24, 44, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.54), transparent 74%);
  }

  .hero::after {
    right: -170px;
    bottom: -260px;
    z-index: -1;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(39, 120, 242, 0.14);
    box-shadow:
      0 0 0 84px rgba(39, 120, 242, 0.025),
      0 0 0 168px rgba(34, 199, 184, 0.025),
      0 0 110px rgba(39, 120, 242, 0.1);
  }

  .eyebrow,
  .step-label {
    width: max-content;
    padding: 7px 10px;
    border: 1px solid rgba(7, 143, 132, 0.16);
    border-radius: 999px;
    background: rgba(227, 250, 247, 0.8);
    letter-spacing: 0.08em;
  }

  .hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hero .eyebrow::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(34, 199, 184, 0.12);
    content: "";
    animation: status-pulse 2.8s ease-in-out infinite;
  }

  .hero h1 {
    max-width: 900px;
    margin-top: 20px;
    font-size: clamp(4rem, 7.1vw, 7.9rem);
    letter-spacing: -0.072em;
    text-wrap: balance;
  }

  .hero h1 span {
    width: max-content;
    max-width: 100%;
    background: linear-gradient(92deg, #078f84 4%, #16b6a7 46%, #2778f2 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-lead {
    max-width: 760px;
    color: #29425e;
    font-size: clamp(1.08rem, 1.55vw, 1.28rem);
    line-height: 1.65;
    text-wrap: pretty;
  }

  .hero-facts span {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 22px rgba(7, 24, 44, 0.055);
    backdrop-filter: blur(14px);
  }

  .hero-loop {
    overflow: hidden;
    padding: 30px;
    border-color: rgba(255, 255, 255, 0.11);
    border-radius: 28px;
    background:
      radial-gradient(circle at 100% 0%, rgba(34, 199, 184, 0.22), transparent 35%),
      linear-gradient(145deg, rgba(7, 27, 50, 0.98), rgba(8, 35, 61, 0.96));
    color: var(--surface);
    box-shadow: 0 35px 90px rgba(7, 24, 44, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .hero-loop::before {
    position: absolute;
    top: -110px;
    right: -90px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(34, 199, 184, 0.18);
    filter: blur(34px);
    content: "";
  }

  .loop-heading {
    position: relative;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .loop-heading p {
    color: #91a5b9;
  }

  .loop-heading span {
    color: #70e0d5;
  }

  .hero-loop li > span {
    background: rgba(34, 199, 184, 0.14);
    color: #7fe6dc;
    box-shadow: inset 0 0 0 1px rgba(127, 230, 220, 0.1);
  }

  .hero-loop li:not(:last-child)::after {
    background: linear-gradient(#4dd4c7, rgba(255, 255, 255, 0.11));
  }

  .hero-loop strong {
    color: #f7fbff;
  }

  .hero-loop li p {
    color: #aebdca;
  }

  .promise {
    position: relative;
    overflow: hidden;
    border: 0;
    background:
      radial-gradient(circle at 8% 25%, rgba(34, 199, 184, 0.16), transparent 26%),
      radial-gradient(circle at 88% 100%, rgba(39, 120, 242, 0.17), transparent 28%),
      #061529;
    color: var(--surface);
  }

  .promise::after {
    position: absolute;
    right: 8%;
    bottom: -180px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.015), 0 0 0 120px rgba(255, 255, 255, 0.012);
    content: "";
  }

  .promise p {
    position: relative;
    z-index: 1;
    color: #71ded4;
  }

  .promise h2 {
    position: relative;
    z-index: 1;
    color: #f7fbff;
  }

  .foundation {
    background:
      radial-gradient(circle at 100% 22%, rgba(34, 199, 184, 0.07), transparent 25%),
      linear-gradient(180deg, #fbfdfe, #f5fafb 100%);
  }

  .step-label span {
    border: 0;
    background: var(--teal-dark);
    color: var(--surface);
    box-shadow: 0 5px 13px rgba(7, 143, 132, 0.22);
  }

  .section-intro h2,
  .custom-heading h2,
  .recap h2 {
    text-wrap: balance;
  }

  .price-block {
    border-color: rgba(220, 232, 237, 0.86);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 46px rgba(7, 24, 44, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .price-block:hover {
    box-shadow: 0 24px 60px rgba(7, 24, 44, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
  }

  .core-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
      radial-gradient(circle at 92% 8%, rgba(34, 199, 184, 0.28), transparent 28%),
      linear-gradient(145deg, #06182d 0%, #092c48 100%);
    box-shadow: 0 35px 80px rgba(7, 24, 44, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }

  .core-card::before {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 38px 38px;
    content: "";
    mask-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), transparent 72%);
  }

  .feature-list {
    gap: 12px;
    border: 0;
  }

  .feature-list article,
  .feature-list article:nth-child(even) {
    min-height: 210px;
    padding: 25px;
    border: 1px solid rgba(220, 232, 237, 0.92);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 34px rgba(7, 24, 44, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .feature-list article:hover {
    border-color: rgba(34, 199, 184, 0.32);
    box-shadow: 0 20px 45px rgba(7, 24, 44, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-4px);
  }

  .feature-number {
    background: linear-gradient(145deg, #e3faf7, #e8f4ff);
    box-shadow: inset 0 0 0 1px rgba(34, 199, 184, 0.09), 0 6px 14px rgba(39, 120, 242, 0.07);
  }

  .control-grid {
    gap: 16px;
  }

  .control-grid article {
    overflow: hidden;
    border-color: rgba(34, 199, 184, 0.2);
    border-radius: 22px;
    background:
      radial-gradient(circle at 100% 0%, rgba(39, 120, 242, 0.1), transparent 34%),
      linear-gradient(135deg, rgba(227, 250, 247, 0.95), rgba(241, 248, 255, 0.96));
    box-shadow: 0 15px 38px rgba(7, 24, 44, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .usage-icon {
    background: linear-gradient(145deg, #07998d, #2778f2);
    box-shadow: 0 10px 24px rgba(7, 143, 132, 0.2);
  }

  .agents {
    background:
      radial-gradient(circle at 7% 8%, rgba(39, 120, 242, 0.075), transparent 24%),
      radial-gradient(circle at 92% 86%, rgba(34, 199, 184, 0.08), transparent 25%),
      #f2f7fa;
  }

  .price-block-dark {
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, #071b32, #0b3150);
    box-shadow: 0 24px 55px rgba(7, 24, 44, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }

  .included-base span,
  .included-base strong {
    padding: 8px 11px;
    border-radius: 999px;
  }

  .included-base span {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
  }

  .included-base strong {
    background: var(--teal-soft);
  }

  .agent-grid article {
    overflow: hidden;
    border-color: rgba(220, 232, 237, 0.94);
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(7, 24, 44, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .agent-grid article:hover {
    border-color: rgba(39, 120, 242, 0.22);
    box-shadow: 0 26px 65px rgba(7, 24, 44, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-6px);
  }

  .agent-grid .agent-card-featured {
    border-color: rgba(34, 199, 184, 0.36);
    background:
      radial-gradient(circle at 100% 0%, rgba(34, 199, 184, 0.12), transparent 33%),
      linear-gradient(180deg, #ffffff, #f6fcfb);
    box-shadow: 0 25px 65px rgba(7, 24, 44, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .agent-index {
    background: linear-gradient(145deg, #eaf2ff, #e3faf7);
    box-shadow: 0 8px 18px rgba(39, 120, 242, 0.1);
  }

  .custom-section {
    background:
      radial-gradient(circle at 90% 2%, rgba(34, 199, 184, 0.16), transparent 25%),
      radial-gradient(circle at 8% 100%, rgba(39, 120, 242, 0.13), transparent 25%),
      linear-gradient(145deg, #061529, #092945);
  }

  .custom-grid article {
    transition: background 180ms ease;
  }

  .custom-grid article:hover {
    background: rgba(255, 255, 255, 0.025);
  }

  .custom-footer > span {
    box-shadow: 0 0 28px rgba(110, 209, 198, 0.1);
  }

  .recap {
    background:
      radial-gradient(circle at 88% 16%, rgba(34, 199, 184, 0.07), transparent 24%),
      var(--surface);
  }

  .recap-grid article {
    transition: background 160ms ease, transform 160ms ease;
  }

  .recap-grid article:hover {
    background: linear-gradient(180deg, rgba(227, 250, 247, 0.55), transparent);
    transform: translateY(-3px);
  }

  footer {
    background: linear-gradient(90deg, #f2f8fa, #f8fbfc);
  }

  @keyframes status-pulse {
    0%, 100% {
      box-shadow: 0 0 0 4px rgba(34, 199, 184, 0.11);
    }
    50% {
      box-shadow: 0 0 0 8px rgba(34, 199, 184, 0.02);
    }
  }
}

/* Hero product motion + audit CTA */
@media screen {
  .hero {
    grid-template-columns: minmax(420px, 0.86fr) minmax(620px, 1.14fr);
    gap: clamp(38px, 4vw, 72px);
    min-height: 900px;
    padding-right: clamp(24px, 4vw, 64px);
    padding-left: clamp(24px, 4vw, 64px);
  }

  .hero-copy,
  .hero-motion {
    position: relative;
    z-index: 1;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(4rem, 5.4vw, 6.65rem);
  }

  .hero-motion {
    isolation: isolate;
    min-height: 570px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 30px;
    background:
      radial-gradient(circle at 50% 38%, rgba(34, 199, 184, 0.13), transparent 32%),
      rgba(250, 253, 255, 0.78);
    box-shadow: 0 34px 100px rgba(7, 24, 44, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px) saturate(140%);
  }

  .motion-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
      linear-gradient(rgba(7, 24, 44, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(7, 24, 44, 0.045) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.22));
  }

  .motion-paths {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .motion-flow-line {
    fill: none;
    stroke-dasharray: 7 11;
    stroke-linecap: round;
    stroke-width: 2;
    opacity: 0.5;
    animation: offer-line-flow 9s linear infinite;
  }

  .motion-flow-line-output {
    opacity: 0.62;
  }

  .motion-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(145px, 0.9fr) minmax(180px, 1.02fr) minmax(165px, 0.98fr);
    gap: 15px;
    align-items: center;
    min-height: 570px;
    padding: 25px;
  }

  .motion-sources > p,
  .motion-outputs > p {
    margin-bottom: 14px;
    color: #607184;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .motion-source-list,
  .motion-outputs {
    display: grid;
    gap: 9px;
  }

  .motion-source-list article,
  .motion-outputs article {
    position: relative;
    display: grid;
    align-items: center;
    border: 1px solid rgba(212, 225, 230, 0.92);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(7, 24, 44, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.98);
    animation: offer-node-breathe 4.2s ease-in-out infinite;
    animation-delay: var(--motion-delay);
  }

  .motion-source-list article {
    grid-template-columns: 35px 1fr;
    min-height: 48px;
    padding: 7px 10px;
    border-radius: 12px;
  }

  .motion-source-list article > span,
  .motion-outputs article > span {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 8px;
    background: linear-gradient(145deg, #e3faf7, #eaf2ff);
    color: var(--teal-dark);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .motion-source-list strong,
  .motion-outputs strong {
    color: var(--ink);
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .motion-hub {
    display: grid;
    gap: 15px;
    justify-items: center;
    padding: 24px 17px 20px;
    border: 1px solid rgba(174, 195, 200, 0.88);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(7, 24, 44, 0.13), inset 0 1px 0 rgba(255, 255, 255, 1);
    text-align: center;
    animation: offer-hub-breathe 4.8s ease-in-out infinite;
  }

  .motion-hub-logo {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(34, 199, 184, 0.22);
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(34, 199, 184, 0.16), transparent 56%),
      #f9fdfd;
    box-shadow: 0 0 0 10px rgba(34, 199, 184, 0.035);
  }

  .motion-hub-logo > img {
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  .motion-hub-logo .brand-mark {
    grid-template-columns: repeat(2, 8px);
    gap: 2px;
    padding: 6px;
  }

  .motion-hub-logo .brand-mark i {
    width: 8px;
    height: 8px;
  }

  .motion-hub p {
    margin-bottom: 7px;
    color: var(--teal-dark);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .motion-hub h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.2rem, 1.65vw, 1.55rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
  }

  .motion-hub-actions {
    display: grid;
    gap: 7px;
    width: 100%;
  }

  .motion-hub-actions span {
    padding: 7px 8px;
    border-radius: 9px;
    background: linear-gradient(90deg, rgba(227, 250, 247, 0.95), rgba(234, 242, 255, 0.9));
    color: var(--teal-dark);
    font-size: 0.69rem;
    font-weight: 850;
    line-height: 1.25;
  }

  .motion-ai-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 9px;
    background: linear-gradient(135deg, #078f84, #0a6f77);
    color: #ffffff;
    font-size: 0.69rem;
    box-shadow: 0 9px 24px rgba(7, 143, 132, 0.22);
    animation: offer-ai-pulse 2.5s ease-in-out infinite;
  }

  .motion-ai-pill::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9af2e9;
    box-shadow: 0 0 0 4px rgba(154, 242, 233, 0.14);
    content: "";
  }

  .motion-outputs article {
    grid-template-columns: 35px 1fr;
    min-height: 70px;
    padding: 10px;
    border-radius: 13px;
    animation-name: offer-output-ready;
  }

  .motion-outputs article small {
    grid-column: 2;
    margin-top: -5px;
    color: #718093;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .audit-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(50px, 7vw, 110px);
    align-items: center;
    overflow: hidden;
    padding: clamp(78px, 9vw, 132px) clamp(24px, 6vw, 96px);
    background:
      radial-gradient(circle at 4% 15%, rgba(34, 199, 184, 0.13), transparent 30%),
      radial-gradient(circle at 96% 100%, rgba(39, 120, 242, 0.11), transparent 30%),
      #071f28;
    color: #f8fbfc;
  }

  .audit-cta::before {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    content: "";
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.55), transparent 74%);
  }

  .audit-cta-copy,
  .audit-card {
    position: relative;
    z-index: 1;
  }

  .audit-eyebrow {
    margin-bottom: 20px;
    color: #72ddd3;
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .audit-cta h2 {
    max-width: 820px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(2.55rem, 4.2vw, 4.65rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    text-wrap: balance;
  }

  .audit-lead {
    max-width: 760px;
    margin-bottom: 32px;
    color: #b9c8c8;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.7;
  }

  .audit-benefits {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .audit-benefits li {
    display: grid;
    grid-template-columns: 39px 1fr;
    gap: 13px;
    align-items: center;
  }

  .audit-benefits p {
    margin: 0;
    color: #c8d2d2;
    font-size: 0.88rem;
  }

  .audit-icon {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(114, 221, 211, 0.22);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    color: #72ddd3;
    font-size: 0.67rem;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .audit-icon svg {
    width: 18px;
    height: 18px;
  }

  .audit-card {
    padding: clamp(28px, 3.5vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
  }

  .audit-card .audit-eyebrow {
    margin-bottom: 16px;
  }

  .audit-card h3 {
    margin-bottom: 17px;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.1vw, 2rem);
    letter-spacing: -0.035em;
  }

  .audit-card > p:not(.audit-eyebrow) {
    margin-bottom: 24px;
    color: #c5cece;
  }

  .audit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    min-height: 54px;
    padding: 13px 20px;
    border-radius: 11px;
    background: #ffffff;
    color: #102327;
    font-size: 0.94rem;
    font-weight: 850;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.17);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  }

  .audit-button span {
    font-size: 1.25rem;
    transition: transform 180ms ease;
  }

  .audit-button:hover {
    background: #effcfb;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
  }

  .audit-button:hover span {
    transform: translateX(4px);
  }

  @keyframes offer-line-flow {
    to {
      stroke-dashoffset: -144;
    }
  }

  @keyframes offer-node-breathe {
    0%, 100% {
      border-color: rgba(212, 225, 230, 0.92);
      transform: translateX(0);
    }
    50% {
      border-color: rgba(39, 120, 242, 0.3);
      transform: translateX(3px);
    }
  }

  @keyframes offer-output-ready {
    0%, 100% {
      border-color: rgba(212, 225, 230, 0.92);
      transform: translateX(0);
    }
    50% {
      border-color: rgba(34, 199, 184, 0.34);
      transform: translateX(-3px);
    }
  }

  @keyframes offer-hub-breathe {
    0%, 100% {
      box-shadow: 0 24px 60px rgba(7, 24, 44, 0.13), inset 0 1px 0 rgba(255, 255, 255, 1);
      transform: translateY(0);
    }
    50% {
      box-shadow: 0 30px 72px rgba(7, 143, 132, 0.19), inset 0 1px 0 rgba(255, 255, 255, 1);
      transform: translateY(-5px);
    }
  }

  @keyframes offer-ai-pulse {
    0%, 100% {
      box-shadow: 0 9px 24px rgba(7, 143, 132, 0.22);
    }
    50% {
      box-shadow: 0 12px 34px rgba(7, 143, 132, 0.4);
    }
  }
}

/* Airy control-system refinement */
@media screen {
  body {
    background:
      radial-gradient(circle at 10% 5%, rgba(34, 199, 184, 0.055), transparent 24%),
      #f7fafc;
  }

  .site-header {
    border-color: rgba(211, 226, 232, 0.78);
    background: rgba(251, 254, 255, 0.82);
    box-shadow: 0 12px 38px rgba(7, 24, 44, 0.065), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .site-header nav {
    border-color: rgba(220, 232, 237, 0.58);
    background: rgba(245, 249, 251, 0.72);
  }

  .offer-section,
  .recap {
    border-top: 1px solid rgba(214, 228, 233, 0.68);
  }

  .section-intro {
    margin-bottom: 62px;
  }

  .section-intro > div:first-child > p:last-child,
  .custom-heading > p:last-child {
    line-height: 1.75;
  }

  .price-block {
    position: relative;
    overflow: hidden;
    border-color: rgba(201, 221, 226, 0.75);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 46px rgba(7, 24, 44, 0.065), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .price-block::before {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #23c7b7;
    box-shadow: 0 0 0 6px rgba(34, 199, 184, 0.1);
    content: "";
  }

  .foundation {
    background:
      linear-gradient(rgba(7, 24, 44, 0.024) 1px, transparent 1px),
      linear-gradient(90deg, rgba(7, 24, 44, 0.024) 1px, transparent 1px),
      radial-gradient(circle at 100% 16%, rgba(34, 199, 184, 0.075), transparent 23%),
      linear-gradient(180deg, #fbfdfe, #f5fafb 100%);
    background-size: 64px 64px, 64px 64px, auto, auto;
  }

  .core-card {
    border-radius: 32px;
    background:
      radial-gradient(circle at 92% 5%, rgba(34, 199, 184, 0.3), transparent 27%),
      radial-gradient(circle at 8% 100%, rgba(39, 120, 242, 0.18), transparent 28%),
      linear-gradient(145deg, #06182d 0%, #0a2d49 100%);
    box-shadow: 0 36px 90px rgba(7, 24, 44, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.11);
  }

  .core-card-top {
    margin-bottom: 72px;
  }

  .context-stream {
    gap: 9px;
  }

  .context-stream span {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .feature-list {
    gap: 14px;
  }

  .feature-list article,
  .feature-list article:nth-child(even) {
    min-height: 220px;
    padding: 27px;
    border: 1px solid rgba(211, 226, 232, 0.82);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.79);
    box-shadow: 0 10px 34px rgba(7, 24, 44, 0.038), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .feature-list article:hover {
    border-color: rgba(34, 199, 184, 0.35);
    box-shadow: 0 20px 48px rgba(7, 24, 44, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-3px);
  }

  .feature-number {
    border: 1px solid rgba(34, 199, 184, 0.12);
    background: linear-gradient(145deg, rgba(227, 250, 247, 0.98), rgba(234, 242, 255, 0.96));
    box-shadow: 0 8px 20px rgba(39, 120, 242, 0.08);
  }

  .feature-list h3 {
    line-height: 1.3;
  }

  .feature-list p {
    line-height: 1.66;
  }

  .control-grid {
    gap: 18px;
    margin-top: 58px;
  }

  .control-grid article {
    position: relative;
    padding: 28px;
    border-color: rgba(34, 199, 184, 0.18);
    border-radius: 24px;
    background:
      radial-gradient(circle at 100% 0%, rgba(39, 120, 242, 0.08), transparent 35%),
      rgba(239, 252, 250, 0.84);
    box-shadow: 0 16px 42px rgba(7, 24, 44, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .control-grid article::after {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(34, 199, 184, 0.1);
    content: "";
  }

  .usage-icon {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 15px;
    background: linear-gradient(145deg, #06968b, #176fcd);
    box-shadow: 0 12px 26px rgba(7, 143, 132, 0.18);
  }

  .agents {
    background:
      radial-gradient(circle at 5% 5%, rgba(39, 120, 242, 0.065), transparent 23%),
      radial-gradient(circle at 95% 88%, rgba(34, 199, 184, 0.075), transparent 24%),
      linear-gradient(180deg, #f4f8fa, #eef5f7);
  }

  .price-block-dark {
    border-color: rgba(255, 255, 255, 0.09);
    background:
      radial-gradient(circle at 100% 0%, rgba(34, 199, 184, 0.19), transparent 38%),
      linear-gradient(145deg, #071b32, #0b3150);
  }

  .agent-grid {
    gap: 22px;
  }

  .agent-grid article {
    min-height: 490px;
    border-color: rgba(207, 223, 229, 0.82);
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 17px 48px rgba(7, 24, 44, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
  }

  .agent-grid header {
    padding-bottom: 66px;
  }

  .agent-index {
    border: 1px solid rgba(39, 120, 242, 0.1);
    border-radius: 14px;
    background: linear-gradient(145deg, #eaf2ff, #e3faf7);
  }

  .agent-grid .agent-card-featured {
    border-color: rgba(34, 199, 184, 0.32);
    background:
      radial-gradient(circle at 100% 0%, rgba(34, 199, 184, 0.105), transparent 36%),
      rgba(255, 255, 255, 0.9);
    box-shadow: 0 26px 65px rgba(7, 24, 44, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .custom-section {
    background:
      radial-gradient(circle at 88% 0%, rgba(34, 199, 184, 0.17), transparent 26%),
      radial-gradient(circle at 5% 100%, rgba(39, 120, 242, 0.13), transparent 27%),
      linear-gradient(145deg, #06182b, #08263d 64%, #092c42);
  }

  .custom-section .step-label-light {
    border-color: rgba(113, 233, 222, 0.28);
    background: rgba(12, 124, 116, 0.28);
    color: #d7fffb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 28px rgba(0, 0, 0, 0.12);
  }

  .custom-section .step-label-light span {
    background: #44ddce;
    color: #052531;
    box-shadow: 0 7px 18px rgba(68, 221, 206, 0.22);
  }

  .custom-heading > p:last-child {
    padding: 26px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    color: #c3d0da;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(14px);
  }

  .custom-grid {
    gap: 13px;
    border-top: 0;
  }

  .custom-grid article,
  .custom-grid article + article {
    min-height: 260px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .custom-grid article:hover {
    border-color: rgba(109, 225, 215, 0.24);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
  }

  .custom-grid article > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 52px;
    border: 1px solid rgba(110, 225, 215, 0.2);
    border-radius: 11px;
    background: rgba(61, 211, 198, 0.1);
    color: #9af2e9;
  }

  .custom-grid h3 {
    color: #f8fbff;
  }

  .custom-grid p {
    color: #b9c7d1;
    line-height: 1.65;
  }

  .custom-footer {
    margin-top: 24px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  .recap {
    background:
      radial-gradient(circle at 88% 12%, rgba(34, 199, 184, 0.07), transparent 24%),
      #fbfdfe;
  }

  .recap-grid {
    gap: 16px;
    border-top: 0;
  }

  .recap-grid article,
  .recap-grid article + article {
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(211, 226, 232, 0.82);
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 36px rgba(7, 24, 44, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  .recap-grid article:hover {
    border-color: rgba(34, 199, 184, 0.26);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 21px 48px rgba(7, 24, 44, 0.075), inset 0 1px 0 rgba(255, 255, 255, 1);
  }

  .recap-grid span {
    margin-bottom: 62px;
  }
}

@media screen and (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .hero-loop,
  .hero-motion {
    width: min(100%, 900px);
    max-width: none;
  }

  .audit-cta {
    grid-template-columns: 1fr;
  }

  .audit-card {
    width: min(100%, 720px);
  }

  .custom-heading > p:last-child {
    max-width: 760px;
  }
}

@media screen and (max-width: 820px) {
  .feature-list {
    gap: 10px;
  }

  .feature-list article,
  .feature-list article:nth-child(even) {
    min-height: 0;
  }

  .included-base span,
  .included-base strong {
    padding: 0;
    background: transparent;
  }

  .recap-grid article,
  .recap-grid article + article {
    min-height: 0;
  }

  .hero-motion,
  .motion-layout {
    min-height: 0;
  }

  .motion-paths {
    display: none;
  }

  .motion-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .motion-source-list,
  .motion-outputs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motion-outputs > p {
    grid-column: 1 / -1;
  }

  .motion-hub {
    width: min(100%, 420px);
    justify-self: center;
  }
}

@media screen and (max-width: 620px) {
  .site-header {
    top: 9px;
    right: 9px;
    left: 9px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 56px;
    border-radius: 16px;
  }

  .brand-lockup {
    width: 128px;
  }

  .site-header .brand-name,
  .header-cta {
    display: none;
  }

  .header-login {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13.2vw, 3.65rem);
  }

  .hero h1 span {
    width: auto;
  }

  .hero-loop,
  .hero-motion,
  .core-card,
  .agent-grid article {
    border-radius: 22px;
  }

  .motion-layout {
    padding: 18px;
  }

  .motion-source-list,
  .motion-outputs {
    grid-template-columns: 1fr;
  }

  .audit-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .audit-card {
    border-radius: 18px;
  }

  .custom-heading > p:last-child,
  .custom-grid article,
  .custom-grid article + article,
  .custom-grid article:nth-child(3) {
    padding: 22px;
  }

  .custom-grid article > span {
    margin-bottom: 30px;
  }

  .eyebrow,
  .step-label {
    max-width: 100%;
  }

  .feature-list article,
  .feature-list article:nth-child(even) {
    padding: 23px;
    border-radius: 18px;
  }

  .control-grid article {
    border-radius: 19px;
  }
}

@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;
  }
}

/* Commercial offer — Launch, subscription and custom extensions */
.pricing-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 136px) clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(214, 228, 233, 0.78);
  background:
    radial-gradient(circle at 5% 7%, rgba(39, 120, 242, 0.075), transparent 24%),
    radial-gradient(circle at 96% 34%, rgba(34, 199, 184, 0.08), transparent 25%),
    linear-gradient(180deg, #fbfdfe 0%, #f2f7f9 100%);
}

.pricing-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 24, 44, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 44, 0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 42%);
  pointer-events: none;
}

.pricing-heading,
.commercial-offer-grid,
.commercial-summary,
.commercial-legal {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin-inline: auto;
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: 58px;
}

.pricing-heading > div:first-child {
  max-width: 980px;
}

.pricing-heading .eyebrow {
  margin-bottom: 18px;
}

.pricing-heading h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.8rem, 5.2vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.pricing-lead {
  max-width: 800px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.pricing-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-content: end;
}

.pricing-promises span {
  padding: 8px 11px;
  border: 1px solid rgba(7, 143, 132, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 7px 20px rgba(7, 24, 44, 0.045);
}

.commercial-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.commercial-card {
  scroll-margin-top: 100px;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(207, 223, 229, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 64px rgba(7, 24, 44, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.commercial-card:hover {
  border-color: rgba(34, 199, 184, 0.34);
  box-shadow: 0 30px 78px rgba(7, 24, 44, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-5px);
}

.commercial-card-subscription {
  border: 2px solid rgba(34, 199, 184, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 199, 184, 0.11), transparent 24%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 84px rgba(7, 24, 44, 0.13), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.commercial-card-custom {
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 120, 242, 0.07), transparent 27%),
    rgba(255, 255, 255, 0.92);
}

.commercial-card-accent {
  height: 7px;
  background: linear-gradient(90deg, #2778f2, #5ba0ff);
}

.commercial-card-subscription .commercial-card-accent {
  background: linear-gradient(90deg, #078f84, #22c7b8 55%, #2778f2);
}

.commercial-card-custom .commercial-card-accent {
  background: linear-gradient(90deg, #071b32, #2778f2 48%, #22c7b8);
}

.commercial-card-body {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.35vw, 34px);
}

.commercial-card-header {
  min-height: 300px;
}

.commercial-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.commercial-card-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commercial-card-kicker span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(39, 120, 242, 0.11);
  border-radius: 11px;
  background: linear-gradient(145deg, #eaf2ff, #e3faf7);
  color: var(--blue);
  font-size: 0.66rem;
  box-shadow: 0 7px 18px rgba(39, 120, 242, 0.08);
}

.commercial-card-subscription .commercial-card-kicker span {
  color: var(--teal-dark);
}

.commercial-card-custom .commercial-card-kicker span {
  background: linear-gradient(145deg, #e8eef5, #e3faf7);
  color: var(--navy);
}

.commercial-badge {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(7, 143, 132, 0.15);
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.commercial-card-header h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.45vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.commercial-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 9px;
}

.commercial-price strong {
  color: var(--ink);
  font-size: clamp(2rem, 2.75vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.commercial-price span,
.commercial-price-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.commercial-price-note {
  margin-bottom: 0;
  line-height: 1.55;
}

.commercial-card-intro {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.68;
}

.commercial-inclusion {
  padding-top: 23px;
  margin-top: 23px;
  border-top: 1px solid var(--line);
}

.commercial-inclusion h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

.commercial-inclusion-intro {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.commercial-inclusion ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commercial-inclusion li {
  position: relative;
  padding-left: 25px;
  color: #3b5068;
  font-size: 0.86rem;
  line-height: 1.55;
}

.commercial-inclusion li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.commercial-card-subscription .commercial-inclusion li::before {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.commercial-card-custom .commercial-inclusion li::before {
  background: #eaf0f6;
  color: var(--navy);
}

.commercial-card-note {
  margin-top: 28px;
  padding: 17px;
  border: 1px solid rgba(207, 223, 229, 0.82);
  border-radius: 16px;
  background: #f5f8fa;
}

.commercial-card-subscription .commercial-card-note {
  border-color: rgba(34, 199, 184, 0.18);
  background: linear-gradient(135deg, rgba(227, 250, 247, 0.9), rgba(239, 247, 255, 0.92));
}

.commercial-card-custom .commercial-card-note {
  border-color: rgba(39, 120, 242, 0.14);
  background: linear-gradient(135deg, #eff4f8, #f2f9f8);
}

.commercial-card-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.84rem;
}

.commercial-card-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.commercial-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(500px, 0.9fr);
  gap: 34px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 199, 184, 0.2), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(39, 120, 242, 0.17), transparent 30%),
    linear-gradient(135deg, #061529, #092945);
  color: #f7fbff;
  box-shadow: 0 28px 80px rgba(7, 24, 44, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.commercial-summary-kicker {
  margin-bottom: 9px;
  color: #72ddd3;
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commercial-summary h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.commercial-summary > div > p:last-child {
  max-width: 690px;
  margin: 0;
  color: #b9c8d4;
  font-size: 0.9rem;
  line-height: 1.65;
}

.commercial-summary ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commercial-summary li {
  min-width: 0;
  padding: 15px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.commercial-summary li span {
  display: block;
  margin-bottom: 4px;
  color: #87ded4;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commercial-summary li strong {
  display: block;
  color: #ffffff;
  font-size: 0.77rem;
  line-height: 1.35;
}

.commercial-legal {
  max-width: 1120px;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 1180px) {
  .pricing-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-promises {
    max-width: 900px;
  }

  .commercial-offer-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
  }

  .commercial-card-header {
    min-height: 0;
  }

  .commercial-summary {
    grid-template-columns: 1fr;
    max-width: 920px;
  }

  .commercial-legal {
    max-width: 880px;
  }
}

@media screen and (max-width: 720px) {
  .pricing-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .pricing-heading {
    margin-bottom: 38px;
  }

  .pricing-heading h2 {
    font-size: clamp(2.55rem, 12.5vw, 3.75rem);
  }

  .commercial-card {
    border-radius: 22px;
  }

  .commercial-card-body {
    padding: 24px 21px;
  }

  .commercial-card-topline {
    display: block;
  }

  .commercial-badge {
    display: inline-flex;
    margin: -4px 0 18px;
  }

  .commercial-card-header h3 {
    font-size: 2.15rem;
  }

  .commercial-summary {
    border-radius: 22px;
  }

  .commercial-summary ol {
    grid-template-columns: 1fr;
  }
}

@media print {
  .pricing-section {
    padding: 32px 0;
    background: #ffffff;
  }

  .pricing-section::before {
    display: none;
  }

  .commercial-offer-grid {
    grid-template-columns: 1fr;
  }

  .commercial-card,
  .commercial-summary {
    break-inside: avoid;
    box-shadow: none;
  }

  .commercial-inclusion {
    break-inside: avoid;
  }
}
