:root {
  --ink: #132238;
  --muted: rgba(19, 34, 56, 0.68);
  --paper: #fffaf1;
  --white: #ffffff;
  --blue: #367cff;
  --purple: #7d5cff;
  --mint: #42d9b5;
  --yellow: #ffd45f;
  --coral: #ff7c65;
  --sky: #dff2ff;
  --lavender: #eee8ff;
  --green-soft: #e7fbef;
  --line: rgba(19, 34, 56, 0.1);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(19, 34, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 212, 95, 0.34), transparent 22rem),
    radial-gradient(circle at 88% 6%, rgba(125, 92, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 78% 78%, rgba(66, 217, 181, 0.22), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
span,
a,
strong,
li {
  overflow-wrap: break-word;
}

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

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 62px);
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  background: rgba(255, 250, 241, 0.82);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(54, 124, 255, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(11px, 1.75vw, 22px);
  color: rgba(19, 34, 56, 0.74);
  font-size: 0.88rem;
  font-weight: 850;
}

.desktop-nav a {
  padding: 10px 0;
  transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.top-profile-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(54, 124, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 248, 255, 0.94)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(54, 124, 255, 0.12);
}

.top-profile-toggle span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 950;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--purple));
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.18);
}

.top-profile-toggle button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.top-profile-toggle button:hover,
.top-profile-toggle button.is-selected {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 10px 20px rgba(54, 124, 255, 0.2);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta,
.primary-button,
.secondary-button,
.vertical-card a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.primary-button,
.vertical-card a {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 16px 34px rgba(54, 124, 255, 0.22);
}

.secondary-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.vertical-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(54, 124, 255, 0.2);
}

.header-cta:active,
.primary-button:active,
.secondary-button:active,
.vertical-card a:active,
.date-grid button:active,
.slot-grid button:active,
.finder-tabs button:active {
  transform: translateY(0) scale(0.98);
}

.tap-ripple {
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  transform: translate(-50%, -50%) scale(1);
  animation: tapRipple 520ms ease-out forwards;
}

@keyframes tapRipple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  z-index: 78;
  top: 76px;
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.hero,
.section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 100vh;
  padding: 126px 0 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 940px;
  font-size: clamp(3.1rem, 7.4vw, 7rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.no-break {
  white-space: nowrap;
}

h2 {
  color: inherit;
  font-size: clamp(2rem, 4.8vw, 4.45rem);
  line-height: 0.99;
}

h3 {
  font-size: clamp(1.18rem, 1.9vw, 1.62rem);
  line-height: 1.14;
}

.hero-lead {
  max-width: 740px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions,
.trust-strip,
.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-path-chooser {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-path-card {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 230px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 60px rgba(19, 34, 56, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-path-card:hover {
  transform: translateY(-7px);
  border-color: rgba(54, 124, 255, 0.26);
  box-shadow: var(--shadow);
}

.hero-path-card::after {
  position: absolute;
  top: -42px;
  right: -34px;
  width: 128px;
  height: 128px;
  content: "";
  border-radius: 50%;
  opacity: 0.24;
  background: var(--blue);
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero-path-card:hover::after {
  opacity: 0.34;
  transform: scale(1.18);
}

.hero-path-card span,
.hero-path-card strong,
.hero-path-card p {
  position: relative;
  z-index: 1;
}

.hero-path-card span {
  width: fit-content;
  padding: 7px 10px;
  color: #17469f;
  border-radius: 999px;
  background: #eaf1ff;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-path-card strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.hero-path-card p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-path-student {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.hero-path-business {
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.hero-path-business span {
  color: #87570d;
  background: #fff2d4;
}

.hero-path-business::after {
  background: var(--yellow);
}

.path-card-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 92px;
  margin: 0;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(234, 241, 255, 0.86));
}

.path-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-card-visual figcaption {
  display: none;
}

.path-card-visual.is-empty {
  display: grid;
  place-items: center;
}

.path-card-visual.is-empty::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px dashed rgba(54, 124, 255, 0.32);
  border-radius: 14px;
}

.path-card-visual.is-empty figcaption {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-strip {
  margin-top: 24px;
}

.trust-strip span,
.program-meta span,
.parent-points span,
.business-grid span,
.booking-note span,
.internship-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-media-stack {
  display: grid;
  gap: 14px;
  min-height: 520px;
}

.asset-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 212, 95, 0.28), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(66, 217, 181, 0.2), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef6ff);
  box-shadow: var(--shadow);
}

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

.hero-main-placeholder {
  height: 356px;
  animation: floatVisual 7s ease-in-out infinite;
}

.hero-mini-placeholders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-mini-placeholders .asset-placeholder {
  height: 150px;
}

.asset-placeholder figcaption {
  display: none;
}

.asset-placeholder.is-empty {
  place-items: center;
}

.asset-placeholder.is-empty::before {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px dashed rgba(54, 124, 255, 0.34);
  border-radius: 18px;
}

.asset-placeholder.is-empty::after {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  content: "";
  border-radius: 18px;
  background:
    linear-gradient(135deg, var(--blue), var(--purple));
  opacity: 0.16;
}

.asset-placeholder.is-empty figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  place-items: center;
  padding: 18px;
  text-align: center;
}

.asset-placeholder.is-empty strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.asset-placeholder.is-empty span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}

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

.orbit-card,
.code-panel {
  position: absolute;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.orbit-card {
  display: grid;
  gap: 6px;
  max-width: 210px;
  padding: 14px;
  animation: softBob 5s ease-in-out infinite;
}

.orbit-card strong {
  color: var(--blue);
}

.orbit-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.orbit-card-one {
  top: 24px;
  left: -24px;
}

.orbit-card-two {
  right: -16px;
  top: 132px;
  animation-delay: 700ms;
}

.orbit-card-three {
  left: 24px;
  bottom: 20px;
  animation-delay: 1200ms;
}

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

.code-panel {
  right: -16px;
  bottom: 42px;
  width: min(360px, 86%);
  padding: 18px;
  background: rgba(19, 34, 56, 0.94);
}

.coding-gif-card {
  overflow: hidden;
  border: 1px solid rgba(19, 34, 56, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 16%, rgba(66, 217, 181, 0.26), transparent 34%),
    #132238;
  box-shadow: 0 24px 62px rgba(19, 34, 56, 0.18);
}

.hero-coding-gif {
  position: absolute;
  left: -22px;
  top: 230px;
  width: min(260px, 58%);
  animation: softBob 5.8s ease-in-out infinite;
}

.student-coding-gif {
  width: min(92%, 360px);
  margin: 14px auto 0;
}

.coding-gif-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
}

.coding-gif-top span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
}

.coding-gif-top span:nth-child(2) {
  background: var(--yellow);
}

.coding-gif-top span:nth-child(3) {
  background: var(--mint);
}

.coding-gif-top strong {
  margin-left: 6px;
}

.coding-gif-screen {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 18px 16px 20px;
}

.coding-gif-screen i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--blue), transparent);
  transform-origin: left center;
  animation: codingLine 2.2s ease-in-out infinite;
}

.coding-gif-screen i:nth-child(1) {
  width: 74%;
}

.coding-gif-screen i:nth-child(2) {
  width: 48%;
  animation-delay: 180ms;
}

.coding-gif-screen i:nth-child(3) {
  width: 86%;
  animation-delay: 360ms;
}

.coding-gif-screen i:nth-child(4) {
  width: 60%;
  animation-delay: 540ms;
}

.coding-gif-screen b {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--mint));
  font-size: 0.78rem;
  box-shadow: 0 16px 28px rgba(66, 217, 181, 0.24);
  animation: pulseBadge 1.9s ease-in-out infinite;
}

.coding-gif-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 14px 14px;
}

.coding-gif-tags span {
  padding: 6px 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
  font-weight: 900;
}

@keyframes codingLine {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.48);
  }
  45%,
  70% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.terminal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.terminal-dot:nth-child(2) {
  background: var(--yellow);
}

.terminal-dot:nth-child(3) {
  background: var(--mint);
}

pre {
  margin: 16px 0 0;
  white-space: pre-wrap;
}

code {
  color: var(--mint);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.52fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading p:not(.eyebrow),
.finder-copy p,
.parent-panel p,
.decision-advisor-copy p,
.booking-copy p:not(.eyebrow),
.flagship-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.decision-advisor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(340px, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 212, 95, 0.28), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(66, 217, 181, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.86));
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.decision-advisor-copy {
  position: sticky;
  top: 100px;
}

.decision-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(19, 34, 56, 0.08);
}

.decision-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.decision-form select {
  min-height: 50px;
  width: 100%;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.decision-result {
  display: grid;
  gap: 13px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff, #fff7df);
  border: 1px solid rgba(255, 183, 47, 0.26);
}

.decision-result[hidden] {
  display: none;
}

.decision-result > span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.decision-result-grid article {
  padding: 13px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.decision-result-grid strong {
  color: var(--ink);
}

.decision-result-grid p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.decision-cta {
  justify-self: start;
}

.audience-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.audience-switch a,
.solution-finder,
.vertical-card,
.student-path-grid article,
.parent-panel,
.workshop-grid article,
.proof-section article,
.session-roadmap article,
.booking-planner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(19, 34, 56, 0.08);
}

.audience-switch a {
  display: grid;
  gap: 6px;
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.audience-switch a:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.audience-switch strong {
  color: var(--blue);
  font-size: 1.1rem;
}

.audience-switch span {
  color: var(--muted);
}

.tivoro-trust-section,
.how-it-works-section {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(66, 217, 181, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 212, 95, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.9));
  box-shadow: 0 22px 70px rgba(19, 34, 56, 0.07);
}

.tivoro-trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
}

.tivoro-trust-section p:not(.eyebrow),
.how-it-works-section .section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.tivoro-trust-grid,
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tivoro-trust-grid article,
.how-it-works-grid article {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(19, 34, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tivoro-trust-grid article:hover,
.how-it-works-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(19, 34, 56, 0.1);
}

.tivoro-trust-grid strong,
.how-it-works-grid strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.tivoro-trust-grid span,
.how-it-works-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 820;
  line-height: 1.5;
}

.how-it-works-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.78rem;
  font-weight: 950;
}

.home-tools-section {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(54, 124, 255, 0.16), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 212, 95, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 255, 0.92));
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.home-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-tool-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 220px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 54px rgba(19, 34, 56, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 124, 255, 0.24);
  box-shadow: var(--shadow);
}

.home-tool-card::after {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 110px;
  height: 110px;
  content: "";
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.14;
  transition: transform 220ms ease;
}

.home-tool-card:hover::after {
  transform: scale(1.35);
}

.home-tool-card span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(54, 124, 255, 0.1);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-tool-card strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.15;
}

.home-tool-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.55;
}

.home-tool-card em {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: start;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-style: normal;
  font-weight: 950;
}

.home-tool-card.is-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(66, 217, 181, 0.22), transparent 30%),
    linear-gradient(135deg, #132238, #2859d8);
}

.home-tool-card.is-featured span {
  background: #ffd45f;
  color: #132238;
}

.home-tool-card.is-featured strong,
.home-tool-card.is-featured p {
  color: var(--white);
}

.home-tool-card.is-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.home-tool-card.is-featured em {
  background: var(--white);
  color: #17469f;
}

.interactive-lab-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.92fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 95, 0.32), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(66, 217, 181, 0.22), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.interactive-lab-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-metrics span {
  display: inline-grid;
  gap: 2px;
  min-width: 120px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 900;
}

.mini-metrics strong {
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1;
}

.path-playground {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(125, 92, 255, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 60px rgba(19, 34, 56, 0.08);
}

.path-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.path-buttons button,
.project-card {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.path-buttons button:hover,
.path-buttons button.is-active,
.project-card:hover,
.project-card.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 18px 34px rgba(54, 124, 255, 0.18);
  transform: translateY(-2px);
}

.path-result,
.project-preview {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sky), var(--green-soft));
}

.path-result > span,
.project-preview > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-result p,
.project-preview p {
  color: var(--muted);
}

.path-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.path-tags strong {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 0.84rem;
}

.course-builder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(66, 217, 181, 0.22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 212, 95, 0.32), transparent 26%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.course-builder-copy {
  position: sticky;
  top: 100px;
}

.course-builder-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.builder-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.builder-promise span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(19, 34, 56, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.course-builder {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(125, 92, 255, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(19, 34, 56, 0.08);
}

.smart-course-mapper,
.smart-business-mapper {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(54, 124, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 212, 95, 0.42), transparent 32%),
    linear-gradient(135deg, rgba(235, 248, 255, 0.96), rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 50px rgba(19, 34, 56, 0.08);
}

.smart-course-mapper span,
.smart-business-mapper span,
.course-match-result > span,
.business-match-result > span,
.course-alternatives span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.smart-course-mapper h3,
.smart-business-mapper h3,
.course-match-result h4,
.business-match-result h4 {
  margin: 4px 0 0;
  color: var(--ink);
}

.smart-course-mapper p,
.smart-business-mapper p,
.course-match-result p,
.business-match-result p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.smart-course-mapper label,
.smart-business-mapper label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.smart-course-mapper textarea,
.smart-business-mapper textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  padding: 15px 16px;
  border: 1px solid rgba(54, 124, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  line-height: 1.55;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.smart-course-mapper textarea:focus,
.smart-business-mapper textarea:focus {
  outline: 3px solid rgba(54, 124, 255, 0.16);
  border-color: rgba(54, 124, 255, 0.45);
}

.course-search-hero {
  border-width: 2px;
  background:
    radial-gradient(circle at 10% 6%, rgba(255, 212, 95, 0.48), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(66, 217, 181, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 248, 255, 0.96));
}

.course-search-hero h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.course-search-hero textarea {
  min-height: clamp(170px, 16vw, 230px);
  padding: clamp(16px, 2.6vw, 24px);
  border-radius: 24px;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.65;
}

.course-prompt-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.course-prompt-chips button {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(54, 124, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.course-prompt-chips button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 14px 28px rgba(54, 124, 255, 0.16);
  transform: translateY(-2px);
}

.mapper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-match-result,
.business-match-result {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #fff7df);
  border: 1px solid rgba(255, 183, 47, 0.26);
}

.course-match-result[hidden],
.business-match-result[hidden] {
  display: none;
}

.course-match-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-match-chips strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(54, 124, 255, 0.1);
  color: var(--ink);
  font-size: 0.82rem;
}

.course-alternatives {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.course-alternatives button {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(54, 124, 255, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.course-alternatives button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(54, 124, 255, 0.12);
}

.recommended-path-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  overflow: hidden;
  padding: clamp(16px, 2.8vw, 22px);
  border: 1px solid rgba(54, 124, 255, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(54, 124, 255, 0.12), transparent 1px) 0 0 / 24px 24px,
    radial-gradient(circle at 94% 8%, rgba(255, 212, 95, 0.32), transparent 28%),
    radial-gradient(circle at 12% 16%, rgba(66, 217, 181, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 18px 48px rgba(19, 34, 56, 0.1);
}

.recommended-path-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--blue), var(--mint), var(--yellow));
}

.recommended-path-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 6px;
  padding: 7px 10px;
  color: #17469f;
  border: 1px solid rgba(54, 124, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recommended-path-card span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: 0 0 0 4px rgba(66, 217, 181, 0.14);
}

.recommended-path-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.recommended-path-card p {
  max-width: 650px;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.recommended-path-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 9px;
  justify-content: flex-start;
  justify-items: stretch;
  min-width: 0;
  max-width: 100%;
}

.recommended-path-actions .primary-button,
.recommended-path-actions .secondary-button {
  min-height: 46px;
  min-width: 0;
  max-width: 100%;
  padding-inline: 14px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(54, 124, 255, 0.14);
  white-space: normal;
  text-align: center;
}

.recommended-path-actions .secondary-button {
  color: #17469f;
  border-color: rgba(54, 124, 255, 0.22);
  background: rgba(255, 255, 255, 0.88);
}

.business-price-sync-note {
  padding: 10px 12px;
  border: 1px solid rgba(66, 217, 181, 0.26);
  border-radius: 14px;
  background: rgba(66, 217, 181, 0.1);
  color: var(--ink) !important;
  font-size: 0.88rem;
  font-weight: 850;
}

.business-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.business-match-actions .primary-button,
.business-match-actions .secondary-button {
  min-height: 42px;
}

.business-match-cta {
  justify-self: start;
  margin-top: 2px;
}

.course-match-cta {
  justify-self: start;
  margin-top: 2px;
}

.course-manual-tune {
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.course-manual-tune summary {
  min-height: 48px;
  padding: 13px 16px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.course-manual-tune summary::-webkit-details-marker {
  display: none;
}

.course-manual-tune summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 950;
}

.course-manual-tune[open] summary::after {
  content: "-";
}

.course-manual-tune .builder-controls,
.course-manual-tune .skill-picker {
  padding: 0 16px 16px;
}

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

.builder-controls label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.builder-controls select {
  min-height: 48px;
  width: 100%;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.skill-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.skill-picker button {
  position: relative;
  overflow: hidden;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.skill-picker button:hover,
.skill-picker button.is-selected {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 14px 28px rgba(54, 124, 255, 0.18);
  transform: translateY(-2px);
}

.builder-preview {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sky), var(--green-soft));
}

.builder-preview > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.builder-preview p,
.builder-preview li {
  color: var(--muted);
}

.builder-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.builder-plan-grid strong {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 9px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-align: center;
}

.builder-preview ul {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
  padding-left: 18px;
}

.builder-whatsapp {
  justify-self: start;
}

.finder-section,
.flagship-section,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.finder-copy,
.booking-copy {
  position: sticky;
  top: 100px;
}

.solution-finder {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 32px);
  background:
    radial-gradient(circle at 90% 10%, rgba(125, 92, 255, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.86);
}

.finder-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.finder-tabs button,
.date-grid button,
.slot-grid button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.finder-tabs button:hover,
.finder-tabs button.is-active,
.date-grid button:hover,
.slot-grid button:hover,
.date-grid button.is-selected,
.slot-grid button.is-selected {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 18px 34px rgba(54, 124, 255, 0.18);
  transform: translateY(-2px);
}

.finder-fields,
.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.finder-fields label,
.booking-fields label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.finder-fields input,
.finder-fields select,
.booking-fields input,
.booking-fields select {
  min-height: 48px;
  width: 100%;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.finder-result {
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sky), var(--green-soft));
}

.finder-result[hidden] {
  display: none;
}

.finder-result strong,
.finder-result span,
.finder-result p {
  display: block;
}

.finder-result strong {
  color: var(--blue);
  font-size: 1.22rem;
}

.finder-result span {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 950;
}

.finder-result p {
  margin-top: 8px;
  color: var(--muted);
}

.verticals-section,
.business-section,
.workshops-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.verticals-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(66, 217, 181, 0.24), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(255, 212, 95, 0.32), transparent 28%),
    #f9fbff;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vertical-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: clamp(20px, 2.6vw, 30px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.vertical-card:hover,
.student-path-grid article:hover,
.workshop-grid article:hover,
.proof-section article:hover,
.session-roadmap article:hover {
  transform: translateY(-7px);
  border-color: rgba(54, 124, 255, 0.22);
  box-shadow: var(--shadow);
}

.vertical-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--purple));
  font-weight: 950;
}

