/* Agenvo — premium landing (lime / charcoal / off-white) */

:root {
  --lime: #6fbf4b;
  --lime-dim: #5ea53d;
  --black: #0a0a0a;
  --charcoal: #141414;
  --gray-700: #3a3a3a;
  --gray-500: #6b6b6b;
  --gray-300: #c8c8c8;
  --off-white: #f4f4f0;
  --white: #fafaf8;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.18);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --container: min(1120px, calc(100% - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo__text {
  font-size: 1.2rem;
  color: var(--black);
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

.nav__list a:hover {
  color: var(--black);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

.btn--primary:hover {
  background: var(--lime-dim);
  border-color: var(--lime-dim);
}

.btn--secondary {
  background: var(--white);
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.12);
}

.btn--secondary:hover {
  border-color: var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--dark:hover {
  background: var(--charcoal);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.2);
}

.btn--ghost:hover {
  border-color: var(--black);
  background: rgba(10, 10, 10, 0.04);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn--ai {
  position: relative;
  background: linear-gradient(135deg, #d9ff5f 0%, #6fbf4b 45%, #9df56c 100%);
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.18);
  box-shadow: 0 14px 34px rgba(111, 191, 75, 0.35);
  overflow: hidden;
}

.btn--ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: aiShine 2.8s linear infinite;
}

.btn--ai:hover {
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 18px 46px rgba(111, 191, 75, 0.45);
}

.page-transition {
  position: fixed;
  z-index: 350;
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
  background: radial-gradient(circle, rgba(217, 255, 95, 0.95) 0%, rgba(111, 191, 75, 0.95) 45%, rgba(10, 10, 10, 1) 100%);
  opacity: 0;
}

.page-transition.is-active {
  animation: pageCircleExpand 0.72s var(--ease) forwards;
}

.btn--block {
  width: 100%;
}

.btn__play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--black);
  margin-left: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(217, 255, 95, 0.35), transparent 55%),
    linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 1rem;
}

.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
}

.hero__title-accent {
  color: var(--gray-700);
  font-weight: 700;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 34ch;
  margin: 0 0 2rem;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.hero__stats strong {
  display: block;
  font-size: 1rem;
  color: var(--black);
  font-weight: 700;
}

.hero__visual {
  position: relative;
  min-height: 420px;
}

.hero__photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.hero-card--score {
  top: 8%;
  left: -4%;
  max-width: 220px;
  z-index: 2;
}

.hero-card--metrics {
  bottom: 10%;
  right: -2%;
  display: grid;
  gap: 0.75rem;
  z-index: 2;
  min-width: 200px;
}

.hero-card__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}

