:root {
  --brand-primary: #25d366;
  --brand-primary-hover: #20bd5a;
  --brand-primary-active: #189e49;
  --brand-dark: #075e54;
  --brand-deep: #06453e;
  --brand-soft: #effbf3;
  --brand-subtle: #f6fdf8;

  --ink: #161a1e;
  --ink-strong: #0b141a;
  --text-secondary: #5f6b73;
  --text-muted: #8a949c;

  --page: #f7f9f8;
  --surface: #ffffff;
  --surface-muted: #f1f4f2;
  --border: #dde5e0;
  --border-hover: #b8c6be;

  --danger: #d92d20;
  --warning: #d97706;
  --info: #2563eb;

  --shadow-card: 0 12px 40px rgba(22, 26, 30, 0.08);
  --shadow-soft: 0 4px 18px rgba(22, 26, 30, 0.07);
  --shadow-floating: 0 24px 70px rgba(22, 26, 30, 0.14);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.28);
  outline-offset: 3px;
}

::selection {
  background: rgba(37, 211, 102, 0.28);
  color: var(--ink-strong);
}

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

.section {
  padding: 112px 0;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.solution-copy h2,
.plan-copy h2,
.human-ai-copy h2,
.access-copy h2 {
  margin: 12px 0 18px;
  color: var(--ink-strong);
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.055em;
}

.section-heading p,
.solution-copy > p,
.plan-copy > p,
.human-ai-copy > p,
.access-copy > p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.12rem;
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink-strong);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  overflow: hidden;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(221, 229, 224, 0);
  background: rgba(247, 249, 248, 0.78);
  backdrop-filter: blur(18px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(221, 229, 224, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(22, 26, 30, 0.05);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  width: min(260px, 42vw);
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  color: #3d474e;
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.main-nav > a:not(.button):hover {
  color: var(--brand-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

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

.button-primary {
  background: var(--brand-primary);
  color: var(--ink-strong);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.22);
}

.button-primary:hover {
  background: var(--brand-primary-hover);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.3);
}

.button-primary:active {
  background: var(--brand-primary-active);
}

.button-secondary {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
}

.button-secondary:hover {
  border-color: var(--brand-dark);
  background: var(--brand-soft);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 25px;
}

.full-width {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 74px 0 100px;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(rgba(37, 211, 102, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 211, 102, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

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

.hero-glow-one {
  top: -240px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.18), transparent 68%);
}

.hero-glow-two {
  bottom: -260px;
  left: -260px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(7, 94, 84, 0.1), transparent 68%);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(7, 94, 84, 0.13);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.14);
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  color: var(--ink-strong);
  font-size: clamp(3rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.068em;
}

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

.hero-lead {
  max-width: 680px;
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 25px;
  color: #48545b;
  font-size: 0.88rem;
  font-weight: 640;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 16px;
  fill: none;
  stroke: var(--brand-dark);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-stage {
  position: relative;
  margin-right: -130px;
  transform: perspective(1200px) rotateY(-2deg);
  transform-origin: center;
}

.product-window {
  overflow: hidden;
  min-width: 790px;
  border: 1px solid rgba(184, 198, 190, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-floating);
}

.window-topbar {
  display: grid;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #e7ede9;
  background: #fbfcfb;
  color: #707c83;
  font-size: 0.7rem;
  grid-template-columns: 1fr auto 1fr;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8dfdb;
}

.live-pill {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  border-radius: 99px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-primary);
}

.product-layout {
  display: grid;
  min-height: 515px;
  grid-template-columns: 52px 205px 1fr 170px;
}

.demo-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 17px;
  border-right: 1px solid #e8edea;
  background: var(--brand-deep);
}

.demo-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 8px;
  background: var(--brand-primary);
  color: var(--ink-strong);
  font-size: 0.66rem;
  font-weight: 900;
}

.demo-nav-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 8px;
}

.demo-nav-icon span {
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.58);
  border-radius: 4px;
}

.demo-nav-icon.active {
  background: rgba(37, 211, 102, 0.2);
}

.demo-nav-icon.active span {
  border-color: var(--brand-primary);
}

