:root {
  --navy: #081d3d;
  --navy-2: #0d315e;
  --blue: #1267e8;
  --blue-2: #3b8bff;
  --cyan: #1abbd1;
  --copper: #e86f3d;
  --copper-2: #f29167;
  --ivory: #fbf9f4;
  --paper: #ffffff;
  --surface: #f3f7fc;
  --ink: #122747;
  --muted: #60718a;
  --line: #dbe5f1;
  --shadow-sm: 0 13px 36px rgba(21, 57, 104, .08);
  --shadow-md: 0 27px 75px rgba(18, 55, 105, .14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 13px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-geist-sans, Inter), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

svg {
  display: block;
}

::selection {
  color: #fff;
  background: var(--blue);
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 9px 15px;
  border-radius: 9px;
  transform: translateY(-150%);
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.announcement {
  position: relative;
  z-index: 70;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .025em;
}

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

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

.announcement button {
  padding: 0;
  border: 0;
  color: #bdd7f8;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease;
}

.announcement button:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(219, 229, 241, .9);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 32px rgba(17, 49, 92, .045);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

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

.brand-mark {
  position: relative;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #092247, #155998);
  box-shadow: 0 9px 23px rgba(10, 56, 109, .22);
  font-size: 20px;
  font-weight: 820;
}

.brand-mark::after {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.brand-mark i {
  position: absolute;
  z-index: 2;
  right: 5px;
  bottom: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

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

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

.brand-copy small {
  margin-top: 4px;
  color: #718198;
  font-size: 8.5px;
  font-weight: 650;
}

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

.main-nav > a,
.nav-dropdown > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 28px 0;
  border: 0;
  color: #263d5f;
  background: transparent;
  font-size: 12.5px;
  font-weight: 720;
  cursor: pointer;
  transition: color .2s ease;
}

.main-nav > a::after,
.nav-dropdown > button::after {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--copper);
  content: "";
  transition: width .2s ease;
}

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

.main-nav > a:hover::after,
.nav-dropdown:hover > button::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% - 8px);
  left: -22px;
  width: 225px;
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: .2s ease;
}

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

.dropdown-panel a {
  padding: 10px 11px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.dropdown-panel a:hover {
  color: var(--blue);
  background: #edf5ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
}

.mobile-nav-cta {
  display: none !important;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.btn svg,
.text-link svg,
.announcement button svg {
  transition: transform .25s ease;
}

.btn:hover svg,
.text-link:hover svg,
.announcement button:hover svg {
  transform: translateX(4px);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1267e8, #0750bd);
  box-shadow: 0 13px 30px rgba(17, 101, 225, .22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0b57ca, #063d99);
  box-shadow: 0 17px 36px rgba(17, 101, 225, .3);
}

.btn-secondary {
  border-color: #b9cee8;
  color: var(--navy);
  background: #fff;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #edf5ff;
}

.btn-sm {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 11.5px;
}

.btn-lg {
  min-height: 54px;
  padding: 14px 23px;
}

.btn-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 750;
  transition: color .2s ease;
}

.text-link:hover {
  color: var(--copper);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 74px;
  border-bottom: 1px solid #e4ebf3;
  background:
    radial-gradient(circle at 88% 15%, rgba(31, 112, 230, .12), transparent 27%),
    radial-gradient(circle at 68% 76%, rgba(232, 111, 61, .07), transparent 24%),
    linear-gradient(112deg, #fff 10%, var(--ivory) 48%, #f5f9ff 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(35, 104, 202, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(35, 104, 202, .025), 0 0 0 130px rgba(35, 104, 202, .018);
  content: "";
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(23, 76, 145, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 76, 145, .04) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, transparent 8%, #000 50%, #000);
}

.breadcrumb {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  color: #8a99ac;
  font-size: 9px;
  font-weight: 650;
}

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

.breadcrumb strong {
  color: #5c6f88;
  font-weight: 700;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(500px, .92fr);
  align-items: center;
  gap: 55px;
  padding-top: 55px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 10.5px;
  font-weight: 840;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--copper);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 4.7vw, 70px);
  font-weight: 775;
  letter-spacing: -.052em;
  line-height: 1.01;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 120px;
  height: 7px;
  border-top: 3px solid var(--copper);
  border-radius: 50%;
  transform: rotate(-1deg);
  content: "";
}

.hero-lead {
  max-width: 680px;
  margin: 25px 0 20px;
  color: #53667f;
  font-size: 16.5px;
  line-height: 1.7;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 15px;
  max-width: 660px;
}

.hero-highlights span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #415a78;
  font-size: 11px;
  font-weight: 680;
}

.hero-highlights svg {
  flex: 0 0 auto;
  color: var(--blue);
}

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

.hero-fee-link {
  margin-top: 18px;
}

.trust-copy {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 17px 0 0;
  color: #7b8ba0;
  font-size: 9.5px;
}

.trust-copy svg {
  color: var(--blue);
}

.hero-studio {
  position: relative;
}

.creator-console {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid #cad9eb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 34px 85px rgba(19, 58, 108, .19), 0 0 0 7px rgba(255, 255, 255, .45);
}

.console-bar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #dce6f2;
  color: #536780;
  background: #f8fbfe;
  font-size: 8px;
}

.console-bar > strong {
  color: var(--navy);
  font-size: 9px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

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

.window-dots i:nth-child(2) {
  background: #efc45e;
}

.window-dots i:nth-child(3) {
  background: #43c9a1;
}

.autosave {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.autosave i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bd8e;
}

.console-body {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 172px;
  min-height: 276px;
}

.console-tools {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 12px 8px;
  border-right: 1px solid #dbe5f1;
  background: #f3f7fb;
}

.console-tools span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #889ab0;
}

.console-tools span.active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 6px 12px rgba(18, 103, 232, .2);
}

.story-panel {
  padding: 16px;
  border-right: 1px solid #dbe5f1;
}

.panel-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #74879e;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
}

.panel-label span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--blue);
  background: #e8f2ff;
}

