:root {
  color-scheme: light;
  --saffron-600: #F15A18;
  --bharat-green: #087B34;
  --trust-navy: #0A3168;
  --ribbon-blue: #287FC0;
  --navy-950: #06172c;
  --navy-900: var(--trust-navy);
  --navy-800: #0a2546;
  --blue-700: var(--ribbon-blue);
  --blue-600: #2563eb;
  --cyan-500: #06b6d4;
  --teal-500: var(--bharat-green);
  --violet-600: #7c3aed;
  --gold-500: #d4af37;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.92);
  --border: rgba(148, 163, 184, 0.28);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 14px 38px rgba(15, 23, 42, 0.08);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--slate-900);
  background:
    linear-gradient(90deg, rgba(21, 91, 213, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 91, 213, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 42%, #f8fafc 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  padding: 10px 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.76);
  background: rgba(247, 251, 255, 0.88);
  backdrop-filter: blur(18px);
}

.site-header > *,
.hero-copy {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: min(220px, 38vw);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.brand-subtitle {
  padding-top: 3px;
}

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

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

.brand small {
  margin-top: 4px;
  color: var(--slate-600);
  font-size: 0.82rem;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.text-link {
  color: var(--slate-700);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--blue-700);
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.22);
}

.button-secondary {
  color: var(--navy-900);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: clamp(640px, 74svh, 780px);
  padding: clamp(34px, 4.8vw, 60px) clamp(20px, 5vw, 72px) 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #087c8d;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500), var(--gold-500));
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 6.15vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--navy-950);
}

.hero-copy > p {
  max-width: 710px;
  color: var(--slate-700);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  gap: 14px;
  margin: 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.hero-metrics dt {
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 1.8rem;
  font-weight: 950;
}

.hero-metrics dd {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: start;
  min-width: 0;
  padding-top: clamp(12px, 2.8vw, 38px);
}

.hero-command-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(40, 127, 192, 0.2);
  border-radius: 28px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.88)),
    linear-gradient(90deg, rgba(241, 90, 24, 0.08), rgba(8, 123, 52, 0.08));
  box-shadow: var(--shadow-soft);
}

.hero-command-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--saffron-600), var(--bharat-green), var(--ribbon-blue));
}

.hero-command-strip strong {
  display: block;
  max-width: 560px;
  color: var(--navy-950);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.22;
}

.command-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-command-strip ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-command-strip li {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.76);
}

.hero-command-strip li span,
.hero-command-strip li small {
  display: block;
  min-width: 0;
}

.hero-command-strip li span {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 950;
}

.hero-command-strip li small {
  margin-top: 5px;
  color: var(--slate-600);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(7, 27, 51, 0.2);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--slate-200);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #dbeafe;
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #93c5fd;
}

.window-top span:nth-child(2) {
  background: #67e8f9;
}

.window-top span:nth-child(3) {
  background: #d4af37;
}

.window-top strong {
  margin-left: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-window img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card-one {
  top: 48%;
  left: -28px;
}

.floating-card-two {
  right: -18px;
  bottom: 13%;
}

.floating-card strong {
  padding-left: 22px;
}

.floating-card small {
  color: var(--slate-600);
  font-weight: 650;
}

.signal {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.signal-green {
  background: var(--teal-500);
}

.signal-gold {
  background: var(--gold-500);
}

.logos-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding: 18px clamp(20px, 5vw, 72px) 36px;
}

.logos-band span {
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 850;
}

.section {
  padding: clamp(66px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.trust-copy p,
.impact-section p,
.cta-section p {
  max-width: 760px;
  color: var(--slate-700);
  font-size: 1.05rem;
  line-height: 1.75;
}

.school-erp-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.045));
  background-size: 48px 48px, 48px 48px, auto;
}

.seo-selection-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-top: 42px;
  border-left: 4px solid var(--teal);
  padding: 12px 0 12px 28px;
}

.seo-selection-guide h3 {
  margin: 10px 0 12px;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.12;
}

.seo-selection-guide p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.7;
}

.seo-selection-guide .check-list {
  margin-top: 0;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.resource-page {
  background:
    linear-gradient(90deg, rgba(21, 91, 213, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 91, 213, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #f8fafc 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.resource-hero,
.resource-body,
.resource-next {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.resource-hero {
  padding: clamp(52px, 8vw, 104px) 0 48px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--slate-600);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue-700);
  text-decoration: none;
}

.resource-hero h1 {
  max-width: 980px;
  margin: 14px 0 22px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.resource-deck {
  max-width: 820px;
  margin: 0;
  color: var(--slate-700);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 700;
}

.resource-library {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 72px;
}

.resource-library-intro {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.resource-library-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.resource-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.resource-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-top: 5px solid var(--blue-700);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.resource-card:nth-child(2n) {
  border-top-color: var(--bharat-green);
}

.resource-card:hover,
.resource-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: var(--shadow);
}

.resource-card h2 {
  margin: 16px 0 12px;
  color: var(--navy-950);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.resource-card p {
  margin: 0 0 22px;
  color: var(--slate-700);
  font-size: 1.02rem;
  line-height: 1.7;
}

.resource-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--blue-700);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.resource-card-meta {
  color: var(--slate-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-visual {
  position: relative;
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.resource-visual img {
  width: 100%;
  height: auto;
}

.resource-visual figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--slate-600);
  font-size: 0.88rem;
}

.resource-body {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  padding: 56px 0 72px;
}

.resource-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  padding-left: 18px;
  border-left: 3px solid var(--cyan-500);
}

.resource-toc strong {
  color: var(--navy-950);
}

.resource-toc a {
  color: var(--slate-600);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.resource-toc a:hover {
  color: var(--blue-700);
}

.resource-content {
  min-width: 0;
}

.resource-content > section {
  padding: 0 0 56px;
  scroll-margin-top: 120px;
}

.resource-content h2 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.resource-content h3 {
  margin: 28px 0 10px;
  color: var(--navy-950);
  font-size: 1.25rem;
}

.resource-content p,
.resource-content li {
  color: var(--slate-700);
  font-size: 1.02rem;
  line-height: 1.75;
}

.resource-content ul,
.resource-content ol {
  padding-left: 22px;
}

.resource-content li + li {
  margin-top: 10px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.decision-grid article {
  border-top: 4px solid var(--bharat-green);
  border-radius: 6px;
}

.resource-callout {
  margin: 28px 0;
  border-left: 4px solid var(--gold-500);
  padding: 18px 22px;
  background: rgba(255, 251, 235, 0.72);
}

.resource-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
}

.table-scroll {
  overflow-x: auto;
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

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

.resource-table th,
.resource-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.resource-table th {
  color: var(--navy-950);
  background: var(--slate-50);
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.resource-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 72px;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--trust-navy));
  box-shadow: var(--shadow);
}

.resource-next h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.resource-next p {
  max-width: 720px;
  margin: 0;
  color: #dbeafe;
  line-height: 1.65;
}

.resource-next .button-secondary {
  background: var(--white);
}

.preference-main {
  display: grid;
  min-height: calc(100vh - 360px);
  place-items: center;
  padding: clamp(56px, 9vw, 108px) 20px;
}

.preference-card {
  width: min(760px, 100%);
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-top: 5px solid var(--blue-700);
  border-radius: 12px;
  padding: clamp(28px, 6vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.preference-card h1 {
  max-width: 660px;
  margin: 14px 0 18px;
  color: var(--navy-950);
  font-size: clamp(2.55rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.preference-lead,
.preference-privacy {
  color: var(--slate-700);
  line-height: 1.7;
}

.preference-lead {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.preference-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.preference-scope div {
  display: grid;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: var(--slate-50);
}

.preference-scope strong {
  color: var(--navy-950);
}

.preference-scope span {
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.55;
}

.preference-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin: 26px 0 16px;
}

.preference-form label {
  display: grid;
  gap: 8px;
  color: var(--slate-700);
  font-size: 0.88rem;
  font-weight: 900;
}

.preference-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--navy-950);
  background: var(--white);
  font: inherit;
}

.preference-form input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.preference-form .button {
  min-height: 50px;
}

.preference-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.preference-status {
  margin: 0 0 18px;
}

.preference-privacy {
  margin: 0;
  font-size: 0.9rem;
}

.preference-privacy a,
.privacy-page .resource-content a {
  color: var(--blue-700);
  font-weight: 800;
}

.module-grid,
.pricing-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.module-grid article,
.pricing-card,
.proof-grid article,
.impact-cards article {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.module-grid article:hover,
.pricing-card:hover,
.proof-grid article:hover,
.impact-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: var(--shadow);
}

.module-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  font-weight: 950;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 1.22rem;
  line-height: 1.25;
}

article p,
.pricing-card span,
.pricing-card p {
  color: var(--slate-600);
  line-height: 1.65;
}

.trust-section,
.impact-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.86)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--slate-700);
  line-height: 1.6;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--teal-500), var(--cyan-500));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.85);
}

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

