:root {
  --navy-950: #061b3a;
  --navy-900: #082750;
  --navy-800: #0c376c;
  --blue-700: #075fd5;
  --blue-600: #0878ed;
  --blue-500: #29a1ff;
  --cyan-400: #35c5d7;
  --orange-600: #e95c2b;
  --orange-500: #f1793f;
  --cream: #fffaf3;
  --ice: #f3f8fd;
  --line: #d9e6f3;
  --text: #112849;
  --muted: #5d718c;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(15, 54, 95, .1);
  --shadow-soft: 0 12px 36px rgba(20, 68, 118, .07);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--navy-950);
  color: white;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid rgba(8, 120, 237, .35);
  outline-offset: 3px;
}

.announcement {
  position: relative;
  z-index: 80;
  background: var(--navy-950);
  color: #dcecff;
  font-size: 12px;
  letter-spacing: .02em;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement span,
.announcement button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement button {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.announcement button:hover {
  color: #7ec8ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(210, 225, 240, .9);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  position: relative;
  border: 5px solid #cde8ff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-900), #0b64a9);
  box-shadow: 0 8px 20px rgba(7, 74, 136, .2);
  color: white;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.brand-mark > span {
  position: absolute;
  right: 4px;
  top: 4px;
  color: #64d2ff;
  font-size: 15px;
}

.brand-mark.small {
  width: 36px;
  height: 36px;
  border-width: 4px;
  font-size: 16px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 18px;
  letter-spacing: .01em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 700;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav > a,
.nav-menu > button {
  border: 0;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.main-nav > a:hover,
.nav-menu > button:hover {
  color: var(--blue-600);
}

.nav-menu {
  position: relative;
}

.nav-menu > button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 26px 0;
}

.nav-menu > button span {
  color: var(--blue-600);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: -20px;
  width: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.nav-dropdown a:hover {
  background: var(--ice);
  color: var(--blue-700);
}

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

.button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #086edb, #0454c2);
  box-shadow: 0 10px 22px rgba(7, 101, 213, .22);
  color: white;
}

.button.primary:hover {
  background: linear-gradient(135deg, #075cc7, #063e99);
  box-shadow: 0 14px 28px rgba(7, 101, 213, .3);
}

.button.secondary {
  border-color: #b8d5f2;
  background: white;
  color: var(--blue-700);
}

.button.secondary:hover {
  border-color: var(--blue-600);
  background: #f5faff;
}

.button.large {
  min-height: 52px;
  padding: 12px 21px;
  font-size: 14px;
}

.button-arrow {
  display: inline-grid;
  place-items: center;
  transition: transform .2s ease;
}

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

.header-cta {
  min-width: 190px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 34px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 45%, rgba(240,248,255,.82) 100%),
    radial-gradient(circle at 82% 20%, #cde9ff 0, transparent 35%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(8, 74, 138, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 74, 138, .035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, transparent, black 55%, black);
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  top: 50px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(35, 150, 231, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(35, 150, 231, .035),
    0 0 0 145px rgba(35, 150, 231, .025);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: float-orb 9s ease-in-out infinite;
}

.hero-orb-one {
  width: 14px;
  height: 14px;
  right: 5%;
  top: 16%;
  background: var(--orange-500);
}

.hero-orb-two {
  width: 10px;
  height: 10px;
  right: 42%;
  bottom: 11%;
  background: var(--blue-500);
  animation-delay: -3s;
}

@keyframes float-orb {
  50% { transform: translateY(22px) translateX(-8px); }
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 47px;
  color: #7a8da5;
  font-size: 11px;
}

.breadcrumbs a:hover {
  color: var(--blue-600);
}

.breadcrumbs strong {
  color: var(--text);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  align-items: center;
  gap: 60px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 1px;
  background: var(--orange-500);
  position: relative;
}

.eyebrow > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-500);
}

.hero h1 {
  max-width: 700px;
  margin: 17px 0 22px;
  color: var(--navy-950);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.hero h1 em {
  display: block;
  color: var(--blue-600);
  font-style: normal;
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: #38526f;
  font-size: 18px;
  line-height: 1.65;
}

.hero-support {
  max-width: 630px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 28px;
  margin: 28px 0;
}

.hero-highlights span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 800;
}

.hero-highlights svg {
  color: var(--blue-600);
}

.hero-actions,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.quick-links {
  margin-top: 18px;
  gap: 24px;
}

.quick-links a,
.contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 800;
}

.quick-links a:hover,
.contact-row a:hover {
  color: var(--blue-600);
}

.trust-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0 0;
  color: #6b7f96;
  font-size: 11px;
}

.trust-note svg {
  flex: none;
  color: #0e8b80;
}

.prompt-studio {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(119, 173, 221, .48);
  border-radius: 26px;
  background: linear-gradient(145deg, #fff, #eef7ff);
  box-shadow: 0 28px 75px rgba(5, 43, 88, .17);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.prompt-studio::before {
  content: "";
  position: absolute;
  inset: -18px 28px 20px -18px;
  z-index: -1;
  border: 1px solid rgba(16, 120, 216, .14);
  border-radius: 32px;
}

.studio-topbar {
  height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: 26px 26px 0 0;
  font-size: 11px;
}

.studio-topbar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27c785;
  box-shadow: 0 0 0 5px rgba(39, 199, 133, .12);
}

.status-pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e6fbf4;
  color: #08765a;
  font-weight: 800;
}

.studio-workspace {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 475px;
}

.studio-sidebar {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  background: rgba(238, 247, 255, .75);
  border-radius: 0 0 0 26px;
}

.studio-sidebar span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #6e87a3;
}

.studio-sidebar span.active {
  background: var(--blue-600);
  box-shadow: 0 8px 18px rgba(8, 120, 237, .24);
  color: white;
}

.studio-main {
  min-width: 0;
  padding: 18px 20px 20px;
}

.studio-meta,
.prompt-label,
.score-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.studio-meta {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 11px;
}

.studio-meta strong {
  padding: 4px 8px;
  border-radius: 7px;
  background: #e9f3ff;
  color: var(--blue-700);
}

.prompt-window {
  border: 1px solid #cfe0f1;
  border-radius: 13px;
  background: white;
  box-shadow: 0 9px 24px rgba(17, 64, 108, .06);
  overflow: hidden;
}

.prompt-label {
  padding: 8px 11px;
  border-bottom: 1px solid #e5edf5;
  color: #7990a8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
}

.prompt-label span:last-child {
  color: var(--orange-600);
}

.prompt-window pre {
  min-height: 162px;
  margin: 0;
  padding: 13px;
  white-space: pre-wrap;
  color: #27435f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9.5px;
  line-height: 1.55;
}

.evaluation-row {
  margin: 14px 0;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 16px;
}

.score-ring {
  width: 80px;
  height: 80px;
  display: grid;
  place-content: center;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(var(--blue-600) var(--score), #dfebf6 0);
  text-align: center;
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: white;
}

.score-ring strong,
.score-ring span {
  position: relative;
  z-index: 1;
}

.score-ring strong {
  color: var(--navy-900);
  font-size: 22px;
  line-height: 1;
}

.score-ring span {
  color: var(--muted);
  font-size: 8px;
}

.score-list {
  display: grid;
  gap: 7px;
}

.score-list > div {
  padding-bottom: 5px;
  border-bottom: 1px dashed #d9e5f0;
  color: var(--muted);
  font-size: 10px;
}

.score-list b {
  color: var(--navy-800);
}

.run-test {
  width: 100%;
  height: 39px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 9px;
  background: var(--navy-900);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.run-test:hover {
  background: var(--blue-700);
}

.run-test span {
  margin-left: auto;
  color: #a9c7e8;
  font-size: 9px;
}

.workflow-line {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.workflow-line span {
  color: #889bb0;
  font-size: 8.5px;
  font-weight: 800;
}

.workflow-line span.done {
  color: var(--blue-700);
}

.workflow-line i {
  width: 22px;
  height: 1px;
  background: #cfdeec;
}

.floating-note {
  position: absolute;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #cae0f5;
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(13, 58, 100, .13);
  color: var(--navy-800);
  font-size: 9px;
  font-weight: 800;
  animation: note-float 5s ease-in-out infinite;
}

.floating-note svg {
  color: #0e9c77;
}

.note-one {
  right: -34px;
  top: 115px;
}

.note-two {
  left: -44px;
  bottom: 50px;
  animation-delay: -2s;
}

@keyframes note-float {
  50% { transform: translateY(-8px); }
}

.facts-band {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: white;
}

.facts-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.facts-grid article {
  padding: 22px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
}

.facts-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  height: 42px;
  border-right: 1px solid var(--line);
}

.fact-icon {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #eef7ff;
  color: var(--blue-600);
}

.facts-grid article div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.facts-grid small {
  color: #8193a6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.facts-grid strong {
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 12px;
}

.facts-grid em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8.5px;
  font-style: normal;
}

.section {
  padding: 104px 0;
}

.section-tinted {
  background: var(--ice);
}

.section-dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(27, 131, 225, .22), transparent 32%),
    linear-gradient(145deg, #061b3a, #073263);
  color: white;
}

.section h2,
.final-cta h2 {
  margin: 13px 0 20px;
  color: var(--navy-950);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section h3 {
  color: var(--navy-900);
}

.section p {
  color: var(--muted);
}

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

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

.section-heading > p {
  margin: 0 auto;
  font-size: 16px;
}

.section-heading.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  align-items: end;
  gap: 60px;
}

.section-heading.split-heading h2 {
  margin-bottom: 0;
}

.section-heading.split-heading > p,
.heading-action > p {
  margin: 0 0 4px;
}

.section-heading.light h2,
.section-heading.light p {
  color: white;
}

.section-heading.light p {
  color: #b8cce2;
}

.definition-section {
  padding: 115px 0;
}

.definition-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  align-items: center;
  gap: 110px;
}