.script-lines {
  display: grid;
  gap: 6px;
  margin: 13px 0;
}

.script-lines i {
  width: 100%;
  height: 5px;
  border-radius: 4px;
  background: #dce7f3;
}

.script-lines i:nth-child(2) {
  width: 78%;
}

.script-lines i:nth-child(3) {
  width: 90%;
}

.script-lines i:nth-child(4) {
  width: 58%;
}

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

.storyboard-grid div {
  position: relative;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d9e5f1;
  border-radius: 8px;
  color: var(--blue);
  background:
    linear-gradient(145deg, transparent 45%, rgba(18, 103, 232, .12) 46% 64%, transparent 65%),
    #eef5fc;
}

.storyboard-grid div:nth-child(2) {
  color: var(--copper);
  background:
    linear-gradient(145deg, transparent 45%, rgba(232, 111, 61, .13) 46% 64%, transparent 65%),
    #fff4ee;
}

.storyboard-grid span {
  position: absolute;
  top: 4px;
  left: 5px;
  color: #8c9bae;
  font-size: 6px;
  font-weight: 800;
}

.prompt-box {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  padding: 8px;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  color: #6e8199;
  background: #fbfdff;
  font-size: 6.5px;
  line-height: 1.3;
}

.prompt-box svg {
  flex: 0 0 auto;
  color: var(--copper);
}

.phone-preview {
  padding: 13px 13px 10px;
  background: #f8fbfe;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #8b9aab;
  font-size: 6px;
  font-weight: 800;
}

.phone-top i {
  width: 25px;
  height: 3px;
  border-radius: 4px;
  background: #cedbe8;
}

.preview-art {
  position: relative;
  height: 185px;
  overflow: hidden;
  border-radius: 11px;
  background:
    linear-gradient(155deg, transparent 43%, rgba(255,255,255,.2) 44% 46%, transparent 47%),
    linear-gradient(145deg, #135dbd, #072755 70%);
}

.art-sun {
  position: absolute;
  top: 25px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 10px rgba(232, 111, 61, .12);
}

.art-person {
  position: absolute;
  right: 42px;
  bottom: 15px;
  width: 48px;
  height: 92px;
}

.art-person i {
  position: absolute;
  top: 0;
  left: 12px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #f1b08c;
}

.art-person span {
  position: absolute;
  bottom: 0;
  width: 48px;
  height: 66px;
  border-radius: 24px 24px 7px 7px;
  background: #f5f7fa;
}

.preview-tag {
  position: absolute;
  top: 11px;
  left: 10px;
  padding: 4px 6px;
  border-radius: 5px;
  color: #fff;
  background: rgba(5, 31, 65, .55);
  font-size: 5.5px;
  font-weight: 800;
  letter-spacing: .08em;
}

.preview-art button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(5, 34, 70, .38);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, background .25s ease;
}

.preview-art button:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--copper);
}

.caption-preview {
  display: grid;
  margin-top: 8px;
  text-align: center;
  line-height: 1.25;
}

.caption-preview strong {
  color: var(--navy);
  font-size: 8px;
}

.caption-preview span {
  color: #8392a4;
  font-size: 6px;
}

.timeline {
  padding: 10px 13px 13px;
  border-top: 1px solid #dbe5f1;
  background: #f5f8fc;
}

.timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  color: #8393a7;
  font-size: 6px;
}

.timeline-head strong {
  color: #596f88;
  font-size: 6.5px;
  letter-spacing: .06em;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 5px;
}

.track-name {
  display: grid;
  gap: 4px;
  color: #73889e;
}

.tracks {
  position: relative;
  display: grid;
  gap: 4px;
}

.tracks > div {
  height: 14px;
  display: flex;
  gap: 3px;
}

.video-track span {
  border-radius: 3px;
  background: #79aef2;
}

.video-track span:nth-child(2) {
  background: #f2a381;
}

.audio-track {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #cfe9e4;
}

.audio-track span {
  position: absolute;
  inset: 6px 0;
  background: #3eac94;
}

.audio-track i {
  z-index: 2;
  width: 9%;
  margin-left: 5%;
  border-left: 1px solid #fff;
}

.caption-track span {
  flex: 1;
  display: grid;
  place-items: center;
  border-radius: 3px;
  color: #8a613d;
  background: #f8dfc8;
  font-size: 5px;
  font-weight: 750;
}

.playhead {
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: 61%;
  width: 1px;
  background: var(--copper);
  animation: playhead 5s linear infinite;
}

.playhead::before {
  position: absolute;
  top: -2px;
  left: -3px;
  border: 3px solid transparent;
  border-top-color: var(--copper);
  content: "";
}

.hero-form {
  position: relative;
  z-index: 4;
  margin: -2px 17px 0;
  padding: 17px;
  border: 1px solid #d3e0ee;
  border-radius: 0 0 17px 17px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 48px rgba(17, 54, 101, .16);
}

.form-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.form-title small,
.form-title strong {
  display: block;
}

.form-title small {
  color: var(--copper);
  font-size: 6.5px;
  font-weight: 850;
  letter-spacing: .1em;
}

.form-title strong {
  margin-top: 2px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
}

.form-title > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: #eaf3ff;
}

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

.hero-form label,
.cta-form label {
  display: grid;
  gap: 4px;
  color: #5b6d83;
  font-size: 7px;
  font-weight: 750;
}

.hero-form label small {
  display: inline;
  color: #98a3b0;
  font-weight: 550;
}

.hero-form input,
.hero-form select,
.cta-form input,
.cta-form select {
  width: 100%;
  height: 37px;
  padding: 0 10px;
  border: 1px solid #d7e2ef;
  border-radius: 8px;
  outline: 0;
  color: var(--navy);
  background: #f9fbfd;
  font-size: 8.5px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(18, 103, 232, .1);
}

.hero-form-grid .btn {
  align-self: end;
  min-height: 37px;
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 8px;
}

.hero-form > p,
.cta-form > p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 8px 0 0;
  color: #8998aa;
  font-size: 6.3px;
}