.conversation-list {
  padding: 16px 10px;
  border-right: 1px solid #e8edea;
  background: #fbfcfb;
}

.demo-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
}

.demo-title-row small {
  display: block;
  color: #8a949c;
  font-size: 0.58rem;
}

.demo-title-row strong {
  display: block;
  color: #1b2227;
  font-size: 0.85rem;
}

.demo-title-row button {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: var(--brand-primary);
  color: var(--ink-strong);
  font-weight: 900;
}

.demo-search {
  margin: 13px 4px 10px;
  padding: 7px 9px;
  border: 1px solid #e0e6e2;
  border-radius: 7px;
  background: #fff;
  color: #9aa3a8;
  font-size: 0.58rem;
}

.conversation-item {
  display: grid;
  align-items: center;
  gap: 8px;
  padding: 9px 7px;
  border-radius: 9px;
  grid-template-columns: 30px 1fr auto;
}

.conversation-item.active {
  background: var(--brand-soft);
}

.avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #d8f7e4;
  color: var(--brand-dark);
  font-size: 0.58rem;
  font-weight: 850;
}

.avatar.purple {
  background: #eee7ff;
  color: #7157a3;
}

.avatar.amber {
  background: #fff0d3;
  color: #986313;
}

.conversation-item strong {
  display: block;
  overflow: hidden;
  color: #252d32;
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-item p {
  overflow: hidden;
  max-width: 105px;
  margin: 1px 0 0;
  color: #879198;
  font-size: 0.53rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-item time {
  align-self: start;
  color: #9ba4a9;
  font-size: 0.48rem;
}

.conversation-panel {
  display: grid;
  background: #f7f9f8;
  grid-template-rows: auto 1fr auto;
}

.conversation-header {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid #e4eae6;
  background: #fff;
}

.conversation-header strong {
  display: block;
  font-size: 0.75rem;
}

.conversation-header span {
  display: block;
  color: #8a949c;
  font-size: 0.53rem;
}

.assigned-pill {
  padding: 4px 7px;
  border-radius: 99px;
  background: #f1f4f2;
  color: #536067 !important;
  font-weight: 700;
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 17px;
}

.message {
  max-width: 76%;
  padding: 10px 11px 6px;
  border-radius: 10px;
  color: #374047;
  font-size: 0.59rem;
  line-height: 1.45;
  box-shadow: 0 2px 7px rgba(22, 26, 30, 0.04);
}

.message time {
  display: block;
  margin-top: 4px;
  color: #8d989e;
  font-size: 0.46rem;
  text-align: right;
}

.message.inbound {
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  background: #fff;
}

.message.outbound {
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  background: #dff8e8;
}

.context-card {
  display: flex;
  max-width: 92%;
  align-items: flex-start;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 9px;
  background: rgba(239, 251, 243, 0.9);
}

.context-icon {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: var(--brand-primary);
  color: var(--ink-strong);
}

.context-icon svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.context-card small,
.context-card strong {
  display: block;
}

.context-card small {
  color: var(--brand-dark);
  font-size: 0.5rem;
  font-weight: 800;
}

.context-card strong {
  margin-top: 2px;
  color: #2b3737;
  font-size: 0.56rem;
  line-height: 1.4;
}

.composer {
  padding: 10px 13px 12px;
  border-top: 1px solid #e3e9e5;
  background: #fff;
}

.ai-suggestion {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 0.5rem;
  font-weight: 750;
}

.spark {
  color: var(--brand-primary-active);
  font-weight: 900;
}

.composer-row {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 4px 5px 4px 10px;
  border: 1px solid #dfe6e2;
  border-radius: 9px;
  color: #9aa4a9;
  font-size: 0.55rem;
}

.composer-row button {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: var(--brand-primary);
}

.composer-row svg {
  width: 14px;
  fill: none;
  stroke: var(--ink-strong);
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.customer-panel {
  padding: 22px 13px;
  border-left: 1px solid #e8edea;
  background: #fff;
  text-align: center;
}

.customer-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #d8f7e4;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.customer-panel > strong {
  display: block;
  font-size: 0.71rem;
}

.customer-panel > span {
  color: #90999e;
  font-size: 0.52rem;
}

.customer-stat-grid {
  display: grid;
  margin: 17px 0;
  overflow: hidden;
  border: 1px solid #e2e8e4;
  border-radius: 9px;
  grid-template-columns: 1fr 1fr;
}

.customer-stat-grid div {
  padding: 8px 4px;
}

.customer-stat-grid div + div {
  border-left: 1px solid #e2e8e4;
}

.customer-stat-grid strong,
.customer-stat-grid span {
  display: block;
}

.customer-stat-grid strong {
  color: var(--brand-dark);
  font-size: 0.65rem;
}

.customer-stat-grid span {
  color: #8d969c;
  font-size: 0.46rem;
}

.customer-detail {
  margin-top: 13px;
  text-align: left;
}

.customer-detail small {
  color: #8a949c;
  font-size: 0.5rem;
  font-weight: 700;
}

.customer-detail p {
  margin: 3px 0 0;
  color: #455158;
  font-size: 0.54rem;
  line-height: 1.45;
}

.customer-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.customer-tag-row span {
  padding: 3px 6px;
  border-radius: 99px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.45rem;
  font-weight: 750;
}

.floating-result {
  position: absolute;
  z-index: 5;
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(221, 229, 224, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(22, 26, 30, 0.13);
  backdrop-filter: blur(12px);
}

.floating-result-top {
  top: 70px;
  right: 26px;
}

.floating-result-bottom {
  bottom: 34px;
  left: -34px;
}

.result-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-primary);
  color: var(--ink-strong);
}

.result-icon.dark {
  background: var(--brand-dark);
  color: #fff;
}

.result-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-result strong,
.floating-result small {
  display: block;
}

.floating-result strong {
  color: #273037;
  font-size: 0.67rem;
}

.floating-result small {
  color: #7d888e;
  font-size: 0.55rem;
}

/* Strip */
.logo-strip {
  border-block: 1px solid #e3e9e5;
  background: #fff;
}

.logo-strip-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #536067;
  font-size: 0.83rem;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.logo-strip-inner i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-primary);
}