.hero-card__value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-card__hint {
  margin: 0.25rem 0 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.hero-card__bar {
  height: 6px;
  background: var(--off-white);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.hero-card__bar span {
  display: block;
  height: 100%;
  background: var(--lime);
  border-radius: var(--radius-pill);
}

.metric__k {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.metric__d {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.metric-customizer__title {
  margin: 0 0 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gray-700);
}

.metric-customizer__list {
  display: grid;
  gap: 0.5rem;
}

.metric-customizer__card {
  cursor: grab;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.55rem 0.65rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.metric-customizer__card:hover {
  border-color: rgba(111, 191, 75, 0.65);
  box-shadow: 0 10px 24px rgba(111, 191, 75, 0.16);
}

.metric-customizer__card.is-dragging {
  cursor: grabbing;
  transform: scale(0.99);
  opacity: 0.8;
}

.home-metric-lab {
  margin-top: -1rem;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
  padding: 1.2rem;
}

.home-metric-lab__head {
  margin-bottom: 1rem;
}

.home-metric-lab__head .section__title {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.home-metric-lab__head .section__lead {
  margin-top: 0.6rem;
  color: #3f3f3f;
}

.home-metric-lab__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.home-metric-lab__card {
  cursor: grab;
  border: 1px solid #d8dce2;
  border-left: 4px solid #c6ccd6;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.9rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.home-metric-lab__card:hover {
  transform: translateY(-2px);
  border-color: #aeb8c5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.home-metric-lab__card.is-dragging {
  cursor: grabbing;
  opacity: 0.8;
}

.home-metric-lab__card--positive {
  border-left-color: #28a35a;
}

.home-metric-lab__card--warning {
  border-left-color: #d53c3c;
}

.home-metric-lab__card .metric__k {
  color: #1d2430;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.home-metric-lab__card--positive .metric__k {
  color: #23844a;
}

.home-metric-lab__card--warning .metric__k {
  color: #c73434;
}

.home-metric-lab__card .metric__d {
  color: #4a5563;
  font-size: 0.84rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

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

.section--muted {
  background: var(--off-white);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section__head--row {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
}

.section__lead {
  margin: 0;
  color: var(--gray-700);
  font-size: 1rem;
  max-width: 42ch;
}

.section--dark .section__lead,
.section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.section--dark .section__title {
  color: var(--white);
}

/* Split banner */
.split-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.split-banner__accent {
  background: var(--lime);
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.split-banner__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
}

.split-banner__text {
  margin: 0;
  color: var(--charcoal);
  font-size: 1rem;
  max-width: 40ch;
}

.split-banner__dark {
  background: var(--charcoal);
  color: var(--white);
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.problem-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.split-banner__footnote {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step:hover {
  border-color: var(--lime);
  box-shadow: 0 12px 40px rgba(217, 255, 95, 0.15);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--lime);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.step__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Implantação (3 dias) */
.section--implant {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-top: 1px solid rgba(10, 10, 10, 0.06);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.section__head--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.75rem;
}

.section__sub {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.55;
}

.section__title--implant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 100%;
}

.implant-heading__graphic {
  display: block;
  width: min(220px, 100%);
}

.implant-heading__timeline {
  width: 100%;
  height: auto;
  display: block;
  color: var(--black);
}

.implant-heading__text {
  text-align: center;
  text-wrap: balance;
}

.implant-title__meta {
  display: inline-block;
  font-weight: 600;
  color: var(--gray-500);
  font-size: 0.85em;
}

.implant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.implant-card {
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s;
}

.implant-card:hover {
  border-color: rgba(10, 10, 10, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.implant-card--accent {
  background: var(--lime);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(217, 255, 95, 0.25);
}

.implant-card__chart {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(10, 10, 10, 0.03);
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.implant-card--accent .implant-card__chart {
  background: rgba(10, 10, 10, 0.06);
  border-color: rgba(10, 10, 10, 0.08);
}

.implant-svg {
  width: 100%;
  height: auto;
  max-height: 64px;
  display: block;
  color: var(--black);
}

.implant-card__dia {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.implant-card--accent .implant-card__dia {
  color: var(--charcoal);
}

.implant-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.implant-card__lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--gray-700);
  font-weight: 500;
}

.implant-card--accent .implant-card__lead {
  color: var(--charcoal);
}

.implant-card__list {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.55;
  flex: 1;
}

.implant-card__list li {
  margin-bottom: 0.4rem;
}

.implant-card--accent .implant-card__list {
  color: var(--charcoal);
}

.implant-card__obj {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--gray-700);
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--lime);
}

.implant-card--accent .implant-card__obj {
  background: rgba(255, 255, 255, 0.55);
  border-left-color: var(--black);
}

.implant-quote {
  margin: 0;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.implant-quote p {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.45;
  max-width: 52ch;
  margin-inline: auto;
}

/* Feature showcase */
.feature-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.feature-showcase__mock {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--black) 0%, #1f1f1f 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
}

.product-mock {
  position: relative;
  width: min(100%, 420px);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  width: min(260px, 100%);
  aspect-ratio: 9 / 18;
  background: var(--charcoal);
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.phone-frame__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: var(--black);
  border-radius: 12px;
  z-index: 2;
}

.phone-frame__screen {
  background: var(--off-white);
  border-radius: 28px;
  height: 100%;
  overflow: hidden;
}

.phone-ui {
  height: 100%;
  padding: 2.6rem 1rem 1rem;
  background: linear-gradient(180deg, #fbfbf8 0%, #f1f1eb 100%);
}

.phone-ui__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.phone-ui__brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #78b61e;
}

.phone-ui__mini-pill {
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(217, 255, 95, 0.45);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
}

.phone-ui__headline {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.phone-ui__headline strong {
  font-size: 1.15rem;
  line-height: 1.1;
}

.phone-ui__headline span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.phone-ui__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.phone-ui__summary div {
  padding: 0.65rem 0.55rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10, 10, 10, 0.05);
}

.phone-ui__summary b {
  display: block;
  font-size: 0.95rem;
}

.phone-ui__summary span {
  font-size: 0.68rem;
  color: var(--gray-500);
}

.phone-ui__appointments {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.appointment {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 0.75rem;
  align-items: center;
  padding: 0.85rem 0.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 10, 10, 0.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.appointment--confirmed {
  background: linear-gradient(180deg, #ebfff0 0%, #dff8e7 100%);
}

.appointment--pending {
  background: linear-gradient(180deg, #fff9da 0%, #fff2bf 100%);
}

.appointment__time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
}

.appointment__body {
  display: flex;
  flex-direction: column;
}

.appointment__body strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.appointment__body span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

.appointment__state {
  grid-column: 2;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-700);
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 190px;
  padding: 1rem 1rem 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.floating-card--appointment {
  top: 14%;
  right: -2%;
}

.floating-card--slot {
  bottom: 14%;
  left: 0;
}

.floating-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}

.floating-card strong {
  font-size: 1.15rem;
  line-height: 1.1;
}

.floating-card p {
  margin: 0;
  font-size: 0.76rem;
  color: var(--gray-700);
}

.floating-card__status {
  align-self: flex-start;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.06);
  font-size: 0.68rem;
  font-weight: 700;
}

.floating-card__status--ok {
  background: rgba(34, 197, 94, 0.16);
  color: #166534;
}

.feature-showcase__panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  flex: 1;
}

.info-card--lime {
  background: var(--lime);
  border-color: transparent;
}

.info-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.info-card__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-700);
}

.info-card--lime .info-card__text {
  color: var(--charcoal);
}

/* CRM grid */
.crm-grid__intro {
  margin-bottom: 1.5rem;
}

.crm-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.crm-card {
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
}

.crm-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.crm-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* KPI */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.kpi {
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
}

.kpi__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.kpi__label {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.bento__hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
}

.bento__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento__hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.bento__hero-caption p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  max-width: 28ch;
}

.bento__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bento__card {
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  flex: 1;
}

.bento__card--lime {
  background: var(--lime);
  color: var(--black);
}

.bento__card--lime h3,
.bento__card--outline h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.bento__card--lime p,
.bento__card--outline p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.bento__card--outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.bento__card--outline h3 {
  color: var(--white);
}

.bento__card--outline p {
  color: rgba(255, 255, 255, 0.65);
}

.link-arrow {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.trust-strip {
  text-align: center;
  padding-bottom: 1rem;
}

.trust-strip__eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.trust-strip__title {
  color: var(--white);
  margin-bottom: 2rem;
}

.trust-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.trust-logos li {
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote {
  margin: 0;
  padding: 1.75rem 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.quote p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.quote footer {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  background: var(--white);
}

.price-card--featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: var(--shadow-card);
}

.price-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--lime);
  color: var(--black);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-pill);
}

.price-card__name {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.price-card__desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--gray-500);
}

.price-card--featured .price-card__desc {
  color: rgba(255, 255, 255, 0.55);
}

.price-card__list {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.55;
}

.price-card__list li {
  margin-bottom: 0.4rem;
}

.price-card--featured .price-card__list {
  color: rgba(255, 255, 255, 0.76);
}

.price-card__note {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
}

.price-card--featured .price-card__note {
  color: var(--white);
}

.price-card__price {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-card__price span {
  font-size: 2rem;
}

.price-card__price--custom {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* CTA band */
.cta-band {
  background: var(--lime);
  padding: clamp(3rem, 8vw, 4.5rem) 0;
}

.cta-band__inner {
  text-align: center;
  max-width: 720px;
}

.cta-band__title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.cta-band__text {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 48ch;
  margin-inline: auto;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* AI modal experience */
.ai-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}

.ai-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0s;
}

.ai-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(9px);
}

.ai-modal__burst {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.25);
  background: radial-gradient(circle, rgba(217, 255, 95, 0.8) 0%, rgba(111, 191, 75, 0.88) 45%, rgba(10, 10, 10, 0.96) 100%);
  opacity: 0;
}

.ai-modal.is-open .ai-modal__burst {
  animation: aiBurst 0.85s var(--ease) forwards;
}

.ai-modal__panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #101010 0%, #161616 100%);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.95) translateY(10px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.ai-modal.is-open .ai-modal__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.ai-modal__close {
  position: sticky;
  top: 1rem;
  margin: 1rem 1rem 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  cursor: pointer;
  z-index: 5;
}

.ai-modal__inner {
  padding: clamp(1rem, 3.5vw, 2.25rem);
}

.ai-modal__header {
  margin-bottom: 1.6rem;
}

.ai-modal__header .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.ai-network {
  position: relative;
  min-height: 360px;
  margin-bottom: 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at center, rgba(217, 255, 95, 0.12) 0%, rgba(111, 191, 75, 0.04) 38%, rgba(10, 10, 10, 0.65) 100%),
    #131313;
}