.large-copy {
  margin-top: 0;
  color: #294766 !important;
  font-size: 19px;
  line-height: 1.7;
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: var(--blue-700);
  cursor: pointer;
  font-weight: 800;
}

.text-link:hover,
.text-button:hover {
  color: var(--orange-600);
}

.definition-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, white, #f2f8fe);
  box-shadow: var(--shadow-soft);
}

.definition-number {
  position: absolute;
  right: 25px;
  top: -42px;
  color: #e8f1f9;
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
}

.definition-formula {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.definition-formula div {
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e0ebf5;
  border-radius: 10px;
  background: white;
}

.definition-formula span {
  color: var(--orange-600);
  font-size: 9px;
  font-weight: 900;
}

.definition-formula strong {
  color: var(--navy-900);
  font-size: 12px;
}

.definition-card > p {
  margin: 18px 0 0;
  padding-top: 17px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-top: 1px dashed #cadbea;
  font-size: 12px;
}

.definition-card > p svg {
  flex: none;
  color: var(--blue-600);
}

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

.feature-card {
  min-height: 235px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 24px rgba(21, 67, 110, .04);
  transition: .24s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #9bc9f3;
  box-shadow: 0 18px 38px rgba(18, 83, 145, .12);
}

.feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-head > span,
.outcome-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eaf5ff;
  color: var(--blue-600);
}

.feature-head em {
  color: #dce8f3;
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
}