.vertical-card p,
.student-path-grid p,
.workshop-grid p,
.session-roadmap p {
  color: var(--muted);
}

.vertical-card a {
  justify-self: start;
  margin-top: auto;
}

.student-path-grid,
.workshop-grid,
.proof-section,
.faq-preview-grid,
.faq-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.student-path-grid article,
.workshop-grid article,
.proof-section article,
.faq-preview-grid article,
.faq-support-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.student-path-grid strong,
.proof-section strong,
.faq-preview-grid strong,
.faq-support-grid strong {
  color: var(--blue);
}

.parents-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, var(--lavender), #fff8e8 58%, var(--green-soft));
}

.project-showcase-section {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(125, 92, 255, 0.12), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(255, 212, 95, 0.28), transparent 28%),
    linear-gradient(135deg, #ffffff, #fffaf1);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.78fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
}

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 116px;
  text-align: left;
}

.project-card strong,
.project-card span {
  display: block;
}

.project-card span {
  color: inherit;
  opacity: 0.78;
  font-size: 0.86rem;
  font-weight: 850;
}

.preview-bars {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.preview-bars i {
  display: block;
  width: var(--bar-width, 76%);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  animation: previewBar 950ms ease-out both;
}

.preview-bars i:nth-child(2) {
  animation-delay: 120ms;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
}

.preview-bars i:nth-child(3) {
  animation-delay: 240ms;
  background: linear-gradient(90deg, var(--purple), var(--blue));
}

@keyframes previewBar {
  from {
    opacity: 0;
    transform: scaleX(0.18);
    transform-origin: left center;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.parent-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.72);
}

.parent-points,
.business-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.business-grid span {
  background: #f4f7ff;
}

.flagship-section {
  align-items: center;
}

.flagship-copy p {
  margin-top: 18px;
}

.program-meta {
  margin-top: 22px;
}

.session-roadmap {
  display: grid;
  gap: 12px;
}

.session-roadmap article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 14px;
  padding: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.session-roadmap article span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  font-weight: 950;
}

.workshops-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(125, 92, 255, 0.14), transparent 28%),
    #f8fbff;
}

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

.proof-section {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0;
}

.faq-preview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(360px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 212, 95, 0.28), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(66, 217, 181, 0.24), transparent 28%),
    linear-gradient(135deg, #ffffff, #f4fbff);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.faq-preview-copy p:not(.eyebrow),
.faq-promise p:not(.eyebrow),
.faq-list-section .section-heading p,
.faq-cta-section p {
  color: var(--muted);
  line-height: 1.7;
}

.faq-preview-copy .primary-button {
  margin-top: 24px;
}

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

.faq-preview-grid article,
.faq-support-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 56px rgba(19, 34, 56, 0.08);
}

.faq-preview-grid article:nth-child(1),
.faq-support-grid article:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.faq-preview-grid article:nth-child(2),
.faq-support-grid article:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.faq-preview-grid article:nth-child(3),
.faq-support-grid article:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.faq-preview-grid article:nth-child(4),
.faq-support-grid article:nth-child(4) {
  background: linear-gradient(145deg, #ffffff, #f0ebff);
}

.faq-preview-grid article:hover,
.faq-support-grid article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.faq-preview-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.78rem;
  font-weight: 950;
}

.faq-preview-grid p,
.faq-support-grid span {
  color: var(--muted);
}

.booking-section {
  border-top: 1px solid rgba(19, 34, 56, 0.08);
}

.booking-copy p:not(.eyebrow) {
  margin-top: 18px;
}

.booking-note {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.booking-note strong {
  color: var(--blue);
}

.booking-planner {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 32px);
  background:
    radial-gradient(circle at 92% 8%, rgba(54, 124, 255, 0.11), transparent 26%),
    rgba(255, 255, 255, 0.86);
}

.booking-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.booking-step > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.82rem;
  font-weight: 950;
}

.booking-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.date-grid,
.slot-grid {
  display: grid;
  gap: 10px;
}

.booking-calendar {
  padding: 14px;
  border: 1px solid rgba(20, 38, 68, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 212, 95, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--ink);
}

.calendar-header strong {
  font-size: 1rem;
  font-weight: 950;
}

.calendar-header span {
  padding: 6px 10px;
  color: #245469;
  border-radius: 999px;
  background: rgba(66, 217, 181, 0.18);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

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

.date-grid button {
  position: relative;
  min-height: 74px;
}

.calendar-empty {
  min-height: 74px;
  border: 1px dashed rgba(20, 38, 68, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.slot-grid button {
  min-height: 52px;
}

.date-grid strong,
.date-grid span,
.date-grid small,
.date-grid em {
  display: block;
  line-height: 1.1;
}

.date-grid strong {
  font-size: 1.35rem;
}

.date-grid span {
  margin-top: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.date-grid small {
  margin-top: 4px;
  color: rgba(27, 42, 63, 0.68);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.date-grid em {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 2px 5px;
  color: #245469;
  border-radius: 999px;
  background: rgba(66, 217, 181, 0.22);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-error {
  padding: 12px 14px;
  color: #7c2418;
  border: 1px solid rgba(255, 124, 101, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 124, 101, 0.12);
}

.booking-error[hidden] {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.site-footer a {
  color: var(--blue);
  font-weight: 950;
}

.site-footer .footer-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.52fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  width: min(1220px, calc(100% - 32px));
  margin: 104px auto 0;
  padding: clamp(48px, 7vw, 86px) clamp(22px, 5vw, 60px);
  overflow: hidden;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 212, 95, 0.38), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(125, 92, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 255, 0.8));
  box-shadow: 0 34px 110px rgba(19, 34, 56, 0.11);
}

.page-hero > div,
.page-hero-visual {
  position: relative;
  z-index: 1;
}

.student-page-hero {
  background:
    radial-gradient(circle at 10% 15%, rgba(54, 124, 255, 0.22), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(255, 212, 95, 0.34), transparent 26%),
    linear-gradient(135deg, #ffffff, #edf5ff);
}

.parent-page-hero {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 124, 101, 0.18), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(255, 212, 95, 0.34), transparent 26%),
    linear-gradient(135deg, #ffffff, #fff6df);
}

.business-page-hero {
  background:
    radial-gradient(circle at 12% 15%, rgba(66, 217, 181, 0.24), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(54, 124, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #ffffff, #ecfff6);
}

.institution-page-hero {
  background:
    radial-gradient(circle at 12% 15%, rgba(125, 92, 255, 0.2), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(66, 217, 181, 0.2), transparent 26%),
    linear-gradient(135deg, #ffffff, #f0ebff);
}

.faq-page-hero {
  grid-template-columns: 1fr;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 212, 95, 0.4), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(54, 124, 255, 0.18), transparent 26%),
    radial-gradient(circle at 58% 80%, rgba(66, 217, 181, 0.22), transparent 24%),
    linear-gradient(135deg, #ffffff, #f8fbff);
}

.about-page-hero {
  background:
    radial-gradient(circle at 10% 15%, rgba(54, 124, 255, 0.2), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 212, 95, 0.34), transparent 28%),
    radial-gradient(circle at 58% 86%, rgba(66, 217, 181, 0.22), transparent 24%),
    linear-gradient(135deg, #ffffff, #f2fbff);
}

.about-founder-visual img {
  object-fit: cover;
}

.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(2.8rem, 6.5vw, 6.2rem);
}

.page-hero .hero-lead {
  max-width: 780px;
}

.page-hero-visual {
  margin: 0;
  min-width: 0;
}

.page-hero-visual img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.16);
}

.page-hero-visual figcaption {
  display: grid;
  gap: 6px;
  width: min(92%, 340px);
  margin: -58px auto 0;
  padding: 16px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 56px rgba(19, 34, 56, 0.12);
}

.page-hero-visual + * {
  min-width: 0;
}

.page-hero-visual figcaption strong {
  color: var(--blue);
  line-height: 1.15;
}

.page-hero-visual figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.ai-return-card {
  width: min(1180px, calc(100% - 40px));
  margin: -18px auto 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2.8vw, 24px);
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 212, 95, 0.26), transparent 26%),
    linear-gradient(135deg, #ffffff, #f2fff9);
  box-shadow: 0 20px 55px rgba(19, 34, 56, 0.08);
}

.ai-return-card span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-return-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.12;
}

.ai-return-card p {
  max-width: 650px;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

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

.web-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.web-stats-row span {
  display: grid;
  min-width: 132px;
  padding: 12px 14px;
  color: var(--muted);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.web-stats-row strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.demo-gallery-section {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 12%, rgba(125, 92, 255, 0.14), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(255, 212, 95, 0.24), transparent 28%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.demo-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-filters button,
.demo-toolbar select {
  min-height: 42px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 950;
  cursor: pointer;
}

.demo-filters button {
  padding: 0 13px;
}

.demo-filters button:hover,
.demo-filters button.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.demo-toolbar label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-toolbar select {
  padding: 0 16px;
  border-radius: 14px;
}

.demo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.demo-card {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(19, 34, 56, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 74px rgba(19, 34, 56, 0.12);
}

.demo-card[hidden] {
  display: none;
}

.demo-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 18px;
}

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

.demo-card span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-card strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.demo-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.demo-card button {
  min-height: 42px;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  font-weight: 950;
  cursor: pointer;
}

.health-checker-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.8fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 16%, rgba(66, 217, 181, 0.22), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(54, 124, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.health-checker-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.health-checker-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(19, 34, 56, 0.08);
}

.health-checker-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 950;
}

.health-checker-form input {
  min-height: 52px;
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.12);
  border-radius: 14px;
  background: #ffffff;
}

.health-checker-form button:disabled {
  opacity: 0.72;
  cursor: progress;
}

.health-result {
  display: grid;
  gap: 14px;
  padding: 14px;
  padding-top: 8px;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 10%, rgba(54, 124, 255, 0.2), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(66, 217, 181, 0.16), transparent 30%),
    #101c2d;
  box-shadow: 0 22px 70px rgba(19, 34, 56, 0.18);
}

.health-result[hidden] {
  display: none;
}

.health-scanning {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 14%, rgba(66, 217, 181, 0.22), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(125, 92, 255, 0.16), transparent 32%),
    #ffffff;
}

.scan-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue), var(--mint), var(--yellow), var(--purple), var(--blue));
  animation: scanSpin 1.8s linear infinite;
}

.scan-orbit::before {
  position: absolute;
  inset: 13px;
  content: "";
  border-radius: 50%;
  background: #ffffff;
}

.scan-orbit span {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.scan-orbit span:nth-child(1) {
  transform: translateY(-32px);
}

.scan-orbit span:nth-child(2) {
  background: var(--mint);
  transform: translate(30px, 22px);
}

.scan-orbit span:nth-child(3) {
  background: var(--yellow);
  transform: translate(-30px, 22px);
}

.health-scanning h3 {
  margin-top: 4px;
  color: var(--ink);
}

.health-scanning > div > span,
.scan-step-list span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.health-scanning p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.scan-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.scan-step-list span {
  padding: 9px 10px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.scan-progress {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 34, 56, 0.08);
}

.scan-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--yellow));
  animation: scanProgress 2.7s ease forwards;
}

.health-result-head {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(66, 217, 181, 0.18), transparent 30%),
    linear-gradient(135deg, #172a44, #101c2d);
}

.health-result-head span,
.health-gbp-card span,
.health-missing-card span {
  color: #8debd8;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.health-result-head h3 {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.health-result-head p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.health-overall {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.health-overall strong {
  color: #8debd8;
  font-size: 1.45rem;
  line-height: 1;
}

.health-overall span {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 950;
}

.seo-health-overview {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 212, 95, 0.2), transparent 26%),
    rgba(255, 255, 255, 0.08);
}

.seo-health-overview > div,
.seo-health-overview article {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.seo-health-overview span,
.seo-health-overview small {
  color: #8debd8;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.seo-health-overview strong,
.seo-health-overview b {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
}

.seo-health-overview b {
  color: #ffd45f;
}

.health-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.health-score-card {
  --tone: #367cff;
  --tone-soft: rgba(54, 124, 255, 0.14);
  --tone-text: #17469f;
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, var(--tone-soft), transparent 30%),
    #ffffff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.health-score-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.health-score-card.is-excellent {
  --tone: #16a085;
  --tone-soft: rgba(22, 160, 133, 0.14);
  --tone-text: #0f6b5b;
}

.health-score-card.is-good {
  --tone: #2563eb;
  --tone-soft: rgba(37, 99, 235, 0.14);
  --tone-text: #17469f;
}

.health-score-card.is-attention {
  --tone: #d97706;
  --tone-soft: rgba(217, 119, 6, 0.15);
  --tone-text: #92400e;
}

.health-score-card.is-critical {
  --tone: #dc2626;
  --tone-soft: rgba(220, 38, 38, 0.14);
  --tone-text: #991b1b;
}

.health-score-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.health-score-top span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 950;
}