.ai-network__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 124px;
  height: 124px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  background: linear-gradient(145deg, #d9ff5f 0%, #79c452 100%);
  box-shadow: 0 0 0 6px rgba(217, 255, 95, 0.12), 0 20px 35px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.ai-network__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--line-w, 160px);
  height: 2px;
  background: linear-gradient(90deg, rgba(217, 255, 95, 0.85), rgba(255, 255, 255, 0.12));
  transform-origin: left center;
  transform: rotate(var(--line-a, 0deg)) scaleX(0);
  opacity: 0;
}

.ai-modal.is-open .ai-network__line {
  animation: aiLineGrow 0.55s var(--ease) forwards;
}

.ai-network.is-open .ai-network__line {
  animation: aiLineGrow 0.55s var(--ease) forwards;
}

.ai-modal.is-open .ai-network__line:nth-of-type(1) { animation-delay: 0.45s; }
.ai-modal.is-open .ai-network__line:nth-of-type(2) { animation-delay: 0.55s; }
.ai-modal.is-open .ai-network__line:nth-of-type(3) { animation-delay: 0.65s; }
.ai-modal.is-open .ai-network__line:nth-of-type(4) { animation-delay: 0.75s; }

.ai-node {
  position: absolute;
  max-width: 220px;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(7px);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
}