.feature-card h3 {
  margin: 20px 0 8px;
  font-size: 19px;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  font-size: 13px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.outcome-card {
  min-height: 260px;
  padding: 22px 19px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  transition: .22s ease;
}

.outcome-card:hover {
  transform: translateY(-5px);
  border-color: #a4cdf0;
  box-shadow: var(--shadow-soft);
}

.outcome-card > span {
  position: absolute;
  right: 18px;
  top: 19px;
  color: #cfddea;
  font-size: 12px;
  font-weight: 900;
}

.outcome-card h3 {
  margin: 20px 0 9px;
  font-size: 16px;
  line-height: 1.3;
}

.outcome-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.disclaimer {
  max-width: 870px;
  margin: 30px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  text-align: center;
  font-size: 11px;
}

.disclaimer svg {
  flex: none;
  color: #0c8c74;
}

.audience-section {
  padding-top: 70px;
}

.audience-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: start;
  gap: 85px;
}

.audience-copy {
  position: sticky;
  top: 125px;
}

.audience-copy h2 {
  font-size: 44px;
}

.no-code-card {
  margin: 26px 0;
  padding: 18px;
  display: flex;
  gap: 14px;
  border: 1px solid #cce0f1;
  border-radius: 14px;
  background: #f6fbff;
}

.no-code-card > span {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: white;
  color: var(--blue-600);
}

.no-code-card strong {
  color: var(--navy-900);
  font-size: 13px;
}

.no-code-card p {
  margin: 4px 0 0;
  font-size: 11px;
}

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

.audience-grid article {
  min-height: 190px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  box-shadow: 0 9px 25px rgba(21, 67, 110, .04);
}

.audience-grid article > span {
  color: var(--orange-600);
  font-size: 10px;
  font-weight: 900;
}

.audience-grid h3 {
  margin: 14px 0 8px;
  font-size: 18px;
}

.audience-grid p {
  margin: 0;
  font-size: 12px;
}

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

.course-comparison article {
  min-height: 390px;
  padding: 29px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(145, 183, 220, .25);
  border-radius: 19px;
  background: rgba(255,255,255,.065);
  transition: .24s ease;
}

.course-comparison article:hover {
  transform: translateY(-6px);
  border-color: rgba(101, 193, 255, .7);
  background: rgba(255,255,255,.1);
}

.course-comparison article.recommended {
  border-color: #40b9ff;
  box-shadow: inset 0 3px 0 #42bfff, 0 18px 45px rgba(0,0,0,.15);
}

.course-tag {
  color: #7ed0ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.course-icon {
  width: 52px;
  height: 52px;
  margin: 25px 0 17px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(31,155,255,.35), rgba(20,99,189,.18));
  color: white;
}

.course-comparison h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 22px;
  line-height: 1.28;
}

.course-comparison p {
  margin: 0 0 22px;
  color: #b8cce2;
  font-size: 13px;
}

.course-comparison article > strong {
  color: var(--orange-500);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.course-comparison article > span:not(.course-tag) {
  margin-top: 5px;
  color: white;
  font-size: 12px;
}

.course-comparison a,
.course-comparison button {
  margin-top: auto;
  padding: 17px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.13);
  background: transparent;
  color: #79ceff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.craft-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(30, 148, 247, .08), transparent 25%),
    white;
}

.craft-layout {
  min-height: 490px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.craft-tabs {
  padding: 18px;
  display: grid;
  gap: 8px;
  border-right: 1px solid var(--line);
  background: #f5f9fd;
}

.craft-tabs button {
  min-height: 64px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: .2s ease;
}

.craft-tabs button > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: white;
  box-shadow: 0 5px 14px rgba(20,68,118,.07);
  color: var(--blue-700);
  font-size: 17px;
  font-weight: 900;
}

.craft-tabs button strong {
  font-size: 13px;
}

.craft-tabs button svg {
  opacity: 0;
}

.craft-tabs button:hover,
.craft-tabs button.active {
  border-color: #b9d8f4;
  background: white;
  box-shadow: 0 8px 20px rgba(20,68,118,.06);
  color: var(--navy-900);
}

.craft-tabs button.active > span {
  background: var(--blue-600);
  color: white;
}

.craft-tabs button.active svg {
  opacity: 1;
  color: var(--blue-600);
}

.craft-panel {
  padding: 58px 60px;
  position: relative;
  overflow: hidden;
}

.craft-letter {
  position: absolute;
  right: -14px;
  top: -55px;
  color: #edf5fb;
  font-size: 280px;
  font-weight: 900;
  line-height: 1;
}