/* Problems */
.problem-section {
  background: #fff;
}

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

.problem-card {
  position: relative;
  min-height: 305px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.problem-card:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.problem-number {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #e7ece9;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.problem-icon,
.power-icon,
.journey-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.problem-icon svg,
.power-icon svg,
.journey-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  margin: 24px 0 10px;
  color: var(--ink-strong);
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.problem-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Solution */
.solution-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(37, 211, 102, 0.09), transparent 34%),
    var(--page);
}

.solution-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.solution-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(7, 94, 84, 0.19);
  border-radius: 50%;
}

.orbit-one {
  width: 360px;
  height: 360px;
}

.orbit-two {
  width: 510px;
  height: 510px;
}

.solution-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 230px;
  height: 230px;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #effbf3);
  box-shadow: 0 28px 70px rgba(7, 94, 84, 0.14);
  text-align: center;
}

.solution-core-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
  background: var(--brand-primary);
}

.solution-core-icon svg {
  width: 31px;
  fill: none;
  stroke: var(--ink-strong);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-core strong {
  margin-top: 12px;
  color: var(--ink-strong);
  font-size: 1.1rem;
}

.solution-core small {
  color: var(--text-secondary);
}

.orbit-chip {
  position: absolute;
  z-index: 4;
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-dark);
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  font-weight: 780;
}

.chip-one { top: 72px; left: 95px; }
.chip-two { top: 120px; right: 30px; }
.chip-three { bottom: 92px; right: 42px; }
.chip-four { bottom: 58px; left: 68px; }

.solution-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.solution-list > div {
  display: grid;
  align-items: start;
  gap: 14px;
  grid-template-columns: 36px 1fr;
}

.solution-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--brand-primary);
  color: var(--ink-strong);
  font-weight: 850;
}

.solution-list p {
  margin: 0;
  color: var(--text-secondary);
}

.solution-list strong {
  color: var(--ink-strong);
}

/* Powers */
.powers-section {
  background: #fff;
}

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

