:root {
  --ink: #1c1723;
  --ink-soft: #5e5665;
  --purple-950: #1b0d2d;
  --purple-900: #25133f;
  --purple-800: #35185b;
  --purple-700: #4d257a;
  --purple-600: #67369a;
  --violet-200: #d9c7ed;
  --violet-100: #eee6f7;
  --ivory: #f7f3eb;
  --paper: #fffdf9;
  --white: #ffffff;
  --gold: #d8ad62;
  --line: rgba(41, 25, 54, 0.15);
  --shadow: 0 24px 60px rgba(26, 13, 43, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--purple-900);
  font-weight: 700;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.environment-banner {
  padding: 8px 0;
  background: #12091e;
  color: var(--white);
  font-size: 0.75rem;
}

.environment-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.environment-banner strong {
  color: var(--gold);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
}

.site-header-dark {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(27, 13, 45, 0.94);
  color: var(--white);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
  border: 1px solid rgba(77, 37, 122, 0.18);
  border-radius: 12px;
  object-fit: cover;
}

.site-header-dark .brand-mark {
  border-color: rgba(255, 255, 255, 0.2);
}

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

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.site-header-dark .brand-copy span {
  color: var(--violet-200);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-navigation a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-navigation a:hover {
  color: var(--purple-700);
}

.primary-navigation .nav-admin {
  padding: 10px 15px;
  border: 1px solid var(--purple-700);
  border-radius: 999px;
  color: var(--purple-700);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -7px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 7px;
}

.section,
.hero,
.contact {
  padding: clamp(82px, 10vw, 140px) 0;
}

.section-dark {
  background:
    radial-gradient(circle at 78% 18%, rgba(132, 78, 177, 0.25), transparent 29%),
    linear-gradient(122deg, #22005d 0%, #5d1df9 58%, #36079b 100%);
  color: var(--white);
}

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

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

.section-purple {
  background: linear-gradient(145deg, #5d1df9 0%, #39089e 62%, #160532 100%);
  color: var(--white);
}

.contact.section-dark {
  background: linear-gradient(120deg, #160532 0%, #3d0ca8 100%);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.7fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.eyebrow,
.card-kicker,
.product-label,
.course-mode {
  color: var(--violet-200);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-purple {
  color: var(--purple-700);
}

.hero-intro {
  max-width: 780px;
  color: #ded4e8;
  font-size: clamp(1.08rem, 1.8vw, 1.33rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--purple-900);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.button-purple {
  background: var(--purple-700);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(77, 37, 122, 0.2);
}

.button-large {
  min-width: 180px;
  min-height: 58px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-700);
  font-weight: 750;
  text-underline-offset: 4px;
}

.text-link-light {
  color: var(--white);
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.alignment-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(16px);
}

.alignment-card::before {
  position: absolute;
  width: 42px;
  height: 42px;
  top: -12px;
  right: 32px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  content: "";
}

.alignment-card h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.alignment-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
}

.alignment-list span {
  padding: 14px 16px;
  background: rgba(25, 11, 42, 0.8);
  font-size: 0.9rem;
}

.alignment-result {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--violet-200);
  font-weight: 650;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(44px, 7vw, 76px);
}

.section-heading-wide {
  max-width: 940px;
}

.section-heading > p:last-child {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.platform-intro {
  max-width: 960px;
  margin: -22px 0 52px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  color: var(--ink-soft);
}

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

.product-card {
  min-height: 430px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(31, 18, 45, 0.07);
}

.product-card-purple {
  border-color: transparent;
  background: var(--purple-800);
  color: var(--white);
  box-shadow: var(--shadow);
}

.product-meta {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card-purple .product-meta {
  color: var(--violet-200);
}

.product-label {
  margin-bottom: 12px;
  color: var(--purple-700);
}

.product-card-purple .product-label {
  color: var(--gold);
}

.product-card h3 {
  overflow-wrap: anywhere;
}

.product-card > p:not(.product-label) {
  color: var(--ink-soft);
}

.product-card-purple > p:not(.product-label) {
  color: #e2d8eb;
}

.product-card .text-link {
  margin-top: auto;
  padding-top: 26px;
}

.admin-callout {
  margin-top: 24px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.admin-callout .card-kicker {
  margin-bottom: 8px;
  color: var(--purple-700);
}

.admin-callout h3 {
  margin-bottom: 0;
  font-family: inherit;
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -0.015em;
}

.proof-strip {
  padding: 48px 0;
  background: var(--purple-950);
  color: var(--white);
}

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

.proof-item {
  padding: 12px clamp(20px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
}

.proof-item span {
  color: var(--violet-200);
  font-size: 0.88rem;
  line-height: 1.45;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.capability-card {
  padding: clamp(30px, 5vw, 56px);
  background: var(--paper);
}

.capability-number {
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--violet-200);
  border-radius: 50%;
  color: var(--purple-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.capability-card > p {
  max-width: 530px;
  color: var(--ink-soft);
}

.capability-card ul {
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.capability-card li,
.credential-list span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
}

.founder-monogram {
  width: clamp(140px, 18vw, 220px);
  aspect-ratio: 1;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
}

.founder-identity h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.founder-identity p,
.founder-copy > p:not(.eyebrow) {
  color: #e1d7ea;
}

.founder-copy > p:not(.eyebrow) {
  font-size: 1.05rem;
}

.credential-list {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.credential-list span {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.course-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: start;
  gap: 28px;
}

.course-options {
  display: grid;
  gap: 14px;
}

.course-card {
  width: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.course-card:hover,
.course-card.is-selected {
  border-color: var(--purple-600);
  box-shadow: 0 14px 36px rgba(55, 24, 91, 0.11);
  transform: translateY(-2px);
}

.course-card.is-selected {
  box-shadow: inset 4px 0 0 var(--purple-600), 0 14px 36px rgba(55, 24, 91, 0.11);
}

.course-card .course-mode {
  margin-bottom: 10px;
  color: var(--purple-700);
}

.course-card > strong {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.course-card > span:not(.course-mode) {
  color: var(--ink-soft);
}

.course-points {
  margin: 18px 0 0;
  padding-left: 0;
  display: grid;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.course-points span::before {
  margin-right: 9px;
  color: var(--purple-600);
  content: "•";
}

.course-status {
  position: sticky;
  top: 110px;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--purple-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.course-status .card-kicker {
  margin-bottom: 24px;
}

.course-status h3 {
  font-size: 1.8rem;
}

.course-status > p:not(.card-kicker) {
  color: var(--violet-200);
}

.course-status .button {
  margin-top: 16px;
  background: var(--white);
  color: var(--purple-900);
}

.delivery-panel {
  margin-top: 72px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.delivery-copy {
  max-width: 640px;
  margin-bottom: 40px;
}

.delivery-copy h3 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.delivery-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.delivery-steps li {
  min-height: 148px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}

.delivery-steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.delivery-steps span {
  margin-bottom: auto;
  color: var(--purple-700);
  font-size: 0.72rem;
  font-weight: 800;
}

.delivery-steps strong {
  margin-bottom: 4px;
}

.delivery-steps small {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.status-note {
  margin-top: 36px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.status-note strong {
  color: var(--ink);
}

.contact-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-grid > div {
  max-width: 760px;
}

.contact-grid h2 {
  margin-bottom: 18px;
}

.contact-grid p:last-child {
  color: var(--violet-200);
  font-size: 1.1rem;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer-dark {
  border-top-color: rgba(255, 255, 255, 0.13);
  background: var(--purple-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.footer-grid p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.site-footer-dark .footer-grid p {
  color: var(--violet-200);
}

.footer-grid nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-grid nav a,
.footer-legal a,
.footer-legal span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.site-footer-dark .footer-legal a,
.site-footer-dark .footer-legal span {
  color: var(--violet-200);
}

.product-page {
  min-height: 100vh;
  background: var(--purple-950);
}

.return-link {
  font-size: 0.86rem;
}

.product-page-main {
  min-height: calc(100vh - 180px);
  padding: clamp(90px, 12vw, 170px) 0;
  display: grid;
  align-items: center;
}

.product-page-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
}

.product-page-copy h1 {
  font-size: clamp(3rem, 6.5vw, 6rem);
}

.construction-panel {
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.construction-panel > strong {
  display: block;
  margin: 22px 0 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.construction-panel > p:not(.card-kicker) {
  color: var(--violet-200);
}

.construction-rule {
  height: 1px;
  margin: 28px 0;
  background: rgba(255, 255, 255, 0.17);
}

.construction-note {
  font-size: 0.88rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-navigation {
    position: fixed;
    inset: 82px 0 auto;
    padding: 26px 20px 34px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 24px 44px rgba(22, 11, 36, 0.16);
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation a {
    padding: 13px 8px;
  }

  .primary-navigation .nav-admin {
    margin-top: 10px;
    text-align: center;
  }

  .hero-grid,
  .founder-grid,
  .course-layout,
  .product-page-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .alignment-card {
    max-width: 650px;
  }

  .founder-grid {
    gap: 58px;
  }

  .course-status {
    position: static;
  }

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

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy span {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .header-inner {
    min-height: 72px;
  }

  .primary-navigation {
    inset-block-start: 72px;
  }

  .section,
  .hero,
  .contact {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .platform-intro,
  .product-grid,
  .capability-grid,
  .proof-grid,
  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .platform-intro {
    gap: 10px;
  }

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

  .product-meta {
    margin-bottom: 34px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .admin-callout,
  .contact-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-item,
  .proof-item:first-child {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .capability-card {
    padding: 34px 26px;
  }

  .delivery-steps li,
  .delivery-steps li:first-child {
    min-height: auto;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .delivery-steps span {
    margin-bottom: 8px;
  }

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

  .footer-legal {
    grid-column: auto;
  }

  .return-link {
    font-size: 0;
  }

  .return-link span {
    font-size: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

}
.section-dark p,
.section-dark .eyebrow,
.section-dark .card-kicker,
.section-purple p,
.section-purple .eyebrow,
.section-purple .card-kicker,
.product-card-purple .product-meta,
.product-card-purple > p:not(.product-label),
.course-status .card-kicker,
.course-status > p:not(.card-kicker),
.proof-item span,
.site-footer-dark .footer-grid p,
.site-footer-dark .footer-legal a,
.site-footer-dark .footer-legal span,
.construction-panel > p:not(.card-kicker) {
  color: var(--white);
}

