:root {
  --ink: #0b2b3a;
  --ink-soft: #1a4458;
  --paper: #fff8f0;
  --paper-2: #ffe8d6;
  --coral: #ff6b4a;
  --coral-deep: #e84a2b;
  --mint: #2ee6a6;
  --mint-deep: #12c988;
  --sun: #ffe566;
  --sky: #5ec8ff;
  --violet-pop: #7b5cff;
  --line: rgba(11, 43, 58, 0.12);
  --shadow: 0 18px 40px rgba(11, 43, 58, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --font-display: "Syne", "Trebuchet MS", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(46, 230, 166, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 5%, rgba(255, 107, 74, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 229, 102, 0.25), transparent 55%),
    var(--paper);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--coral-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

p {
  margin: 0 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 240, 0.86);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  width: min(100% - 2rem, 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.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-mark {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.45rem;
  background:
    linear-gradient(135deg, var(--coral) 0 42%, transparent 42% 58%, var(--mint) 58%),
    var(--sun);
  border: 2px solid var(--ink);
  transform: rotate(-8deg);
  animation: brand-wiggle 5s ease-in-out infinite;
}

@keyframes brand-wiggle {
  0%,
  100% {
    transform: rotate(-8deg) scale(1);
  }
  50% {
    transform: rotate(6deg) scale(1.05);
  }
}

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

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

.site-nav a:hover {
  color: var(--coral-deep);
}

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
}

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

.nav-toggle {
  display: none;
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 0.55rem;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) + 0.35rem);
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    text-align: center;
  }
}

.blob {
  position: absolute;
  border-radius: 40% 60% 55% 45%;
  filter: blur(0);
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-brand-lockup {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
}

.hero-brand-lockup span {
  display: inline-block;
  background: linear-gradient(90deg, var(--coral), var(--violet-pop) 45%, var(--mint-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-kicker {
  display: inline-block;
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  transform: rotate(-2deg);
}

.hero-lede {
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  max-width: 36ch;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  min-height: 280px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  border: 3px solid var(--ink);
  border-radius: 2rem 0.75rem 2.5rem 1.25rem;
  box-shadow: 12px 12px 0 var(--mint);
  transform: rotate(1.5deg);
}

.hero-shape-a {
  width: 180px;
  height: 180px;
  background: var(--coral);
  opacity: 0.35;
  top: -2rem;
  right: -1rem;
  animation: floaty 7s ease-in-out infinite;
}

.hero-shape-b {
  width: 120px;
  height: 120px;
  background: var(--sky);
  opacity: 0.45;
  bottom: 1rem;
  left: -1rem;
  border-radius: 30% 70% 70% 30%;
  animation: floaty 9s ease-in-out infinite reverse;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  background: var(--sun);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--mint);
}

.section {
  padding: 3.25rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  max-width: 18ch;
}

.section-lede {
  max-width: 52ch;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.proof-band {
  background: var(--ink);
  color: var(--paper);
  padding: 1.5rem 0;
  border-block: 3px solid var(--ink);
  transform: rotate(-0.4deg);
  margin: 1rem 0 2rem;
}

.proof-band .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: space-between;
  transform: rotate(0.4deg);
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--sun);
}

.course-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.course-tile {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 6px 6px 0 var(--sky);
  transition: transform 0.2s ease;
}

.course-tile:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--coral);
}

.course-tile img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  border-bottom: 2px solid var(--ink);
}

.course-tile-body {
  padding: 1rem 1.1rem 1.25rem;
}

.course-tile h3 {
  font-size: 1.2rem;
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--mint);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  margin-bottom: 0.5rem;
}

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

.benefit-list li {
  background: rgba(255, 255, 255, 0.72);
  border: 2px dashed var(--ink);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  position: relative;
  padding-left: 3.2rem;
}

.benefit-list li::before {
  content: attr(data-num);
  position: absolute;
  left: 0.85rem;
  top: 0.95rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--violet-pop);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.quote-stack {
  display: grid;
  gap: 1.25rem;
}