.ai-modal.is-open .ai-node {
  animation: aiNodeIn 0.5s var(--ease) forwards;
}

.ai-network.is-open .ai-node {
  animation: aiNodeIn 0.5s var(--ease) forwards;
}

.ai-modal.is-open .ai-node--rt { animation-delay: 0.9s; }
.ai-modal.is-open .ai-node--rb { animation-delay: 1s; }
.ai-modal.is-open .ai-node--lt { animation-delay: 1.1s; }
.ai-modal.is-open .ai-node--lb { animation-delay: 1.2s; }
.ai-network.is-open .ai-node--rt { animation-delay: 0.65s; }
.ai-network.is-open .ai-node--rb { animation-delay: 0.75s; }
.ai-network.is-open .ai-node--lt { animation-delay: 0.85s; }
.ai-network.is-open .ai-node--lb { animation-delay: 0.95s; }

.ai-node--rt { right: 7%; top: 18%; }
.ai-node--rb { right: 8%; bottom: 18%; }
.ai-node--lt { left: 7%; top: 18%; }
.ai-node--lb { left: 8%; bottom: 18%; }

.ai-modal__stages {
  display: grid;
  gap: 0.8rem;
}

.ai-story {
  display: grid;
  gap: 0.9rem;
  max-width: 920px;
}

.ai-story--tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
  gap: 1rem;
}

.ai-story--tabs .ai-stage {
  --stage-accent: #6fbf4b;
  position: relative;
  overflow: hidden;
  border-color: rgba(10, 10, 10, 0.12);
  background: linear-gradient(155deg, #ffffff 0%, #f3f7ed 72%, #eef5e7 100%);
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.08);
  padding: 1.05rem 1.1rem 1rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s var(--ease);
}

.ai-story--tabs .ai-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--stage-accent), rgba(255, 255, 255, 0));
}

.ai-story--tabs .ai-stage::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -110px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 191, 75, 0.14) 0%, rgba(111, 191, 75, 0) 70%);
  pointer-events: none;
}

.ai-story--tabs .ai-stage:nth-child(2) { --stage-accent: #2f7fff; }
.ai-story--tabs .ai-stage:nth-child(3) { --stage-accent: #8a5dff; }
.ai-story--tabs .ai-stage:nth-child(4) { --stage-accent: #ff8b3d; }
.ai-story--tabs .ai-stage:nth-child(5) { --stage-accent: #00a28d; }

.ai-story--tabs .ai-stage:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--stage-accent) 62%, white);
  box-shadow: 0 20px 44px rgba(10, 10, 10, 0.12);
}

.ai-story--tabs .ai-stage__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.ai-story--tabs .ai-stage__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--stage-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--stage-accent) 18%, white);
}