.health-score-top small {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #ffffff;
  border-radius: 999px;
  background: var(--tone);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.health-score-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.health-score-value strong {
  color: var(--tone-text);
  font-size: 2.15rem;
  line-height: 1;
}

.health-score-value em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 950;
}

.health-score-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.health-score-bar {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: rgba(19, 34, 56, 0.08);
}

.health-score-bar i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.22) 50% 75%, transparent 75%) 0 0 / 18px 18px,
    linear-gradient(90deg, var(--tone), var(--tone-text));
  animation: scoreFill 900ms ease both;
}

.health-gbp-card,
.health-missing-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.health-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.health-gbp-card strong {
  color: #ffffff;
  font-size: 1.04rem;
}

.health-gbp-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.health-missing-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.health-action-plan {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 12%, rgba(255, 212, 95, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.08);
}

.health-action-plan > span {
  color: #8debd8;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.health-action-plan div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.health-action-plan strong {
  color: #ffffff;
  font-size: 0.86rem;
  white-space: nowrap;
}

.health-action-plan p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.health-whatsapp {
  justify-content: center;
  width: fit-content;
}

.health-error {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 24px);
  color: #7c2418;
  border: 2px solid rgba(255, 124, 101, 0.46);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 212, 95, 0.2), transparent 24%),
    #fff8f6;
  box-shadow: 0 18px 46px rgba(124, 36, 24, 0.12);
  font-weight: 900;
}

.health-error strong,
.health-error span {
  display: block;
}

.health-error span {
  max-width: 680px;
  color: #5d2a22;
  font-size: 1rem;
  line-height: 1.58;
  font-weight: 800;
}

.health-error strong {
  color: #9b2f20;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

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

@keyframes scanProgress {
  from {
    width: 8%;
  }

  to {
    width: 100%;
  }
}

@keyframes scoreFill {
  from {
    width: 0;
  }
}

.guided-section {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(340px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(54, 124, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 212, 95, 0.28), transparent 27%),
    radial-gradient(circle at 92% 10%, rgba(66, 217, 181, 0.22), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.guided-copy {
  position: sticky;
  top: 100px;
}

.guided-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.guided-mini-steps {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.guided-mini-steps span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(54, 124, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(19, 34, 56, 0.06);
}

.guided-mini-steps strong {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  color: #ffffff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.78rem;
}

.guided-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(54, 124, 255, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 60px rgba(19, 34, 56, 0.08);
}

.guided-form::before,
.decision-form::before,
.role-matcher::before,
.health-checker-form::before,
.booking-planner::before {
  content: "Answer a few details  â€¢  Get a clear recommendation  â€¢  Decide without pressure";
  display: block;
  padding: 11px 13px;
  color: #17469f;
  border: 1px solid rgba(66, 217, 181, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(66, 217, 181, 0.14), rgba(255, 212, 95, 0.16));
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.35;
}

.guided-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.guided-form select,
.guided-form input {
  min-height: 48px;
  width: 100%;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.guided-result {
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sky), var(--green-soft));
}

.guided-result[hidden] {
  display: none;
}

.guided-result strong,
.guided-result span,
.guided-result p {
  display: block;
}

.guided-result strong {
  color: var(--blue);
  font-size: 1.22rem;
}

.guided-result span {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 950;
}

.guided-result p {
  margin-top: 8px;
  color: var(--muted);
}

.career-role-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(125, 92, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 212, 95, 0.28), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.career-role-copy {
  position: sticky;
  top: 100px;
}

.career-role-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.role-hook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.role-hook-grid span,
.role-skill-picker button {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(19, 34, 56, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-weight: 950;
}

.role-matcher {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(19, 34, 56, 0.08);
}

.role-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.role-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.role-form-grid input,
.role-form-grid select {
  min-height: 48px;
  width: 100%;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.decision-form label,
.guided-form label,
.role-form-grid label,
.ambassador-form-grid label,
.booking-planner label,
.solution-finder label,
.health-checker-form label,
.smart-course-mapper label,
.smart-business-mapper label {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(54, 124, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(54, 124, 255, 0.16), rgba(66, 217, 181, 0.16)) border-box;
  box-shadow: 0 8px 20px rgba(19, 34, 56, 0.045);
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.decision-form label::before,
.guided-form label::before,
.role-form-grid label::before,
.ambassador-form-grid label::before,
.booking-planner label::before,
.solution-finder label::before,
.health-checker-form label::before,
.smart-course-mapper label::before,
.smart-business-mapper label::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: 0 0 0 4px rgba(66, 217, 181, 0.1);
}

.decision-form label:focus-within,
.guided-form label:focus-within,
.role-form-grid label:focus-within,
.ambassador-form-grid label:focus-within,
.booking-planner label:focus-within,
.solution-finder label:focus-within,
.health-checker-form label:focus-within,
.smart-course-mapper label:focus-within,
.smart-business-mapper label:focus-within {
  border-color: rgba(54, 124, 255, 0.34);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(54, 124, 255, 0.1);
  transform: translateY(-1px);
}

.decision-form input,
.decision-form select,
.guided-form input,
.guided-form select,
.role-form-grid input,
.role-form-grid select,
.ambassador-form-grid input,
.ambassador-form-grid select,
.booking-planner input,
.booking-planner select,
.solution-finder input,
.solution-finder select,
.health-checker-form input,
.smart-course-mapper textarea,
.smart-business-mapper textarea {
  min-height: 42px;
  padding-inline: 12px;
  border-color: rgba(54, 124, 255, 0.16);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(54, 124, 255, 0.28), rgba(66, 217, 181, 0.22)) border-box;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 16px rgba(19, 34, 56, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.decision-form input:focus,
.decision-form select:focus,
.guided-form input:focus,
.guided-form select:focus,
.role-form-grid input:focus,
.role-form-grid select:focus,
.ambassador-form-grid input:focus,
.ambassador-form-grid select:focus,
.booking-planner input:focus,
.booking-planner select:focus,
.solution-finder input:focus,
.solution-finder select:focus,
.health-checker-form input:focus,
.smart-course-mapper textarea:focus,
.smart-business-mapper textarea:focus {
  outline: 0;
  border-color: rgba(54, 124, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(54, 124, 255, 0.12), 0 14px 32px rgba(54, 124, 255, 0.12);
  transform: translateY(-1px);
}

.decision-form select,
.guided-form select,
.role-form-grid select,
.ambassador-form-grid select,
.booking-planner select,
.solution-finder select {
  appearance: none;
  padding-right: 38px;
  background:
    linear-gradient(45deg, transparent 50%, #17469f 50%) calc(100% - 20px) 52% / 6px 6px no-repeat,
    linear-gradient(135deg, #ffffff, #f8fbff);
}

.smart-course-mapper textarea,
.smart-business-mapper textarea {
  min-height: 118px;
  padding: 14px 15px;
}

.course-search-hero textarea {
  min-height: clamp(160px, 14vw, 210px);
}

.role-skill-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-skill-picker button {
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.role-skill-picker button:hover,
.role-skill-picker button.is-selected {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 14px 32px rgba(54, 124, 255, 0.18);
  transform: translateY(-2px);
}

.role-result {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(66, 217, 181, 0.2), transparent 26%),
    linear-gradient(135deg, #132238, #2859d8);
  color: var(--white);
}

.role-result[hidden] {
  display: none;
}

.role-result-head {
  display: grid;
  gap: 10px;
}

.role-result-head > span,
.role-plan-grid span {
  color: #ffd45f;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.role-result-head h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.role-result-head p,
.role-plan-grid p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.role-result-head div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.role-result-head strong {
  color: var(--white);
  font-size: 1.6rem;
}

.role-result-head em {
  color: #ffd45f;
  font-style: normal;
  font-weight: 950;
}

.role-match-grid,
.role-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.role-match-grid article,
.role-plan-grid article {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.role-plan-grid .role-mission-card {
  border-color: rgba(255, 212, 95, 0.42);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 212, 95, 0.22), transparent 30%),
    rgba(255, 255, 255, 0.14);
}

.role-mission-card p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.role-match-grid span {
  color: #42d9b5;
  font-size: 1.4rem;
  font-weight: 950;
}

.role-match-grid strong {
  color: var(--white);
}

.role-match-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.role-whatsapp {
  justify-content: center;
  width: fit-content;
  background: var(--white);
  color: #17469f;
}

.tivoro-bot {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 92;
  color: var(--ink);
}

.tivoro-bot-toggle {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 7px 13px 7px 7px;
  color: #132238;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(135deg, #42d9b5, #ffd45f);
  box-shadow: 0 18px 44px rgba(54, 124, 255, 0.18), 0 0 0 8px rgba(66, 217, 181, 0.1);
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tivoro-bot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 62px rgba(54, 124, 255, 0.24), 0 0 0 10px rgba(255, 212, 95, 0.14);
}

.tivoro-bot-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  color: #ffd45f;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.26), transparent 32%),
    #132238;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08), 0 0 24px rgba(19, 34, 56, 0.26);
  font-size: 0.78rem;
  font-weight: 950;
}

.tivoro-bot-icon::before,
.tivoro-bot-icon::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.tivoro-bot-icon::before {
  inset: 7px;
  border: 1px solid rgba(66, 217, 181, 0.78);
}

.tivoro-bot-icon::after {
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: #42d9b5;
  box-shadow: 0 0 12px #42d9b5;
}

.tivoro-bot-copy {
  display: grid;
  gap: 1px;
}

.tivoro-bot-copy strong,
.tivoro-bot-copy small {
  color: inherit;
  line-height: 1.05;
  white-space: nowrap;
}

.tivoro-bot-copy strong {
  font-size: 0.95rem;
}

.tivoro-bot-copy small {
  font-size: 0.66rem;
  font-weight: 900;
  opacity: 0.78;
}

.tivoro-bot-ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1fae62;
  box-shadow: 0 0 0 0 rgba(31, 174, 98, 0.5);
  animation: tivoroBotPing 1.9s ease-out infinite;
}

@keyframes tivoroBotPing {
  0% { box-shadow: 0 0 0 0 rgba(31, 174, 98, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(31, 174, 98, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 174, 98, 0); }
}

.tivoro-bot-panel {
  overflow: hidden;
  margin-bottom: 12px;
  width: min(420px, calc(100vw - 36px));
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(66, 217, 181, 0.16), transparent 26%),
    radial-gradient(circle at 8% 12%, rgba(255, 212, 95, 0.16), transparent 28%),
    linear-gradient(145deg, #ffffff, #f4fbff);
  box-shadow: 0 28px 90px rgba(19, 34, 56, 0.22);
}

.tivoro-bot-head {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(54, 124, 255, 0.1);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 212, 95, 0.28), transparent 30%),
    linear-gradient(135deg, #101c34, #17469f);
}

.tivoro-bot-head span,
.tivoro-bot-head strong {
  display: block;
}

.tivoro-bot-head span {
  color: #ffd45f;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tivoro-bot-head strong {
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.25;
}

.tivoro-bot-head button {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: #132238;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #42d9b5, #ffd45f);
  cursor: pointer;
  font-weight: 950;
}

.tivoro-bot-messages {
  display: grid;
  gap: 10px;
  max-height: 286px;
  overflow-y: auto;
  padding: 16px;
}

.tivoro-bot-message {
  max-width: 92%;
  padding: 11px 12px;
  border-radius: 14px;
  line-height: 1.5;
  font-size: 0.92rem;
}

.tivoro-bot-message.is-bot {
  justify-self: start;
  color: #132238;
  border: 1px solid rgba(54, 124, 255, 0.1);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(19, 34, 56, 0.06);
}

.tivoro-bot-message.is-user {
  justify-self: end;
  color: #132238;
  background: linear-gradient(135deg, #42d9b5, #ffd45f);
  font-weight: 850;
}

.tivoro-bot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}

.tivoro-bot-quick button {
  padding: 8px 10px;
  color: #17469f;
  border: 1px solid rgba(54, 124, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
}

.tivoro-bot-quick button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #17469f, #6b4eff);
}

.tivoro-bot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid rgba(54, 124, 255, 0.1);
}

.tivoro-bot-form input {
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  color: #132238;
  border: 1px solid rgba(54, 124, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.tivoro-bot-form input::placeholder {
  color: rgba(19, 34, 56, 0.52);
}

.tivoro-bot-form button,
.tivoro-bot-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 13px;
  color: #132238;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #42d9b5, #ffd45f);
  cursor: pointer;
  font-weight: 950;
}

.tivoro-bot-whatsapp {
  margin: 0 16px 16px;
  color: var(--white);
  background: #1fae62;
}

.business-page .tivoro-bot {
  bottom: 86px;
}

.business-sample-section {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 212, 95, 0.24), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(54, 124, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.8));
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.business-mapper-hero {
  padding: clamp(22px, 4vw, 36px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 212, 95, 0.45), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(66, 217, 181, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 248, 255, 0.96));
}

.business-mapper-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.business-mapper-input {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.business-mapper-hero label {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.business-mapper-hero textarea {
  min-height: clamp(190px, 18vw, 260px);
  padding: clamp(18px, 3vw, 26px);
  border-radius: 24px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
}

.business-mapper-hero .mapper-actions {
  justify-content: flex-start;
}

.business-mapper-hero .primary-button,
.business-mapper-hero .secondary-button {
  min-height: 52px;
}

.mapper-instant-estimate {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: clamp(16px, 2.5vw, 22px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 212, 95, 0.34), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(66, 217, 181, 0.2), transparent 28%),
    linear-gradient(145deg, #ffffff, #fff8e8);
  box-shadow: 0 18px 52px rgba(19, 34, 56, 0.1);
}

.mapper-instant-estimate > span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mapper-instant-estimate > strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: 0;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mapper-instant-estimate p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.55;
}

.mapper-selected-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-height: 120px;
  overflow-y: auto;
  padding-right: 2px;
}

.mapper-selected-cloud span,
.mapper-selected-cloud strong,
.mapper-selected-cloud em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.mapper-selected-cloud strong {
  color: #ffffff;
  background: linear-gradient(135deg, var(--mint), var(--blue));
}

.mapper-instant-estimate .secondary-button {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  padding-inline: 12px;
}

.digital-trust-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 26px);
  align-items: start;
  scroll-margin-top: 150px;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 12%, rgba(142, 232, 255, 0.18), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(255, 212, 95, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff, #f6fbff);
  box-shadow: 0 28px 88px rgba(19, 34, 56, 0.09);
}

.trust-score-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(142, 232, 255, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 10%, rgba(142, 232, 255, 0.24), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(255, 212, 95, 0.24), transparent 24%),
    linear-gradient(135deg, #101c34 0%, #17469f 58%, #10213f 100%);
  box-shadow: 0 24px 62px rgba(23, 70, 159, 0.24);
}

.trust-score-copy .eyebrow {
  color: #101c34;
  background: linear-gradient(135deg, var(--mint), var(--yellow));
}

.trust-score-copy h2 {
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.04;
}

.trust-score-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.trust-score-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.trust-score-pills span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.trust-score-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: clamp(16px, 2.5vw, 24px);
  overflow: visible;
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 10%, rgba(66, 217, 181, 0.16), transparent 26%),
    linear-gradient(145deg, #ffffff, #f7fbff);
  box-shadow: 0 20px 60px rgba(19, 34, 56, 0.09);
}

.trust-score-form {
  align-self: stretch;
}

@supports selector(body:has(#digital-trust-score:target)) {
  .business-page:has(#digital-trust-score:target) .business-sticky-cta,
  .business-page:has(#digital-trust-score:target) .tivoro-bot:not(.is-open) {
    display: none;
  }
}

.trust-live-intro {
  display: grid;
  gap: 8px;
  padding: 16px;
  color: #ffffff;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 212, 95, 0.22), transparent 28%),
    linear-gradient(135deg, #101c34, #17469f);
}

.trust-live-intro span {
  width: fit-content;
  padding: 6px 9px;
  color: #08111f;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--yellow));
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-live-intro h3 {
  color: #ffffff;
}

.trust-live-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.trust-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 10px;
}

.trust-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 950;
}

.trust-form-grid input {
  min-height: 52px;
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.12);
  border-radius: 14px;
  background: #ffffff;
}

.trust-form-grid input:focus {
  outline: 3px solid rgba(54, 124, 255, 0.16);
  border-color: rgba(54, 124, 255, 0.42);
}

.trust-score-form > .primary-button:disabled {
  opacity: 0.72;
  cursor: progress;
}

.trust-live-result {
  display: grid;
  gap: 14px;
}

.trust-live-result[hidden] {
  display: none;
}

.trust-live-meter {
  margin-top: 4px;
}

.trust-business-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.trust-business-facts strong,
.trust-business-facts span,
.trust-business-facts a {
  min-height: 32px;
  padding: 7px 9px;
  color: #08111f;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 950;
}

.trust-business-facts a {
  color: #17469f;
}

.trust-score-meter {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 212, 95, 0.22), transparent 30%),
    linear-gradient(135deg, #101c34, #17469f);
  color: #ffffff;
}

.trust-score-ring {
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 56%, transparent 57%),
    conic-gradient(var(--mint) 0 var(--score-angle), rgba(255, 255, 255, 0.18) var(--score-angle) 360deg);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.trust-score-ring strong,
.trust-score-ring span {
  grid-area: 1 / 1;
  color: var(--ink);
}

.trust-score-ring strong {
  transform: translateY(-5px);
  font-size: 3.3rem;
  line-height: 1;
}

.trust-score-ring span {
  transform: translateY(32px);
  color: var(--muted);
  font-weight: 950;
}

.trust-score-meter > div:last-child {
  display: grid;
  gap: 7px;
}

.trust-score-meter > div:last-child > span {
  width: fit-content;
  padding: 6px 9px;
  color: #08111f;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--yellow));
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-score-meter h3 {
  color: #ffffff;
}

.trust-score-meter p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.trust-factor-table {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.trust-factor-table > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) 70px 78px minmax(0, 1.6fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(19, 34, 56, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.trust-factor-table .trust-factor-head {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #101c34, #17469f);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-factor-table strong {
  color: var(--ink);
  font-weight: 950;
}

.trust-factor-table span {
  color: var(--muted);
  font-weight: 900;
}

.trust-factor-table b {
  width: fit-content;
  padding: 6px 8px;
  color: #17469f;
  border-radius: 999px;
  background: #eaf1ff;
  font-size: 0.78rem;
}

.trust-factor-table p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.trust-score-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 4px;
}

.trust-score-services span,
.trust-score-services strong {
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.trust-score-services span {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.trust-score-services strong {
  color: var(--ink);
  border: 1px solid rgba(54, 124, 255, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.business-home-mapper {
  display: grid;
  gap: 18px;
}

.home-price-builder {
  margin-top: 2px;
}

.home-choice-pricing {
  margin-top: 2px;
}

@media (min-width: 761px) {
  .home-choice-pricing {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 16px;
    align-items: center;
    padding: 18px;
  }

  .home-choice-pricing .choice-pricing-copy {
    gap: 6px;
  }

  .home-choice-pricing .choice-pricing-copy h2 {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.15;
  }

  .home-choice-pricing .choice-pricing-copy p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .home-choice-pricing .choice-pricing-grid {
    gap: 8px;
  }

  .home-choice-pricing .choice-pricing-grid article {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 9px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(19, 34, 56, 0.06);
  }

  .home-choice-pricing .choice-pricing-grid span {
    grid-row: span 2;
    width: 30px;
    height: 30px;
    font-size: 0.68rem;
  }

  .home-choice-pricing .choice-pricing-grid strong {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .home-choice-pricing .choice-pricing-grid p {
    font-size: 0.76rem;
    line-height: 1.32;
  }
}

.business-visual-samples {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 15%, rgba(54, 124, 255, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.9));
  box-shadow: 0 18px 54px rgba(19, 34, 56, 0.07);
}

.business-visual-samples h2 {
  max-width: 760px;
}

.business-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.business-visual-grid a {
  display: grid;
  gap: 9px;
  min-height: 100%;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(19, 34, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.business-visual-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(19, 34, 56, 0.11);
}

.business-visual-grid img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  border-radius: 14px;
}

.business-visual-grid strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 950;
}

.business-visual-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 820;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .tivoro-trust-section {
    grid-template-columns: 1fr;
  }

  .tivoro-trust-grid,
  .how-it-works-grid,
  .business-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tivoro-trust-section,
  .how-it-works-section,
  .business-visual-samples {
    border-radius: 18px;
    padding: 22px 16px;
  }

  .tivoro-trust-grid,
  .how-it-works-grid,
  .business-visual-grid {
    grid-template-columns: 1fr;
  }

  .business-visual-grid img {
    height: 150px;
  }
}

.home-tools-section .business-mapper-hero {
  border-radius: 24px;
}

.business-sample-studio {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.sample-controls {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(19, 34, 56, 0.08);
}

.sample-controls label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.sample-controls select {
  min-height: 48px;
  width: 100%;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sample-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(66, 217, 181, 0.14), rgba(255, 212, 95, 0.18));
}

.sample-note strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.sample-note span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.sample-preview {
  --sample-accent: var(--blue);
  display: grid;
  gap: 14px;
  min-width: 0;
}

.sample-browser {
  overflow: hidden;
  border: 1px solid rgba(19, 34, 56, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(19, 34, 56, 0.12);
}

.sample-browser-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  background: linear-gradient(135deg, #f8fbff, #fffaf1);
}

.sample-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sample-accent);
}

.sample-browser-top span:nth-child(2) {
  background: var(--yellow);
}

.sample-browser-top span:nth-child(3) {
  background: var(--mint);
}

.sample-browser-top strong {
  min-width: 0;
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sample-website-shell {
  padding: clamp(16px, 3vw, 28px);
  background:
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--sample-accent) 20%, transparent), transparent 32%),
    linear-gradient(135deg, #ffffff, #f7fbff);
}

.sample-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.sample-nav strong {
  color: var(--ink);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 950;
}

.sample-nav div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.sample-nav span {
  padding: 6px 9px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 950;
}

.sample-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(220px, 0.5fr);
  gap: 14px;
  align-items: stretch;
}

.sample-hero {
  display: grid;
  gap: 10px;
  max-width: 620px;
  padding: clamp(20px, 4vw, 34px);
  color: #ffffff;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, var(--sample-accent), #132238);
}

.sample-hero span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sample-hero h3 {
  max-width: 520px;
  font-size: clamp(1.55rem, 4vw, 3rem);
  line-height: 1.02;
}

.sample-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.sample-hero button {
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  font-weight: 950;
  cursor: pointer;
}

.sample-image-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(19, 34, 56, 0.08);
}

.sample-image-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transform: scale(1.02);
}

.sample-image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 36%, rgba(19, 34, 56, 0.84));
}

.sample-image-card figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 5px;
  color: #ffffff;
}