.power-card {
  min-height: 300px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.power-card:hover {
  border-color: rgba(37, 211, 102, 0.46);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.power-card.featured {
  grid-column: span 2;
  min-height: 360px;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 211, 102, 0.16), transparent 35%),
    #fff;
}

.power-card.dark-card {
  border-color: var(--brand-dark);
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 211, 102, 0.19), transparent 40%),
    var(--brand-deep);
  color: #fff;
}

.power-icon.light {
  background: rgba(37, 211, 102, 0.14);
  color: var(--brand-primary);
}

.power-label {
  display: block;
  margin-top: 24px;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dark-card .power-label {
  color: var(--brand-primary);
}

.power-card h3 {
  margin: 7px 0 11px;
  color: var(--ink-strong);
  font-size: 1.35rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.power-card.featured h3 {
  max-width: 520px;
  font-size: 1.75rem;
}

.dark-card h3 {
  color: #fff;
}

.power-card p {
  margin: 0;
  color: var(--text-secondary);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.power-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.power-card li {
  padding: 7px 10px;
  border-radius: 99px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.dark-card li {
  background: rgba(37, 211, 102, 0.13);
  color: #baf3cf;
}

/* Comparison */
.comparison-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 211, 102, 0.08), transparent 28%),
    var(--page);
}

.comparison-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
}

.comparison-head > div {
  display: flex;
  min-height: 90px;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--border);
  font-weight: 820;
}

.comparison-head > div + div,
.comparison-row > div + div {
  border-left: 1px solid var(--border);
}

.muted-head {
  justify-content: center;
  color: var(--text-secondary);
  text-align: center;
}

.brand-head {
  flex-direction: column;
  justify-content: center;
  background: var(--brand-dark);
  color: #fff;
  line-height: 1.12;
  text-align: center;
}

.brand-head span {
  font-size: 1.12rem;
}

.brand-head small {
  color: #bff4d2;
  font-weight: 650;
}

.comparison-row > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  padding: 21px 25px;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child > div {
  border-bottom: 0;
}

.comparison-row > div:first-child {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.comparison-row strong,
.comparison-row > div:first-child span {
  display: block;
}

.comparison-row strong {
  color: var(--ink-strong);
}

.comparison-row > div:first-child span {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 0.87rem;
}

.comparison-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 680;
  line-height: 1.4;
}

.comparison-status::before {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  content: "";
}

.comparison-status.basic::before,
.comparison-status.limited::before {
  background: #f1f4f2;
  box-shadow: inset 0 0 0 6px #fff;
  border: 1px solid #cdd6d1;
}

.comparison-status.complete {
  color: var(--brand-dark);
}

.comparison-status.complete::before {
  background: var(--brand-primary);
  color: var(--ink-strong);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

/* Journey */
.journey-section {
  background: #fff;
}

.journey {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
}

.journey-step {
  min-height: 270px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.journey-number {
  display: block;
  margin-bottom: 20px;
  color: #cfd8d3;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.journey-step h3 {
  margin: 22px 0 8px;
  color: var(--ink-strong);
  font-size: 1.15rem;
}

.journey-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.91rem;
}

.journey-arrow {
  color: var(--brand-primary-active);
  font-size: 1.8rem;
  font-weight: 300;
}

/* Human AI */
.human-ai-section {
  padding-top: 25px;
  background: #fff;
}

.human-ai-card {
  display: grid;
  overflow: hidden;
  padding: 68px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 5%, rgba(37, 211, 102, 0.2), transparent 34%),
    var(--brand-deep);
  color: #fff;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
}

.light-eyebrow {
  color: var(--brand-primary);
}

.human-ai-copy h2 {
  color: #fff;
}

.human-ai-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.human-ai-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  grid-template-columns: 1fr 1fr;
}

.human-ai-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 650;
}

.human-ai-points i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--ink-strong);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.human-ai-visual {
  display: grid;
  align-content: center;
  justify-items: center;
}

.review-card {
  width: min(100%, 440px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  transform: rotate(1.5deg);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-top > .spark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-primary);
  color: var(--ink-strong);
}

.review-top small,
.review-top strong {
  display: block;
}