.studio-orbit {
  position: absolute;
  z-index: 1;
  border: 1px dashed rgba(22, 105, 228, .22);
  border-radius: 50%;
  animation: spin 25s linear infinite;
}

.studio-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 5px rgba(232, 111, 61, .1);
}

.orbit-a {
  width: 510px;
  height: 510px;
  top: -38px;
  right: -65px;
}

.orbit-a i {
  top: 83px;
  left: 61px;
}

.orbit-b {
  width: 390px;
  height: 390px;
  right: 20px;
  bottom: 20px;
  animation-direction: reverse;
  animation-duration: 32s;
}

.orbit-b i {
  right: 30px;
  bottom: 75px;
  background: var(--cyan);
}

.facts-band {
  position: relative;
  z-index: 5;
  background: #fff;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.fact {
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 17px;
  border-right: 1px solid var(--line);
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: var(--blue);
  background: #eaf3ff;
}

.fact:nth-child(even) > span {
  color: var(--copper);
  background: #fff0e9;
}

.fact small,
.fact strong {
  display: block;
}

.fact small {
  color: #8997aa;
  font-size: 8px;
  font-weight: 780;
  text-transform: uppercase;
}

.fact strong {
  color: var(--navy);
  font-size: 11px;
  line-height: 1.35;
}

.section {
  position: relative;
  padding-block: 102px;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(35px, 3.25vw, 50px);
  font-weight: 760;
  letter-spacing: -.043em;
  line-height: 1.08;
}

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

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

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

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

.section-heading p {
  max-width: 690px;
  margin: 16px auto 0;
  font-size: 15.5px;
}

.intro-section {
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 88px;
}

.prose p {
  margin: 0 0 15px;
  font-size: 16px;
}

.answer-note {
  display: flex;
  gap: 13px;
  margin-top: 24px;
  padding: 18px;
  border-left: 3px solid var(--copper);
  border-radius: 0 13px 13px 0;
  color: var(--copper);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.answer-note svg {
  flex: 0 0 auto;
}

.answer-note span {
  color: #62748b;
  font-size: 12.5px;
}

.answer-note strong {
  color: var(--navy);
}

.three-skills-section {
  background: #fff;
}

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

.three-skills-grid article {
  position: relative;
  min-height: 292px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fff, #f8fbff);
  box-shadow: 0 9px 26px rgba(25, 60, 108, .045);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.three-skills-grid article:hover {
  transform: translateY(-7px);
  border-color: #9fc2ef;
  box-shadow: 0 23px 48px rgba(22, 77, 150, .13);
}

.pillar-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #d9e4f0;
  font-size: 28px;
  font-weight: 850;
}

.pillar-icon,
.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: #eaf3ff;
}

.three-skills-grid article:nth-child(2) .pillar-icon {
  color: var(--copper);
  background: #fff0e9;
}

.three-skills-grid article:nth-child(3) .pillar-icon {
  color: #058fa6;
  background: #e6f9fc;
}

.three-skills-grid small {
  display: block;
  margin-top: 21px;
  color: var(--copper);
  font-size: 8px;
  font-weight: 840;
  letter-spacing: .11em;
}

.three-skills-grid h3 {
  margin: 5px 0 9px;
  font-size: 21px;
  letter-spacing: -.025em;
}

.three-skills-grid p {
  margin: 0;
  font-size: 13px;
}

.decorative-arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: #eaf3ff;
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.three-skills-grid article:hover .decorative-arrow {
  transform: translateX(4px);
  color: #fff;
  background: var(--blue);
}

.outcomes-section {
  background: var(--surface);
}

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

.outcomes-grid article {
  position: relative;
  min-height: 246px;
  padding: 25px;
  border: 1px solid #dbe6f2;
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.outcomes-grid article:hover {
  transform: translateY(-5px);
  border-color: #9ec1ef;
  box-shadow: var(--shadow-sm);
}

.outcome-index {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #d9e4f0;
  font-size: 12px;
  font-weight: 850;
}

.outcomes-grid article:nth-child(4n + 2) .icon-box,
.outcomes-grid article:nth-child(4n + 4) .icon-box {
  color: var(--copper);
  background: #fff0e9;
}

.outcomes-grid h3 {
  margin: 21px 0 8px;
  font-size: 16px;
  line-height: 1.28;
}

.outcomes-grid p {
  margin: 0;
  font-size: 11.5px;
}

.audience-section {
  background: #fff;
}

.audience-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
}

.audience-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.audience-copy > p {
  margin: 19px 0 24px;
}

.not-for-card {
  display: flex;
  gap: 10px;
  margin-top: 27px;
  padding: 15px;
  border: 1px solid #eadbd1;
  border-radius: 13px;
  color: var(--copper);
  background: #fff8f4;
}

.not-for-card svg {
  flex: 0 0 auto;
}

.not-for-card p {
  margin: 0;
  color: #6d635d;
  font-size: 10.5px;
}

.not-for-card strong {
  display: block;
  color: var(--navy);
}

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

.audience-list article {
  display: grid;
  grid-template-columns: 42px 1fr 23px;
  align-items: center;
  gap: 17px;
  padding: 23px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}

.audience-list article:hover {
  padding-inline: 17px;
  background: #f8fbff;
}

.audience-list article > span {
  color: var(--copper);
  font-size: 10px;
  font-weight: 840;
}

.audience-list h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

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

.audience-list article > svg {
  color: #a0b0c4;
  transition: transform .2s ease, color .2s ease;
}

.audience-list article:hover > svg {
  transform: translateX(4px);
  color: var(--blue);
}

.why-section {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(130deg, rgba(21, 82, 160, .38), transparent 54%),
    var(--navy);
}

.why-section::before {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: radial-gradient(circle at 80% 40%, #000, transparent 68%);
}

.why-glow {
  position: absolute;
  top: -250px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 113, 238, .38), transparent 65%);
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.section-heading.light h2 {
  color: #fff;
}

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

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