.sample-image-card strong {
  font-size: 1rem;
  line-height: 1.15;
}

.sample-image-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
}

.sample-customer-story {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--sample-accent) 16%, transparent);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--sample-accent) 12%, transparent), transparent 28%),
    rgba(255, 255, 255, 0.84);
}

.sample-customer-story > span {
  color: var(--sample-accent);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sample-customer-story p {
  color: var(--muted);
  line-height: 1.6;
}

.sample-customer-story div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-customer-story strong {
  padding: 7px 9px;
  color: var(--ink);
  border-radius: 999px;
  background: color-mix(in srgb, var(--sample-accent) 10%, #ffffff);
  font-size: 0.78rem;
}

.sample-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.sample-mini-grid article {
  display: grid;
  gap: 10px;
  min-height: 112px;
  padding: 13px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.sample-mini-grid article span {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  background: var(--sample-accent);
}

.sample-mini-grid article strong {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.25;
}

.sample-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sample-detail-grid article {
  padding: 14px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.sample-detail-grid span {
  display: block;
  color: var(--sample-accent);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sample-detail-grid p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.sample-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-feature-list span {
  padding: 8px 10px;
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--sample-accent) 20%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--sample-accent) 10%, #ffffff);
  font-size: 0.84rem;
  font-weight: 900;
}

.quote-home-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 212, 95, 0.32), transparent 26%),
    radial-gradient(circle at 92% 16%, rgba(54, 124, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 22px 70px rgba(19, 34, 56, 0.08);
}

.quote-home-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.quote-home-copy .primary-button {
  margin-top: 20px;
}

.quote-home-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-home-flow article {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(19, 34, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.quote-home-flow article:hover {
  transform: translateY(-5px);
  border-color: rgba(54, 124, 255, 0.22);
  box-shadow: var(--shadow);
}

.quote-home-flow article:nth-child(1) {
  grid-row: span 2;
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.quote-home-flow article:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.quote-home-flow article:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.quote-home-flow article:nth-child(4) {
  background: linear-gradient(145deg, #ffffff, #f0ebff);
}

.quote-home-flow span {
  display: inline-grid;
  place-items: center;
  width: max-content;
  min-width: 34px;
  min-height: 34px;
  padding: 0 10px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.78rem;
  font-weight: 950;
}

.quote-home-flow strong {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 950;
}

.quote-home-flow p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
}

.quote-base-preview strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.choice-pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(66, 217, 181, 0.2), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(255, 212, 95, 0.32), transparent 26%),
    linear-gradient(135deg, #ffffff, #f8fbff);
  box-shadow: 0 22px 70px rgba(19, 34, 56, 0.07);
}

.choice-pricing-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.choice-pricing-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.choice-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice-pricing-grid article {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 42px rgba(19, 34, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.choice-pricing-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 124, 255, 0.2);
  box-shadow: 0 22px 54px rgba(19, 34, 56, 0.1);
}

.choice-pricing-grid article:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.choice-pricing-grid article:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.choice-pricing-grid article:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.choice-pricing-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.78rem;
  font-weight: 950;
}

.choice-pricing-grid strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.choice-pricing-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
}

.before-after-section,
.pricing-section,
.website-price-builder-section,
.trust-tech-section {
  padding: clamp(24px, 4vw, 46px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 70px rgba(19, 34, 56, 0.07);
}

.website-price-builder-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 212, 95, 0.32), transparent 26%),
    radial-gradient(circle at 92% 16%, rgba(66, 217, 181, 0.22), transparent 26%),
    linear-gradient(135deg, #ffffff, #f3fbff);
}

.quote-preset-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 12%, rgba(54, 124, 255, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 42px rgba(19, 34, 56, 0.06);
}

.quote-preset-strip div {
  display: grid;
  gap: 3px;
  min-width: min(100%, 280px);
  margin-right: auto;
}

.quote-preset-strip span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-preset-strip strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.35;
}

.quote-preset-strip button {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quote-preset-strip button:hover,
.quote-preset-strip button:focus-visible,
.quote-preset-strip button.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 12px 28px rgba(54, 124, 255, 0.22);
  transform: translateY(-2px);
}