.review-top small {
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.review-top strong {
  color: var(--ink-strong);
  font-size: 0.95rem;
}

.review-card p {
  margin: 22px 0;
  padding: 15px;
  border-radius: 14px;
  background: var(--page);
  color: #4c585f;
  font-size: 0.9rem;
}

.review-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.review-actions button {
  min-height: 43px;
  border-radius: 11px;
  font-weight: 750;
}

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

.approve-button {
  border: 1px solid var(--brand-primary);
  background: var(--brand-primary);
  color: var(--ink-strong);
}

.control-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 650;
}

.control-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.13);
}

/* Plan */
.plan-section {
  background: var(--page);
}

.plan-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 480px;
  gap: 90px;
}

.plan-copy {
  max-width: 650px;
}

.plan-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 30px;
  padding: 17px;
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 16px;
  background: var(--brand-soft);
  color: #3f4b51;
}

.plan-note svg {
  flex: 0 0 25px;
  width: 25px;
  fill: none;
  stroke: var(--brand-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-note strong {
  color: var(--brand-dark);
}

.pricing-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(7, 94, 84, 0.18);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(22, 26, 30, 0.11);
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 10px;
  border-radius: 99px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 820;
}

.pricing-name {
  color: var(--brand-dark);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-price {
  display: flex;
  align-items: center;
  margin: 20px 0 12px;
  color: var(--ink-strong);
  line-height: 1;
}

.pricing-price .currency {
  align-self: flex-start;
  margin-top: 11px;
  font-size: 1.6rem;
  font-weight: 800;
}

.pricing-price > strong {
  font-size: clamp(3.3rem, 7vw, 5rem);
  letter-spacing: -0.08em;
}

.pricing-price > div {
  margin-left: 10px;
}

.pricing-price > div span,
.pricing-price > div small {
  display: block;
}

.pricing-price > div span {
  font-weight: 800;
}

.pricing-price > div small {
  margin-top: 4px;
  color: var(--text-secondary);
}

.pricing-card > p {
  color: var(--text-secondary);
}

.pricing-list {
  display: grid;
  gap: 11px;
  margin: 25px 0 30px;
  padding: 24px 0;
  border-block: 1px solid var(--border);
  list-style: none;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3e494f;
  font-weight: 620;
}

.pricing-list span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--ink-strong);
  font-size: 0.7rem;
  font-weight: 900;
}

.pricing-disclaimer {
  display: block;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.5;
  text-align: center;
}

/* FAQ */
.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

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

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

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

.faq-list details[open] {
  border-color: rgba(37, 211, 102, 0.5);
  background: var(--brand-subtle);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 23px;
  color: var(--ink-strong);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 1.1rem;
  transition: transform 160ms ease;
}

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

.faq-list p {
  margin: 0;
  padding: 0 23px 23px;
  color: var(--text-secondary);
}

/* Access */
.access-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0;
  background: var(--brand-deep);
  color: #fff;
}

.access-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
}

.access-orb-one {
  top: -160px;
  left: -100px;
  width: 420px;
  height: 420px;
}

.access-orb-two {
  right: -160px;
  bottom: -230px;
  width: 540px;
  height: 540px;
}

.access-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 520px;
  gap: 90px;
}

.access-kicker {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 99px;
  background: rgba(37, 211, 102, 0.1);
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.access-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.access-form-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.subscribe-form > label:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 0.86rem;
  font-weight: 780;
}

.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.email-row input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.email-row input:hover {
  border-color: var(--border-hover);
}

.email-row input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.email-row input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

.email-row .button {
  min-height: 52px;
  white-space: nowrap;
}

.consent-row {
  display: grid;
  align-items: start;
  gap: 9px;
  margin-top: 15px;
  color: #536067;
  cursor: pointer;
  font-size: 0.78rem;
  grid-template-columns: auto 1fr;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--brand-primary-active);
}

.form-help {
  margin: 8px 0 0;
  color: #8a949c;
  font-size: 0.72rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--brand-dark);
}

.form-status.error {
  color: var(--danger);
}

.subscribe-form.loading .button {
  cursor: wait;
  opacity: 0.78;
  pointer-events: none;
}

