:root {
  --ink: #15232b;
  --ink-soft: #3d5160;
  --mist: #e4eef2;
  --paper: #f2f7f9;
  --teal: #0b3d4a;
  --teal-mid: #146878;
  --teal-deep: #072a33;
  --gold: #c9a227;
  --gold-soft: #e6d08a;
  --line: rgba(21, 35, 43, 0.12);
  --shadow: 0 22px 48px rgba(7, 42, 51, 0.12);
  --radius: 6px;
  --max: 1140px;
  --font-display: "Sora", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(20, 104, 120, 0.14), transparent 55%),
    radial-gradient(900px 480px at 100% 4%, rgba(201, 162, 39, 0.1), transparent 48%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 42%, #e8f1f4 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

a {
  color: var(--teal-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.55em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(242, 247, 249, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(242, 247, 249, 0.94);
  box-shadow: 0 8px 24px rgba(7, 42, 51, 0.06);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--teal-mid) 0%, var(--teal-deep) 72%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 0 3px rgba(201, 162, 39, 0.18);
  animation: markPulse 4.5s ease-in-out infinite;
}

@keyframes markPulse {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 0 3px rgba(201, 162, 39, 0.14);
  }
  50% {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 0 5px rgba(201, 162, 39, 0.28);
  }
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 1.05rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--teal);
  color: var(--teal) !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--teal);
  color: var(--paper) !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
}

.nav-toggle-bar {
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 -5px 0 var(--ink), 0 5px 0 var(--ink);
}

.nav-toggle-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.site-main {
  min-height: 55vh;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4fafb;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 42, 51, 0.88) 0%, rgba(7, 42, 51, 0.55) 48%, rgba(7, 42, 51, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 42, 51, 0.72) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0 4.2rem;
  max-width: 38rem;
  animation: heroRise 0.9s ease both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 0.85rem;
  color: #fff;
}

.hero-line {
  font-size: 1.12rem;
  color: rgba(244, 250, 251, 0.9);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4fafb;
}

.page-hero .hero-media {
  position: absolute;
  inset: 0;
}

.page-hero .hero-content {
  padding: 4.5rem 0 3rem;
  max-width: 40rem;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

.page-hero p {
  color: rgba(244, 250, 251, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--teal-deep);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-soft);
  color: var(--teal-deep);
}

.btn-outline {
  background: transparent;
  border-color: rgba(244, 250, 251, 0.65);
  color: #f4fafb;
}

.btn-outline:hover {
  background: rgba(244, 250, 251, 0.12);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}

.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--paper);
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 2.4rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-mid);
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  max-width: 18ch;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 54ch;
  font-size: 1.05rem;
}

.proof-band {
  background: var(--teal);
  color: #e8f4f6;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  color: var(--gold-soft);
  margin-bottom: 0.25rem;
}

.proof-item span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 1rem;
}

.benefit-list li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--ink-soft);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--gold);
}

.course-grid,
.blog-grid,
.pricing-grid,
.review-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

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

.media-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.media-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-tile-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.media-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.media-tile p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

.meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.quote-panel {
  margin: 0;
  padding: 1.5rem 1.4rem;
  background: var(--teal);
  color: #eaf5f7;
  border-radius: calc(var(--radius) + 2px);
}

.quote-panel p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.quote-panel cite {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.85;
}

.quote-panel.alt {
  background: #1a4f5c;
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.journey-step {
  padding: 1.2rem 1rem;
  border-top: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.45);
}

.journey-step strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.4rem;
}

.journey-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.cta-band {
  background:
    linear-gradient(120deg, var(--teal-deep), var(--teal-mid));
  color: #f2fafb;
  border-radius: 0;
  padding: 3.5rem 0;
}

.cta-band .section-title {
  color: #fff;
  max-width: 22ch;
}

.cta-band p {
  color: rgba(242, 250, 251, 0.88);
  max-width: 48ch;
}

.price-tier {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.6rem 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-tier.featured {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow);
  background: #fff;
}

.price-tier h3 {
  font-size: 1.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 0.8rem;
}

.price-amount span {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 500;
}

.price-tier ul {
  margin: 0 0 1.4rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  flex: 1;
}

.price-tier li + li {
  margin-top: 0.4rem;
}

.article {
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto;
  padding: 3rem 0 4.5rem;
}

.article .meta {
  margin-bottom: 1rem;
}

.article h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.article-cover {
  margin: 1.5rem 0 2rem;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.prose li + li {
  margin-top: 0.35rem;
}

.modules {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.module {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.55);
  border-left: 3px solid var(--teal-mid);
}

.module h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.module p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.instructor {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin: 1.5rem 0;
}

.instructor img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
}

.faq details p {
  margin: 0.7rem 0 0.2rem;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.form-panel,
.info-panel {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(20, 104, 120, 0.35);
  border-color: var(--teal-mid);
}

.field {
  margin-bottom: 1rem;
}

.field-error {
  color: #9b2c2c;
  font-size: 0.85rem;
  min-height: 1.1em;
}

.form-status {
  margin-top: 0.75rem;
  font-weight: 500;
}

.form-status.is-success {
  color: #146878;
}

.form-status.is-error {
  color: #9b2c2c;
}

.site-footer {
  background: var(--teal-deep);
  color: rgba(232, 244, 246, 0.88);
  padding: 3.2rem 0 1.4rem;
  margin-top: 2rem;
}

.footer-grid {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 1.8rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 0.65rem;
}

.footer-col a {
  display: block;
  color: rgba(232, 244, 246, 0.85);
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-contact p {
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.footer-bottom {
  width: min(100% - 2.5rem, var(--max));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 640px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: heroRise 0.45s ease both;
}

.cookie-banner p {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-banner .btn-outline {
  border-color: var(--teal);
  color: var(--teal);
}

.cookie-banner .btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

.inline-error {
  background: #fde8e8;
  color: #9b2c2c;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.legal-wrap {
  width: min(100% - 2.5rem, 760px);
  margin: 0 auto;
  padding: 3rem 0 4.5rem;
}

.legal-wrap h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.table-wrap {
  overflow-x: auto;
  margin: 1.2rem 0 1.8rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(20, 104, 120, 0.08);
  font-family: var(--font-display);
}

.case-study {
  margin-top: 2rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.case-study h3 {
  font-size: 1.25rem;
}

.rating-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.rating-row strong {
  font-family: var(--font-display);
  color: var(--gold);
}

.not-found {
  text-align: center;
  padding: 6rem 1.25rem 5rem;
}

.not-found h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

@media (max-width: 960px) {
  .proof-grid,
  .course-grid,
  .blog-grid,
  .pricing-grid,
  .journey,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .contact-layout,
  .instructor {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(242, 247, 249, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

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

  .header-inner {
    position: relative;
  }

  .proof-grid,
  .course-grid,
  .blog-grid,
  .pricing-grid,
  .review-grid,
  .journey,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(88vh, 700px);
  }

  .hero-brand {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
}