.website-price-builder {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1.28fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.price-base-card,
.price-builder-panel,
.price-summary-card {
  min-height: 100%;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 48px rgba(19, 34, 56, 0.07);
}

.price-base-card {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.price-base-card > span,
.price-summary-card > span {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.78rem;
  font-weight: 950;
}

.price-base-card > strong,
.price-summary-card > strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  letter-spacing: 0;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-base-card p,
.price-summary-card p,
.price-summary-card small {
  color: var(--muted);
  line-height: 1.65;
}

.price-base-card ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.price-base-card li {
  position: relative;
  padding: 11px 12px 11px 34px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.price-base-card li::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 10px;
  height: 6px;
  content: "";
  border-bottom: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
  transform: translateY(-62%) rotate(-45deg);
}

.price-builder-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.price-builder-steps article {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(19, 34, 56, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.price-builder-steps article:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.price-builder-steps article:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.price-builder-steps article:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.price-builder-steps article:hover {
  transform: translateY(-5px);
  border-color: rgba(54, 124, 255, 0.22);
  box-shadow: 0 18px 46px rgba(19, 34, 56, 0.09);
}

.price-builder-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.82rem;
  font-weight: 950;
}

.price-builder-steps strong {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 950;
}

.price-builder-steps p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.extra-page-control {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f1f6ff);
}

.extra-page-control span,
.feature-price-grid strong {
  display: block;
  color: var(--ink);
  font-weight: 950;
}

.extra-page-control strong,
.feature-price-grid em {
  color: var(--blue);
  font-style: normal;
  font-weight: 950;
}

.page-stepper {
  display: inline-grid;
  grid-template-columns: 42px 76px 42px;
  gap: 8px;
  align-items: center;
}

.page-stepper button,
.page-stepper input {
  min-height: 42px;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  text-align: center;
}

.page-stepper button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  cursor: pointer;
}

.feature-category-stack {
  display: grid;
  gap: 12px;
}

.feature-category-stack details {
  overflow: hidden;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(19, 34, 56, 0.06);
}

.feature-category-stack details[open] {
  border-color: rgba(54, 124, 255, 0.2);
  background:
    radial-gradient(circle at 90% 0%, rgba(66, 217, 181, 0.16), transparent 24%),
    #ffffff;
}

.feature-category-stack summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
  min-height: 68px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.feature-category-stack summary::-webkit-details-marker {
  display: none;
}

.feature-category-stack summary::after {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  content: "+";
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-weight: 950;
}

.feature-category-stack details[open] summary::after {
  content: "-";
}

.feature-category-stack summary span,
.feature-category-stack summary strong {
  display: block;
  min-width: 0;
}

.feature-category-stack summary span {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.feature-category-stack summary strong {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.feature-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  padding: 0 16px 16px;
}

.feature-price-grid label {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 58px;
  padding: 10px 42px 10px 12px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.88));
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-price-grid label::after {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  content: "+";
  color: var(--blue);
  border: 1px solid rgba(54, 124, 255, 0.18);
  border-radius: 50%;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.feature-price-grid label:hover,
.feature-price-grid label:has(input:checked) {
  transform: translateY(-2px);
  border-color: rgba(54, 124, 255, 0.24);
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
  box-shadow: 0 10px 28px rgba(19, 34, 56, 0.08);
}

.feature-price-grid label:has(input:checked)::after {
  content: "";
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.feature-price-grid label:has(input:checked)::before {
  position: absolute;
  top: 50%;
  right: 17px;
  z-index: 2;
  width: 10px;
  height: 6px;
  content: "";
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: translateY(-66%) rotate(-45deg);
}

.feature-price-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.feature-price-grid span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.feature-price-grid strong {
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.feature-price-grid em {
  font-size: 0.74rem;
  line-height: 1.2;
}

.price-summary-card {
  min-width: 0;
  position: sticky;
  top: 112px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 212, 95, 0.28), transparent 26%),
    linear-gradient(145deg, #ffffff, #fff8e7);
}

.price-summary-card > strong {
  max-width: 100%;
  overflow-wrap: normal;
  white-space: nowrap;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.05;
}

.price-breakdown {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.price-core-lines {
  display: grid;
  gap: 8px;
}

.price-core-lines article {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.price-core-lines strong {
  color: var(--ink);
  white-space: nowrap;
}

.selected-addon-cloud {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px dashed rgba(54, 124, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.selected-addon-cloud small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.selected-addon-cloud > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-height: 142px;
  overflow-y: auto;
  padding-right: 4px;
}

.selected-addon-cloud .selected-addon-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 7px;
  padding: 7px 7px 7px 10px;
  color: var(--ink);
  border: 1px solid rgba(54, 124, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #eef5ff);
  font-size: 0.78rem;
  font-weight: 900;
}

.selected-addon-cloud .selected-addon-chip > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-addon-cloud .selected-addon-chip strong {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 0.76rem;
  white-space: nowrap;
}

.selected-addon-cloud .selected-addon-chip button {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--purple));
  cursor: pointer;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.selected-addon-cloud .selected-addon-chip button:hover,
.selected-addon-cloud .selected-addon-chip button:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(255, 111, 97, 0.22);
}

.selected-addon-cloud em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 850;
}

.best-deal-callout {
  display: grid;
  gap: 5px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(31, 174, 98, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 212, 95, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(231, 251, 239, 0.92), rgba(255, 255, 255, 0.88));
}

.best-deal-callout strong {
  color: #116d3a;
  font-size: 0.95rem;
  font-weight: 950;
}

.best-deal-callout span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.45;
}

.price-summary-card .primary-button {
  width: 100%;
  margin: 6px 0 12px;
  justify-content: center;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.before-after-grid article {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 24px;
}

.before-after-grid span {
  font-size: 1.15rem;
  font-weight: 950;
}

.before-after-grid p {
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 850;
}

.before-card {
  background: linear-gradient(135deg, #fff1eb, #ffffff);
}

.before-card span {
  color: #b12d18;
}

.after-card {
  background: linear-gradient(135deg, #e7fbef, #ffffff);
}

.after-card span {
  color: #12624e;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background: #ffffff;
}

.pricing-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
}

.pricing-table th {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table td:first-child {
  color: var(--ink);
  font-weight: 950;
}

.batch-pricing-section,
.ambassador-section {
  padding: clamp(24px, 4vw, 50px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 212, 95, 0.28), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(66, 217, 181, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.82));
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.learning-price-card {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(19, 34, 56, 0.09);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #e7fbef);
  box-shadow: 0 18px 54px rgba(19, 34, 56, 0.08);
}

.learning-price-card::after {
  position: absolute;
  right: -34px;
  top: -34px;
  width: 126px;
  height: 126px;
  content: "";
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.22;
}

.learning-price-card.is-premium {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.learning-price-card.is-premium::after {
  background: var(--blue);
}

.learning-price-card span,
.learning-price-card h3,
.learning-price-card strong,
.learning-price-card p,
.learning-price-card a {
  position: relative;
  z-index: 1;
}

.learning-price-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.learning-price-card strong {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1;
}

.learning-price-card p {
  color: var(--muted);
}

.learning-price-card a {
  justify-self: start;
}

.batch-structure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.batch-structure-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.batch-structure-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-weight: 950;
}

.batch-structure-grid strong {
  font-size: 1rem;
}

.batch-structure-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.ambassador-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  background:
    radial-gradient(circle at 10% 14%, rgba(125, 92, 255, 0.16), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(255, 212, 95, 0.32), transparent 28%),
    linear-gradient(135deg, #ffffff, #fffaf1);
}

.ambassador-copy {
  position: sticky;
  top: 100px;
}

.ambassador-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
}

.ambassador-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ambassador-highlights span {
  padding: 8px 11px;
  border: 1px solid rgba(19, 34, 56, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 900;
}

.ambassador-challenge {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(19, 34, 56, 0.08);
}

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

.ambassador-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.ambassador-form-grid input,
.ambassador-form-grid select {
  min-height: 48px;
  width: 100%;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.ambassador-result {
  display: grid;
  gap: 14px;
}

.ambassador-result[hidden] {
  display: none;
}

.ambassador-result-head {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--sky), var(--green-soft));
}

.ambassador-result-head span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ambassador-result-head p {
  color: var(--muted);
}

.ambassador-result-head strong {
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 1.2rem;
}

.ambassador-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ambassador-next-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.ambassador-next-grid span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ambassador-next-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-tech-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.65fr);
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(54, 124, 255, 0.16), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(66, 217, 181, 0.18), transparent 28%),
    #ffffff;
}

.trust-speed-card h2 {
  margin-top: 8px;
}

.speed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.speed-grid span {
  display: grid;
  padding: 14px;
  color: var(--muted);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
}

.speed-grid strong {
  color: var(--blue);
  font-size: 1.7rem;
  line-height: 1.05;
}

.tech-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tech-pill-cloud span {
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(19, 34, 56, 0.06);
}

.business-sticky-cta {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 16px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(19, 34, 56, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.business-sticky-cta a {
  padding: 10px 14px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.88rem;
  font-weight: 950;
  white-space: nowrap;
}

.faq-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.faq-promise {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 212, 95, 0.28), transparent 30%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.faq-promise .primary-button {
  margin-top: 24px;
}

.workflow-section {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 16%, rgba(54, 124, 255, 0.12), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(255, 212, 95, 0.24), transparent 28%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.workflow-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 56px rgba(19, 34, 56, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.workflow-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(54, 124, 255, 0.24);
  box-shadow: var(--shadow);
}

.workflow-grid article:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.workflow-grid article:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.workflow-grid article:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.workflow-grid article:nth-child(4) {
  background: linear-gradient(145deg, #ffffff, #f0ebff);
}

.workflow-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.82rem;
  font-weight: 950;
}

.workflow-grid p {
  color: var(--muted);
}

.language-section {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 212, 95, 0.26), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(54, 124, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff, #f6fbff);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.language-grid article {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 56px rgba(19, 34, 56, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.language-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(54, 124, 255, 0.24);
  box-shadow: var(--shadow);
}

.language-grid article:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.language-grid article:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.language-grid article:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.language-grid strong,
.language-grid p {
  flex: 0 0 100%;
}

.language-grid strong {
  color: var(--blue);
  font-size: 1.18rem;
}

.language-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(19, 34, 56, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.language-grid p {
  color: var(--muted);
  line-height: 1.65;
}

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

.faq-category-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.faq-category-nav a {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 46px rgba(19, 34, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-category-nav a:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 124, 255, 0.24);
  box-shadow: var(--shadow);
}

.faq-category-nav a:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.faq-category-nav a:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.faq-category-nav a:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.faq-category-nav a:nth-child(4) {
  background: linear-gradient(145deg, #ffffff, #f0ebff);
}

.faq-category-nav a:nth-child(5) {
  background: linear-gradient(145deg, #ffffff, #ffece7);
}

.faq-category-nav a:nth-child(6) {
  background: linear-gradient(145deg, #ffffff, #e7f7ff);
}

.faq-category-nav strong,
.faq-category-nav span {
  display: block;
}

.faq-category-nav strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.faq-category-nav span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.faq-category {
  display: grid;
  gap: 12px;
  scroll-margin-top: 96px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(54, 124, 255, 0.07), transparent 22%),
    rgba(255, 255, 255, 0.62);
}

.faq-category-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 6px;
}

.faq-category-heading > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.82rem;
  font-weight: 950;
}

.faq-category-heading h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.faq-category-heading p {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 42px rgba(19, 34, 56, 0.06);
  overflow: hidden;
}

.faq-list details[open] {
  border-color: rgba(54, 124, 255, 0.24);
  background:
    radial-gradient(circle at 92% 0%, rgba(66, 217, 181, 0.16), transparent 22%),
    #ffffff;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  content: "+";
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-weight: 950;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 212, 95, 0.32), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(125, 92, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #fffaf1);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-founder-section,
.about-roadmap-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.about-founder-card,
.tivoro-belief-section,
.about-roadmap-section {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 212, 95, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 255, 0.92));
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.about-founder-card p:not(.eyebrow),
.about-roadmap-section > div > p,
.tivoro-belief-section .section-heading p {
  color: var(--muted);
  line-height: 1.75;
}

.about-credentials-grid,
.tivoro-belief-grid,
.about-roadmap {
  display: grid;
  gap: 16px;
}

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

.tivoro-belief-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.about-credentials-grid article,
.tivoro-belief-grid article,
.about-roadmap article {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 48px rgba(19, 34, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-credentials-grid article:hover,
.tivoro-belief-grid article:hover,
.about-roadmap article:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 124, 255, 0.22);
  box-shadow: var(--shadow);
}

.about-credentials-grid article:nth-child(1),
.tivoro-belief-grid article:nth-child(1),
.about-roadmap article:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.about-credentials-grid article:nth-child(2),
.tivoro-belief-grid article:nth-child(2),
.about-roadmap article:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.about-credentials-grid article:nth-child(3),
.tivoro-belief-grid article:nth-child(3),
.about-roadmap article:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.about-credentials-grid article:nth-child(4),
.about-roadmap article:nth-child(4) {
  background: linear-gradient(145deg, #ffffff, #f0ebff);
}

.about-credentials-grid span,
.about-roadmap span {
  display: inline-grid;
  place-items: center;
  width: max-content;
  min-width: 42px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.78rem;
  font-weight: 950;
}

.about-credentials-grid strong,
.tivoro-belief-grid strong,
.about-roadmap strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.about-credentials-grid p,
.tivoro-belief-grid p,
.about-roadmap p {
  color: var(--muted);
  line-height: 1.65;
}

.calm-note {
  background:
    radial-gradient(circle at 88% 10%, rgba(66, 217, 181, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.82);
}

@media (max-width: 1320px) {
  .site-header {
    gap: 12px;
    padding-inline: 18px;
  }

  .brand {
    min-width: 214px;
  }

  .desktop-nav {
    gap: 10px;
    font-size: 0.78rem;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .hero {
    width: min(1160px, calc(100% - 28px));
    gap: 28px;
  }

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

  .hero-path-card {
    min-height: 214px;
  }
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .top-profile-toggle {
    margin-left: auto;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .page-hero,
  .section-heading,
  .trust-tech-section,
  .health-checker-section,
  .career-role-section,
  .decision-advisor-section,
  .about-founder-section,
  .about-roadmap-section,
  .interactive-lab-section,
  .course-builder-section,
  .ambassador-section,
  .choice-pricing-section,
  .finder-section,
  .flagship-section,
  .booking-section,
  .guided-section,
  .parent-panel,
  .faq-preview-section,
  .faq-intro-section,
  .project-showcase,
  .business-sample-studio {
    grid-template-columns: 1fr;
  }

  .finder-copy,
  .booking-copy,
  .guided-copy,
  .career-role-copy,
  .decision-advisor-copy,
  .course-builder-copy,
  .ambassador-copy {
    position: static;
  }

  .audience-switch,
  .home-tool-grid,
  .vertical-grid,
  .student-path-grid,
  .workshop-grid,
  .proof-section,
  .workflow-grid,
  .language-grid,
  .tivoro-belief-grid,
  .about-roadmap,
  .faq-category-nav,
  .choice-pricing-grid,
  .faq-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .date-grid.calendar-grid,
  .calendar-weekdays {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .slot-grid,
  .role-form-grid,
  .role-match-grid,
  .role-plan-grid,
  .decision-result-grid,
  .path-buttons,
  .builder-controls,
  .finder-tabs,
  .finder-fields,
  .booking-fields,
  .sample-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card-grid,
  .batch-structure-grid,
  .ambassador-form-grid,
  .ambassador-next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .sample-image-card img {
    max-height: 300px;
  }

  .website-price-builder {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .price-summary-card {
    position: static;
    grid-column: 1 / -1;
  }

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

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

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

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

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

  .health-insight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .business-mapper-grid,
  .website-price-builder {
    grid-template-columns: 1fr;
  }

  .mapper-instant-estimate,
  .price-summary-card {
    position: static;
    grid-column: auto;
  }

  .price-builder-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .site-header {
    min-height: 118px;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 10px 14px;
  }

  .mobile-menu {
    top: 118px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    max-width: 150px;
    font-size: 0.58rem;
  }

  .top-profile-toggle {
    order: 3;
    width: 100%;
    margin-left: 0;
    gap: 3px;
    padding: 4px;
    justify-content: center;
  }

  .top-profile-toggle span {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.64rem;
  }

  .top-profile-toggle button {
    flex: 1 1 0;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.2rem, 10.4vw, 3.15rem);
    line-height: 1.04;
  }

  .hero h1 {
    font-size: clamp(2.12rem, 9.9vw, 3rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.55rem);
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-visual,
  .hero-media-stack {
    min-height: 0;
    height: auto;
  }

  .page-hero-visual figcaption {
    width: 100%;
    margin-top: 12px;
  }

  .hero-visual > img {
    aspect-ratio: 1.05;
  }

  .hero-main-placeholder {
    height: auto;
    min-height: 260px;
    aspect-ratio: 1.08;
  }

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

  .hero-mini-placeholders .asset-placeholder {
    height: 160px;
  }

  .orbit-card,
  .code-panel,
  .hero-coding-gif {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: 12px;
  }

  .audience-switch,
  .hero-path-chooser,
  .home-tool-grid,
  .role-hook-grid,
  .role-form-grid,
  .role-match-grid,
  .role-plan-grid,
  .vertical-grid,
  .student-path-grid,
  .workshop-grid,
  .proof-section,
  .workflow-grid,
  .language-grid,
  .project-card-grid,
  .path-buttons,
  .builder-plan-grid,
  .faq-category-nav,
  .faq-preview-grid,
  .faq-support-grid,
  .finder-tabs,
  .finder-fields,
  .date-grid,
  .slot-grid,
  .booking-fields,
  .sample-detail-grid,
  .demo-card-grid,
  .before-after-grid,
  .speed-grid,
  .health-score-grid,
  .seo-health-overview,
  .scan-step-list,
  .choice-pricing-section,
  .choice-pricing-grid,
  .health-insight-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-grid,
  .batch-structure-grid,
  .ambassador-form-grid,
  .ambassador-next-grid {
    grid-template-columns: 1fr;
  }

  .learning-price-card strong {
    font-size: 2.35rem;
  }

  .health-whatsapp {
    width: 100%;
  }

  .home-tool-card {
    min-height: auto;
  }

  .career-role-copy {
    position: static;
  }

  .business-page-hero .hero-actions,
  .web-stats-row,
  .demo-filters {
    width: 100%;
  }

  .business-page-hero .hero-actions a,
  .demo-toolbar label,
  .demo-toolbar select {
    width: 100%;
  }

  .demo-filters button {
    flex: 1 1 auto;
  }

  .quote-preset-strip {
    align-items: stretch;
  }

  .quote-preset-strip div,
  .quote-preset-strip button {
    width: 100%;
  }

  .business-sticky-cta {
    position: static;
    width: min(100% - 24px, 1180px);
    margin: 18px auto 0;
    justify-content: space-between;
    transform: none;
  }

  .business-sticky-cta a {
    flex: 1;
    padding-inline: 8px;
    text-align: center;
    font-size: 0.78rem;
  }

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

  .sample-nav div {
    justify-content: flex-start;
  }

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

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

  .sample-image-card img {
    min-height: 180px;
    max-height: 230px;
  }

  .booking-calendar {
    padding: 10px;
    border-radius: 18px;
  }

  .calendar-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .date-grid.calendar-grid,
  .calendar-weekdays {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
  }

  .date-grid.calendar-grid button,
  .calendar-empty {
    min-height: 56px;
    padding: 6px 2px;
    border-radius: 12px;
  }

  .date-grid.calendar-grid span,
  .calendar-weekdays span {
    font-size: 0.58rem;
  }

  .date-grid.calendar-grid strong {
    font-size: 0.98rem;
  }

  .date-grid.calendar-grid small {
    font-size: 0.56rem;
  }

  .date-grid.calendar-grid em {
    display: none;
  }

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

  .faq-cta-section {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }
}

@media (max-width: 390px) {
  .hero,
  .section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 2.08rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .top-profile-toggle span {
    display: none;
  }

  .top-profile-toggle button {
    font-size: 0.68rem;
  }
}

/* Color energy upgrade */
.site-header {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.92), rgba(244, 248, 255, 0.9)),
    rgba(255, 255, 255, 0.82);
}

.brand-mark {
  background: conic-gradient(from 140deg, var(--blue), var(--purple), var(--coral), var(--yellow), var(--mint), var(--blue));
}

.hero {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin-top: 104px;
  min-height: calc(100vh - 104px);
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 212, 95, 0.42), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(125, 92, 255, 0.18), transparent 26%),
    radial-gradient(circle at 72% 82%, rgba(66, 217, 181, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(242, 248, 255, 0.78));
  box-shadow: 0 34px 110px rgba(19, 34, 56, 0.12);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 999px;
  filter: blur(0.2px);
  animation: driftBadge 9s ease-in-out infinite;
}

.hero::before {
  top: 22px;
  right: 34%;
  width: 82px;
  height: 82px;
  background:
    linear-gradient(135deg, var(--yellow), var(--coral));
  opacity: 0.72;
}

.hero::after {
  left: 44%;
  bottom: 28px;
  width: 120px;
  height: 46px;
  background:
    linear-gradient(135deg, var(--mint), var(--sky));
  opacity: 0.7;
}

@keyframes driftBadge {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(12px, -12px, 0) rotate(8deg);
  }
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(54, 124, 255, 0.12), rgba(66, 217, 181, 0.16));
}

h1 {
  background: linear-gradient(120deg, #132238 0%, #2859d8 42%, #7d5cff 72%, #ff7c65 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  max-width: 840px;
  overflow: visible;
  font-size: clamp(2.72rem, 5vw, 5.1rem);
  line-height: 1.04;
}

.trust-strip span:nth-child(1),
.business-grid span:nth-child(4n + 1),
.parent-points span:nth-child(4n + 1) {
  background: #eaf1ff;
  color: #17469f;
}

.trust-strip span:nth-child(2),
.business-grid span:nth-child(4n + 2),
.parent-points span:nth-child(4n + 2) {
  background: #fff2d4;
  color: #87570d;
}

.trust-strip span:nth-child(3),
.business-grid span:nth-child(4n + 3),
.parent-points span:nth-child(4n + 3) {
  background: #e7fbef;
  color: #12624e;
}

.trust-strip span:nth-child(4),
.trust-strip span:nth-child(5),
.business-grid span:nth-child(4n),
.parent-points span:nth-child(4n) {
  background: #f0ebff;
  color: #4830a8;
}

.audience-switch a:nth-child(1) {
  background: linear-gradient(135deg, #eaf1ff, #ffffff);
}

.audience-switch a:nth-child(2) {
  background: linear-gradient(135deg, #fff2d4, #ffffff);
}

.audience-switch a:nth-child(3) {
  background: linear-gradient(135deg, #e7fbef, #ffffff);
}

.vertical-card,
.student-path-grid article,
.workshop-grid article,
.proof-section article,
.session-roadmap article {
  position: relative;
  overflow: hidden;
}

.vertical-card::after,
.student-path-grid article::after,
.workshop-grid article::after,
.proof-section article::after,
.session-roadmap article::after {
  position: absolute;
  right: -28px;
  top: -28px;
  width: 96px;
  height: 96px;
  content: "";
  border-radius: 50%;
  opacity: 0.22;
  background: var(--blue);
  transition: transform 220ms ease, opacity 220ms ease;
}

.vertical-card:hover::after,
.student-path-grid article:hover::after,
.workshop-grid article:hover::after,
.proof-section article:hover::after,
.session-roadmap article:hover::after {
  opacity: 0.38;
  transform: scale(1.25);
}

.vertical-card:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.vertical-card:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #fff2d4);
}

.vertical-card:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.vertical-card:nth-child(4) {
  background: linear-gradient(145deg, #ffffff, #f0ebff);
}

.vertical-card:nth-child(5) {
  background: linear-gradient(145deg, #ffffff, #ffece7);
}

.vertical-card:nth-child(6) {
  background: linear-gradient(145deg, #ffffff, #e7f7ff);
}

.vertical-card:nth-child(1)::after,
.student-path-grid article:nth-child(1)::after {
  background: var(--blue);
}

.vertical-card:nth-child(2)::after,
.student-path-grid article:nth-child(2)::after {
  background: var(--yellow);
}

.vertical-card:nth-child(3)::after,
.student-path-grid article:nth-child(3)::after {
  background: var(--mint);
}

.vertical-card:nth-child(4)::after,
.student-path-grid article:nth-child(4)::after {
  background: var(--purple);
}

.vertical-card:nth-child(5)::after {
  background: var(--coral);
}

.vertical-card:nth-child(6)::after {
  background: var(--sky);
}

.student-path-grid article:nth-child(1) {
  background: linear-gradient(145deg, #ffffff, #eaf1ff);
}

.student-path-grid article:nth-child(2) {
  background: linear-gradient(145deg, #ffffff, #fff7e5);
}

.student-path-grid article:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #e7fbef);
}

.student-path-grid article:nth-child(4) {
  background: linear-gradient(145deg, #ffffff, #f0ebff);
}

.student-path-grid strong {
  display: inline-flex;
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(54, 124, 255, 0.1);
}

.finder-section {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 16%, rgba(66, 217, 181, 0.22), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(255, 212, 95, 0.3), transparent 26%),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 80px rgba(19, 34, 56, 0.08);
}

.solution-finder {
  border-width: 2px;
}

.finder-tabs button:nth-child(1).is-active,
.finder-tabs button:nth-child(1):hover {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.finder-tabs button:nth-child(2).is-active,
.finder-tabs button:nth-child(2):hover {
  background: linear-gradient(135deg, var(--coral), var(--yellow));
}

.finder-tabs button:nth-child(3).is-active,
.finder-tabs button:nth-child(3):hover {
  background: linear-gradient(135deg, var(--mint), var(--blue));
}

.finder-tabs button:nth-child(4).is-active,
.finder-tabs button:nth-child(4):hover {
  background: linear-gradient(135deg, var(--purple), var(--coral));
}

.business-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 212, 95, 0.28), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(66, 217, 181, 0.2), transparent 30%),
    #ffffff;
}

.flagship-section {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 20%, rgba(125, 92, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #f4f8ff);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.booking-section {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 212, 95, 0.24), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(54, 124, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff, #fffaf1);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.date-grid button:nth-child(4n + 1) {
  background: #eaf1ff;
}

.date-grid button:nth-child(4n + 2) {
  background: #fff2d4;
}

.date-grid button:nth-child(4n + 3) {
  background: #e7fbef;
}

.date-grid button:nth-child(4n) {
  background: #f0ebff;
}

.slot-grid button {
  background: #ffffff;
}

.date-grid button.is-selected,
.slot-grid button.is-selected {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.orbit-card-one {
  background: linear-gradient(135deg, #ffffff, #eaf1ff);
}

.orbit-card-two {
  background: linear-gradient(135deg, #ffffff, #fff2d4);
}

.orbit-card-three {
  background: linear-gradient(135deg, #ffffff, #e7fbef);
}

@media (max-width: 700px) {
  .hero {
    margin-top: 132px;
    border-radius: 18px;
  }

  .page-hero {
    margin-top: 132px;
    border-radius: 18px;
  }

  .ai-return-card {
    width: min(100% - 24px, 1180px);
    margin: -8px auto 22px;
    align-items: stretch;
    flex-direction: column;
    border-radius: 18px;
    padding: 18px 16px;
  }

  .ai-return-card .primary-button {
    justify-content: center;
    width: 100%;
  }

  .finder-section,
  .interactive-lab-section,
  .home-tools-section,
  .career-role-section,
  .decision-advisor-section,
  .course-builder-section,
  .batch-pricing-section,
  .project-showcase-section,
  .flagship-section,
  .ambassador-section,
  .booking-section,
  .workflow-section,
  .language-section,
  .faq-preview-section,
  .about-founder-card,
  .tivoro-belief-section,
  .about-roadmap-section,
  .faq-promise,
  .faq-cta-section {
    border-radius: 18px;
    padding: 22px 16px;
  }

  .smart-course-mapper,
  .smart-business-mapper {
    border-radius: 18px;
    padding: 16px;
  }

  .business-mapper-hero textarea {
    min-height: 180px;
    padding: 16px;
    border-radius: 18px;
  }

  .course-search-hero {
    padding: 18px;
    border-radius: 22px;
  }

  .course-search-hero textarea {
    min-height: 185px;
    padding: 16px;
    border-radius: 18px;
  }

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

  .course-prompt-chips button {
    min-height: 44px;
    font-size: 0.82rem;
  }

  .mapper-actions,
  .mapper-actions .primary-button,
  .mapper-actions .secondary-button {
    width: 100%;
  }

  .course-match-chips,
  .course-alternatives {
    align-items: stretch;
    flex-direction: column;
  }

  .recommended-path-card {
    align-items: stretch;
    flex-direction: column;
  }

  .recommended-path-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .course-match-chips strong,
  .course-alternatives button {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .recommended-path-actions .primary-button,
  .recommended-path-actions .secondary-button {
    justify-content: center;
    width: auto;
    text-align: center;
  }

  .course-match-cta,
  .business-match-cta,
  .decision-cta,
  .builder-whatsapp {
    width: 100%;
  }

  .decision-form {
    padding: 16px;
    border-radius: 20px;
  }

  .decision-result-grid {
    grid-template-columns: 1fr;
  }

  .course-manual-tune summary {
    text-align: center;
  }

  .faq-list summary {
    padding: 16px;
    font-size: 0.98rem;
  }

  .faq-list details p {
    padding: 0 16px 16px;
  }

  .tivoro-bot {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .tivoro-bot-toggle {
    max-width: calc(100vw - 24px);
  }

  .tivoro-bot-panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 110px);
  }

  .tivoro-bot-head {
    align-items: flex-start;
  }

  .tivoro-bot-messages {
    max-height: 240px;
  }

  .tivoro-bot-form {
    grid-template-columns: 1fr;
  }

  .tivoro-bot-whatsapp {
    width: calc(100% - 32px);
  }

  .business-page .tivoro-bot {
    right: auto;
    bottom: 76px;
    left: 12px;
  }

  .business-page .tivoro-bot:not(.is-open) .tivoro-bot-toggle {
    grid-template-columns: auto;
    width: 54px;
    min-height: 54px;
    padding: 8px;
    border-radius: 50%;
  }

  .business-page .tivoro-bot:not(.is-open) .tivoro-bot-copy,
  .business-page .tivoro-bot:not(.is-open) .tivoro-bot-ping {
    display: none;
  }

  .business-page .tivoro-bot.is-open {
    right: 12px;
  }
}

@media (max-width: 390px) {
  h1,
  .hero h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.68rem;
  }
}

/* Netflix-style first-screen profile selector */
.profile-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 38px);
  place-items: center;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: clamp(110px, 13vw, 150px) max(16px, calc((100% - 1220px) / 2)) clamp(48px, 7vw, 80px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 16%, rgba(54, 124, 255, 0.34), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(255, 212, 95, 0.22), transparent 24rem),
    radial-gradient(circle at 70% 82%, rgba(66, 217, 181, 0.22), transparent 28rem),
    linear-gradient(135deg, #0b1220 0%, #101b31 52%, #151329 100%);
  isolation: isolate;
}

.profile-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

.profile-hero-copy {
  display: grid;
  justify-items: center;
  max-width: 940px;
  text-align: center;
}

.profile-hero .eyebrow {
  color: #8ee8ff;
}

.profile-hero h1 {
  max-width: none;
  color: #ffffff;
  font-size: clamp(3.1rem, 8vw, 7.2rem);
  line-height: 0.92;
}

.profile-hero .hero-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.profile-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  width: min(1080px, 100%);
}

.profile-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 390px;
  padding: clamp(16px, 2.4vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateY(0) scale(1);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.profile-card:hover,
.profile-card:focus {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.36);
  transform: translateY(-10px) scale(1.025);
}

.profile-card.is-selected {
  border-color: rgba(142, 232, 255, 0.86);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 4px rgba(142, 232, 255, 0.12), 0 34px 96px rgba(0, 0, 0, 0.36);
}

.profile-card::after {
  position: absolute;
  right: -54px;
  bottom: -64px;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 999px;
  opacity: 0.28;
  background: var(--blue);
  transition: transform 220ms ease, opacity 220ms ease;
}

.profile-card:hover::after,
.profile-card:focus::after {
  opacity: 0.42;
  transform: scale(1.25);
}

.profile-parent::after {
  background: var(--yellow);
}

.profile-business::after {
  background: var(--mint);
}

.profile-card figure {
  position: relative;
  z-index: 1;
  height: 190px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.profile-card:hover img,
.profile-card:focus img {
  transform: scale(1.06);
}

.profile-card span,
.profile-card strong,
.profile-card p {
  position: relative;
  z-index: 1;
}

.profile-card span {
  width: fit-content;
  padding: 7px 11px;
  color: #061121;
  border-radius: 999px;
  background: #8ee8ff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-parent span {
  background: var(--yellow);
}

.profile-business span {
  background: var(--mint);
}

.profile-card strong {
  color: #ffffff;
  font-size: clamp(1.26rem, 2vw, 1.7rem);
  line-height: 1.08;
}

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

.profile-quick-actions,
.profile-trust-strip {
  justify-content: center;
}

.profile-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-quick-actions a {
  min-height: 42px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.profile-quick-actions a:hover,
.profile-quick-actions a:focus {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.profile-trust-strip span {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.codelab-home-page {
  background:
    radial-gradient(circle at 12% 6%, rgba(54, 124, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 90% 8%, rgba(66, 217, 181, 0.16), transparent 28rem),
    linear-gradient(180deg, #08111f 0 38rem, #f6f9ff 38rem 100%);
}

.codelab-home-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 31, 0.78);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
}

.codelab-home-page .brand strong,
.codelab-home-page .desktop-nav a {
  color: #ffffff;
}

.codelab-home-page .brand small {
  color: rgba(255, 255, 255, 0.62);
}

.codelab-home-page .top-profile-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.codelab-home-page .top-profile-toggle button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.codelab-home-page .menu-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.codelab-home-page .menu-button span {
  background: #ffffff;
}

.codelab-home-page .mobile-menu {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 17, 31, 0.96);
}

.codelab-home-page .mobile-menu a {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.codelab-home-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  align-items: center;
  min-height: 100vh;
  padding-bottom: clamp(38px, 6vw, 72px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 24%, rgba(142, 232, 255, 0.2), transparent 22rem),
    radial-gradient(circle at 20% 82%, rgba(255, 212, 95, 0.14), transparent 26rem),
    linear-gradient(135deg, #08111f 0%, #101c34 52%, #160f2c 100%);
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
}

.codelab-home-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(246, 249, 255, 0.96));
}

.codelab-hero-copy {
  position: relative;
  z-index: 1;
  justify-items: start;
  text-align: left;
}

.codelab-hero-copy h1 {
  max-width: 880px;
}

.codelab-hero-copy .hero-lead {
  max-width: 680px;
}

.codelab-signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 22px;
}

.codelab-signal-strip span {
  min-height: 34px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  animation: codelabSignalFloat 4.6s ease-in-out infinite;
}

.codelab-signal-strip span:nth-child(2n) {
  animation-delay: 700ms;
}

.codelab-signal-strip span:nth-child(3n) {
  animation-delay: 1300ms;
}

@keyframes codelabSignalFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

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

.codelab-hero-actions .primary-button,
.codelab-hero-actions .secondary-button {
  min-height: 50px;
  border-radius: 18px;
}

.codelab-hero-actions .secondary-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.codelab-ai-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(100%, 500px);
  padding: clamp(16px, 2.4vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(142, 232, 255, 0.26);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(8, 17, 31, 0.62);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(24px);
}

.codelab-ai-panel::before {
  position: absolute;
  inset: -90px -80px auto auto;
  width: 190px;
  height: 190px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(66, 217, 181, 0.42), transparent 66%);
  filter: blur(4px);
}

.codelab-ai-panel::after {
  position: absolute;
  inset: auto auto -92px -76px;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(125, 92, 255, 0.42), transparent 64%);
  filter: blur(6px);
}

.codelab-ai-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 950;
}

.codelab-ai-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

.codelab-ai-top span:nth-child(2) {
  background: var(--yellow);
}

.codelab-ai-top span:nth-child(3) {
  background: var(--coral);
}

.codelab-ai-top strong {
  margin-left: 6px;
}

.codelab-ai-status {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.codelab-ai-status span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.codelab-ai-status strong {
  color: #08111f;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--yellow));
  font-size: 0.82rem;
  font-weight: 950;
}

.codelab-ai-chat {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.codelab-ai-chat p {
  width: fit-content;
  max-width: 90%;
  margin: 0;
  padding: 11px 13px;
  color: #132238;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  line-height: 1.45;
}

.codelab-ai-chat p:nth-child(2) {
  margin-left: auto;
  background: linear-gradient(135deg, var(--mint), var(--yellow));
}

.codelab-ai-progress {
  position: relative;
  z-index: 1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.codelab-ai-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--yellow));
  box-shadow: 0 0 22px rgba(66, 217, 181, 0.42);
}

.codelab-choice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.codelab-choice-grid a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 10px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.codelab-choice-grid a:hover,
.codelab-choice-grid a:focus {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px) scale(1.01);
}

.codelab-choice-grid img {
  grid-row: span 2;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 15px;
}

.codelab-choice-grid span {
  color: #8ee8ff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.codelab-choice-grid strong {
  color: #ffffff;
  line-height: 1.18;
}

.codelab-manual-routes {
  margin-top: clamp(28px, 5vw, 52px);
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 18%, rgba(66, 217, 181, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 22px 70px rgba(19, 34, 56, 0.08);
}

.codelab-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.codelab-route-grid a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(54, 124, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(19, 34, 56, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.codelab-route-grid a::after {
  position: absolute;
  right: -44px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 999px;
  background: rgba(54, 124, 255, 0.11);
  transition: transform 220ms ease;
}

.codelab-route-grid a:hover,
.codelab-route-grid a:focus {
  border-color: rgba(54, 124, 255, 0.28);
  box-shadow: 0 20px 48px rgba(54, 124, 255, 0.12);
  transform: translateY(-3px);
}

.codelab-route-grid a:hover::after,
.codelab-route-grid a:focus::after {
  transform: scale(1.28);
}

.codelab-route-grid span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 6px 9px;
  color: #17469f;
  border-radius: 999px;
  background: #eaf1ff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.codelab-route-grid strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.codelab-route-grid p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.5;
}

[data-profile-section][hidden] {
  display: none !important;
}

body:not(.profile-filter-ready) [data-profile-section] {
  display: none !important;
}

[data-profile-nav][hidden] {
  display: none !important;
}

.profile-selected-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin-top: clamp(26px, 5vw, 50px);
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 18%, rgba(54, 124, 255, 0.14), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(255, 212, 95, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(19, 34, 56, 0.09);
}

.profile-selected-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.profile-selected-panel p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.profile-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.profile-switcher button {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-weight: 950;
}

.profile-switcher button.is-selected {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

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

  .codelab-hero-copy {
    justify-items: center;
    text-align: center;
  }

  .codelab-ai-panel {
    width: min(720px, 100%);
  }

  .profile-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-card {
    min-height: 350px;
  }

  .profile-card figure {
    height: 160px;
  }
}

@media (max-width: 820px) {
  .codelab-home-hero {
    padding-top: 132px;
  }

  .codelab-signal-strip {
    justify-content: center;
  }

  .codelab-hero-actions {
    justify-content: center;
  }

  .codelab-hero-actions .primary-button,
  .codelab-hero-actions .secondary-button {
    width: 100%;
  }

  .codelab-choice-grid a {
    grid-template-columns: 58px minmax(0, 1fr);
    border-radius: 16px;
  }

  .codelab-choice-grid img {
    width: 58px;
    height: 58px;
    border-radius: 13px;
  }

  .codelab-route-grid {
    grid-template-columns: 1fr;
  }

  .profile-hero {
    min-height: auto;
    padding-top: 150px;
  }

  .profile-hero.codelab-home-hero {
    padding-top: 132px;
  }

  .profile-selector {
    grid-template-columns: 1fr;
    width: min(520px, 100%);
  }

  .profile-card {
    min-height: auto;
    grid-template-columns: 112px 1fr;
    align-items: center;
    gap: 12px 16px;
    border-radius: 22px;
  }

  .profile-card figure {
    grid-row: span 3;
    height: 112px;
    border-radius: 18px;
  }
}

@media (max-width: 700px) {
  .codelab-home-page .profile-hero.codelab-home-hero {
    margin-top: 0;
    padding-top: 150px;
    border-radius: 0;
  }

  .codelab-home-page .codelab-ai-panel {
    border-radius: 22px;
  }

  .codelab-home-page .codelab-signal-strip span {
    font-size: 0.76rem;
  }
}

@media (max-width: 760px) {
  .pricing-table-wrap {
    overflow-x: visible;
    border: 0;
    background: transparent;
  }

  .pricing-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    padding: 14px;
    border: 1px solid rgba(19, 34, 56, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(19, 34, 56, 0.07);
  }

  .pricing-table td {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(19, 34, 56, 0.07);
  }

  .pricing-table td:first-child {
    display: block;
    padding: 0 0 12px;
    color: var(--blue);
    font-size: 1rem;
  }

  .pricing-table td:first-child::before {
    display: none;
  }

  .pricing-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
  }

  .pricing-table td:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .profile-hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.8rem);
  }

  .profile-hero .hero-lead {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .profile-card {
    grid-template-columns: 88px 1fr;
    padding: 14px;
  }

  .profile-card figure {
    height: 88px;
  }

  .profile-card strong {
    font-size: 1.08rem;
  }

  .profile-card p {
    font-size: 0.9rem;
  }

  .profile-selected-panel {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1180px);
  }

  .profile-switcher {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .about-founder-section,
  .about-roadmap-section,
  .business-mapper-grid,
  .quote-home-section,
  .quote-home-flow,
  .website-price-builder,
  .price-builder-steps,
  .feature-price-grid,
  .tivoro-belief-grid,
  .about-credentials-grid,
  .about-roadmap {
    grid-template-columns: 1fr;
  }

  .about-founder-card,
  .quote-home-section,
  .choice-pricing-section,
  .website-price-builder-section,
  .price-base-card,
  .price-builder-panel,
  .price-summary-card,
  .tivoro-belief-section,
  .about-roadmap-section {
    border-radius: 18px;
    padding: 22px 16px;
  }

  .price-summary-card {
    position: static;
  }

  .mapper-instant-estimate {
    position: static;
    border-radius: 18px;
  }

  .quote-home-flow article:nth-child(1) {
    grid-row: auto;
  }

  .quote-base-preview strong,
  .price-base-card > strong,
  .price-summary-card > strong {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .extra-page-control {
    align-items: stretch;
  }

  .page-stepper {
    width: 100%;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
  }

  .price-core-lines article {
    align-items: flex-start;
  }

  .about-credentials-grid article,
  .tivoro-belief-grid article,
  .about-roadmap article {
    padding: 18px;
  }
}

.growth-partner-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(66, 217, 181, 0.18), transparent 26%),
    radial-gradient(circle at 90% 14%, rgba(255, 212, 95, 0.22), transparent 28%),
    var(--bg);
}

.growth-ai-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 130px);
  margin: 96px auto 22px;
  padding: clamp(26px, 5vw, 60px);
  overflow: hidden;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 16%, rgba(54, 124, 255, 0.16), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(255, 212, 95, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 255, 0.92));
  box-shadow: 0 32px 100px rgba(19, 34, 56, 0.1);
}

.growth-ai-copy h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7.2rem);
  letter-spacing: 0;
  line-height: 0.95;
}

.growth-ai-copy .hero-lead {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.growth-promise-card {
  display: inline-grid;
  gap: 4px;
  margin-top: 20px;
  padding: 13px 16px;
  border: 1px solid rgba(31, 174, 98, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 212, 95, 0.3), transparent 28%),
    linear-gradient(135deg, rgba(231, 251, 239, 0.96), rgba(255, 255, 255, 0.92));
  box-shadow: 0 14px 38px rgba(19, 34, 56, 0.08);
}

.growth-promise-card span {
  color: #116d3a;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.growth-promise-card strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.25;
}

.growth-ai-guide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  max-width: 760px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 18%, rgba(54, 124, 255, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(19, 34, 56, 0.08);
}

.growth-ai-guide-card div {
  display: grid;
  gap: 5px;
}

.growth-ai-guide-card span {
  width: fit-content;
  padding: 6px 9px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.72rem;
  font-weight: 950;
}

.growth-ai-guide-card strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.growth-ai-guide-card p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.45;
}

.growth-ai-actions,
.growth-ai-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.growth-ai-proof span {
  padding: 9px 12px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
}

.growth-ai-visual {
  position: relative;
  display: grid;
  gap: 14px;
}

.growth-ai-visual::before {
  position: absolute;
  inset: -22px;
  z-index: 0;
  content: "";
  border-radius: 36px;
  background: conic-gradient(from 140deg, rgba(54, 124, 255, 0.2), rgba(66, 217, 181, 0.24), rgba(255, 212, 95, 0.28), rgba(54, 124, 255, 0.2));
  filter: blur(16px);
  animation: growthPulse 5s ease-in-out infinite;
}

.growth-ai-visual img,
.growth-ai-visual figcaption {
  position: relative;
  z-index: 1;
}

.growth-ai-visual img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.18);
}

.growth-ai-visual figcaption {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 20px;
  background: #132238;
  box-shadow: 0 18px 54px rgba(19, 34, 56, 0.18);
}

.growth-ai-visual figcaption strong {
  color: #ffd45f;
}

.growth-ai-visual figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

@keyframes growthPulse {
  0%, 100% { transform: scale(0.98) rotate(0deg); opacity: 0.66; }
  50% { transform: scale(1.02) rotate(4deg); opacity: 1; }
}

.growth-journey-section,
.growth-live-section,
.growth-blueprint-section {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.08);
}