.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.75);
}

.trust-row span {
  color: var(--slate-600);
  font-weight: 700;
}

.trust-row strong {
  color: var(--navy-900);
  text-align: right;
}

.health-check-section {
  position: relative;
  padding-top: clamp(72px, 8vw, 112px);
}

.health-check-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.health-check-form,
.health-check-panel {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.88)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.06));
  box-shadow: var(--shadow);
}

.health-check-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
}

.health-check-panel {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 3vw, 34px);
}

.health-check-panel h3 {
  margin-top: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.06;
}

.health-check-status {
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 20px;
  padding: 14px 16px;
  color: var(--navy-900);
  background: rgba(239, 246, 255, 0.86);
  font-weight: 780;
  line-height: 1.5;
}

.health-check-status[data-tone="success"] {
  border-color: rgba(16, 185, 129, 0.26);
  color: #047857;
  background: rgba(236, 253, 245, 0.92);
}

.health-check-status[data-tone="warning"] {
  border-color: rgba(212, 175, 55, 0.38);
  color: #92400e;
  background: rgba(255, 251, 235, 0.92);
}

.health-check-status[data-tone="danger"] {
  border-color: rgba(239, 68, 68, 0.28);
  color: #991b1b;
  background: rgba(254, 242, 242, 0.92);
}

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

.health-form-grid-compact {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
}

.health-check-form label,
.health-check-question {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.health-check-form label span,
.health-check-dimension legend {
  color: var(--slate-700);
  font-size: 0.86rem;
  font-weight: 900;
}

.health-check-form input,
.health-check-form select,
.health-check-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.36);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-weight: 650;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.health-check-form textarea {
  min-height: 118px;
  resize: vertical;
  line-height: 1.55;
}

.health-check-form input:focus,
.health-check-form select:focus,
.health-check-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.5);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.health-check-questions {
  display: grid;
  gap: 16px;
}

.health-check-dimension {
  display: grid;
  gap: 14px;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.health-check-dimension legend {
  padding: 0 8px;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.health-check-question {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.4fr);
  align-items: center;
}

.health-check-question span {
  color: var(--slate-700);
  font-weight: 700;
  line-height: 1.5;
}

.health-check-notes {
  grid-column: span 1;
}

.consent-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--slate-700);
  font-weight: 750;
  line-height: 1.5;
}

.consent-row input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.pricing-card strong {
  margin-top: auto;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
}

.pricing-disclosure {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 22px;
  background: var(--slate-50);
}

.pricing-disclosure p {
  max-width: 850px;
  margin: 0;
  color: var(--slate-700);
  line-height: 1.6;
}

.pricing-disclosure .button {
  flex: 0 0 auto;
}

.pricing-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.42);
  background: linear-gradient(180deg, var(--white), rgba(239, 246, 255, 0.92));
}

.price-card h3 {
  margin-top: 0;
}

.plan-price {
  display: grid;
  gap: 5px;
  margin: 18px 0 10px;
}

.plan-price strong {
  color: var(--navy-950);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.plan-price span,
.price-minimum,
.price-footnote,
.estimator-note {
  color: var(--slate-600);
}

.price-minimum {
  min-height: 3em;
  margin: 0 0 18px;
  font-weight: 750;
  line-height: 1.5;
}

.price-list {
  flex: 1;
  margin: 0 0 24px;
  padding-left: 20px;
}

.price-list li {
  font-size: 0.96rem;
  line-height: 1.55;
}

.price-footnote {
  margin-top: 18px;
  font-size: 0.92rem !important;
}

.pricing-estimator {
  margin-top: 28px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 36px);
  background: linear-gradient(145deg, rgba(239, 246, 255, 0.92), var(--white));
  box-shadow: var(--shadow-soft);
}

.estimator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  align-items: end;
}

.estimator-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-weight: 800;
}

.estimator-grid input,
.estimator-grid select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--navy-950);
  background: var(--white);
  font: inherit;
}

.estimator-checkbox {
  display: flex !important;
  align-items: center;
  grid-template-columns: none !important;
  gap: 10px !important;
  padding-bottom: 10px;
}

.estimator-checkbox input {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
}

.estimate-output {
  display: grid;
  gap: 0;
  margin: 28px 0 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.estimate-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--slate-700);
}

.estimate-row:last-child {
  border-bottom: 0;
}

.estimate-row strong {
  color: var(--navy-950);
  text-align: right;
}

.estimate-total {
  color: var(--navy-950);
  background: rgba(219, 234, 254, 0.58);
  font-size: 1.08rem;
  font-weight: 850;
}

.estimator-note {
  font-size: 0.9rem !important;
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #075985;
  background: #e0f2fe;
  font-size: 0.8rem;
  font-weight: 900;
}

.impact-section {
  margin-top: 42px;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(10, 37, 70, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(16, 185, 129, 0.1));
}

.impact-section h2,
.impact-section h3 {
  color: var(--white);
}

.impact-section p {
  color: #dbeafe;
}

.impact-section .eyebrow {
  color: #7dd3fc;
}

.impact-cards {
  display: grid;
  gap: 18px;
}

.impact-cards article {
  border-color: rgba(125, 211, 252, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.impact-cards p {
  color: #dbeafe;
}

.proof-section {
  padding-bottom: 44px;
}

.cta-section {
  margin-top: 28px;
  margin-bottom: 72px;
  background:
    linear-gradient(135deg, #ffffff 0%, #eff6ff 58%, #ecfeff 100%);
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(160px, 1fr));
  gap: 30px;
  padding: 44px clamp(20px, 5vw, 72px);
  color: #dbeafe;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.analytics-preference {
  align-self: start;
  border-top: 1px solid rgba(219, 234, 254, 0.2);
  grid-column: 1 / -1;
  max-width: 22rem;
  padding-top: 1.25rem;
}

.analytics-preference label {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 0.7rem;
}

.analytics-preference input {
  accent-color: var(--cyan-500);
  block-size: 1.1rem;
  flex: 0 0 auto;
  inline-size: 1.1rem;
  margin-block-start: 0.15rem;
}

.analytics-preference input:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 3px;
}

.analytics-preference span {
  display: grid;
  gap: 0.25rem;
}

.analytics-preference small,
.analytics-preference-status {
  color: #bfdbfe;
  font-size: 0.78rem;
  line-height: 1.5;
}

.analytics-preference-status:empty {
  display: none;
}

.footer-brand img {
  width: min(236px, 58vw);
  filter: drop-shadow(0 12px 26px rgba(255,255,255,0.12));
}

.footer-brand small,
.site-footer p {
  color: #93c5fd;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer nav strong {
  color: var(--white);
}

.site-footer nav a {
  color: #dbeafe;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: #67e8f9;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .hero,
  .trust-section,
  .health-check-grid,
  .impact-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

  .health-form-grid,
  .health-form-grid-compact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 17rem;
  }

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

  .nav-links,
  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-metrics,
  .module-grid,
  .pricing-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .seo-selection-guide {
    grid-template-columns: 1fr;
    padding-left: 20px;
  }

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

  .floating-card {
    position: static;
    margin-top: 14px;
  }

  .health-check-panel {
    position: static;
  }

  .trust-section,
  .impact-section,
  .cta-section {
    margin-right: 16px;
    margin-left: 16px;
    border-radius: 26px;
    padding: 32px 20px;
  }

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

  .pricing-disclosure,
  .estimate-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .estimate-row strong {
    text-align: left;
  }

  .pricing-disclosure .button {
    width: 100%;
  }

  .resource-body {
    grid-template-columns: 1fr;
  }

  .resource-toc {
    position: static;
  }

  .decision-grid,
  .resource-library-grid,
  .resource-next {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-links,
  .header-actions,
  .hero-actions,
  .cta-actions {
    max-width: calc(100vw - 40px);
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.55rem);
    line-height: 1.03;
  }

  .resource-hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .header-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

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

  .trust-row strong {
    text-align: left;
  }

  .health-check-question {
    grid-template-columns: 1fr;
  }
}