.ai-story--tabs .ai-stage__label {
  background: color-mix(in srgb, var(--stage-accent) 20%, white);
  color: color-mix(in srgb, var(--stage-accent) 52%, black);
  margin-bottom: 0;
}

.ai-story--tabs .ai-stage h3 {
  color: var(--black);
  margin-top: 0;
}

.ai-story--tabs .ai-stage p {
  color: #2f2f2f;
  margin-top: 0.25rem;
}

.ai-story--tabs .ai-stage.is-visible {
  border-color: color-mix(in srgb, var(--stage-accent) 56%, white);
}

/* Prompt master (apresentacao) */
.video-blueprint {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blueprint-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: linear-gradient(155deg, #ffffff 0%, #f1f5ec 100%);
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.blueprint-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.blueprint-list {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.5;
}

.blueprint-list li {
  margin-bottom: 0.4rem;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.scene-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: linear-gradient(160deg, #111111 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 1rem 1rem 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.scene-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -95px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 191, 75, 0.28) 0%, rgba(111, 191, 75, 0) 72%);
}

.scene-card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.4rem;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(217, 255, 95, 0.2);
  color: #d9ff5f;
}

.scene-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
}

.scene-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.prompt-extras {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: rgba(10, 10, 10, 0.04);
  padding: 1rem;
}

.prompt-extras h3 {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
}

.prompt-extras p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.88rem;
  line-height: 1.6;
}

.ai-stage {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1rem 0.95rem;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), border-color 0.35s var(--ease);
}

.ai-stage.is-visible {
  transform: translateY(0);
  opacity: 1;
  border-color: rgba(217, 255, 95, 0.3);
}

.ai-stage__label {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(217, 255, 95, 0.18);
  color: #d9ff5f;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ai-stage h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
}

.ai-stage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

@keyframes aiShine {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

@keyframes aiBurst {
  0% { opacity: 0.95; transform: translate(-50%, -50%) scale(0.25); }
  70% { opacity: 0.45; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(120); }
}

@keyframes aiLineGrow {
  0% { transform: rotate(var(--line-a, 0deg)) scaleX(0); opacity: 0; }
  100% { transform: rotate(var(--line-a, 0deg)) scaleX(1); opacity: 1; }
}

@keyframes aiNodeIn {
  0% { opacity: 0; transform: translateY(8px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pageCircleExpand {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.2); }
  70% { opacity: 0.95; }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(120); }
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo--footer .logo__text {
  color: var(--white);
  font-size: 1.25rem;
}

.footer__tagline {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 36ch;
  line-height: 1.5;
}

.footer__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.75rem;
}

.footer__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__form input {
  flex: 1;
  min-width: 180px;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
}

.footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.footer__social-link:hover {
  color: var(--lime);
  border-color: var(--lime);
  background: rgba(217, 255, 95, 0.08);
}

.footer__social-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.footer__social-link svg {
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.55);
}

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

/* SEO pages */
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
}

.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 2rem;
  background:
    radial-gradient(ellipse 75% 55% at 70% 10%, rgba(217, 255, 95, 0.3), transparent 55%),
    linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--gray-300);
}

.page-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-subtitle {
  margin: 0;
  max-width: 64ch;
  color: var(--gray-700);
  font-size: 1.05rem;
}

/* AI page (hero + sections) */
.ai-page {
  background:
    radial-gradient(circle at 15% 0%, rgba(111, 191, 75, 0.18), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(111, 191, 75, 0.12), transparent 32%),
    #0d0f0e;
  color: var(--white);
}

.ai-page .section__title,
.ai-page .section__lead,
.ai-page .eyebrow {
  color: var(--white);
}

.ai-page .section {
  position: relative;
  z-index: 1;
}

.ai-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.ai-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.ai-hero__tag {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.32rem 0.68rem;
  border-radius: var(--radius-pill);
  background: rgba(217, 255, 95, 0.15);
  border: 1px solid rgba(217, 255, 95, 0.35);
  color: #e7ff9e;
  font-size: 0.78rem;
  font-weight: 600;
}

.ai-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.ai-hero__subtitle {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
}

.ai-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ai-hero .btn--primary {
  box-shadow: 0 0 0 1px rgba(217, 255, 95, 0.28), 0 16px 38px rgba(111, 191, 75, 0.4);
}

.ai-hero .btn--primary:hover {
  transform: translateY(-1px) scale(1.02);
}

