:root {
  --ink: #0b0d12;
  --muted: #626976;
  --paper: #fbfbfd;
  --line: rgba(12, 17, 29, 0.1);
  --blue: #1778ff;
  --cyan: #36d8ff;
  --green: #34d399;
  --pink: #ff4fa3;
  --orange: #ffb020;
  --purple: #8b5cf6;
  --shadow: 0 24px 80px rgba(12, 17, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 50px rgba(12, 17, 29, 0.1);
  backdrop-filter: blur(22px);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
}

.brand,
.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark,
.footer-mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #fff;
}

.brand-mark {
  width: 44px;
  height: 44px;
  box-shadow: inset 0 0 0 1px rgba(12, 17, 29, 0.08);
}

.footer-mark {
  width: 38px;
  height: 38px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand-mark img,
.footer-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.brand span {
  font-size: 1rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #242936;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(23, 120, 255, 0.1);
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #111827);
  box-shadow: 0 12px 30px rgba(12, 17, 29, 0.24);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 34px;
  min-height: 88vh;
  padding: 116px clamp(20px, 5vw, 72px) 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.24), transparent 28%),
    radial-gradient(circle at 78% 42%, rgba(54, 216, 255, 0.3), transparent 26%),
    radial-gradient(circle at 28% 86%, rgba(255, 79, 163, 0.22), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 42%, #f0eaff 100%);
}

.hero::before {
  position: absolute;
  inset: auto -8% -18% 42%;
  height: 420px;
  content: "";
  background: linear-gradient(120deg, rgba(23, 120, 255, 0.18), rgba(52, 211, 153, 0.22));
  border-radius: 52% 48% 0 0;
  filter: blur(6px);
  transform: rotate(-5deg);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #0a67e8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--green);
}

.eyebrow.dark {
  color: #3f4656;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(3.05rem, 5.7vw, 4.9rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 850;
}

.hero-lede {
  max-width: 640px;
  margin-top: 24px;
  color: #485160;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary,
.submit-button {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(12, 17, 29, 0.2);
}

.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(12, 17, 29, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span,
.ticker span {
  padding: 9px 13px;
  border: 1px solid rgba(12, 17, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #374151;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.insight-shell {
  width: min(100%, 520px);
  min-height: 500px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.5)),
    linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(54, 216, 255, 0.16));
  box-shadow: 0 26px 90px rgba(29, 18, 84, 0.2);
  backdrop-filter: blur(24px);
}

.device-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.device-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.device-topbar span:nth-child(1) {
  background: var(--pink);
}

.device-topbar span:nth-child(2) {
  background: var(--orange);
}

.device-topbar span:nth-child(3) {
  background: var(--green);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(12, 17, 29, 0.08);
}

.insight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
}

.insight-card p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.insight-card h2 {
  margin-top: 6px;
  font-size: 1.8rem;
}

.insight-card strong {
  display: grid;
  place-items: center;
  min-width: 92px;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--green));
  font-size: 0.92rem;
}

.analytics-stage {
  position: relative;
  height: 244px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 14%, rgba(54, 216, 255, 0.24), transparent 22%),
    radial-gradient(circle at 80% 12%, rgba(255, 79, 163, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(11, 13, 18, 0.96), rgba(36, 20, 76, 0.94) 48%, rgba(11, 13, 18, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 60px rgba(12, 17, 29, 0.12);
}

.trend-card {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(18px);
}

.trend-card span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 850;
}

.trend-card strong {
  display: block;
  margin-top: 4px;
  font-size: 2rem;
  line-height: 1;
}

.mini-chart {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 14px;
  height: 142px;
}

.mini-chart i {
  height: var(--h);
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #f0abfc, #8b5cf6 44%, #1778ff);
  box-shadow: 0 14px 34px rgba(139, 92, 246, 0.28);
  animation: barPulse 2.8s ease-in-out infinite;
}

.mini-chart i:nth-child(2n) {
  animation-delay: 260ms;
}

.trend-line {
  position: absolute;
  inset: 48px 20px auto;
  z-index: 1;
  width: calc(100% - 40px);
  height: 150px;
}

.trend-line path {
  stroke: #36d8ff;
  stroke-width: 7;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(54, 216, 255, 0.5));
}