.growth-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.growth-profile-grid button {
  display: grid;
  gap: 10px;
  padding: 14px;
  text-align: left;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f7fbff);
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(19, 34, 56, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.growth-profile-grid button:hover,
.growth-profile-grid button.is-active {
  transform: translateY(-6px);
  border-color: rgba(54, 124, 255, 0.24);
  box-shadow: 0 24px 70px rgba(19, 34, 56, 0.12);
}

.growth-profile-grid button.is-active {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 212, 95, 0.32), transparent 26%),
    linear-gradient(145deg, #ffffff, #eaf1ff);
}

.growth-profile-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
}

.growth-profile-grid span {
  width: fit-content;
  padding: 7px 10px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.76rem;
  font-weight: 950;
}

.growth-profile-grid strong {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 950;
}

.growth-profile-grid p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.growth-live-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1.16fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.growth-ai-form,
.growth-live-preview,
.growth-report-card {
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 52px rgba(19, 34, 56, 0.08);
}

.growth-ai-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
}

.growth-form-head {
  display: grid;
  gap: 8px;
}

.growth-form-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.growth-ai-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 950;
}

.growth-ai-form select {
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 14px;
  background: #ffffff;
  font: inherit;
  font-weight: 850;
}

.growth-progress-wrap {
  display: grid;
  gap: 8px;
  padding: 13px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f1f6ff);
}