.ai-hero__visual {
  position: relative;
}

.ai-live {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  padding: 1rem;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

.ai-live__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.ai-live__chip,
.ai-live__status {
  font-size: 0.72rem;
  font-weight: 700;
}

.ai-live__status { color: #b4ff7f; }

.ai-live__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.ai-live__metrics article {
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.55rem;
}

.ai-live__metrics b {
  display: block;
  font-size: 1rem;
}

.ai-live__metrics span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.ai-live__feed {
  display: grid;
  gap: 0.45rem;
}

.ai-msg {
  max-width: 88%;
  padding: 0.45rem 0.6rem;
  border-radius: 12px;
  font-size: 0.76rem;
}

.ai-msg--in {
  justify-self: start;
  background: rgba(255, 255, 255, 0.09);
}

.ai-msg--out {
  justify-self: end;
  background: rgba(111, 191, 75, 0.24);
  border: 1px solid rgba(217, 255, 95, 0.35);
}

.ai-float {
  position: absolute;
  max-width: 220px;
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.4);
  animation: floatSoft 4.5s ease-in-out infinite;
}

.ai-float--one { top: -12px; right: 4%; }
.ai-float--two { bottom: -14px; left: -4%; animation-delay: 0.8s; }

.ai-suite__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.ai-suite__card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 1rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.ai-suite__card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 255, 95, 0.45);
}

.ai-suite__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.ai-suite__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.ai-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ai-compare__panel {
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
}

.ai-compare__panel h3 {
  margin: 0 0 0.6rem;
}

.ai-compare__panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

.ai-compare__panel li {
  margin-bottom: 0.4rem;
}

.ai-compare__panel--bad {
  border: 1px solid rgba(255, 92, 92, 0.42);
  background: rgba(255, 92, 92, 0.12);
}

.ai-compare__panel--good {
  border: 1px solid rgba(217, 255, 95, 0.4);
  background: rgba(111, 191, 75, 0.14);
}

.ai-board__panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.metric-sorter {
  margin: 0 auto 1rem;
  max-width: 760px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.metric-sorter__head h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
}

.metric-sorter__head p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.metric-sorter__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.metric-sorter__card {
  cursor: grab;
  user-select: none;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.34);
  padding: 0.9rem;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.metric-sorter__card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 255, 95, 0.45);
}