.quote {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 1.5rem 0.5rem 1.5rem 0.5rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 0 0 6px rgba(255, 229, 102, 0.35);
}

.quote p {
  font-size: 1.05rem;
}

.quote footer {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.cta-panel {
  background: linear-gradient(135deg, var(--mint) 0%, var(--sky) 55%, var(--sun) 100%);
  border: 3px solid var(--ink);
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 10px 10px 0 var(--ink);
}

.cta-panel h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  max-width: none;
}

.page-hero {
  padding: 2.75rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.page-hero .lede {
  max-width: 54ch;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.split {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .split-2 {
    grid-template-columns: 1fr 1fr;
  }

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

.price-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-tier {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.35rem;
  position: relative;
}

.price-tier.featured {
  background: var(--sun);
  box-shadow: 8px 8px 0 var(--coral);
  transform: translateY(-6px);
}

.price-tier h2 {
  font-size: 1.45rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

.price-tier ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
}

.prose {
  max-width: 68ch;
}

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

.prose h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  border: 1.5px solid var(--ink);
  padding: 0.55rem 0.65rem;
  text-align: left;
  background: #fff;
}

.prose th {
  background: var(--mint);
}

.form {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 7px 7px 0 var(--violet-pop);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: var(--paper);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  color: var(--coral-deep);
  font-size: 0.88rem;
  margin-top: 0.3rem;
  display: none;
}

.form-field.is-invalid .field-error {
  display: block;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--coral-deep);
  background: #fff0ec;
}

.form-status {
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  display: none;
}

.form-status.is-success {
  display: block;
  background: var(--mint);
}

.form-status.is-error {
  display: block;
  background: #ffd0c4;
}

.inline-script-error {
  margin: 0.75rem 0;
  padding: 0.65rem 0.85rem;
  background: #ffd0c4;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
}

.module-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.module-list li {
  background: #fff;
  border-left: 6px solid var(--coral);
  border: 2px solid var(--ink);
  border-left-width: 6px;
  border-left-color: var(--coral);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.faq details {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

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

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.blog-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  border-bottom: 2px solid var(--ink);
}

.blog-card-body {
  padding: 1rem;
}

.meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.review-board {
  display: grid;
  gap: 1rem;
}

.review-item {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.review-item.wide {
  background: linear-gradient(120deg, #fff, var(--paper-2));
}

.stars {
  color: var(--coral-deep);
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1rem 0;
}

.avatar-row img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.site-footer {
  margin-top: 3rem;
  background: var(--ink);
  color: #e8f4f8;
  padding: 2.5rem 0 1.25rem;
}

.footer-grid {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--sun);
  margin: 0 0 0.5rem;
}

.footer-tag {
  color: #b9d4de;
  max-width: 28ch;
}

.footer-col h2 {
  font-size: 1rem;
  color: var(--mint);
  margin-bottom: 0.65rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.35rem;
}

.footer-col a {
  color: #e8f4f8;
  text-decoration: none;
}

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

.footer-contact p {
  font-size: 0.9rem;
  color: #c5dde6;
}

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 1.75rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: #9bb8c4;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 520px;
  margin-inline: auto;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: 8px 8px 0 var(--coral);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: slide-up 0.35s ease;
}

@keyframes slide-up {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner p {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

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

.cookie-actions .btn {
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.not-found {
  text-align: center;
  padding: 4rem 0 5rem;
}

.not-found h1 {
  font-size: clamp(3rem, 12vw, 6rem);
  background: linear-gradient(90deg, var(--coral), var(--violet-pop));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.article-cover {
  border: 3px solid var(--ink);
  border-radius: 1.5rem;
  overflow: hidden;
  margin: 1.25rem 0 1.75rem;
  box-shadow: 8px 8px 0 var(--sky);
}

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

.address-block {
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

@media (min-width: 900px) {
  .home-alt {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
  }
}