/* 2026 experience system: dimensional, evidence-led and motion-safe. */
:root {
  --electric-blue: #1967ff;
  --electric-cyan: #05c7e8;
  --electric-violet: #8b5cf6;
  --mint: #12d69a;
  --future-navy: #051a38;
  --future-panel: rgba(7, 31, 67, 0.92);
  --future-line: rgba(75, 187, 255, 0.2);
}

.home-page,
.tour-page,
.trust-centre-page,
.readiness-page {
  background:
    radial-gradient(circle at var(--pointer-x, 75%) var(--pointer-y, 8%), rgba(52, 211, 255, 0.16), transparent 23rem),
    radial-gradient(circle at 10% 30%, rgba(139, 92, 246, 0.11), transparent 30rem),
    linear-gradient(90deg, rgba(25, 103, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 103, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #eef7ff 48%, #f8fafc 100%);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.72);
  background: rgba(248, 252, 255, 0.78);
  box-shadow: 0 10px 40px rgba(11, 43, 82, 0.06);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--electric-blue), var(--electric-cyan));
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
  left: 0;
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  content: "";
  transform: translateX(-130%);
  transition: transform 500ms ease;
}

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

.button:hover::before {
  transform: translateX(130%);
}

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(135deg, #1759f5 0%, #087eff 46%, #05c7d9 100%);
  box-shadow: 0 18px 42px rgba(25, 103, 255, 0.28), inset 0 1px rgba(255, 255, 255, 0.28);
}

.button-glass {
  color: var(--navy-900);
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.88), 0 15px 34px rgba(10, 49, 104, 0.1);
  backdrop-filter: blur(16px);
}

[data-reveal] {
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-ready [data-reveal].reveal-pending:not(.is-revealed) {
  opacity: 0;
  transform: translateY(24px);
}

[data-tilt] {
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.future-hero {
  position: relative;
  min-height: 760px;
  overflow: clip;
  isolation: isolate;
}

.future-hero::before,
.future-hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  content: "";
  pointer-events: none;
}

.future-hero::before {
  top: 3%;
  right: -5%;
  width: 44vw;
  height: 44vw;
  max-width: 680px;
  max-height: 680px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.16), rgba(37, 99, 235, 0.07) 46%, transparent 70%);
}

.future-hero::after {
  bottom: 6%;
  left: 32%;
  width: 24vw;
  height: 24vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.13), transparent 70%);
}

.hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.live-pill,
.tour-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(18, 214, 154, 0.26);
  border-radius: 999px;
  padding: 7px 11px;
  color: #08715a;
  background: rgba(236, 253, 248, 0.82);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9);
  font-size: 0.77rem;
  font-weight: 800;
}

.live-pill span,
.tour-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(18, 214, 154, 0.12), 0 0 18px rgba(18, 214, 154, 0.55);
  animation: future-pulse 2.8s ease-in-out infinite;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, #164de8 0%, #0a91dd 50%, #7557e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.future-stage {
  position: relative;
  z-index: 1;
  min-height: clamp(590px, 48vw, 700px);
  padding: 24px 0 20px;
  isolation: isolate;
}

.campus-ecosystem-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 36px;
  background: #f5faff;
  box-shadow: 0 32px 82px rgba(6, 40, 93, 0.17), inset 0 1px rgba(255, 255, 255, 0.98);
}

.campus-ecosystem-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.campus-ecosystem-card figcaption {
  position: absolute;
  top: clamp(15px, 2.2vw, 26px);
  left: clamp(15px, 2.2vw, 26px);
  max-width: min(310px, 56%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 14px 16px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(7, 40, 85, 0.11), inset 0 1px #fff;
  backdrop-filter: blur(15px);
}

.campus-ecosystem-card figcaption strong {
  display: block;
  font-size: clamp(0.92rem, 1.25vw, 1.06rem);
  line-height: 1.34;
}

.future-stage .product-window {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: -5%;
  width: 78%;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 36px 90px rgba(6, 40, 93, 0.23), 0 8px 26px rgba(6, 182, 212, 0.12), inset 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.future-stage .window-top small {
  margin-left: auto;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 999px;
  padding: 5px 8px;
  color: #b8efff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .future-stage {
    width: min(860px, 100%);
    min-height: clamp(650px, 76vw, 790px);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 820px) {
  .future-stage {
    min-height: auto;
    padding-top: 16px;
  }

  .future-stage .product-window {
    position: relative;
    bottom: auto;
    left: auto;
    width: 94%;
    margin: -38px auto 0;
  }

  .future-stage .window-top small {
    display: none;
  }
}

@media (max-width: 520px) {
  .campus-ecosystem-card {
    border-radius: 26px;
  }

  .campus-ecosystem-card figcaption {
    position: static;
    max-width: none;
    border: 0;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 0;
    padding: 13px 15px 15px;
    box-shadow: none;
    backdrop-filter: none;
  }

  .campus-ecosystem-card figcaption strong {
    font-size: 0.86rem;
  }

  .future-stage .product-window {
    margin-top: -26px;
    border-radius: 21px;
  }
}

.journey-section,
.growth-entry-section {
  position: relative;
}

.journey-section::before {
  position: absolute;
  top: 134px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), rgba(5, 199, 232, 0.35), transparent);
  content: "";
}

.journey-grid,
.growth-entry-grid {
  display: grid;
  gap: 18px;
}

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

.journey-card,
.growth-entry-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 55px rgba(15, 42, 84, 0.1), inset 0 1px rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.journey-card::before,
.growth-entry-grid article::before {
  position: absolute;
  right: -48px;
  bottom: -68px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--card-glow, rgba(25, 103, 255, 0.16));
  filter: blur(4px);
  content: "";
}

.journey-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--card-accent, var(--electric-blue));
  box-shadow: 0 12px 26px var(--card-glow, rgba(25, 103, 255, 0.28));
  font-weight: 900;
}

.journey-card h3,
.growth-entry-grid h3 {
  margin: 32px 0 10px;
  font-size: 1.35rem;
}