.reasons-grid article {
  min-height: 196px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 17px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(7px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.reasons-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(100, 167, 255, .55);
  background: rgba(30, 101, 205, .15);
}

.reasons-grid article > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #78aeff;
  background: rgba(61, 131, 234, .14);
}

.reasons-grid article:nth-child(3n + 2) > span {
  color: #ff9d79;
  background: rgba(232, 111, 61, .12);
}

.reasons-grid h3 {
  margin: 18px 0 7px;
  color: #fff;
  font-size: 16px;
}

.reasons-grid p {
  margin: 0;
  color: #b9c8dd;
  font-size: 12px;
}

.workflow-section {
  background: var(--ivory);
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.workflow-track article {
  text-align: center;
}

.workflow-node {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.workflow-node > span {
  position: relative;
  z-index: 2;
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  margin: auto;
  border: 1px solid #b9cee9;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 83, 163, .1);
}

.workflow-track article:nth-child(even) .workflow-node > span {
  color: var(--copper);
}

.workflow-node i {
  position: absolute;
  left: 50%;
  width: 100%;
  border-top: 1px dashed #a9c2e1;
}

.workflow-track small {
  color: var(--copper);
  font-size: 8px;
  font-weight: 850;
}

.workflow-track h3 {
  margin: 2px 0 5px;
  font-size: 14px;
}

.workflow-track p {
  max-width: 130px;
  margin: auto;
  font-size: 9.5px;
  line-height: 1.5;
}

.workflow-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.curriculum-section {
  background: linear-gradient(180deg, #f5f9fe, #edf4fb);
}

.curriculum-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  align-items: start;
  gap: 58px;
}

.curriculum-sidebar {
  position: sticky;
  top: 120px;
}

.curriculum-sidebar p {
  margin: 19px 0 23px;
}

.curriculum-stat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 20px 0 24px;
}

.curriculum-stat strong {
  color: var(--blue);
  font-size: 49px;
  letter-spacing: -.06em;
  line-height: 1;
}

.curriculum-stat span {
  color: #677a91;
  font-size: 10px;
  font-weight: 740;
  line-height: 1.35;
  text-transform: uppercase;
}

.module-list {
  display: grid;
  gap: 10px;
}

.module-list details,
.faq-list details {
  border: 1px solid #d5e2f1;
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 6px 20px rgba(23, 62, 111, .035);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.module-list details[open],
.faq-list details[open] {
  border-color: #9fc3f1;
  box-shadow: 0 14px 35px rgba(20, 81, 160, .09);
}

.module-list summary,
.faq-list summary {
  list-style: none;
  cursor: pointer;
}

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

.module-list summary {
  min-height: 69px;
  display: grid;
  grid-template-columns: 40px 1fr 21px;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
}

.module-index {
  color: var(--copper);
  font-size: 10px;
  font-weight: 850;
}

.module-title {
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 740;
  line-height: 1.35;
}

.summary-plus {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 6px;
  background: #eaf3ff;
}

.summary-plus::before,
.summary-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  background: var(--blue);
  content: "";
  transition: transform .2s ease;
}

.summary-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] > summary .summary-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.module-body {
  padding: 0 18px 19px 71px;
}

.module-body > p {
  margin: 0 0 13px;
  font-size: 12px;
}

.create-output {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 13px;
  border-left: 3px solid var(--copper);
  border-radius: 0 10px 10px 0;
  color: var(--copper);
  background: #fff1eb;
}

.create-output svg {
  flex: 0 0 auto;
}

.create-output strong,
.create-output span {
  display: block;
}

.create-output strong {
  color: #bd4e24;
  font-size: 8px;
  letter-spacing: .1em;
}

.create-output span {
  color: #665f5a;
  font-size: 10.5px;
}

.tools-section {
  background: #fff;
}

.tools-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 78px;
}

.tools-layout > div:first-child {
  padding-top: 16px;
}

.tools-layout > div:first-child > p {
  margin: 20px 0;
}

.tool-policy {
  display: flex;
  gap: 10px;
  padding: 15px;
  border: 1px solid #d8e5f3;
  border-radius: 13px;
  color: var(--blue);
  background: #f2f7fe;
}

.tool-policy svg {
  flex: 0 0 auto;
}

.tool-policy span {
  color: #63758c;
  font-size: 10.5px;
}

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

.tool-grid article {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.tool-grid article:hover {
  transform: translateY(-3px);
  border-color: #a7c5ea;
  background: #f8fbff;
}

.tool-grid article > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: var(--blue);
  background: #eaf3ff;
}

.tool-grid article:nth-child(even) > span {
  color: var(--copper);
  background: #fff0e9;
}

.tool-grid h3 {
  margin: 0 0 3px;
  font-size: 13px;
}

.tool-grid p {
  margin: 0;
  font-size: 9.5px;
}

.projects-section {
  background: var(--surface);
}

.projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.project-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 44px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.project-filters button {
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  color: #667991;
  background: transparent;
  font-size: 9px;
  font-weight: 750;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.project-filters button:hover,
.project-filters button.active {
  color: #fff;
  background: var(--blue);
}

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

.project-grid article {
  overflow: hidden;
  border: 1px solid #d8e4f1;
  border-radius: 17px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.project-grid article:hover {
  transform: translateY(-5px);
  border-color: #9dc0ed;
  box-shadow: var(--shadow-sm);
}

.project-thumb {
  position: relative;
  height: 135px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #0d5fcf, #092a58);
}

.project-thumb::before,
.project-thumb::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.project-thumb::before {
  width: 120px;
  height: 120px;
  right: -45px;
  bottom: -60px;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 0 0 25px rgba(255,255,255,.035);
}

.project-thumb::after {
  width: 70px;
  height: 70px;
  top: -35px;
  left: -25px;
  background: rgba(255,255,255,.08);
}

.thumb-design {
  background: linear-gradient(145deg, #de6b3b, #8c3219);
}

.thumb-strategy {
  background: linear-gradient(145deg, #126d7d, #063c4d);
}

.project-sequence {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 3px;
}

.project-sequence i {
  width: 23px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255,255,255,.7);
}

.project-sequence i:nth-child(2) {
  width: 15px;
  opacity: .5;
}

.project-sequence i:nth-child(3) {
  width: 31px;
  opacity: .3;
}

.project-type {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 6px;
  border-radius: 5px;
  background: rgba(3, 24, 50, .35);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .08em;
}

.project-info {
  padding: 19px;
}

.project-info small {
  color: var(--copper);
  font-size: 7px;
  font-weight: 840;
  letter-spacing: .09em;
}

.project-info h3 {
  margin: 6px 0 6px;
  font-size: 15px;
  line-height: 1.25;
}

.project-info p {
  margin: 0;
  font-size: 10px;
}

.capstone-card {
  display: grid;
  grid-template-columns: 105px 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
  padding: 25px;
  border: 1px solid #bed4ee;
  border-radius: 18px;
  background: linear-gradient(115deg, #fff, #edf5ff);
  box-shadow: var(--shadow-sm);
}

.capstone-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  border: 1px solid #a6c6ed;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  text-align: center;
}

.capstone-mark span,
.capstone-mark strong {
  display: block;
}

.capstone-mark span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.capstone-mark strong {
  font-size: 13px;
}

.capstone-card > div:nth-child(2) small {
  color: var(--copper);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .1em;
}

.capstone-card h3 {
  margin: 5px 0;
  font-size: 20px;
}

.capstone-card p {
  max-width: 670px;
  margin: 0;
  font-size: 11px;
}

.capstone-card button,
.related-grid button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 11px;
  font-weight: 760;
  cursor: pointer;
}

.capstone-card button:hover,
.related-grid button:hover {
  color: var(--copper);
}

.rhythm-section {
  background: #fff;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.rhythm-grid article {
  min-height: 158px;
  padding: 23px 14px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.rhythm-grid article:last-child {
  border-right: 0;
}

.rhythm-grid span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin: 0 auto 13px;
  border-radius: 50%;
  color: var(--blue);
  background: #eaf3ff;
  font-size: 8px;
  font-weight: 850;
}

.rhythm-grid article:nth-child(even) span {
  color: var(--copper);
  background: #fff0e9;
}

.rhythm-grid h3 {
  margin: 0 0 4px;
  font-size: 12px;
}

.rhythm-grid p {
  margin: 0;
  font-size: 8.5px;
  line-height: 1.45;
}

.responsibility-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(27, 113, 231, .27), transparent 32%),
    #071b39;
}

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

.responsibility-section h2 {
  color: #fff;
}

.responsibility-section p {
  color: #b9c9df;
}

.responsibility-visual {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card {
  width: min(100%, 450px);
  padding: 23px;
  border: 1px solid rgba(111, 166, 238, .28);
  border-radius: 19px;
  transform: perspective(1000px) rotateY(4deg);
  background: rgba(9, 43, 87, .88);
  box-shadow: 0 32px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.review-top span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 750;
}

.review-top strong {
  color: #76b1ff;
  font-size: 12px;
}

.review-card p {
  display: grid;
  grid-template-columns: 18px 1fr 28px;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 10px;
  border-radius: 9px;
  color: #cfddf0;
  background: rgba(255,255,255,.045);
  font-size: 9.5px;
}

.review-card p svg {
  color: #54d1aa;
}

.review-card p span {
  width: 26px;
  height: 14px;
  border-radius: 999px;
  background: #145999;
}

.review-card p span::after {
  width: 10px;
  height: 10px;
  display: block;
  margin: 2px 2px 2px auto;
  border-radius: 50%;
  background: #64d7b3;
  content: "";
}

.consent-chip {
  position: absolute;
  right: 3px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(128, 181, 249, .3);
  border-radius: 11px;
  color: #dceaff;
  background: #0b356b;
  box-shadow: 0 15px 35px rgba(0,0,0,.22);
  font-size: 8.5px;
  font-weight: 760;
  animation: float 4.2s ease-in-out infinite;
}

.responsibility-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
  margin-top: 23px;
}

.responsibility-list span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #d0deef;
  font-size: 10.5px;
}

.responsibility-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #68a9ff;
}

.fee-section {
  background: linear-gradient(180deg, #f5f9ff, #fff);
}

.fee-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: stretch;
  gap: 18px;
}

.course-plan {
  display: flex;
  flex-direction: column;
  padding: 33px;
  border: 2px solid var(--blue);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(20, 88, 182, .13);
}

.plan-badge {
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--blue);
  background: #eaf3ff;
  font-size: 8px;
  font-weight: 840;
  letter-spacing: .09em;
}

.course-plan h3 {
  margin: 17px 0 2px;
  font-size: 25px;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.course-plan > p {
  margin: 0;
  font-size: 13px;
}

.plan-price {
  display: grid;
  margin: 24px 0 17px;
}

.plan-price small {
  color: #8897aa;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.plan-price strong {
  margin: 2px 0;
  color: var(--navy);
  font-size: 35px;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.plan-price span {
  color: #8b99aa;
  font-size: 8px;
}

.plan-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.plan-facts span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px;
  border-radius: 9px;
  color: #526982;
  background: #f3f7fc;
  font-size: 9px;
  font-weight: 680;
}

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

.plan-actions {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.plan-actions .text-link {
  justify-content: center;
}

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

.inclusion-columns article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
}

.inclusion-label {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .09em;
}

.inclusion-label.included {
  color: #07805d;
  background: #e8faf4;
}

.inclusion-label.excluded {
  color: #aa542f;
  background: #fff0e9;
}

.inclusion-columns ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.inclusion-columns li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #5a6d84;
  font-size: 10.5px;
}

.inclusion-columns li svg {
  flex: 0 0 auto;
  color: #27a97f;
}

.inclusion-columns li > span {
  color: var(--copper);
  font-weight: 800;
}

.device-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.device-strip > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: var(--blue);
}