.growth-progress-wrap > div:first-child {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 950;
}

.growth-progress-track,
.growth-mini-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(19, 34, 56, 0.08);
}

.growth-progress-track span,
.growth-mini-bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--yellow));
  transition: width 420ms ease;
}

.growth-live-preview {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 212, 95, 0.3), transparent 28%),
    linear-gradient(145deg, #ffffff, #fffaf0);
}

.growth-preview-head {
  display: grid;
  gap: 5px;
}

.growth-preview-head span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.growth-preview-head strong {
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.growth-score-ring {
  --score: 280deg;
  display: grid;
  place-items: center;
  width: min(220px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 56%, transparent 57%),
    conic-gradient(var(--blue) 0 var(--score), rgba(19, 34, 56, 0.08) var(--score) 360deg);
  box-shadow: inset 0 0 0 1px rgba(19, 34, 56, 0.06), 0 18px 54px rgba(19, 34, 56, 0.09);
}

.growth-score-ring strong {
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 0.9;
}

.growth-score-ring span {
  max-width: 110px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.growth-bar-card,
.growth-estimate-card {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.growth-bar-card > div:first-child,
.growth-estimate-card {
  color: var(--muted);
  font-weight: 900;
}

.growth-bar-card strong,
.growth-estimate-card strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.growth-feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.growth-feature-cloud span {
  padding: 8px 10px;
  color: var(--ink);
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

.growth-report-card {
  overflow: hidden;
}

.growth-report-cover {
  display: grid;
  gap: 9px;
  padding: clamp(24px, 4vw, 40px);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 212, 95, 0.34), transparent 26%),
    linear-gradient(135deg, #132238, #17469f);
}

.growth-report-cover span {
  color: #ffd45f;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.growth-report-cover h3 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.growth-report-cover p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.growth-report-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 8px;
}

.growth-report-badges em {
  padding: 8px 10px;
  color: #132238;
  border-radius: 999px;
  background: linear-gradient(135deg, #42d9b5, #ffd45f);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
}

.growth-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
}

.growth-report-grid section {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f7fbff);
}

.growth-report-grid span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
}

.growth-report-grid strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.growth-report-grid p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.growth-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 clamp(18px, 3vw, 28px) clamp(18px, 3vw, 28px);
}

@media (max-width: 980px) {
  .growth-ai-hero,
  .growth-live-section {
    grid-template-columns: 1fr;
  }

  .growth-live-preview {
    position: static;
  }

  .growth-profile-grid,
  .growth-report-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .growth-ai-hero {
    width: min(100% - 24px, 1180px);
    min-height: auto;
    margin-top: 132px;
    padding: 22px 16px;
    border-radius: 22px;
  }

  .growth-ai-visual img {
    min-height: 240px;
  }

  .growth-journey-section,
  .growth-live-section,
  .growth-blueprint-section {
    border-radius: 18px;
    padding: 22px 16px;
  }

  .growth-report-actions,
  .growth-report-actions .primary-button,
  .growth-report-actions .secondary-button {
    width: 100%;
  }

  .growth-ai-guide-card {
    grid-template-columns: 1fr;
  }
}

@media print {
  .growth-partner-page .site-header,
  .growth-partner-page .mobile-menu,
  .growth-partner-page .growth-ai-hero,
  .growth-partner-page .growth-journey-section,
  .growth-partner-page .growth-live-section,
  .growth-partner-page .site-footer,
  .growth-partner-page .tivoro-bot,
  .growth-report-actions {
    display: none !important;
  }

  .growth-blueprint-section,
  .growth-report-card {
    box-shadow: none !important;
  }
}

.ai-chat-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(66, 217, 181, 0.18), transparent 26%),
    radial-gradient(circle at 90% 14%, rgba(255, 212, 95, 0.2), transparent 28%),
    linear-gradient(135deg, #f7fbff, #fffaf1);
}

.ai-chat-page .tivoro-bot {
  display: none !important;
}

.ai-chat-main {
  width: min(1180px, calc(100% - 32px));
  margin: 112px auto 32px;
}

.ai-chat-hero {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 212, 95, 0.26), transparent 28%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(19, 34, 56, 0.08);
}

.ai-chat-hero h1 {
  font-size: clamp(2.45rem, 6vw, 5.7rem);
  line-height: 0.96;
}

.ai-chat-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.55;
}

.ai-chat-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.ai-chat-card,
.ai-live-plan,
.ai-report-shell {
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 80px rgba(19, 34, 56, 0.09);
}

.ai-chat-card {
  overflow: hidden;
}

.ai-chat-topbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #132238, #17469f);
}

.ai-chat-topbar div {
  display: flex;
  gap: 6px;
}

.ai-chat-topbar div span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #42d9b5;
}

.ai-chat-topbar div span:nth-child(2) {
  background: #ffd45f;
}

.ai-chat-topbar div span:nth-child(3) {
  background: #ff6f61;
}

.ai-chat-topbar strong,
.ai-chat-topbar em {
  color: inherit;
  font-style: normal;
  font-weight: 950;
}

.ai-chat-topbar em {
  opacity: 0.72;
  font-size: 0.8rem;
}

.ai-journey-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  background:
    radial-gradient(circle at 96% 10%, rgba(255, 212, 95, 0.22), transparent 26%),
    linear-gradient(135deg, #ffffff, #f6fbff);
}

.ai-journey-switch span {
  margin-right: 2px;
  color: #17469f;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-journey-switch button {
  min-height: 34px;
  padding: 7px 11px;
  color: var(--ink);
  border: 1px solid rgba(54, 124, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(19, 34, 56, 0.06);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ai-journey-switch button:hover,
.ai-journey-switch button:focus-visible,
.ai-journey-switch button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 12px 26px rgba(54, 124, 255, 0.2);
  transform: translateY(-1px);
}

.ai-chat-messages {
  display: grid;
  gap: 10px;
  min-height: 360px;
  max-height: 430px;
  overflow-y: auto;
  padding: clamp(16px, 3vw, 24px);
  background:
    radial-gradient(circle at 8% 12%, rgba(54, 124, 255, 0.07), transparent 26%),
    #ffffff;
}

.ai-bubble {
  width: fit-content;
  max-width: min(86%, 620px);
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--ink);
  background: #eef5ff;
  font-weight: 850;
  line-height: 1.5;
  animation: aiBubbleIn 260ms ease both;
}