.journey-card p,
.growth-entry-grid p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.journey-card-blue { --card-accent: #2563eb; --card-glow: rgba(37, 99, 235, 0.22); }
.journey-card-violet { --card-accent: #7c3aed; --card-glow: rgba(124, 58, 237, 0.2); }
.journey-card-cyan { --card-accent: #0891b2; --card-glow: rgba(6, 182, 212, 0.22); }
.journey-card-green { --card-accent: #079669; --card-glow: rgba(16, 185, 129, 0.2); }

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.growth-entry-section {
  margin-bottom: 70px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 36px;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(6, 27, 58, 0.98), rgba(9, 59, 116, 0.96) 52%, rgba(35, 45, 109, 0.94));
  color: #fff;
  box-shadow: 0 34px 80px rgba(7, 35, 77, 0.24);
}

.growth-entry-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

.growth-entry-copy h2 { color: #fff; }
.growth-entry-copy p { color: rgba(226, 240, 255, 0.78); }
.growth-entry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.growth-entry-grid article {
  min-height: 250px;
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.16), 0 22px 48px rgba(1, 12, 32, 0.2);
}

.growth-entry-grid h3 { color: #fff; }
.growth-entry-grid p { color: rgba(226, 240, 255, 0.75); }
.growth-entry-grid a { color: #78e6ff; font-weight: 850; }

.resource-card-featured {
  color: #fff;
  border-color: rgba(89, 217, 255, 0.25);
  background: linear-gradient(145deg, #071e42, #124f91 62%, #11677e);
  box-shadow: 0 24px 54px rgba(6, 40, 93, 0.22), inset 0 1px rgba(255, 255, 255, 0.15);
}

.resource-card-featured p { color: rgba(226, 240, 255, 0.76); }
.resource-card-featured .resource-card-meta,
.resource-card-featured a { color: #82ecff; }

.entry-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(98, 222, 255, 0.35);
  border-radius: 16px;
  color: #79e8ff;
  background: rgba(6, 199, 232, 0.1);
  box-shadow: 0 0 30px rgba(5, 199, 232, 0.14);
  font-size: 1.35rem;
}

/* Trust Centre */
.trust-hero,
.tour-hero,
.readiness-hero {
  position: relative;
  overflow: hidden;
}

.trust-hero::after,
.tour-hero::after,
.readiness-hero::after {
  position: absolute;
  z-index: -1;
  top: -160px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 199, 232, 0.18), rgba(139, 92, 246, 0.08) 48%, transparent 70%);
  content: "";
}

.trust-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.trust-core {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  max-width: 390px;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(90, 204, 255, 0.28);
  border-radius: 44% 56% 52% 48%;
  color: #fff;
  background: radial-gradient(circle at 38% 28%, #174f9e, #081f47 54%, #06152f 100%);
  box-shadow: 0 38px 80px rgba(3, 26, 65, 0.28), inset 0 1px rgba(255, 255, 255, 0.2), inset -18px -24px 50px rgba(0, 4, 18, 0.34);
}

.trust-core strong {
  margin: 13px 0 3px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
}

.trust-core > span:not(.trust-core-label) { color: #95eaff; font-weight: 800; }
.trust-core small { margin-top: 12px; color: rgba(219, 238, 255, 0.68); }
.trust-core-label { color: #93ffd6; font-size: 0.73rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }

.trust-core-orbit {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(126, 232, 255, 0.35);
  border-radius: 50%;
  transform: rotateX(65deg) rotateZ(22deg);
  box-shadow: 0 0 35px rgba(5, 199, 232, 0.1);
  animation: orbit-breathe 5s ease-in-out infinite;
}

.trust-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -28px auto 42px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 24px;
  background: rgba(148, 163, 184, 0.18);
  box-shadow: 0 22px 46px rgba(10, 49, 104, 0.1);
}

.trust-status-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.trust-status-strip small { grid-column: 2; color: var(--slate-600); line-height: 1.5; }
.status-dot { width: 11px; height: 11px; border-radius: 50%; }
.status-evidence { background: #12b981; box-shadow: 0 0 0 5px rgba(18, 185, 129, 0.1); }
.status-contract { background: #2673ed; box-shadow: 0 0 0 5px rgba(38, 115, 237, 0.1); }
.status-review { background: #f59e0b; box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.1); }

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

.trust-bento-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 255, 0.76));
  box-shadow: 0 22px 55px rgba(7, 40, 85, 0.09), inset 0 1px #fff;
}

.trust-bento-card::after {
  position: absolute;
  right: -70px;
  bottom: -85px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 199, 232, 0.17), transparent 68%);
  content: "";
}

.trust-bento-wide { grid-column: span 2; }
.trust-bento-dark { color: #fff; background: linear-gradient(145deg, #071d40, #103f78); }
.trust-bento-dark p { color: rgba(224, 239, 255, 0.75); }
.control-index { color: var(--electric-blue); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.12em; }
.trust-bento-dark .control-index { color: #74e9ff; }
.trust-bento-card h3 { margin: 36px 0 12px; font-size: 1.45rem; }
.trust-bento-card p, .trust-bento-card li { color: var(--slate-600); line-height: 1.7; }
.trust-bento-card ul { padding-left: 20px; }
.evidence-chip { display: inline-flex; margin-top: 15px; border-radius: 999px; padding: 7px 10px; color: #0c5dbd; background: #e8f2ff; font-size: 0.75rem; font-weight: 850; }
.trust-bento-dark .evidence-chip { color: #9eefff; background: rgba(75, 192, 255, 0.13); }

.evidence-room {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.evidence-steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.evidence-steps li { display: grid; grid-template-columns: auto 1fr; gap: 15px; border: 1px solid rgba(37, 99, 235, 0.1); border-radius: 20px; padding: 16px; background: rgba(255, 255, 255, 0.78); }
.evidence-steps li > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--electric-blue), var(--electric-cyan)); font-weight: 900; }
.evidence-steps p { margin: 4px 0 0; color: var(--slate-600); }

/* Interactive product tour */
.tour-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px) 42px;
  text-align: center;
}

.tour-hero .breadcrumb { justify-content: center; }
.tour-hero h1 { max-width: 900px; margin: 18px auto; font-size: clamp(2.7rem, 6vw, 5.5rem); letter-spacing: -0.06em; line-height: 0.98; }
.tour-hero > p { max-width: 790px; margin: 0 auto; color: var(--slate-600); font-size: 1.12rem; line-height: 1.8; }
.tour-disclosure { max-width: 900px; margin: 28px auto 0; border: 1px solid rgba(37, 99, 235, 0.14); border-radius: 18px; padding: 14px 18px; color: #37516e; background: rgba(255, 255, 255, 0.72); font-size: 0.88rem; line-height: 1.6; }

.tour-workspace {
  max-width: 1220px;
  margin: 0 auto 72px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 38px;
  padding: clamp(20px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 36px 100px rgba(6, 40, 93, 0.18), inset 0 1px #fff;
  backdrop-filter: blur(24px);
}

.tour-workspace-head { display: flex; gap: 20px; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.tour-workspace-head h2 { margin: 7px 0 0; font-size: clamp(1.8rem, 3vw, 3rem); }

.tour-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
  border-radius: 20px;
  padding: 7px;
  background: rgba(218, 234, 252, 0.68);
}

.tour-tab {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 15px;
  color: #47627d;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 820;
}

.tour-tab span { color: #7691aa; font-size: 0.72rem; }
.tour-tab[aria-selected="true"] { color: #fff; background: linear-gradient(135deg, #0c3972, #1768c4); box-shadow: 0 13px 27px rgba(13, 73, 142, 0.24), inset 0 1px rgba(255, 255, 255, 0.23); }
.tour-tab[aria-selected="true"] span { color: #8feeff; }
.tour-tab:focus-visible { outline: 3px solid rgba(5, 199, 232, 0.42); outline-offset: 2px; }

.tour-screen {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(104, 196, 255, 0.22);
  border-radius: 28px;
  background: linear-gradient(145deg, #061a38, #0b3265 56%, #0b4f79);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 28px 56px rgba(3, 25, 58, 0.24);
}

.tour-rail { display: flex; flex-direction: column; gap: 18px; align-items: center; padding: 20px 12px; border-right: 1px solid rgba(138, 211, 255, 0.16); background: rgba(2, 16, 38, 0.48); }
.tour-rail-logo { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg, #2563eb, #05c7e8); font-size: 0.76rem; font-weight: 900; box-shadow: 0 0 22px rgba(5, 199, 232, 0.27); }
.tour-rail i { width: 23px; height: 23px; border: 1px solid rgba(196, 229, 255, 0.24); border-radius: 8px; }
.tour-rail i.active { border-color: #64e1ff; background: rgba(79, 210, 255, 0.14); box-shadow: 0 0 17px rgba(53, 206, 255, 0.22); }
.tour-canvas { min-width: 0; padding: clamp(20px, 4vw, 40px); color: #fff; }
.tour-panel { min-height: 100%; animation: panel-enter 320ms ease; }
.tour-panel[hidden] { display: none; }
.tour-canvas-title { display: flex; gap: 18px; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.tour-canvas-title small { color: #80dbff; font-size: 0.75rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.tour-canvas-title h3 { margin: 5px 0 0; color: #fff; font-size: clamp(1.45rem, 3vw, 2.25rem); }
.signal-chip { flex: 0 0 auto; border: 1px solid rgba(62, 231, 183, 0.28); border-radius: 999px; padding: 8px 11px; color: #8bffdd; background: rgba(18, 214, 154, 0.1); font-size: 0.74rem; font-weight: 850; }

.tour-kpi-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.tour-kpi-grid article { display: grid; gap: 8px; min-height: 158px; border: 1px solid rgba(134, 215, 255, 0.16); border-radius: 21px; padding: 22px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)); box-shadow: inset 0 1px rgba(255, 255, 255, 0.11); }
.tour-kpi-grid small { color: #a8d7f4; font-weight: 750; }
.tour-kpi-grid strong { font-size: 2.25rem; }
.tour-kpi-grid span { color: #83f0d1; font-size: 0.79rem; }
.tour-feed { margin-top: 17px; border: 1px solid rgba(134, 215, 255, 0.14); border-radius: 21px; padding: 20px; background: rgba(1, 17, 40, 0.3); }
.tour-feed p { display: flex; gap: 14px; margin: 12px 0 0; color: #b6cfe5; }
.tour-feed p span { color: #71dff8; font-variant-numeric: tabular-nums; }

.tour-pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 10px; align-items: center; }
.tour-pipeline article { min-height: 165px; border: 1px solid rgba(130, 211, 255, 0.17); border-radius: 19px; padding: 18px; background: rgba(255, 255, 255, 0.08); }
.tour-pipeline article small { color: #9edcf6; }
.tour-pipeline article strong { display: block; margin: 14px 0 7px; font-size: 2rem; }
.tour-pipeline article p { margin: 0; color: #b9d0e3; font-size: 0.76rem; }
.tour-pipeline > i { width: 20px; height: 1px; background: linear-gradient(90deg, #3e8ed7, #66e4f9); }
.tour-focus-row { display: flex; gap: 14px; align-items: center; margin-top: 18px; border: 1px solid rgba(134, 215, 255, 0.14); border-radius: 19px; padding: 17px; background: rgba(1, 17, 40, 0.3); }
.tour-avatar { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 15px; background: linear-gradient(135deg, #7c3aed, #13b8d2); font-weight: 900; }
.tour-focus-row div { flex: 1; }
.tour-focus-row p { margin: 4px 0 0; color: #a9c8df; font-size: 0.83rem; }
.tour-focus-row button, .tour-action-row button { border: 1px solid rgba(131, 226, 255, 0.24); border-radius: 12px; padding: 10px 13px; color: #d9f6ff; background: rgba(5, 199, 232, 0.1); font: inherit; font-size: 0.76rem; font-weight: 820; }
.tour-focus-row button:disabled, .tour-action-row button:disabled { cursor: default; opacity: 0.86; }

.tour-classroom { border: 1px solid rgba(126, 214, 255, 0.16); border-radius: 24px; padding: 18px; background: linear-gradient(180deg, rgba(8, 61, 93, 0.55), rgba(3, 31, 61, 0.64)); }
.tour-board { margin: 0 auto 24px; max-width: 500px; border: 2px solid rgba(246, 194, 87, 0.58); border-radius: 13px; padding: 14px; color: #dff9ef; background: #174f47; text-align: center; font-weight: 850; box-shadow: 0 10px 25px rgba(0, 8, 20, 0.24); }
.tour-board small { display: block; margin-top: 4px; color: #a6d7ca; font-weight: 600; }
.tour-seats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; max-width: 620px; margin: auto; }
.tour-seats span { display: grid; height: 40px; place-items: center; border: 1px solid rgba(172, 216, 244, 0.2); border-radius: 12px 12px 7px 7px; color: #90acc1; background: rgba(255, 255, 255, 0.07); font-size: 0.73rem; }
.tour-seats span.present { color: #c8fff0; border-color: rgba(46, 219, 163, 0.32); background: rgba(22, 174, 128, 0.17); }
.tour-seats span.selected { color: #fff; border-color: #52dfff; background: linear-gradient(135deg, #2364d9, #0eb2cb); box-shadow: 0 0 20px rgba(57, 211, 241, 0.25); }
.tour-teacher { width: 130px; margin: 23px auto 0; border-radius: 10px; padding: 9px; color: #ffe9aa; background: rgba(199, 115, 21, 0.65); text-align: center; font-size: 0.73rem; font-weight: 800; }
.tour-action-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.tour-ledger { display: grid; gap: 13px; }
.tour-ledger article { display: grid; grid-template-columns: auto 1fr; gap: 17px; align-items: center; border: 1px solid rgba(130, 211, 255, 0.15); border-radius: 20px; padding: 20px; background: linear-gradient(100deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)); }
.ledger-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 16px; background: linear-gradient(135deg, #2563eb, #05c7e8); font-size: 1.25rem; font-weight: 900; box-shadow: 0 12px 26px rgba(0, 158, 232, 0.22); }
.ledger-icon.shield { background: linear-gradient(135deg, #11966d, #18d7a0); }
.ledger-icon.trail { background: linear-gradient(135deg, #7c3aed, #a675f1); }
.tour-ledger small { color: #8bdff5; font-weight: 800; }
.tour-ledger strong { display: block; margin: 5px 0; }
.tour-ledger p { margin: 0; color: #a9c9e0; font-size: 0.83rem; }

.tour-summary { display: grid; grid-template-columns: 220px minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 24px; align-items: center; min-height: 115px; border: 1px solid rgba(37, 99, 235, 0.12); border-radius: 22px; margin-top: 15px; padding: 22px; background: rgba(255, 255, 255, 0.78); }
.tour-summary h2 { margin: 0; font-size: 1.35rem; }
.tour-summary p { margin: 0; color: var(--slate-600); line-height: 1.65; }
.tour-convert { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 36px; align-items: center; max-width: 1180px; margin: 0 auto 84px; border-radius: 32px; padding: clamp(28px, 5vw, 54px); color: #fff; background: linear-gradient(135deg, #071f44, #114d8d 58%, #19558b); box-shadow: 0 28px 68px rgba(5, 35, 79, 0.24); }
.tour-convert h2 { margin: 8px 0 12px; color: #fff; }
.tour-convert p { margin: 0; color: rgba(224, 240, 255, 0.76); line-height: 1.7; }
.tour-convert .button-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.08); }

/* Implementation readiness */
.readiness-scorecard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  max-width: 1180px;
  margin: -34px auto 36px;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 25px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(10, 49, 104, 0.1);
}

.readiness-scorecard h2 { margin: 7px 0; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.readiness-scorecard p { margin: 0; color: var(--slate-600); line-height: 1.7; }
.readiness-legend { display: flex; flex-wrap: wrap; gap: 8px; }
.readiness-legend span { border-radius: 999px; padding: 8px 11px; font-size: 0.76rem; font-weight: 850; }
.readiness-legend .ready { color: #08715a; background: #e6faf3; }
.readiness-legend .risk { color: #985e00; background: #fff4d8; }
.readiness-legend .unresolved { color: #9e3340; background: #ffe8eb; }

.readiness-gates { display: grid; gap: 15px; max-width: 1180px; margin: 0 auto 72px; }
.readiness-gates article { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 24px; border: 1px solid rgba(37, 99, 235, 0.11); border-radius: 25px; padding: clamp(22px, 4vw, 34px); background: linear-gradient(110deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 255, 0.75)); box-shadow: 0 15px 36px rgba(7, 40, 85, 0.07), inset 0 1px #fff; }
.gate-number { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 20px; color: #fff; background: linear-gradient(135deg, #1759f5, #09bdd5); box-shadow: 0 16px 30px rgba(25, 103, 255, 0.22); font-size: 1.05rem; font-weight: 900; }
.readiness-gates h2 { margin: 0 0 8px; font-size: 1.55rem; }
.readiness-gates p { margin: 0; color: var(--slate-600); line-height: 1.7; }
.readiness-gates ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 17px 0 0; padding: 0; list-style: none; }
.readiness-gates li { border: 1px solid rgba(37, 99, 235, 0.12); border-radius: 999px; padding: 7px 10px; color: #315577; background: rgba(232, 243, 255, 0.8); font-size: 0.75rem; font-weight: 750; }

.readiness-table-wrap { max-width: 1180px; margin: 0 auto 72px; }
.readiness-table { overflow: hidden; border: 1px solid rgba(37, 99, 235, 0.12); border-radius: 22px; background: rgba(255, 255, 255, 0.82); box-shadow: 0 17px 42px rgba(7, 40, 85, 0.08); }
.readiness-table [role="row"] { display: grid; grid-template-columns: 1.15fr 0.8fr 1fr 0.8fr; }
.readiness-table [role="cell"], .readiness-table [role="columnheader"] { min-width: 0; border-bottom: 1px solid rgba(148, 163, 184, 0.18); padding: 15px 17px; overflow-wrap: anywhere; }
.readiness-table [role="columnheader"] { color: #49657f; background: #eaf4ff; font-size: 0.74rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.readiness-table [role="row"]:last-child [role="cell"] { border-bottom: 0; }

.home-feature-teaser {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding-top: clamp(54px, 7vw, 84px);
  padding-bottom: clamp(54px, 7vw, 84px);
  color: #e8f5ff;
  background:
    radial-gradient(circle at 85% 16%, rgba(6, 182, 212, 0.18), transparent 23rem),
    linear-gradient(135deg, #06172c, #092d58 68%, #0a3168);
}

.home-feature-intro .eyebrow { color: #7de9ff; }
.home-feature-intro h2 { margin-top: 16px; color: #ffffff; font-size: clamp(2.3rem, 4.5vw, 4.7rem); }
.home-feature-intro p { color: rgba(219, 234, 254, 0.74); line-height: 1.75; }
.home-feature-intro .button { margin-top: 18px; }

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

.home-feature-map a {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 22px;
  padding: 21px 22px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-feature-map a:hover,
.home-feature-map a:focus-visible {
  border-color: rgba(103, 232, 249, 0.48);
  background: rgba(255, 255, 255, 0.095);
  transform: translateY(-3px);
}

.home-feature-map span {
  color: #78e9ff;
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.home-feature-map strong {
  margin-top: 11px;
  color: #ffffff;
  font-size: 1rem;
}

.home-feature-map small {
  margin-top: 6px;
  color: rgba(191, 219, 254, 0.65);
  line-height: 1.45;
}

/* Sales-led features and benefits experience */
.feature-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 182, 212, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 28%, rgba(124, 58, 237, 0.07), transparent 27rem),
    linear-gradient(180deg, #f7fbff 0%, #eff7ff 48%, #f8fafc 100%);
}

.feature-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: clamp(48px, 7vw, 104px);
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
  color: #eaf5ff;
  background:
    radial-gradient(circle at 82% 18%, rgba(6, 182, 212, 0.21), transparent 28%),
    radial-gradient(circle at 58% 86%, rgba(124, 58, 237, 0.21), transparent 31%),
    linear-gradient(135deg, #05182e 0%, #092d58 58%, #0b3a72 100%);
}

.feature-hero::before,
.feature-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.feature-hero::before {
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.11) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent 2%, #000 45%, #000 100%);
}

.feature-hero::after {
  right: -14rem;
  bottom: -18rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(103, 232, 249, 0.03), 0 0 0 120px rgba(103, 232, 249, 0.025);
}

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

.feature-hero .breadcrumb {
  color: rgba(226, 240, 255, 0.66);
}

.feature-hero .breadcrumb a {
  color: #8eeaff;
}

.feature-hero .eyebrow {
  color: #7de9ff;
}

.feature-hero h1 {
  max-width: 820px;
  margin: 20px 0 24px;
  color: #ffffff;
  font-size: clamp(3rem, 6.4vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.feature-hero-deck {
  max-width: 740px;
  margin: 0;
  color: rgba(226, 240, 255, 0.8);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.72;
}

.feature-hero .hero-actions {
  margin: 31px 0 0;
}

.feature-hero .button-glass {
  color: #effbff;
  border-color: rgba(191, 219, 254, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.feature-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.feature-hero-proof li {
  min-width: 0;
  border-top: 1px solid rgba(125, 211, 252, 0.24);
  padding-top: 15px;
}

.feature-hero-proof strong,
.feature-hero-proof span {
  display: block;
}

.feature-hero-proof strong {
  color: #ffffff;
  font-size: 0.9rem;
}

.feature-hero-proof span {
  margin-top: 5px;
  color: rgba(191, 219, 254, 0.7);
  font-size: 0.76rem;
  line-height: 1.5;
}

.feature-command-stage {
  min-height: 600px;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.feature-command-halo {
  position: absolute;
  inset: 10% 6%;
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 50%;
  transform: rotateX(63deg) rotateZ(-12deg);
  box-shadow:
    0 0 0 38px rgba(103, 232, 249, 0.025),
    0 0 0 76px rgba(103, 232, 249, 0.018),
    inset 0 0 80px rgba(6, 182, 212, 0.12);
}

.feature-command-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(330px, 68%);
  min-height: 250px;
  place-content: center;
  border: 1px solid rgba(165, 243, 252, 0.45);
  border-radius: 44% 56% 52% 48% / 48% 44% 56% 52%;
  padding: 42px;
  text-align: center;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.15), transparent 23%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.92), rgba(8, 145, 178, 0.74));
  box-shadow:
    0 40px 90px rgba(1, 12, 28, 0.5),
    inset 0 1px rgba(255, 255, 255, 0.3),
    inset 0 -28px 55px rgba(3, 27, 60, 0.25);
}

.feature-command-core small {
  color: #9ef4ff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.feature-command-core strong {
  margin-top: 13px;
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.feature-command-core span {
  margin-top: 15px;
  color: rgba(226, 240, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 750;
}

.feature-command-node {
  position: absolute;
  display: grid;
  min-width: 190px;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 22px;
  padding: 17px 19px;
  color: #effaff;
  background: linear-gradient(145deg, rgba(13, 46, 82, 0.88), rgba(10, 49, 104, 0.6));
  box-shadow: 0 25px 55px rgba(1, 12, 28, 0.36), inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.feature-command-node::after {
  position: absolute;
  content: "";
  width: 58px;
  height: 1px;
  top: 50%;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.7), transparent);
}

.feature-command-node > span {
  color: #77e9ff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-command-node strong {
  margin-top: 6px;
  font-size: 1rem;
}

.feature-command-node small {
  margin-top: 4px;
  color: rgba(191, 219, 254, 0.67);
}

.node-admissions { top: 8%; left: 2%; }
.node-admissions::after,
.node-student::after { right: -58px; }
.node-academics { top: 13%; right: 1%; }
.node-finance { right: 2%; bottom: 9%; }
.node-academics::after,
.node-finance::after { left: -58px; transform: rotate(180deg); }
.node-student { bottom: 7%; left: 0; }

.feature-value-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1320px;
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 28px;
  background: rgba(37, 99, 235, 0.1);
  box-shadow: 0 25px 70px rgba(7, 40, 85, 0.16);
}

.feature-value-strip article {
  min-width: 0;
  padding: 24px 25px;
  background: rgba(255, 255, 255, 0.94);
}

.feature-value-strip span {
  color: var(--navy-900);
  font-weight: 900;
}

.feature-value-strip p {
  margin: 7px 0 0;
  color: var(--slate-600);
  font-size: 0.83rem;
  line-height: 1.55;
}

.terminology-section {
  padding-top: clamp(104px, 12vw, 162px);
}

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

.terminology-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 30px;
  padding: clamp(25px, 3.5vw, 40px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 55px rgba(7, 40, 85, 0.08), inset 0 1px #ffffff;
}

.terminology-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  background: var(--terminology-glow);
  filter: blur(2px);
}

.terminology-school { --terminology-accent: #2563eb; --terminology-glow: rgba(37, 99, 235, 0.1); }
.terminology-college { --terminology-accent: #7c3aed; --terminology-glow: rgba(124, 58, 237, 0.1); }
.terminology-academy { --terminology-accent: #0891b2; --terminology-glow: rgba(8, 145, 178, 0.12); }

.terminology-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--terminology-accent), color-mix(in srgb, var(--terminology-accent), #020617 18%));
  box-shadow: 0 14px 30px color-mix(in srgb, var(--terminology-accent), transparent 72%);
  font-weight: 950;
}

.terminology-type {
  margin: 24px 0 8px;
  color: var(--terminology-accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.terminology-card h3 {
  margin: 0 0 24px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.terminology-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
}

.terminology-card dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 12px;
}

.terminology-card dt {
  color: var(--slate-600);
  font-size: 0.72rem;
  font-weight: 850;
}

.terminology-card dd {
  margin: 0;
  color: var(--navy-800);
  font-size: 0.86rem;
  font-weight: 760;
}

.scope-note {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--slate-600);
  font-size: 0.78rem;
  line-height: 1.65;
}

.operations-section {
  background:
    radial-gradient(circle at 90% 6%, rgba(6, 182, 212, 0.1), transparent 23rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(239, 247, 255, 0.82));
}

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

.operation-card {
  --operation-accent: #2563eb;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 18px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 30px;
  padding: clamp(25px, 3.3vw, 38px);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 48px rgba(7, 40, 85, 0.07), inset 0 1px #ffffff;
}

.operation-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(var(--operation-accent), transparent 84%);
}

.operation-blue { --operation-accent: #2563eb; }
.operation-violet { --operation-accent: #7c3aed; }
.operation-cyan { --operation-accent: #0891b2; }
.operation-green { --operation-accent: #079669; }
.operation-gold { --operation-accent: #c48a10; }
.operation-navy { --operation-accent: #0a3168; }

.operation-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--operation-accent), transparent 70%);
  border-radius: 16px;
  color: var(--operation-accent);
  background: color-mix(in srgb, var(--operation-accent), white 92%);
  font-size: 0.75rem;
  font-weight: 950;
}

.operation-kicker {
  margin: 2px 0 6px;
  color: var(--operation-accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operation-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.15;
}

.operation-card ul,
.operation-benefit {
  grid-column: 1 / -1;
}

.operation-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.operation-card li {
  position: relative;
  padding-left: 18px;
  color: var(--slate-700);
  font-size: 0.83rem;
  line-height: 1.55;
}

.operation-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--operation-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--operation-accent), transparent 88%);
}

.operation-benefit {
  display: grid;
  gap: 5px;
  margin: 24px 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 18px;
  color: var(--slate-600);
  font-size: 0.82rem;
  line-height: 1.55;
}

.operation-benefit strong {
  color: var(--operation-accent);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.classroom-sales-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  color: #e6f4ff;
  background:
    radial-gradient(circle at 77% 20%, rgba(6, 182, 212, 0.16), transparent 28rem),
    linear-gradient(135deg, #06172c, #092d58 70%, #0a3168);
}

.classroom-sales-copy .eyebrow { color: #78e9ff; }
.classroom-sales-copy h2 { color: #ffffff; }
.classroom-sales-copy > p:not(.scope-note) { color: rgba(219, 234, 254, 0.76); line-height: 1.75; }
.classroom-sales-copy .scope-note { color: rgba(191, 219, 254, 0.6); }

.classroom-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.classroom-action-list span {
  border: 1px solid rgba(125, 211, 252, 0.23);
  border-radius: 999px;
  padding: 9px 12px;
  color: #dbf7ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.73rem;
  font-weight: 820;
}

.classroom-showcase {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(165, 243, 252, 0.24);
  border-radius: 32px;
  background: #03132d;
  box-shadow: 0 28px 65px rgba(0, 8, 20, 0.36), inset 0 1px rgba(255, 255, 255, 0.18);
}

.classroom-showcase > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1568 / 1003;
  object-fit: cover;
}

.classroom-showcase figcaption {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(125, 211, 252, 0.14);
  background: rgba(125, 211, 252, 0.14);
}

.classroom-showcase figcaption span {
  display: grid;
  gap: 5px;
  padding: 17px 18px;
  background: rgba(3, 19, 45, 0.96);
}

.classroom-showcase figcaption strong {
  color: #e6f8ff;
  font-size: 0.78rem;
}

.classroom-showcase figcaption small {
  color: rgba(191, 219, 254, 0.67);
  font-size: 0.69rem;
  line-height: 1.45;
}

.mobile-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(37, 99, 235, 0.12), transparent 29rem),
    linear-gradient(180deg, #f8fbff, #eef6ff);
}

.mobile-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.mobile-heading p { margin-right: auto; margin-left: auto; }

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 54px);
  max-width: 1120px;
  margin: 36px auto 0;
  align-items: start;
}

.phone-story {
  position: relative;
  min-width: 0;
  text-align: center;
}

.phone-story-featured { transform: translateY(-28px); }

.phone-frame {
  position: relative;
  width: min(270px, 88%);
  margin: auto;
  overflow: hidden;
  border: 8px solid #071a31;
  border-radius: 42px;
  padding: 7px;
  background: #071a31;
  box-shadow:
    0 35px 70px rgba(7, 40, 85, 0.22),
    0 0 0 1px rgba(125, 211, 252, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-frame::after {
  position: absolute;
  inset: 7px;
  border-radius: 29px;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 230 / 511;
  object-fit: contain;
  border-radius: 29px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 76px;
  height: 20px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #071a31;
}

.phone-index {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-top: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  font-size: 0.68rem;
  font-weight: 950;
}

.phone-story h3 {
  margin: 13px 0 7px;
  color: var(--navy-950);
  font-size: 1.18rem;
}

.phone-story p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--slate-600);
  font-size: 0.84rem;
  line-height: 1.6;
}

.mobile-scope { margin: 38px auto 0; text-align: center; }

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

.role-outcomes-grid article {
  min-width: 0;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 26px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(7, 40, 85, 0.06);
}

.role-outcomes-grid span {
  color: var(--blue-600);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-outcomes-grid h3 {
  margin: 13px 0 8px;
  font-size: 1.2rem;
}

.role-outcomes-grid p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.86rem;
  line-height: 1.65;
}

.usp-section {
  color: #e8f5ff;
  background:
    radial-gradient(circle at 11% 12%, rgba(6, 182, 212, 0.18), transparent 25rem),
    radial-gradient(circle at 91% 88%, rgba(124, 58, 237, 0.16), transparent 27rem),
    linear-gradient(145deg, #06172c, #092d58);
}

.usp-section .eyebrow { color: #82ecff; }
.usp-section h2 { color: #ffffff; }
.usp-section .section-heading p { color: rgba(219, 234, 254, 0.72); }

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

.usp-card {
  min-width: 0;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
}

.usp-card-primary {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.43), rgba(6, 182, 212, 0.12));
}

.usp-card > span {
  color: #77e9ff;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.usp-card h3 {
  margin: 22px 0 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

.usp-card p {
  margin: 0;
  color: rgba(219, 234, 254, 0.68);
  font-size: 0.84rem;
  line-height: 1.65;
}

.availability-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(38px, 7vw, 98px);
  align-items: center;
}

.availability-section h2 { margin-top: 16px; }
.availability-section > div > p { color: var(--slate-700); line-height: 1.75; }

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

.availability-list li {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.availability-list strong { color: var(--blue-600); }
.availability-list span { color: var(--slate-600); font-size: 0.86rem; line-height: 1.6; }

.feature-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(34px, 6vw, 80px);
  max-width: 1320px;
  margin: 0 auto 76px;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 10%, rgba(6, 182, 212, 0.12), transparent 16rem),
    linear-gradient(135deg, #ffffff, #edf6ff);
  box-shadow: 0 28px 70px rgba(7, 40, 85, 0.12), inset 0 1px #ffffff;
}

.feature-final-cta h2 { margin-top: 16px; font-size: clamp(2.1rem, 4vw, 4rem); }
.feature-final-cta p { color: var(--slate-700); line-height: 1.75; }

@media (max-width: 1300px) {
  .site-header .brand-subtitle { display: none; }
  .site-header { gap: 16px; }
  .nav-links,
  .header-actions { gap: 14px; }
  .nav-links a,
  .text-link { white-space: nowrap; }
}

@media (max-width: 1180px) {
  .home-feature-teaser { grid-template-columns: 1fr; }
  .home-feature-intro { max-width: 840px; }
  .feature-hero { grid-template-columns: 1fr; }
  .feature-hero-copy { max-width: 900px; }
  .feature-command-stage { width: min(760px, 100%); margin: auto; }
  .feature-value-strip { margin-right: 20px; margin-left: 20px; }
  .classroom-sales-section { grid-template-columns: 1fr; }
  .classroom-sales-copy { max-width: 840px; }
}

@media (max-width: 900px) {
  .feature-value-strip,
  .terminology-grid,
  .phone-gallery,
  .role-outcomes-grid,
  .usp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .operations-grid { grid-template-columns: 1fr; }
  .phone-story-featured { transform: none; }
  .availability-section,
  .feature-final-cta { grid-template-columns: 1fr; }
  .mobile-scope { margin-top: 22px; }
}

@media (max-width: 680px) {
  .home-feature-map { grid-template-columns: 1fr; }
  .feature-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 56px; }
  .feature-hero h1 { font-size: clamp(2.65rem, 15vw, 4.5rem); }
  .feature-hero-proof { grid-template-columns: 1fr; }
  .feature-command-stage { min-height: auto; padding-top: 18px; }
  .feature-command-halo { display: none; }
  .feature-command-core { position: relative; top: auto; left: auto; width: 100%; min-height: 230px; transform: none; }
  .feature-command-node { position: relative; inset: auto; min-width: 0; margin-top: 10px; }
  .feature-command-node::after { display: none; }
  .feature-value-strip,
  .terminology-grid,
  .phone-gallery,
  .role-outcomes-grid,
  .usp-grid { grid-template-columns: 1fr; }
  .feature-value-strip { margin-top: -18px; border-radius: 24px; }
  .operation-card { grid-template-columns: 1fr; }
  .operation-card > div { margin-top: 15px; }
  .operation-card ul { grid-template-columns: 1fr; }
  .classroom-showcase figcaption { grid-template-columns: 1fr; }
  .phone-frame { width: min(285px, 90%); }
  .availability-list li { grid-template-columns: 1fr; gap: 7px; }
  .feature-final-cta { margin-right: 16px; margin-left: 16px; padding: 32px 22px; }
  .preference-scope,
  .preference-form { grid-template-columns: 1fr; }
  .preference-form .button { width: 100%; }
}

@keyframes future-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.78; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes orbit-breathe {
  0%, 100% { opacity: 0.6; transform: rotateX(67deg) rotateZ(-14deg) scale(0.96); }
  50% { opacity: 1; transform: rotateX(67deg) rotateZ(-14deg) scale(1.03); }
}

@keyframes aurora-float {
  from { transform: translate3d(-2%, 2%, 0) rotate(-4deg); }
  to { transform: translate3d(3%, -3%, 0) rotate(5deg); }
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-section::before { display: none; }
  .tour-workspace, .trust-status-strip, .readiness-scorecard, .readiness-gates, .readiness-table-wrap { margin-right: 20px; margin-left: 20px; }
  .tour-convert { margin-right: 20px; margin-left: 20px; }
}

@media (max-width: 900px) {
  .trust-hero-grid, .evidence-room { grid-template-columns: 1fr; }
  .trust-core { width: min(390px, 88vw); margin: auto; }
  .trust-bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-bento-wide { grid-column: span 2; }
  .tour-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-pipeline { grid-template-columns: repeat(2, 1fr); }
  .tour-pipeline > i { display: none; }
  .tour-summary { grid-template-columns: 1fr; gap: 8px; }
  .tour-convert { grid-template-columns: 1fr; }
  .growth-entry-grid { grid-template-columns: 1fr; }
  .readiness-scorecard { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    padding: 12px 18px;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding: 2px 1px 7px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar { display: none; }

  .header-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    gap: 14px;
    align-items: center;
  }

  .header-actions .button { width: auto; }
  .future-hero { min-height: auto; }
  .future-stage { padding-right: 0; padding-left: 0; transform: none !important; }
  .future-stage .hero-orbit,
  .future-stage .hero-aurora { display: none; }
  .future-stage .floating-card-three { position: static; margin-top: 14px; }
  .journey-grid, .trust-status-strip, .trust-bento-grid { grid-template-columns: 1fr; }
  .trust-bento-wide { grid-column: auto; }
  .trust-status-strip { margin-top: -15px; }
  .tour-workspace { border-radius: 26px; padding: 14px; }
  .tour-workspace-head, .tour-canvas-title { align-items: flex-start; flex-direction: column; }
  .tour-tabs { grid-template-columns: 1fr; }
  .tour-tab { justify-content: flex-start; padding: 0 16px; }
  .tour-screen { grid-template-columns: 1fr; min-height: auto; }
  .tour-rail { display: none; }
  .tour-canvas { padding: 18px; }
  .tour-kpi-grid, .tour-pipeline { grid-template-columns: 1fr; }
  .tour-focus-row { align-items: flex-start; flex-wrap: wrap; }
  .tour-focus-row button { width: 100%; }
  .tour-seats { grid-template-columns: repeat(3, 1fr); }
  .readiness-gates article { grid-template-columns: 1fr; }
  .readiness-table { overflow-x: auto; }
  .readiness-table [role="row"] { min-width: 680px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-tilt],
  .hero-orbit-two,
  .hero-aurora,
  .trust-core-orbit,
  .live-pill span,
  .tour-status i,
  .tour-panel {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .experience-ready [data-reveal].reveal-pending:not(.is-revealed) {
    opacity: 1;
  }
}