.device-strip > div:last-child {
  border-right: 0;
}

.device-strip span {
  color: #697b91;
  font-size: 9.5px;
}

.device-strip strong {
  color: var(--navy);
}

.mentor-section {
  background: #fff;
}

.mentor-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}

.mentor-card,
.assessment-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.mentor-card {
  display: flex;
  gap: 25px;
  color: #fff;
  background: var(--navy);
}

.mentor-avatar {
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 5px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 21px;
  font-weight: 820;
}

.mentor-avatar i {
  position: absolute;
  right: -2px;
  bottom: 2px;
  width: 15px;
  height: 15px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: #45cc9e;
}

.mentor-card small {
  color: #74aaf7;
  font-size: 8px;
  font-weight: 830;
  letter-spacing: .11em;
}

.mentor-card h3 {
  margin: 7px 0 9px;
  color: #fff;
  font-size: 24px;
  letter-spacing: -.03em;
  line-height: 1.18;
}

.mentor-card p {
  color: #b7c8df;
  font-size: 11.5px;
}

.mentor-card .text-link {
  color: #78adfa;
}

.assessment-card {
  background: linear-gradient(145deg, #fff, #f2f7fd);
}

.assessment-card h2 {
  font-size: 34px;
}

.assessment-card > p {
  font-size: 12px;
}

.assessment-bars {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.assessment-bars > span {
  display: grid;
  grid-template-columns: 1fr 145px;
  align-items: center;
  gap: 13px;
}

.assessment-bars i {
  height: 7px;
  overflow: hidden;
  border-radius: 8px;
  background: #dde8f4;
}

.assessment-bars b {
  height: 100%;
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.assessment-bars small {
  color: #60738a;
  font-size: 9px;
  font-style: normal;
}

.certificate-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 19px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 9px !important;
}

.certificate-note svg {
  color: var(--blue);
}

.application-section {
  background: var(--surface);
}

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

.application-grid article {
  min-height: 310px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.application-grid article:hover {
  transform: translateY(-5px);
  border-color: #9cbfeb;
  box-shadow: var(--shadow-sm);
}

.application-grid article > span {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: #eaf3ff;
}

.application-grid article:nth-child(2) > span {
  color: var(--copper);
  background: #fff0e9;
}

.application-grid article:nth-child(3) > span {
  color: #058fa6;
  background: #e7f9fc;
}

.application-grid small {
  display: block;
  margin-top: 18px;
  color: var(--copper);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .1em;
}

.application-grid h3 {
  margin: 5px 0 8px;
  font-size: 19px;
}

.application-grid p {
  font-size: 11.5px;
}

.application-grid ul {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.application-grid li {
  position: relative;
  padding-left: 15px;
  color: #64768b;
  font-size: 9.5px;
}

.application-grid li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.proof-section {
  background: var(--ivory);
}

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

.proof-layout > div:first-child > p {
  margin: 19px 0 24px;
}

.revision-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 30px 1fr 30px;
  grid-template-areas: "before arrow1 revise arrow2 final";
  align-items: center;
  gap: 7px;
}

.revision-card {
  min-height: 230px;
  padding: 13px;
  border: 1px solid #d5e1ee;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.revision-card.before { grid-area: before; }
.revision-card.revise { grid-area: revise; }
.revision-card.final { grid-area: final; }
.revision-arrow:nth-of-type(2) { grid-area: arrow1; }
.revision-arrow:nth-of-type(4) { grid-area: arrow2; }

.revision-card small {
  color: var(--copper);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .08em;
}

.revision-card > div {
  position: relative;
  height: 150px;
  margin: 9px 0;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(145deg, #b9c8d8, #8498ad);
}

.revision-card.revise > div {
  background: linear-gradient(145deg, #3d82cd, #16477c);
}

.revision-card.final > div {
  background: linear-gradient(145deg, #1267e8, #082b5d);
}

.revision-card > div span {
  position: absolute;
  border: 1px solid rgba(255,255,255,.45);
}

.revision-card > div span:nth-child(1) {
  inset: 15px;
}

.revision-card > div span:nth-child(2) {
  width: 55px;
  height: 55px;
  top: 35px;
  left: 45px;
  border-radius: 50%;
}

.revision-card > div span:nth-child(3) {
  width: 70px;
  height: 6px;
  left: 33px;
  bottom: 27px;
  border-radius: 5px;
  background: rgba(255,255,255,.45);
}

.revision-card p {
  margin: 0;
  font-size: 8.5px;
  text-align: center;
}

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

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

.visit-card {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  border: 1px solid #d4e1ef;
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.map-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(28deg, transparent 48%, #d9e6f4 49% 51%, transparent 52%),
    linear-gradient(-18deg, transparent 45%, #dce8f5 46% 48%, transparent 49%),
    linear-gradient(90deg, #edf4fb, #f9fbfe);
}

.map-visual::before,
.map-visual::after {
  position: absolute;
  width: 520px;
  height: 58px;
  border: 11px solid rgba(102, 149, 207, .16);
  border-radius: 50%;
  transform: rotate(30deg);
  content: "";
}

.map-visual::before {
  top: 65px;
  left: -80px;
}

.map-visual::after {
  right: -100px;
  bottom: 65px;
  transform: rotate(-29deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 48%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 8px solid rgba(255,255,255,.82);
  border-radius: 50%;
  color: #fff;
  background: var(--copper);
  box-shadow: 0 15px 34px rgba(170, 68, 31, .24);
  animation: pin 2.8s ease-in-out infinite;
}

.map-label {
  position: absolute;
  z-index: 3;
  top: calc(40% + 69px);
  left: calc(48% - 37px);
  display: grid;
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 9px;
  font-weight: 820;
}

.map-label small {
  color: #788a9f;
  font-size: 7px;
  font-weight: 600;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.visit-copy p {
  margin: 17px 0 21px;
}

.visit-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-bottom: 24px;
}

.visit-meta > span {
  display: flex;
  gap: 9px;
  padding: 12px;
  border-radius: 10px;
  background: #f3f8fe;
}

.visit-meta svg {
  color: var(--blue);
}

.visit-meta small,
.visit-meta strong {
  display: block;
  line-height: 1.3;
}

.visit-meta small {
  color: #8392a5;
  font-size: 7px;
  text-transform: uppercase;
}

.visit-meta strong {
  color: var(--navy);
  font-size: 8.5px;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-section {
  padding-top: 64px;
  background: #f6f9fd;
}

.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: start;
  gap: 62px;
}

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

.faq-layout aside p {
  margin: 18px 0 23px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list summary {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 730;
}

.faq-list p {
  margin: 0;
  padding: 0 54px 19px 18px;
  font-size: 11.5px;
}

.related-section {
  padding-block: 80px;
  background: #fff;
}

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

.related-grid article {
  min-height: 215px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .25s ease, border-color .25s ease;
}

.related-grid article:hover {
  transform: translateY(-5px);
  border-color: #9ebfec;
}

.related-grid article > span {
  color: #c8d6e6;
  font-size: 27px;
  font-weight: 850;
}

.related-grid h3 {
  margin: 16px 0 7px;
  font-size: 16px;
  line-height: 1.25;
}

.related-grid p {
  margin: 0 0 15px;
  font-size: 10px;
}

.final-cta {
  padding-block: 50px 88px;
}

.cta-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 60px;
  overflow: hidden;
  border-radius: 27px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(53, 139, 255, .3), transparent 30%),
    linear-gradient(135deg, #071b39, #0c3369);
  box-shadow: 0 34px 78px rgba(9, 42, 88, .2);
}

.cta-shell::before {
  position: absolute;
  left: -200px;
  bottom: -270px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(255,255,255,.025), 0 0 0 115px rgba(255,255,255,.018);
  content: "";
}

.cta-copy {
  position: relative;
  z-index: 2;
  flex: .95 1 0;
}

.light-kicker {
  color: #77adf8;
}

.cta-copy h2 {
  color: #fff;
}

.cta-copy > p {
  color: #bdcce0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn-copper {
  color: #fff;
  background: var(--copper);
  box-shadow: 0 12px 27px rgba(232, 111, 61, .2);
}

.btn-copper:hover {
  background: #c95628;
}

.btn-outline-light {
  border-color: rgba(255,255,255,.3);
  color: #fff;
  background: rgba(255,255,255,.05);
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
}

.cta-reassurance {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 18px 0 0 !important;
  color: #94a8c4 !important;
  font-size: 8.5px !important;
}

.cta-reassurance svg {
  flex: 0 0 auto;
}

.cta-form {
  position: relative;
  z-index: 2;
  flex: 1.05 1 0;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(0,0,0,.2);
}

.cta-form .form-title {
  margin-bottom: 18px;
}

.cta-form .form-title strong {
  font-size: 20px;
}

.cta-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.cta-form input,
.cta-form select {
  height: 44px;
  font-size: 10px;
}

.cta-form .btn {
  margin-top: 14px;
}

.site-footer {
  padding-top: 67px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr .9fr 1.15fr;
  gap: 42px;
  padding-bottom: 48px;
}

.footer-brand p,
.footer-contact p {
  color: #6d7f95;
  font-size: 10px;
}

.footer-brand p {
  max-width: 265px;
  margin: 16px 0;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid h3 {
  margin: 3px 0 7px;
  color: var(--navy);
  font-size: 10.5px;
}

.footer-grid > div:not(.footer-brand) > a {
  color: #6d7e93;
  font-size: 9px;
}

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

.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 7px;
}

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

.social-links a {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.social-links a:hover {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.footer-bottom {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #8a98aa;
  font-size: 8px;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 17px;
}

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

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

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

.toast {
  position: fixed;
  z-index: 150;
  right: 24px;
  bottom: 24px;
  max-width: 390px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 14px 14px 18px;
  border-radius: 13px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  color: #fff;
  background: #0b2b59;
  box-shadow: 0 20px 50px rgba(7, 34, 71, .3);
  font-size: 10.5px;
  font-weight: 650;
  transition: .25s ease;
}

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

.toast button {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.1);
  cursor: pointer;
}

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

@keyframes playhead {
  0% { left: 5%; }
  100% { left: 94%; }
}

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

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

@media (min-width: 1800px) {
  .container {
    width: min(1320px, calc(100% - 120px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(560px, .9fr);
  }

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

@media (max-width: 1120px) {
  .container {
    width: min(100% - 38px, 1040px);
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav > a,
  .nav-dropdown > button {
    font-size: 11.5px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(470px, .95fr);
    gap: 30px;
  }

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

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

  .curriculum-layout {
    grid-template-columns: 310px 1fr;
    gap: 38px;
  }

  .final-cta .cta-shell {
    gap: 43px;
    padding: 47px;
  }

  .footer-grid {
    gap: 27px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 98px;
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement button {
    display: none;
  }

  .nav-wrap {
    min-height: 69px;
  }

  .main-nav {
    position: fixed;
    z-index: 90;
    top: 104px;
    right: 19px;
    left: 19px;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 122px);
    padding: 15px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 17px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-9px);
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: .22s ease;
  }

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

  .main-nav > a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #edf1f6;
    font-size: 12.5px;
  }

  .main-nav > a::after,
  .nav-dropdown > button::after {
    display: none;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    display: grid;
    padding: 3px 0 7px 14px;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .dropdown-panel a {
    padding: 7px 9px;
    font-size: 10.5px;
  }

  .mobile-nav-cta {
    display: flex !important;
    justify-content: center !important;
    margin-top: 9px;
    border: 0 !important;
    border-radius: 10px;
    color: #fff !important;
    background: var(--blue);
  }

  .menu-button {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 48px;
  }

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

  .hero h1 {
    max-width: 740px;
    font-size: clamp(49px, 8vw, 68px);
  }

  .hero-studio {
    max-width: 720px;
    margin-inline: auto;
  }

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

  .fact {
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(3) {
    border-right: 0;
  }

  .fact:nth-child(4),
  .fact:nth-child(5) {
    border-bottom: 0;
  }

  .section {
    padding-block: 82px;
  }

  .intro-grid,
  .audience-layout,
  .tools-layout,
  .responsibility-grid,
  .proof-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .workflow-track {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 32px;
  }

  .workflow-track article:nth-child(4) .workflow-node i {
    display: none;
  }

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

  .curriculum-sidebar {
    max-width: 650px;
  }

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

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

  .rhythm-grid article {
    border-bottom: 1px solid var(--line);
  }

  .rhythm-grid article:nth-child(4) {
    border-right: 0;
  }

  .rhythm-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .responsibility-visual {
    order: 2;
  }

  .fee-layout,
  .mentor-layout,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .course-plan {
    max-width: 680px;
    margin-inline: auto;
  }

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

  .device-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .device-strip > div:last-child {
    border-bottom: 0;
  }

  .application-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .revision-board {
    max-width: 720px;
    margin-inline: auto;
  }

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

  .visit-copy {
    padding: 40px;
  }

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

  .final-cta .cta-shell {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .container {
    width: calc(100% - 30px);
  }

  .announcement {
    font-size: 9.5px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

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

  .brand-copy small {
    max-width: 150px;
    font-size: 7px;
  }

  .breadcrumb {
    display: none;
  }

  .hero {
    padding-bottom: 55px;
  }

  .hero-grid {
    padding-top: 49px;
  }

  .hero h1 {
    font-size: clamp(40px, 12.2vw, 54px);
  }

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

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

  .hero-actions {
    display: grid;
  }

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

  .creator-console {
    border-radius: 18px;
  }

  .console-body {
    grid-template-columns: 35px 1fr 130px;
  }

  .console-tools {
    padding-inline: 5px;
  }

  .console-tools span {
    width: 24px;
    height: 24px;
  }

  .story-panel {
    padding: 10px;
  }

  .storyboard-grid div {
    height: 55px;
  }

  .phone-preview {
    padding-inline: 8px;
  }

  .preview-art {
    height: 155px;
  }

  .hero-form {
    margin-inline: 8px;
    padding: 14px;
  }

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

  .studio-orbit {
    display: none;
  }

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

  .fact {
    min-height: 85px;
    padding: 14px 9px;
  }

  .fact:first-child {
    padding-left: 9px;
  }

  .fact:nth-child(2n) {
    border-right: 0;
  }

  .fact:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .fact:nth-child(4) {
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(5) {
    grid-column: 1 / -1;
  }

  .section {
    padding-block: 67px;
  }

  .section h2 {
    font-size: 35px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .three-skills-grid,
  .outcomes-grid,
  .reasons-grid,
  .project-grid,
  .tool-grid,
  .application-grid,
  .related-grid,
  .responsibility-list {
    grid-template-columns: 1fr;
  }

  .three-skills-grid article {
    min-height: 255px;
  }

  .outcomes-grid article {
    min-height: 220px;
  }

  .audience-list article {
    grid-template-columns: 32px 1fr 20px;
    gap: 11px;
    padding-block: 19px;
  }

  .reasons-grid article {
    min-height: auto;
  }

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

  .workflow-track article:nth-child(4) .workflow-node i {
    display: block;
  }

  .workflow-track article:nth-child(even) .workflow-node i {
    display: none;
  }

  .curriculum-sidebar .btn {
    width: 100%;
  }

  .module-list summary {
    grid-template-columns: 31px 1fr 20px;
    gap: 8px;
    padding: 12px;
  }

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

  .module-body {
    padding: 0 12px 15px 50px;
  }

  .projects-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-head .section-heading {
    margin-bottom: 0;
  }

  .project-filters {
    width: 100%;
    margin-bottom: 25px;
  }

  .project-filters button {
    flex: 1;
    padding-inline: 6px;
  }

  .capstone-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .capstone-mark {
    margin-inline: auto;
  }

  .capstone-card button {
    justify-content: center;
  }

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

  .rhythm-grid article {
    border-bottom: 1px solid var(--line);
  }

  .rhythm-grid article:nth-child(2n) {
    border-right: 0;
  }

  .rhythm-grid article:nth-child(4) {
    border-right: 0;
  }

  .rhythm-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .responsibility-visual {
    min-height: 340px;
  }

  .review-card {
    transform: none;
  }

  .consent-chip {
    right: 7px;
  }

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

  .plan-facts {
    grid-template-columns: 1fr;
  }

  .course-plan,
  .inclusion-columns article {
    padding: 25px;
  }

  .mentor-card,
  .assessment-card {
    padding: 27px;
  }

  .mentor-card {
    flex-direction: column;
  }

  .assessment-bars > span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .revision-board {
    grid-template-columns: 1fr;
    grid-template-areas: "before" "arrow1" "revise" "arrow2" "final";
  }

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

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

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

  .visit-copy {
    padding: 28px 23px;
  }

  .visit-meta {
    grid-template-columns: 1fr;
  }

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

  .visit-actions .text-link {
    justify-content: center;
  }

  .faq-list summary {
    min-height: 57px;
    font-size: 11.5px;
  }

  .related-grid article {
    min-height: auto;
  }

  .final-cta .cta-shell {
    width: calc(100% - 20px);
    padding: 34px 20px;
    border-radius: 22px;
  }

  .cta-form {
    padding: 22px 17px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 29px 23px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-block: 13px 82px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 100;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 6px;
    border: 1px solid rgba(219, 229, 241, .94);
    border-radius: 15px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 48px rgba(10, 43, 88, .24);
    backdrop-filter: blur(15px);
  }

  .mobile-action-bar a {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-right: 1px solid var(--line);
    color: var(--navy);
    font-size: 9.5px;
    font-weight: 750;
  }

  .mobile-action-bar a:last-child {
    border-right: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--blue);
  }

  .toast {
    right: 15px;
    bottom: 82px;
    left: 15px;
    max-width: none;
  }
}

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