.ai-bubble.is-user {
  justify-self: end;
  color: #132238;
  background: linear-gradient(135deg, #42d9b5, #ffd45f);
}

@keyframes aiBubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 16px;
  border-top: 1px solid rgba(19, 34, 56, 0.08);
  background: rgba(247, 251, 255, 0.92);
}

.ai-chat-options.is-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.ai-chat-options button {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--ink);
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ai-chat-options .ai-profile-choice {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 184px;
  padding: 9px;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(66, 217, 181, 0.18), transparent 26%),
    linear-gradient(145deg, #ffffff, #f8fbff);
  box-shadow: 0 10px 26px rgba(19, 34, 56, 0.07);
}

.ai-profile-choice figure {
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
  aspect-ratio: 2.15;
  background: #eef5ff;
}

.ai-profile-choice img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.ai-profile-choice span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-profile-choice strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.18;
}

.ai-profile-choice p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.36;
}

.ai-chat-options button:hover,
.ai-chat-options button:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 12px 28px rgba(54, 124, 255, 0.22);
  transform: translateY(-2px);
}

.ai-chat-options .ai-profile-choice:hover,
.ai-chat-options .ai-profile-choice:focus-visible {
  color: var(--ink);
  border-color: rgba(54, 124, 255, 0.28);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 212, 95, 0.24), transparent 26%),
    linear-gradient(135deg, #ffffff, #f2fff9);
}

.ai-profile-choice:hover img,
.ai-profile-choice:focus-visible img {
  transform: scale(1.05);
}

.ai-live-plan {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 212, 95, 0.3), transparent 28%),
    linear-gradient(145deg, #ffffff, #fff8e7);
}

.ai-live-plan > span {
  width: fit-content;
  padding: 7px 10px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-live-plan h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.ai-score-row {
  display: grid;
  gap: 8px;
}

.ai-score-row strong {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
}

.ai-score-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(19, 34, 56, 0.08);
}

.ai-score-track i {
  display: block;
  width: 35%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--yellow));
  transition: width 360ms ease;
}

.ai-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-feature-list span,
.ai-feature-list em {
  padding: 8px 10px;
  color: var(--ink);
  border: 1px solid rgba(54, 124, 255, 0.14);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 900;
}

.ai-estimate-box {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #e7fbef);
}

.ai-estimate-box small {
  color: var(--muted);
  font-weight: 950;
}

.ai-estimate-box strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.ai-report-shell {
  margin-top: 18px;
  overflow: hidden;
}

.ai-report-cover {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 4vw, 38px);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 212, 95, 0.34), transparent 26%),
    linear-gradient(135deg, #132238, #17469f);
}

.ai-report-cover span {
  color: #ffd45f;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-report-cover h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

.ai-report-cover p {
  color: rgba(255, 255, 255, 0.78);
}

.ai-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(16px, 3vw, 26px);
}

.ai-report-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f7fbff);
}

.ai-report-grid span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
}

.ai-report-grid strong {
  color: var(--ink);
  font-weight: 950;
}

.ai-report-grid p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ai-result-next {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 clamp(16px, 3vw, 26px) 18px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(54, 124, 255, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(54, 124, 255, 0.12), transparent 1px) 0 0 / 24px 24px,
    radial-gradient(circle at 92% 8%, rgba(255, 212, 95, 0.34), transparent 24%),
    radial-gradient(circle at 10% 18%, rgba(66, 217, 181, 0.2), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 20px 54px rgba(19, 34, 56, 0.11);
}

.ai-result-next::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--blue), var(--mint), var(--yellow));
}

.ai-result-next span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 7px;
  padding: 7px 10px;
  color: #17469f;
  border: 1px solid rgba(54, 124, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-result-next span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: 0 0 0 4px rgba(66, 217, 181, 0.14);
}

.ai-result-next strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.24rem, 2.2vw, 1.8rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.ai-result-next p {
  max-width: 620px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.ai-result-next-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px;
  justify-content: flex-start;
  justify-items: stretch;
  min-width: 0;
  max-width: 100%;
}

.ai-result-next-actions .primary-button,
.ai-result-next-actions .secondary-button {
  min-height: 46px;
  min-width: 0;
  max-width: 100%;
  padding-inline: 14px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(54, 124, 255, 0.14);
  white-space: normal;
  text-align: center;
}

.ai-result-next-actions .secondary-button {
  color: #17469f;
  border-color: rgba(54, 124, 255, 0.22);
  background: rgba(255, 255, 255, 0.88);
}

.ai-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 clamp(16px, 3vw, 26px) clamp(16px, 3vw, 26px);
}

@media (max-width: 980px) {
  .ai-chat-workspace,
  .ai-report-grid {
    grid-template-columns: 1fr;
  }

  .ai-live-plan {
    position: static;
  }
}

@media (max-width: 760px) {
  .ai-chat-main {
    width: min(100% - 24px, 1180px);
    margin-top: 132px;
  }

  .ai-chat-hero {
    align-items: stretch;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px 16px;
  }

  .ai-chat-messages {
    min-height: 320px;
  }

  .ai-journey-switch {
    display: grid;
    grid-template-columns: 1fr repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 9px;
  }

  .ai-journey-switch span {
    align-self: center;
    margin: 0;
    font-size: 0.66rem;
  }

  .ai-journey-switch button {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 0.76rem;
  }

  .ai-chat-options,
  .ai-result-next,
  .ai-report-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ai-result-next {
    grid-template-columns: 1fr;
  }

  .ai-chat-options.is-profile-grid {
    grid-template-columns: 1fr;
  }

  .ai-chat-options .ai-profile-choice {
    min-height: auto;
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 10px;
    align-items: center;
  }

  .ai-profile-choice figure {
    grid-row: span 3;
    aspect-ratio: 1;
  }

  .ai-chat-options button,
  .ai-report-actions .primary-button,
  .ai-report-actions .secondary-button {
    width: 100%;
  }

  .ai-result-next-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .ai-result-next-actions .primary-button,
  .ai-result-next-actions .secondary-button {
    justify-content: center;
    width: auto;
  }
}

@media (max-width: 430px) {
  .ai-journey-switch,
  .recommended-path-actions,
  .ai-result-next-actions {
    grid-template-columns: 1fr;
  }

  .ai-journey-switch span {
    text-align: center;
  }

  .recommended-path-actions .primary-button,
  .recommended-path-actions .secondary-button,
  .ai-result-next-actions .primary-button,
  .ai-result-next-actions .secondary-button {
    width: 100%;
  }
}

/* Tivoro premium platform shell */
.tivoro-premium-page {
  background:
    radial-gradient(circle at 12% 5%, rgba(54, 124, 255, 0.22), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(66, 217, 181, 0.18), transparent 28rem),
    radial-gradient(circle at 62% 0%, rgba(255, 212, 95, 0.12), transparent 22rem),
    linear-gradient(180deg, #08111f 0 34rem, #f6f9ff 34rem 100%);
}

.tivoro-premium-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 31, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.tivoro-premium-page .brand strong,
.tivoro-premium-page .desktop-nav a {
  color: #ffffff;
}

.tivoro-premium-page .brand small {
  color: rgba(255, 255, 255, 0.62);
}

.tivoro-premium-page .top-profile-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.tivoro-premium-page .top-profile-toggle span {
  background: linear-gradient(135deg, var(--coral), var(--purple));
}

.tivoro-premium-page .top-profile-toggle button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.tivoro-premium-page .top-profile-toggle button:hover,
.tivoro-premium-page .top-profile-toggle button.is-selected {
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.tivoro-premium-page .menu-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.tivoro-premium-page .menu-button span {
  background: #ffffff;
}

.tivoro-premium-page .mobile-menu {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 17, 31, 0.96);
}

.tivoro-premium-page .mobile-menu a {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.tivoro-premium-page:not(.codelab-home-page) .page-hero,
.tivoro-premium-page .ai-chat-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(142, 232, 255, 0.16);
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 88% 10%, rgba(66, 217, 181, 0.24), transparent 24rem),
    radial-gradient(circle at 18% 82%, rgba(255, 212, 95, 0.14), transparent 26rem),
    linear-gradient(135deg, #08111f 0%, #101c34 54%, #160f2c 100%);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
}

.tivoro-premium-page:not(.codelab-home-page) .page-hero::after,
.tivoro-premium-page .ai-chat-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(246, 249, 255, 0.92));
}

.tivoro-premium-page .page-hero > *,
.tivoro-premium-page .ai-chat-hero > * {
  position: relative;
  z-index: 1;
}

.tivoro-premium-page .page-hero .eyebrow,
.tivoro-premium-page .ai-chat-hero .eyebrow {
  color: #8ee8ff;
}

.tivoro-premium-page .page-hero h1,
.tivoro-premium-page .ai-chat-hero h1 {
  color: #ffffff;
}

.tivoro-premium-page .page-hero .hero-lead,
.tivoro-premium-page .ai-chat-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.tivoro-premium-page .page-hero .secondary-button,
.tivoro-premium-page .ai-chat-hero .secondary-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.tivoro-premium-page .page-hero-visual,
.tivoro-premium-page .ai-chat-card,
.tivoro-premium-page .ai-live-plan,
.tivoro-premium-page .ai-report-shell {
  border-color: rgba(142, 232, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(8, 17, 31, 0.38);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.tivoro-premium-page .ai-live-plan {
  color: var(--ink);
  border-color: rgba(54, 124, 255, 0.14);
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 212, 95, 0.26), transparent 26%),
    radial-gradient(circle at 12% 16%, rgba(66, 217, 181, 0.14), transparent 30%),
    linear-gradient(145deg, #ffffff, #f4fbff);
  box-shadow: 0 24px 68px rgba(19, 34, 56, 0.12);
  backdrop-filter: none;
}

.tivoro-premium-page .ai-live-plan > span {
  color: #08111f;
  background: linear-gradient(135deg, var(--mint), var(--yellow));
}

.tivoro-premium-page .ai-live-plan h2,
.tivoro-premium-page .ai-score-row strong,
.tivoro-premium-page .ai-estimate-box strong {
  color: #101c34;
}

.tivoro-premium-page .ai-feature-list span,
.tivoro-premium-page .ai-feature-list em {
  color: #101c34;
  border-color: rgba(54, 124, 255, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.tivoro-premium-page .ai-estimate-box {
  border: 1px solid rgba(66, 217, 181, 0.2);
  background: linear-gradient(135deg, #ffffff, #e9fff6);
}

.tivoro-premium-page .page-hero-visual img {
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.tivoro-premium-page .page-hero-visual figcaption {
  color: #08111f;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 248, 255, 0.94));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.tivoro-premium-page .section,
.tivoro-premium-page .ai-return-card,
.tivoro-premium-page .booking-section {
  border: 1px solid rgba(19, 34, 56, 0.08);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 212, 95, 0.16), transparent 26%),
    radial-gradient(circle at 10% 18%, rgba(66, 217, 181, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.9));
  box-shadow: 0 26px 78px rgba(19, 34, 56, 0.09);
}

.tivoro-premium-page .guided-form,
.tivoro-premium-page .role-matcher,
.tivoro-premium-page .decision-form,
.tivoro-premium-page .booking-planner,
.tivoro-premium-page .website-price-builder,
.tivoro-premium-page .business-mapper-grid,
.tivoro-premium-page .health-checker-card,
.tivoro-premium-page .faq-promise,
.tivoro-premium-page .about-founder-card {
  border-color: rgba(54, 124, 255, 0.12);
  background:
    radial-gradient(circle at 88% 8%, rgba(66, 217, 181, 0.14), transparent 28%),
    linear-gradient(145deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 52px rgba(19, 34, 56, 0.08);
}

.tivoro-premium-page .guided-mini-steps span,
.tivoro-premium-page .role-hook-grid span,
.tivoro-premium-page .web-stats-row span,
.tivoro-premium-page .tivoro-trust-grid article,
.tivoro-premium-page .faq-support-grid article,
.tivoro-premium-page .about-credentials-grid article,
.tivoro-premium-page .workflow-grid article,
.tivoro-premium-page .workshop-grid article,
.tivoro-premium-page .codelab-route-grid a {
  border-color: rgba(54, 124, 255, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(19, 34, 56, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tivoro-premium-page .guided-mini-steps span:hover,
.tivoro-premium-page .role-hook-grid span:hover,
.tivoro-premium-page .tivoro-trust-grid article:hover,
.tivoro-premium-page .faq-support-grid article:hover,
.tivoro-premium-page .about-credentials-grid article:hover,
.tivoro-premium-page .workflow-grid article:hover,
.tivoro-premium-page .workshop-grid article:hover,
.tivoro-premium-page .codelab-route-grid a:hover {
  border-color: rgba(54, 124, 255, 0.26);
  box-shadow: 0 24px 58px rgba(54, 124, 255, 0.13);
  transform: translateY(-3px);
}

.tivoro-premium-page .ai-return-card {
  background:
    radial-gradient(circle at 10% 15%, rgba(142, 232, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #101c34, #162044);
}

.tivoro-premium-page .ai-return-card span {
  color: #8ee8ff;
}

.tivoro-premium-page .ai-return-card strong {
  color: #ffffff;
}

.tivoro-premium-page .ai-return-card p {
  color: rgba(255, 255, 255, 0.72);
}

.tivoro-premium-page .tivoro-bot-toggle {
  color: #101c34;
  border-color: rgba(255, 255, 255, 0.54);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(135deg, var(--mint), var(--yellow));
  box-shadow: 0 20px 52px rgba(23, 70, 159, 0.2), 0 0 0 8px rgba(66, 217, 181, 0.12);
}

.tivoro-premium-page .tivoro-bot-copy strong,
.tivoro-premium-page .tivoro-bot-copy small {
  color: #101c34;
}

.tivoro-premium-page .tivoro-bot-icon {
  color: #ffd45f;
  background: #101c34;
}

@media (max-width: 700px) {
  .tivoro-premium-page:not(.codelab-home-page) .page-hero,
  .tivoro-premium-page .ai-chat-hero {
    border-radius: 18px;
  }

  .tivoro-premium-page .page-hero-visual,
  .tivoro-premium-page .ai-chat-card,
  .tivoro-premium-page .ai-live-plan,
  .tivoro-premium-page .ai-report-shell {
    border-radius: 20px;
  }
}

@media (max-width: 1180px) {
  .trust-score-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .digital-trust-section {
    scroll-margin-top: 160px;
    gap: 14px;
    border-radius: 20px;
    padding: 12px 10px 22px;
  }

  .trust-score-form {
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .trust-score-copy {
    gap: 14px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .trust-score-copy h2 {
    font-size: clamp(1.5rem, 6.8vw, 2.12rem);
    line-height: 1.08;
  }

  .trust-score-copy p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .trust-score-pills {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust-score-pills span {
    min-height: 42px;
    padding: 9px 8px;
    border-radius: 13px;
    font-size: 0.76rem;
  }

  .trust-live-intro {
    padding: 14px;
    border-radius: 18px;
  }

  .trust-live-intro h3 {
    font-size: 1.1rem;
    line-height: 1.18;
  }

  .trust-live-intro p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .trust-form-grid label {
    gap: 6px;
    font-size: 0.9rem;
  }

  .trust-form-grid input {
    min-height: 48px;
    border-radius: 12px;
  }

  .trust-score-form > .primary-button {
    width: 100%;
    min-height: 48px;
  }

  .trust-score-meter {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .trust-form-grid {
    grid-template-columns: 1fr;
  }

  .trust-score-ring {
    width: 138px;
  }

  .trust-factor-table .trust-factor-head {
    display: none;
  }

  .trust-factor-table > div {
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: start;
  }

  .trust-factor-table > div strong {
    font-size: 1rem;
  }

  .trust-factor-table > div span::before {
    content: "Weight: ";
    color: var(--muted);
    font-weight: 900;
  }

  .trust-factor-table > div b {
    width: max-content;
  }

  .business-page .business-sticky-cta {
    position: static !important;
    width: min(100% - 24px, 1180px);
    margin: 18px auto 0;
    transform: none !important;
  }

  .business-page .tivoro-bot:not(.is-open) {
    display: none;
  }
}