.metric-sorter__card.is-dragging {
  opacity: 0.75;
  cursor: grabbing;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.metric-sorter__chip {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #eef1f5;
  color: #4a5563;
}

.metric-sorter__card b {
  display: block;
  margin-bottom: 0.2rem;
}

.metric-sorter__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.ai-board__kpi {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.9rem;
}

.ai-board__kpi b {
  display: block;
  font-size: 1.2rem;
}

.ai-board__kpi span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.ai-board__bar {
  grid-column: 1 / -1;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.ai-board__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #76d052, #d9ff5f);
  box-shadow: 0 0 22px rgba(217, 255, 95, 0.65);
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.meta-pill {
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 10, 10, 0.05);
  color: var(--gray-700);
  font-size: 0.8rem;
  font-weight: 600;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  padding: 2rem 0 4rem;
}

.content-card,
.aside-card,
.article-card,
.compare-card {
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

.content-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.content-card h2,
.content-card h3 {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.content-card h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.65rem;
}

.content-card h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.15rem;
}

.content-card p,
.content-card li {
  color: var(--gray-700);
}

.content-card ul,
.content-card ol {
  padding-left: 1.2rem;
}

.content-card strong {
  color: var(--black);
}

.aside-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aside-card {
  padding: 1.25rem;
}

.aside-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.aside-card p,
.aside-card li {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.aside-card ul {
  margin: 0;
  padding-left: 1rem;
}

.post-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.article-card,
.compare-card {
  padding: 1.35rem;
}

.article-card__kicker,
.compare-card__kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(217, 255, 95, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3,
.compare-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  line-height: 1.2;
}

.article-card p,
.compare-card p {
  margin: 0 0 1rem;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.link-inline::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.link-inline:hover::after {
  transform: translateX(3px);
}

.seo-hub {
  padding: 0 0 4rem;
}

.seo-hub__header {
  margin-bottom: 1.5rem;
}

.seo-hub__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}

.compare-table td:first-child {
  color: var(--black);
  font-weight: 600;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(10, 10, 10, 0.04);
  color: var(--gray-700);
  font-size: 0.88rem;
}

/* Presentation (slides) */
.section--presentation {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-top: 1px solid rgba(10, 10, 10, 0.06);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.deck {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.deck__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(10, 10, 10, 0.03);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.deck__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.deck__btn:hover {
  border-color: rgba(10, 10, 10, 0.35);
  background: rgba(10, 10, 10, 0.02);
}

.deck__btn:active {
  transform: scale(0.96);
}

.deck__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.deck__btn:focus-visible,
.deck__dot:focus-visible,
.deck__viewport:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.deck__status {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: -0.01em;
}

.deck__viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  background: radial-gradient(ellipse 90% 70% at 70% 10%, rgba(217, 255, 95, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.02) 0%, rgba(10, 10, 10, 0.01) 100%);
  overflow: hidden;
}

.deck__viewport::before,
.deck__viewport::after {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  filter: blur(34px);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
}

.deck__viewport::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(111, 191, 75, 0.32), transparent 55%),
    radial-gradient(circle at 70% 25%, rgba(217, 255, 95, 0.26), transparent 52%),
    radial-gradient(circle at 65% 70%, rgba(10, 10, 10, 0.08), transparent 58%);
  animation: deckFloatA 14s var(--ease) infinite alternate;
}

.deck__viewport::after {
  background:
    radial-gradient(circle at 25% 75%, rgba(217, 255, 95, 0.22), transparent 60%),
    radial-gradient(circle at 85% 60%, rgba(111, 191, 75, 0.18), transparent 55%);
  animation: deckFloatB 18s var(--ease) infinite alternate;
  opacity: 0.35;
}

.deck__track {
  height: 100%;
  display: flex;
  transform: translateX(0);
  transition: transform 0.45s var(--ease);
  will-change: transform;
  position: relative;
  z-index: 1;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  padding: clamp(1.25rem, 3.2vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.deck[data-animate="true"] .slide__grid > *,
.deck[data-animate="true"] .slide__columns > *,
.deck[data-animate="true"] .slide__timeline > *,
.deck[data-animate="true"] .slide__steps > * {
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease);
}

.deck[data-animate="true"] .slide.is-active .slide__grid > *,
.deck[data-animate="true"] .slide.is-active .slide__columns > *,
.deck[data-animate="true"] .slide.is-active .slide__timeline > *,
.deck[data-animate="true"] .slide.is-active .slide__steps > * {
  opacity: 1;
  transform: translateY(0);
}

.deck[data-animate="true"] .slide.is-active .slide__grid > *:nth-child(1),
.deck[data-animate="true"] .slide.is-active .slide__columns > *:nth-child(1),
.deck[data-animate="true"] .slide.is-active .slide__timeline > *:nth-child(1),
.deck[data-animate="true"] .slide.is-active .slide__steps > *:nth-child(1) {
  transition-delay: 80ms;
}
.deck[data-animate="true"] .slide.is-active .slide__grid > *:nth-child(2),
.deck[data-animate="true"] .slide.is-active .slide__columns > *:nth-child(2),
.deck[data-animate="true"] .slide.is-active .slide__timeline > *:nth-child(2),
.deck[data-animate="true"] .slide.is-active .slide__steps > *:nth-child(2) {
  transition-delay: 140ms;
}
.deck[data-animate="true"] .slide.is-active .slide__grid > *:nth-child(3),
.deck[data-animate="true"] .slide.is-active .slide__columns > *:nth-child(3),
.deck[data-animate="true"] .slide.is-active .slide__timeline > *:nth-child(3),
.deck[data-animate="true"] .slide.is-active .slide__steps > *:nth-child(3) {
  transition-delay: 200ms;
}
.deck[data-animate="true"] .slide.is-active .slide__steps > *:nth-child(4) {
  transition-delay: 260ms;
}

.slide--scroll {
  justify-content: flex-start;
  overflow: auto;
}

.slide--scroll .table-wrap {
  margin-top: 0.25rem;
}

.slide__kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.slide__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.7vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.slide__lead {
  margin: 0;
  color: var(--gray-700);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  max-width: 70ch;
}

.slide__foot {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.95rem;
  max-width: 70ch;
}

.slide__list {
  margin: 0.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--gray-700);
  max-width: 70ch;
}

.slide__list li {
  margin-bottom: 0.4rem;
}

.slide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
  max-width: 760px;
}