.craft-kicker {
  position: relative;
  color: var(--orange-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}

.craft-panel h3 {
  position: relative;
  margin: 12px 0 18px;
  font-size: 36px;
}

.craft-question {
  max-width: 560px;
  position: relative;
  margin: 0;
  color: #294866 !important;
  font-size: 19px;
  line-height: 1.6;
}

.craft-example {
  max-width: 580px;
  margin-top: 34px;
  padding: 22px;
  position: relative;
  border-left: 3px solid var(--blue-600);
  border-radius: 0 12px 12px 0;
  background: #eff7fe;
}

.craft-example span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.craft-example strong {
  color: var(--navy-800);
  font-size: 14px;
}

.craft-progress {
  margin-top: 34px;
  display: flex;
  gap: 7px;
}

.craft-progress i {
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: #dce8f2;
}

.craft-progress i.filled {
  background: var(--blue-600);
}

.framework-note {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 11px;
}

.before-after-section {
  background: var(--cream);
}

.comparison-toggle {
  width: fit-content;
  margin: -20px auto 28px;
  padding: 5px;
  display: flex;
  gap: 4px;
  border: 1px solid #d8e2e9;
  border-radius: 11px;
  background: white;
}

.comparison-toggle button {
  padding: 9px 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.comparison-toggle button.active {
  background: var(--navy-900);
  color: white;
}

.prompt-comparison {
  display: grid;
  grid-template-columns: 1fr 42px 1.2fr;
  align-items: stretch;
}

.prompt-card {
  min-height: 375px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.prompt-card.vague {
  border-color: #eadbd4;
}

.prompt-card.improved {
  border-color: #b7d9f6;
  box-shadow: 0 20px 50px rgba(19, 91, 157, .12);
}

.prompt-card-head {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prompt-card-head span {
  color: var(--orange-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.prompt-card-head strong {
  padding: 5px 8px;
  border-radius: 7px;
  background: #fff0ea;
  color: var(--orange-600);
  font-size: 9px;
}

.prompt-card.improved .prompt-card-head strong {
  background: #e7f8ef;
  color: #08765a;
}

.prompt-card blockquote {
  margin: 0 0 25px;
  color: var(--navy-900);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.prompt-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prompt-card li {
  padding: 9px 0 9px 21px;
  position: relative;
  border-bottom: 1px dashed #eaded7;
  color: var(--muted);
  font-size: 12px;
}

.prompt-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--orange-600);
  font-weight: 900;
}

.comparison-arrow {
  display: grid;
  place-items: center;
  color: var(--blue-600);
}

.comparison-arrow svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 7px 18px rgba(15, 68, 116, .11);
}

.prompt-card.improved > p {
  margin: 0 0 18px;
  color: #294866;
  font-size: 14px;
}

.prompt-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.prompt-rules span {
  padding: 12px;
  border: 1px solid #dce9f5;
  border-radius: 10px;
  background: #f8fbfe;
  color: var(--muted);
  font-size: 10.5px;
}

.prompt-rules b {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-700);
  font-size: 9px;
  text-transform: uppercase;
}

.test-chips {
  margin-top: 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.test-chips span {
  padding: 7px 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: #eaf8f2;
  color: #08765a;
  font-size: 9px;
  font-weight: 800;
}

.prompt-comparison.before .improved {
  opacity: .45;
}

.prompt-comparison.after .vague {
  opacity: .7;
}

.heading-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.module-list {
  border-top: 1px solid var(--line);
}

.module-list details {
  border-bottom: 1px solid var(--line);
}

.module-list summary {
  min-height: 100px;
  padding: 20px 8px;
  display: grid;
  grid-template-columns: 58px 1fr 42px;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

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

.module-index {
  color: var(--orange-600);
  font-size: 14px;
  font-weight: 900;
}

.module-title {
  color: var(--navy-900);
  font-size: 19px;
  font-weight: 800;
}

.module-title small {
  margin-top: 5px;
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.summary-plus {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe0ef;
  border-radius: 10px;
  background: #f6faff;
  color: var(--blue-600);
  font-size: 20px;
  transition: .2s ease;
}

.module-list details[open] .summary-plus {
  transform: rotate(45deg);
  background: var(--blue-600);
  color: white;
}

.module-list details[open] summary {
  background: #f8fbfe;
}

.module-body {
  padding: 0 55px 32px 84px;
  display: grid;
  grid-template-columns: 1.15fr .82fr .82fr;
  gap: 24px;
  background: #f8fbfe;
}

.body-label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.module-body ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 12px;
  list-style: none;
}

.module-body li {
  display: flex;
  gap: 6px;
  color: var(--muted);
  font-size: 10.5px;
}

.module-body li svg {
  flex: none;
  margin-top: 1px;
  color: var(--blue-600);
}

.module-lab,
.module-output {
  padding: 18px;
  border: 1px solid #dbe7f2;
  border-radius: 12px;
  background: white;
}

.module-lab strong,
.module-output strong {
  color: var(--navy-800);
  font-size: 11px;
}

.section-cta-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.project-filters {
  margin: -20px 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.project-filters button {
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid #cbdeef;
  border-radius: 999px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.project-filters button:hover,
.project-filters button.active {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: white;
}

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

.project-card {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 25px rgba(18, 65, 108, .045);
  transition: .22s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: #9ecbf0;
  box-shadow: var(--shadow-soft);
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-top span {
  color: var(--orange-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-top strong {
  color: #d5e2ee;
  font-size: 20px;
}

.project-visual {
  height: 92px;
  margin: 20px 0;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 13px;
  background: linear-gradient(145deg, #edf7ff, #f9fcff);
}

.visual-doc {
  width: 62px;
  height: 53px;
  padding: 12px;
  display: grid;
  gap: 5px;
  border: 1px solid #b9d7ee;
  border-radius: 7px;
  background: white;
}

.visual-doc i {
  height: 3px;
  border-radius: 4px;
  background: #bfd5e7;
}

.visual-doc i:first-child {
  width: 60%;
  background: var(--blue-500);
}

.visual-arrow {
  color: var(--blue-600);
  font-weight: 900;
}

.visual-score {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 8px 18px rgba(8,120,237,.25);
  color: white;
  font-size: 17px;
  font-weight: 900;
}

.project-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.project-card dl {
  margin: 0;
}

.project-card dl > div {
  padding: 8px 0;
  border-top: 1px dashed #dce7f1;
}

.project-card dt {
  color: var(--orange-600);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 10.5px;
}

.capstone-card {
  margin-top: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 32px;
  border: 1px solid #84c1f1;
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 20%, rgba(25, 155, 244, .17), transparent 25%),
    linear-gradient(135deg, #07244a, #073b72);
  box-shadow: 0 20px 48px rgba(8, 51, 96, .2);
  color: white;
}

.capstone-number {
  color: #7fcfff;
  font-size: 11px;
  letter-spacing: .12em;
  text-align: center;
}

.capstone-number strong {
  display: block;
  margin-top: 5px;
  color: white;
  font-size: 20px;
  letter-spacing: .04em;
}

.capstone-label {
  color: var(--orange-500);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.capstone-card h3 {
  margin: 7px 0 8px;
  color: white;
  font-size: 23px;
}

.capstone-card p {
  margin: 0;
  color: #b9cee3;
  font-size: 11.5px;
}

.capstone-tags {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.capstone-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(138, 204, 255, .24);
  border-radius: 999px;
  color: #b8dcf8;
  font-size: 8px;
}

.capstone-card > button {
  min-width: 165px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #56b8ff;
  border-radius: 10px;
  background: rgba(18, 130, 224, .2);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.capstone-card > button:hover {
  background: var(--blue-600);
}

.method-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.method-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  border-top: 1px dashed #acd0ec;
}

.method-track article {
  position: relative;
  text-align: center;
}

.method-dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border: 6px solid white;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 1px #b8d7ef, 0 8px 18px rgba(8,120,237,.18);
  color: white;
}

.method-track article > span {
  color: var(--orange-600);
  font-size: 9px;
  font-weight: 900;
}

.method-track h3 {
  margin: 6px 0;
  font-size: 13px;
}

.method-track p {
  margin: 0;
  font-size: 9.5px;
  line-height: 1.55;
}

.tools-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.tools-copy h2,
.tools-copy p {
  color: white;
}

.tools-copy p {
  color: #b9cee3;
}

.tools-copy ul,
.trainer-copy ul {
  margin: 25px 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.tools-copy li,
.trainer-copy li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.tools-copy li svg {
  color: #53cae6;
}

.tool-note {
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: 10px;
}

.tool-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tool-board article {
  min-height: 130px;
  padding: 19px;
  display: flex;
  gap: 14px;
  border: 1px solid rgba(157, 199, 235, .2);
  border-radius: 15px;
  background: rgba(255,255,255,.065);
}

.tool-board article > span {
  width: 36px;
  height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(37, 157, 244, .18);
  color: #78ceff;
  font-size: 10px;
  font-weight: 900;
}

.tool-board strong {
  color: white;
  font-size: 13px;
}

.tool-board p {
  margin: 5px 0 0;
  color: #afc5da;
  font-size: 10px;
}

.assessment-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 100px;
}

.weight-list {
  margin-top: 28px;
  display: grid;
  gap: 15px;
}

.weight-list > div > span {
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
  color: var(--navy-800);
  font-size: 11px;
}

.weight-list > div > span b {
  color: var(--blue-600);
}

.weight-list > div > i {
  height: 6px;
  display: block;
  border-radius: 99px;
  background: #e7eff6;
  overflow: hidden;
}

.weight-list em {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
}

.policy-note {
  margin-top: 24px;
  padding: 13px 15px;
  border-left: 3px solid var(--orange-500);
  background: #fff7f1;
  font-size: 10px;
}

.certificate-wrap > p {
  margin: 14px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 10px;
}

.certificate-card {
  min-height: 420px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  border: 8px solid white;
  outline: 1px solid #b7cfe4;
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 0 88%, #dcecff 88%),
    linear-gradient(315deg, transparent 0 88%, #fde9df 88%),
    #fbfdff;
  box-shadow: var(--shadow);
  text-align: center;
}

.certificate-card::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid #bdcee0;
  pointer-events: none;
}

.sample-watermark {
  position: absolute;
  left: 18%;
  top: 42%;
  transform: rotate(-20deg);
  color: rgba(9, 79, 143, .06);
  font-size: 70px;
  font-weight: 900;
}

.certificate-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.certificate-brand strong {
  color: var(--navy-900);
  font-size: 15px;
}

.certificate-card > span {
  margin-top: 35px;
  display: block;
  color: var(--orange-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.certificate-card h3 {
  margin: 15px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.35;
}

.certificate-card p {
  max-width: 330px;
  margin: 0 auto;
  font-size: 10px;
}

.certificate-lines {
  margin: 42px auto 14px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.certificate-lines span {
  width: 100px;
  border-bottom: 1px solid #879bb0;
}

.certificate-card small {
  color: #8093a8;
  font-size: 8px;
}

.applications-section {
  background: #f7fafc;
}

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

.applications-grid article {
  min-height: 225px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.applications-grid article > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.applications-grid article > div > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ebf5fd;
  color: var(--blue-600);
}

.applications-grid h3 {
  margin: 0;
  font-size: 15px;
}

.applications-grid p {
  margin: 18px 0;
  font-size: 11px;
}

.applications-grid > article > strong {
  display: block;
  color: var(--orange-600);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.applications-grid small {
  color: var(--navy-800);
  font-size: 10px;
}

.trainer-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.trainer-visual {
  min-height: 470px;
  padding: 50px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 164, 248, .3), transparent 28%),
    linear-gradient(145deg, #082b55, #061c3b);
  overflow: hidden;
}

.trainer-visual::before,
.trainer-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(100, 186, 245, .2);
  border-radius: 50%;
}

.trainer-visual::before {
  width: 330px;
  height: 330px;
  right: -110px;
  top: -80px;
}

.trainer-visual::after {
  width: 190px;
  height: 190px;
  left: -60px;
  bottom: -40px;
}

.review-card {
  width: min(330px, 100%);
  padding: 27px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(149, 204, 243, .4);
  border-radius: 18px;
  background: white;
  box-shadow: 0 24px 55px rgba(0,0,0,.3);
}

.review-card > span {
  color: var(--orange-600);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

.review-card > strong {
  margin: 5px 0 18px;
  display: block;
  color: var(--navy-900);
  font-size: 21px;
}

.review-card p {
  margin: 0;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 25px 1fr 20px;
  align-items: center;
  gap: 7px;
  border-top: 1px solid #e5edf5;
  color: #3d5670;
  font-size: 10px;
}

.review-card p em {
  color: #91a3b7;
  font-size: 8px;
  font-style: normal;
}

.review-card p i {
  color: #0d9b75;
}

.mentor-badge {
  position: absolute;
  right: 25px;
  bottom: 40px;
  z-index: 3;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(163, 212, 247, .45);
  border-radius: 13px;
  background: rgba(8, 56, 107, .9);
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
  color: white;
}

.mentor-badge > span {
  font-size: 9px;
  line-height: 1.3;
}

.mentor-badge strong {
  color: #75cdff;
  font-size: 12px;
}

.trainer-copy li {
  color: var(--text);
}

.trainer-copy li svg {
  color: #0e9c77;
}

.fee-section {
  background: var(--ice);
}

.fee-card {
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr .65fr;
  align-items: center;
  gap: 70px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.fee-copy h2 {
  font-size: 46px;
}

.fee-facts {
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.fee-facts span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-800);
  font-size: 11px;
  font-weight: 800;
}

.fee-facts svg {
  color: var(--blue-600);
}

.fee-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.fee-panel {
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--navy-900), #07407a);
  color: white;
}

.fee-panel > span {
  color: #80ceff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.fee-panel > strong {
  margin: 4px 0 2px;
  display: block;
  font-size: 35px;
}

.fee-panel > small {
  color: #aec5da;
  font-size: 9px;
}

.fee-panel h3 {
  margin: 25px 0 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: white;
  font-size: 13px;
}

.fee-panel ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.fee-panel li {
  display: flex;
  gap: 7px;
  color: #c0d1e1;
  font-size: 10px;
}

.fee-panel li svg {
  flex: none;
  color: #54cee6;
}

.visit-section {
  padding-bottom: 70px;
}

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

.map-visual {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid #cbdce9;
  border-radius: 24px;
  background:
    linear-gradient(35deg, transparent 48%, #d3e1eb 49% 51%, transparent 52%),
    linear-gradient(-40deg, transparent 45%, #dbe6ee 46% 49%, transparent 50%),
    #edf4f7;
}

.road {
  position: absolute;
  height: 16px;
  border-block: 1px solid #c5d5e0;
  background: rgba(255,255,255,.8);
  transform-origin: left;
}

.road-one {
  width: 620px;
  left: -50px;
  top: 210px;
  transform: rotate(-18deg);
}

.road-two {
  width: 500px;
  left: 100px;
  top: 20px;
  transform: rotate(61deg);
}

.road-three {
  width: 450px;
  left: 70px;
  bottom: 55px;
  transform: rotate(7deg);
}

.map-label {
  position: absolute;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.76);
  color: #7690a5;
  font-size: 9px;
}

.label-a { left: 55px; top: 75px; }
.label-b { right: 65px; bottom: 70px; }
.label-c { left: 80px; bottom: 105px; }

.map-pin {
  position: absolute;
  left: 57%;
  top: 48%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
}

.map-pin svg {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 8px 10px rgba(11, 86, 150, .22));
}

.map-pin span {
  padding: 7px 9px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 20px rgba(20, 68, 118, .14);
  color: var(--navy-900);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.15;
}

.map-route {
  position: absolute;
  left: 25%;
  top: 55%;
  display: flex;
  gap: 9px;
  transform: rotate(-12deg);
}

.map-route i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

.address {
  padding: 15px 18px;
  border-left: 3px solid var(--orange-500);
  background: #fff8f2;
  color: var(--navy-800) !important;
  font-weight: 800;
}

.visit-details {
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visit-details div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.visit-details span,
.visit-details strong {
  display: block;
}

.visit-details span {
  color: #8396a9;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-details strong {
  margin-top: 4px;
  color: var(--navy-800);
  font-size: 11px;
}

.visit-actions,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.checklist-section {
  background: #f7fafc;
}

.checklist-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: start;
  gap: 85px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.checklist-grid div {
  min-height: 70px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.checklist-grid span {
  color: var(--orange-600);
  font-size: 9px;
  font-weight: 900;
}

.checklist-grid strong {
  color: var(--navy-800);
  font-size: 11px;
}

.counselling-section {
  background:
    radial-gradient(circle at 5% 30%, rgba(44, 160, 244, .15), transparent 25%),
    linear-gradient(145deg, #06224a, #073d73);
  color: white;
}

.counselling-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.counselling-copy h2,
.counselling-copy p {
  color: white;
}

.counselling-copy p {
  color: #bed1e4;
}

.counselling-points {
  margin: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.counselling-points span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d4e4f2;
  font-size: 11px;
}

.counselling-points svg {
  color: #52cee6;
}

.counselling-copy .contact-row a {
  color: white;
}

.course-form {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  border: 1px solid rgba(147, 204, 245, .3);
  border-radius: 22px;
  background: white;
  box-shadow: 0 28px 60px rgba(0,0,0,.2);
}

.course-form label {
  display: grid;
  gap: 6px;
}

.course-form label > span {
  color: var(--navy-800);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-form input,
.course-form select {
  width: 100%;
  height: 47px;
  padding: 0 13px;
  border: 1px solid #d1dfec;
  border-radius: 9px;
  outline: 0;
  background: #fbfdff;
  color: var(--text);
  font-size: 12px;
}

.course-form input:focus,
.course-form select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(8,120,237,.1);
}

.submit-button {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.form-consent {
  grid-column: 1 / -1;
  margin: 0 !important;
  color: #778a9d !important;
  font-size: 9px !important;
  text-align: center;
}

.form-success {
  grid-column: 1 / -1;
  display: none;
  align-items: flex-start;
  gap: 7px;
  padding: 11px;
  border-radius: 9px;
  background: #eaf8f2;
  color: #08765a;
  font-size: 10px;
}

.form-success.show {
  display: flex;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.faq-layout {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  align-items: start;
  gap: 75px;
}

.faq-layout aside {
  position: sticky;
  top: 125px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 70px;
  padding: 16px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 800;
}

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

.faq-list summary i {
  width: 31px;
  height: 31px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid #cbddec;
  border-radius: 9px;
  color: var(--blue-600);
  font-size: 18px;
  font-style: normal;
  transition: .2s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
  background: var(--blue-600);
  color: white;
}

.faq-list details p {
  margin: -5px 50px 22px 0;
  font-size: 12px;
}

.final-cta {
  padding: 30px 0 86px;
}

.final-cta-card {
  min-height: 345px;
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid #c6ddf0;
  border-radius: 25px;
  background:
    radial-gradient(circle at 82% 25%, rgba(41, 161, 255, .18), transparent 28%),
    linear-gradient(135deg, #f8fcff, #edf7ff);
}

.final-cta h2 {
  max-width: 650px;
  font-size: 46px;
}

.final-cta p {
  max-width: 620px;
  color: var(--muted);
}

.final-cta-copy > div:last-child {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-decoration {
  position: absolute;
}

.cta-decoration.dots {
  width: 70px;
  height: 70px;
  right: 42%;
  bottom: 20px;
  opacity: .55;
  background-image: radial-gradient(var(--blue-500) 2px, transparent 2px);
  background-size: 14px 14px;
}

.cta-decoration.ring {
  width: 120px;
  height: 120px;
  right: -35px;
  top: -30px;
  border: 1px solid rgba(37, 151, 231, .27);
  border-radius: 50%;
}

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

.final-window {
  width: 340px;
  max-width: 100%;
  border: 1px solid #a9cce8;
  border-radius: 16px;
  background: white;
  box-shadow: 0 22px 45px rgba(18, 72, 124, .17);
  transform: rotate(-2deg);
  overflow: hidden;
}

.window-top {
  height: 28px;
  padding-left: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #dce8f2;
  background: #f4f8fc;
}

.window-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b9cbdb;
}

.window-prompt {
  margin: 20px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  background: #eff7fe;
  color: var(--blue-600);
}

.window-prompt span {
  flex: 1;
  display: grid;
  gap: 7px;
}

.window-prompt i {
  height: 5px;
  border-radius: 5px;
  background: #b9d5eb;
}

.window-prompt i:nth-child(2) { width: 83%; }
.window-prompt i:nth-child(3) { width: 55%; }

.window-result {
  margin: 20px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #cce9dc;
  border-radius: 10px;
  color: #0a8b6b;
}

.window-result strong {
  margin-left: auto;
  font-size: 22px;
}

.window-result small {
  font-size: 8px;
}

.final-spark {
  position: absolute;
  right: 5%;
  top: 5px;
  color: var(--orange-500);
  animation: note-float 5s ease-in-out infinite;
}

footer {
  padding: 68px 0 0;
  border-top: 1px solid var(--line);
  background: #fbfdff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, .7fr) 1fr;
  gap: 45px;
}

.footer-brand > p,
.footer-contact > p {
  margin: 18px 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-grid h3 {
  margin: 0 0 17px;
  color: var(--navy-900);
  font-size: 12px;
}

.footer-grid > div:not(.footer-brand) > a {
  margin: 7px 0;
  display: block;
  color: var(--muted);
  font-size: 10.5px;
}

.footer-grid > div:not(.footer-brand) > a:hover {
  color: var(--blue-600);
}

.footer-contact .button {
  margin-top: 12px !important;
  color: white !important;
}

.social-row {
  display: flex;
  gap: 7px;
}

.social-row button {
  width: 31px;
  height: 31px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--navy-800);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.social-row button:hover {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: white;
}

.footer-bottom {
  min-height: 68px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #8798aa;
  font-size: 9px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.footer-bottom button:hover {
  color: var(--blue-600);
}

.mobile-action-bar {
  display: none;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  max-width: 440px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #b8dfd1;
  border-radius: 11px;
  background: #f2fcf8;
  box-shadow: var(--shadow);
  color: #08765a;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: .22s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast button {
  margin-left: auto;
  padding: 4px;
  border: 0;
  background: transparent;
  color: #08765a;
  cursor: pointer;
}

@media (min-width: 1800px) {
  :root {
    --container: 1320px;
  }

  .hero {
    min-height: 830px;
  }

  .hero-grid {
    gap: 90px;
  }

  .hero h1 {
    font-size: 78px;
  }

  .prompt-studio {
    max-width: 650px;
    justify-self: end;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 36px, 1080px);
  }

  .header-cta {
    min-width: auto;
    padding-inline: 13px;
  }

  .main-nav {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: 1fr 470px;
    gap: 35px;
  }

  .hero h1 {
    font-size: 56px;
  }

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

  .facts-grid article:nth-child(3)::after {
    display: none;
  }

  .facts-grid article:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

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

  .method-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 12px;
  }

  .method-track::before {
    display: none;
  }

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

@media (max-width: 1020px) {
  .site-header {
    top: 0;
  }

  .header-inner {
    height: 70px;
  }

  .menu-button {
    margin-left: auto;
    display: grid;
    place-items: center;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 74px;
    padding: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .nav-menu > button {
    width: 100%;
    padding: 12px;
    border-radius: 9px;
    text-align: left;
  }

  .main-nav > a:hover,
  .nav-menu > button:hover {
    background: var(--ice);
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    margin-top: 2px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-menu:focus-within .nav-dropdown {
    display: block;
  }

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

  .hero {
    padding-bottom: 90px;
  }

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

  .prompt-studio {
    width: min(640px, 100%);
    margin: 15px auto 0;
    transform: none;
  }

  .definition-grid,
  .audience-layout,
  .tools-layout,
  .assessment-grid,
  .trainer-layout,
  .fee-card,
  .visit-grid,
  .checklist-layout,
  .counselling-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .audience-copy,
  .faq-layout aside {
    position: static;
  }

  .difference-grid,
  .projects-grid,
  .course-comparison {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .craft-layout {
    grid-template-columns: .75fr 1.25fr;
  }

  .craft-panel {
    padding: 50px 38px;
  }

  .prompt-comparison {
    grid-template-columns: 1fr 32px 1fr;
  }

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

  .module-body > div:first-child {
    grid-column: 1 / -1;
  }

  .capstone-card {
    grid-template-columns: 120px 1fr;
  }

  .capstone-card > button {
    grid-column: 1 / -1;
  }

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

  .trainer-visual {
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .map-visual {
    order: 2;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
    padding-bottom: 62px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .announcement-inner {
    min-height: 35px;
    justify-content: center;
  }

  .announcement-inner > span {
    display: none;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    max-width: 180px;
    font-size: 8.5px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .hero {
    min-height: auto;
    padding: 25px 0 58px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    margin-top: 13px;
    font-size: clamp(41px, 12vw, 56px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 11px;
  }

  .hero-highlights span {
    font-size: 11px;
  }

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

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

  .quick-links {
    justify-content: center;
  }

  .trust-note {
    text-align: left;
  }

  .prompt-studio {
    margin-top: 25px;
  }

  .studio-workspace {
    grid-template-columns: 42px 1fr;
  }

  .studio-sidebar {
    gap: 8px;
  }

  .studio-sidebar span {
    width: 30px;
    height: 30px;
  }

  .studio-main {
    padding: 13px;
  }

  .prompt-window pre {
    font-size: 8px;
  }

  .floating-note {
    display: none;
  }

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

  .facts-grid article:nth-child(3)::after {
    display: block;
  }

  .facts-grid article:nth-child(2n)::after {
    display: none;
  }

  .facts-grid article:nth-child(-n+4) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 76px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .section-heading.split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .definition-grid {
    gap: 65px;
  }

  .definition-formula {
    grid-template-columns: 1fr;
  }

  .difference-grid,
  .outcomes-grid,
  .audience-grid,
  .course-comparison,
  .projects-grid,
  .applications-grid,
  .tool-board {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: auto;
  }

  .audience-copy h2,
  .fee-copy h2 {
    font-size: 38px;
  }

  .craft-layout {
    grid-template-columns: 1fr;
  }

  .craft-tabs {
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .craft-tabs button {
    min-height: 70px;
    padding: 8px;
    grid-template-columns: 32px 1fr;
    gap: 7px;
  }

  .craft-tabs button > span {
    width: 30px;
    height: 30px;
  }

  .craft-tabs button strong {
    font-size: 9px;
  }

  .craft-tabs button svg {
    display: none;
  }

  .craft-panel {
    min-height: 380px;
    padding: 40px 28px;
  }

  .craft-letter {
    font-size: 200px;
  }

  .craft-panel h3 {
    font-size: 30px;
  }

  .craft-question {
    font-size: 16px;
  }

  .prompt-comparison {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .comparison-arrow {
    transform: rotate(90deg);
  }

  .prompt-comparison.before .improved,
  .prompt-comparison.after .vague {
    display: none;
  }

  .prompt-card {
    min-height: auto;
  }

  .module-list summary {
    grid-template-columns: 42px 1fr 35px;
    gap: 10px;
  }

  .module-title {
    font-size: 15px;
  }

  .module-title small {
    font-size: 9px;
  }

  .module-body {
    padding: 0 15px 25px 52px;
    grid-template-columns: 1fr;
  }

  .module-body > div:first-child {
    grid-column: auto;
  }

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

  .section-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .project-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 7px;
  }

  .project-filters button {
    flex: none;
  }

  .capstone-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .capstone-number {
    text-align: left;
  }

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

  .assessment-grid {
    gap: 55px;
  }

  .certificate-card {
    min-height: 390px;
    padding: 38px 25px;
  }

  .certificate-lines {
    gap: 25px;
  }

  .certificate-lines span {
    width: 80px;
  }

  .trainer-visual {
    min-height: 420px;
    padding: 35px 18px;
  }

  .mentor-badge {
    right: 10px;
    bottom: 18px;
  }

  .fee-card {
    padding: 27px;
    gap: 35px;
  }

  .fee-facts,
  .visit-details,
  .checklist-grid,
  .counselling-points,
  .course-form {
    grid-template-columns: 1fr;
  }

  .checklist-grid {
    border-top: 1px solid var(--line);
  }

  .course-form {
    padding: 22px;
  }

  .submit-button,
  .form-consent,
  .form-success {
    grid-column: auto;
  }

  .faq-list summary {
    font-size: 12px;
  }

  .final-cta {
    padding: 10px 0 66px;
  }

  .final-cta-card {
    padding: 35px 25px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .final-cta-copy > div:last-child {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    min-height: 61px;
    padding: 7px 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #c9deef;
    background: rgba(255,255,255,.96);
    box-shadow: 0 -10px 30px rgba(16, 61, 103, .11);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 9px;
    color: var(--navy-800);
    font-size: 9px;
    font-weight: 900;
  }

  .mobile-action-bar a:last-child {
    background: var(--blue-600);
    color: white;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 75px;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .studio-topbar {
    padding-inline: 12px;
  }

  .status-pill {
    display: none;
  }

  .evaluation-row {
    grid-template-columns: 72px 1fr;
    gap: 10px;
  }

  .score-ring {
    width: 68px;
    height: 68px;
  }

  .workflow-line span {
    font-size: 7px;
  }

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

  .prompt-rules {
    grid-template-columns: 1fr;
  }

  .method-track {
    grid-template-columns: 1fr 1fr;
  }

  .map-visual {
    min-height: 330px;
  }
}

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