.button-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(11, 20, 26, 0.22);
  border-top-color: var(--ink-strong);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.subscribe-form.loading .button-spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer */
.site-footer {
  background: #fff;
}

.footer-main {
  display: grid;
  padding: 72px 0 52px;
  grid-template-columns: 1fr 180px 180px;
  gap: 70px;
}

.footer-brand {
  min-width: 0;
}

.footer-brand {
  display: block;
  width: min(330px, 100%);
  max-width: 100%;
  height: auto !important;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  display: block;
  width: min(330px, 50%);
  max-width: 50%;
  height: auto !important;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 480px;
  margin: 20px 0 0;
  color: var(--text-secondary);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: var(--ink-strong);
}

.footer-column a {
  color: var(--text-secondary);
  font-size: 0.91rem;
}

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

.footer-bottom {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-bottom span:last-child {
  max-width: 680px;
  text-align: right;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .product-stage {
    width: 100%;
    margin: 15px 0 0;
    transform: none;
  }

  .product-window {
    min-width: 760px;
  }

  .product-stage {
    overflow-x: auto;
    padding: 20px 0 30px;
  }

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

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

  .power-card.featured {
    grid-column: span 1;
  }

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

  .journey-arrow {
    display: none;
  }

  .access-inner,
  .plan-layout {
    grid-template-columns: 1fr 440px;
    gap: 55px;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    z-index: 1000;
    inset: 86px 20px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-floating);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 13px;
    border-radius: 10px;
  }

  .main-nav > a:not(.button):hover {
    background: var(--brand-soft);
  }

  .main-nav .button {
    margin-top: 7px;
  }

  .menu-button {
    display: block;
  }

  .solution-grid,
  .human-ai-card,
  .faq-layout,
  .access-inner,
  .plan-layout {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .faq-layout,
  .access-inner,
  .plan-layout {
    gap: 55px;
  }

  .human-ai-card {
    gap: 45px;
  }

  .plan-copy {
    max-width: 760px;
  }

  .pricing-card {
    width: min(100%, 540px);
  }

  .faq-layout .section-heading {
    position: static;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 0.9fr 0.75fr 1fr;
  }

  .access-form-card {
    max-width: 620px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .main-nav {
    inset: 76px 14px auto;
  }

  .brand {
    width: min(230px, 64vw);
  }

  .hero {
    padding: 52px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-stage {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .product-window {
    min-width: 740px;
  }

  .floating-result {
    display: none;
  }

  .logo-strip-inner {
    min-height: auto;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 22px 0;
  }

  .logo-strip-inner i {
    display: none;
  }

  .problem-grid,
  .powers-grid,
  .journey,
  .human-ai-points {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .power-card {
    min-height: auto;
  }

  .solution-visual {
    min-height: 430px;
    transform: scale(0.84);
  }

  .comparison-wrap {
    overflow-x: auto;
  }

  .comparison-head,
  .comparison-row {
    min-width: 780px;
  }

  .human-ai-card {
    padding: 38px 24px;
    border-radius: 24px;
  }

  .email-row {
    grid-template-columns: 1fr;
  }

  .email-row .button {
    width: 100%;
  }

  .access-form-card {
    padding: 23px;
  }

  .footer-main {
    padding: 58px 0 40px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 25px 0;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-copy .eyebrow {
    align-items: flex-start;
    border-radius: 14px;
    line-height: 1.4;
  }

  .section-heading h2,
  .solution-copy h2,
  .plan-copy h2,
  .human-ai-copy h2,
  .access-copy h2 {
    font-size: 2.35rem;
  }

  .problem-card,
  .power-card,
  .journey-step,
  .pricing-card {
    padding: 23px;
  }

  .solution-visual {
    min-height: 390px;
    margin-inline: -50px;
    transform: scale(0.72);
  }

  .pricing-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* Mantener siempre la proporción original del logotipo */
.brand img,
.footer-brand img {
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
}


@media (max-width: 760px) {
  .footer-brand .footer-logo {
    width: min(290px, 100%);
    height: auto !important;
    max-height: 90px;
  }
}