.dash-chip {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(12, 17, 29, 0.16);
}

.chip-one {
  top: 26px;
  right: 28px;
}

.chip-two {
  right: 36px;
  top: 92px;
}

.chip-three {
  bottom: 34px;
  left: 34px;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.signal-row div {
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(12, 17, 29, 0.08);
}

.signal-row span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.signal-row strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

@keyframes barPulse {
  0%, 100% {
    transform: scaleY(0.94);
  }

  50% {
    transform: scaleY(1.04);
  }
}

.ticker {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: #fff;
  border-block: 1px solid var(--line);
}

.ticker span {
  flex: 0 0 auto;
  background: #f6f8fb;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 48px;
  background: #fff;
}

.method-grid {
  display: grid;
  gap: 14px;
}

.method-grid article {
  padding: 26px;
  border-top: 1px solid var(--line);
}

.method-grid span {
  color: var(--blue);
  font-weight: 900;
}

.method-grid h3 {
  margin-top: 10px;
}

.method-grid p,
.section-heading p,
.course-card p,
.outcomes-copy p,
.form-intro p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.method-title {
  display: grid;
  gap: 22px;
}

.method-title span {
  display: block;
}

.courses-section {
  background: #f3f6fb;
}

.section-heading {
  max-width: 780px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 38px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.course-card {
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(12, 17, 29, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(12, 17, 29, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.course-card:hover {
  border-color: rgba(23, 120, 255, 0.22);
  box-shadow: 0 24px 70px rgba(12, 17, 29, 0.1);
  transform: translateY(-4px);
}

.course-icon {
  display: grid;
  place-items: center;
  min-width: 52px;
  width: fit-content;
  height: 52px;
  padding: 0 12px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 0.86rem;
  font-weight: 900;
}

.text-button {
  margin-top: 22px;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.outcomes {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  padding: 92px clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(11, 13, 18, 0.96), rgba(19, 29, 48, 0.92)),
    url("assets/pattern.svg");
}

.outcomes .eyebrow {
  color: var(--cyan);
}

.outcomes-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
}

.outcome-showcase {
  display: grid;
  gap: 12px;
  align-self: end;
}

.outcome-card {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 92% 10%, rgba(54, 216, 255, 0.28), transparent 32%);
  transition: transform 180ms ease, border-color 180ms ease;
}

.outcome-card:hover {
  border-color: rgba(54, 216, 255, 0.42);
  transform: translateX(6px);
}

.outcome-card span {
  color: var(--cyan);
  font-weight: 900;
}

.outcome-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.12;
}

.outcome-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.enroll-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 42px;
  padding: 92px clamp(20px, 5vw, 72px);
  background: #fff;
}

.enroll-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 22px 70px rgba(12, 17, 29, 0.08);
}

.contact-section {
  background:
    radial-gradient(circle at 20% 8%, rgba(54, 216, 255, 0.18), transparent 26%),
    radial-gradient(circle at 90% 64%, rgba(255, 79, 163, 0.14), transparent 24%),
    #f7f9fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.contact-grid a,
.contact-grid div {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(12, 17, 29, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 55px rgba(12, 17, 29, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-grid a:hover {
  box-shadow: 0 26px 70px rgba(12, 17, 29, 0.1);
  transform: translateY(-4px);
}

.contact-grid span {
  display: block;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  display: block;
  margin-top: 14px;
  color: #172033;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: #2f3542;
  font-size: 0.86rem;
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(12, 17, 29, 0.12);
  border-radius: 8px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 120, 255, 0.12);
}

.submit-button {
  width: 100%;
  margin-top: 8px;
  border: 0;
}

.submit-button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.form-message {
  min-height: 24px;
  color: var(--muted);
  font-weight: 750;
}

.form-message.success {
  color: #047857;
}

.form-message.error {
  color: #be123c;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #0b0d12;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer p {
  font-size: 0.92rem;
}

.faq-bot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  font-family: inherit;
}

.chatbot-toggle {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.36), transparent 24%),
    linear-gradient(135deg, #0b0d12, #5b21b6 52%, #1778ff);
  box-shadow: 0 20px 60px rgba(37, 22, 96, 0.28);
  cursor: pointer;
}

.chatbot-toggle span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 950;
}