.slide__metric {
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.9rem 0.9rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.slide__metric b {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.slide__metric span {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 600;
}

.slide__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.65rem;
}

.slide__card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem 1rem 0.95rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.slide__cardTitle {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.slide__cardText {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.slide__steps {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.slide__steps li {
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.95rem;
  display: grid;
  gap: 0.35rem;
}

.slide__steps b {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.slide__steps span {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 600;
}

.slide__timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.65rem;
  max-width: 840px;
}

.slide__pill {
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.95rem;
  display: grid;
  gap: 0.35rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

@keyframes deckFloatA {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50% { transform: translate3d(2%, 1.5%, 0) scale(1.05); }
  100% { transform: translate3d(3%, -1%, 0) scale(1.03); }
}

@keyframes deckFloatB {
  0% { transform: translate3d(1%, 2%, 0) scale(1.02); }
  50% { transform: translate3d(-2%, -1%, 0) scale(1.06); }
  100% { transform: translate3d(-3%, 1%, 0) scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .btn--ai::before,
  .ai-modal__burst,
  .ai-network__line,
  .ai-node {
    animation: none !important;
  }

  .ai-modal,
  .ai-modal__panel,
  .ai-stage,
  .page-transition {
    transition: none;
  }

  .ai-stage,
  .ai-stage.is-visible,
  .ai-node {
    opacity: 1;
    transform: none;
  }

  .deck__track {
    transition: none;
  }

  .deck__viewport::before,
  .deck__viewport::after {
    animation: none;
  }

  .deck[data-animate="true"] .slide__grid > *,
  .deck[data-animate="true"] .slide__columns > *,
  .deck[data-animate="true"] .slide__timeline > *,
  .deck[data-animate="true"] .slide__steps > * {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.slide__pill b {
  font-size: 0.95rem;
}

.slide__pill span {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 600;
}

.slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.slide--cta .slide__title {
  max-width: 22ch;
}

.deck__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.9rem 1rem 1.1rem;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
  background: rgba(10, 10, 10, 0.02);
}

.deck__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.22);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.deck__dot[aria-current="true"] {
  background: var(--lime);
  border-color: var(--lime);
  transform: scale(1.12);
}

.deck__dot:hover {
  border-color: rgba(10, 10, 10, 0.45);
}

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

  .hero__visual {
    order: -1;
    min-height: 360px;
  }

  .hero-card--score {
    left: 4%;
  }

  .hero-card--metrics {
    right: 4%;
  }

  .split-banner {
    grid-template-columns: 1fr;
  }

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

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

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

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .product-mock {
    min-height: 520px;
  }

  .floating-card--appointment {
    right: 2%;
  }

  .floating-card--slot {
    left: 2%;
  }

  .crm-cards {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .deck__viewport {
    aspect-ratio: auto;
    min-height: 420px;
  }

  .slide {
    justify-content: flex-start;
    overflow: auto;
  }

  .slide__grid,
  .slide__columns,
  .slide__timeline {
    grid-template-columns: 1fr;
    max-width: none;
  }

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

  .video-blueprint,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .ai-story--tabs {
    grid-template-columns: 1fr;
  }

  .page-grid,
  .seo-hub__split,
  .post-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .ai-hero__grid,
  .ai-suite__grid,
  .ai-compare__grid,
  .ai-board__panel {
    grid-template-columns: 1fr;
  }

  .home-metric-lab__list {
    grid-template-columns: 1fr;
  }

  .metric-sorter__list {
    grid-template-columns: 1fr;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.25s;
  }

  .nav.is-open .nav__list {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav.is-open .nav__toggle-bar:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav.is-open .nav__toggle-bar:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .header__cta {
    display: none;
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }

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

  .content-card {
    padding: 1.25rem;
  }

  .feature-showcase__mock {
    padding: 1.5rem 1rem;
  }

  .product-mock {
    min-height: 500px;
  }

  .phone-frame {
    width: min(235px, 100%);
  }

  .floating-card {
    max-width: 155px;
    padding: 0.85rem 0.85rem 0.8rem;
  }

  .ai-network {
    min-height: 430px;
  }

  .ai-node {
    max-width: 160px;
    font-size: 0.76rem;
  }

  .ai-node--rt,
  .ai-node--lt {
    top: 9%;
  }

  .ai-node--rb,
  .ai-node--lb {
    bottom: 9%;
  }

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