.chatbot-toggle svg {
  width: 30px;
  height: 30px;
  overflow: visible;
}

.bot-bubble {
  fill: rgba(255, 255, 255, 0.96);
}

.bot-face {
  fill: #0b0d12;
}

.bot-ant {
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chatbot-toggle circle {
  fill: #36d8ff;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: none;
  width: min(380px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(12, 17, 29, 0.94), rgba(31, 20, 67, 0.94));
  box-shadow: 0 30px 90px rgba(12, 17, 29, 0.28);
  backdrop-filter: blur(24px);
}

.faq-bot.open .chatbot-panel {
  display: block;
}

.chatbot-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-head p {
  margin-top: 4px;
  font-weight: 900;
}

.chatbot-head strong {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.35;
}

.bot-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12);
}

.chatbot-head button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.chatbot-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  height: 280px;
  padding: 16px;
  overflow-y: auto;
}

.chat-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 17px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.chat-message.bot {
  justify-self: start;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.chat-message.user {
  justify-self: end;
  color: #0b0d12;
  background: linear-gradient(135deg, #fff, #dff7ff);
}

.quick-questions {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
  overflow-x: auto;
}

.quick-questions button {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.chatbot-form input {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.chatbot-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.chatbot-form button {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #0b0d12;
  background: linear-gradient(135deg, #fff, #a7f3ff);
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .outcomes,
  .enroll-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .insight-shell {
    min-height: 440px;
  }

  .outcome-showcase {
    max-width: 620px;
  }

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

@media (max-width: 760px) {
  .site-header {
    inset: 12px 12px auto;
    border-radius: 24px;
  }

  .brand {
    max-width: calc(100% - 54px);
  }

  .brand span:last-child {
    overflow: hidden;
    font-size: 0.95rem;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 78px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.9rem);
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 1rem;
  }

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

  .hero-proof {
    margin-top: 16px;
  }

  .hero-proof span {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

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

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 28px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .insight-shell {
    min-height: 330px;
    padding: 14px;
    border-radius: 28px;
  }

  .insight-card {
    padding: 16px;
  }

  .insight-card h2 {
    font-size: 1.15rem;
  }

  .insight-card strong {
    min-width: 74px;
    min-height: 44px;
    font-size: 0.86rem;
  }

  .analytics-stage {
    height: 190px;
    margin-top: 12px;
  }

  .trend-card {
    top: 12px;
    left: 12px;
    padding: 10px 12px;
  }

  .trend-card strong {
    font-size: 1.34rem;
  }

  .mini-chart {
    right: 14px;
    bottom: 18px;
    left: 14px;
    gap: 8px;
    height: 112px;
  }

  .trend-line {
    inset: 42px 12px auto;
    width: calc(100% - 24px);
    height: 116px;
  }

  .trend-line path {
    stroke-width: 6;
  }

  .dash-chip {
    padding: 7px 9px;
    font-size: 0.8rem;
  }

  .chip-one {
    top: 12px;
    right: 12px;
  }

  .chip-two {
    top: 58px;
    right: 12px;
  }

  .chip-three {
    bottom: 14px;
    left: 14px;
  }

  .signal-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .signal-row div {
    min-height: auto;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .outcome-showcase,
  .field-group {
    grid-template-columns: 1fr;
  }

  .course-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

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

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

  .faq-bot {
    right: 14px;
    bottom: 14px;
  }

  .chatbot-panel {
    bottom: 72px;
  }

  .chatbot-messages {
    height: 250px;
  }
}
