:root {
  --ink: #0b1f1a;
  --ink-soft: #1f3d34;
  --paper: #fff8f0;
  --paper-2: #ffe8d6;
  --coral: #ff5a3c;
  --coral-deep: #e03d22;
  --teal: #00c2a8;
  --teal-deep: #009984;
  --lemon: #f5e663;
  --sky: #7ed0ff;
  --line: rgba(11, 31, 26, 0.12);
  --shadow: 0 18px 40px rgba(11, 31, 26, 0.12);
  --radius: 1.25rem;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --max: 1120px;
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(255, 90, 60, 0.18), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(0, 194, 168, 0.16), transparent 36%),
    linear-gradient(180deg, var(--paper) 0%, #fff3e8 48%, var(--paper) 100%);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

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

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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

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

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.55rem;
  background:
    linear-gradient(135deg, var(--coral) 45%, transparent 45%),
    linear-gradient(225deg, var(--teal) 45%, transparent 45%),
    var(--lemon);
  box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.15);
  animation: markPulse 4.5s ease-in-out infinite;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

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

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

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  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;
}

main {
  overflow-x: clip;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.section- Tight {
  padding: 3rem 0;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--coral-deep);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.125rem;
  max-width: 40rem;
  color: var(--ink-soft);
}

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

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

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 90, 60, 0.28);
}

.btn-primary:hover {
  background: var(--coral-deep);
  color: #fff;
}

.btn-secondary {
  background: var(--ink);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--ink-soft);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

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

.hero-home {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  position: relative;
  color: #fff;
  isolation: isolate;
}

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

.hero-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 31, 26, 0.2) 0%, rgba(11, 31, 26, 0.78) 72%),
    linear-gradient(90deg, rgba(255, 90, 60, 0.25), transparent 50%);
}

.hero-home-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem 3.5rem;
  width: 100%;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  max-width: 12ch;
  animation: riseIn 0.9s ease both;
}

.hero-line {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  max-width: 28rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.92);
  animation: riseIn 1s ease 0.12s both;
}

.hero-actions {
  animation: riseIn 1s ease 0.22s both;
}

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

.shape-blob {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  background: linear-gradient(135deg, rgba(0, 194, 168, 0.25), rgba(245, 230, 99, 0.35));
  filter: blur(2px);
  animation: morph 12s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%;
    transform: translate(12px, -18px) rotate(8deg);
  }
}

.proof-band {
  background: var(--ink);
  color: #fff;
  padding: 1.5rem 0;
}

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

.proof-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--lemon);
}

.proof-row span {
  font-size: 0.95rem;
  opacity: 0.88;
}

.feature-course {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-course img {
  width: 100%;
  min-height: 22rem;
  object-fit: cover;
  border-radius: 0 3rem 0 3rem;
  box-shadow: var(--shadow);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.chip {
  background: var(--lemon);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.benefit-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--line);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--coral);
  line-height: 1;
}

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

.quote {
  background: rgba(255, 255, 255, 0.72);
  border-left: 5px solid var(--teal);
  padding: 1.25rem 1.5rem;
  border-radius: 0 1rem 1rem 0;
}

.quote.long {
  border-left-color: var(--coral);
}

.quote footer {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.cta-band {
  margin: 2rem 0 4rem;
  background:
    linear-gradient(120deg, rgba(255, 90, 60, 0.92), rgba(0, 194, 168, 0.88)),
    var(--coral);
  color: #fff;
  border-radius: 2rem;
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -3rem;
  top: -4rem;
  background: rgba(245, 230, 99, 0.35);
  border-radius: 40% 60% 55% 45%;
}

.cta-band h2,
.cta-band p {
  position: relative;
  color: #fff;
}

.page-hero {
  padding: 4rem 0 2rem;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 16ch;
}

.page-hero-media {
  margin-top: 2rem;
  border-radius: 1.5rem 1.5rem 3rem 0.5rem;
  overflow: hidden;
  max-height: 22rem;
}

.page-hero-media img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

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

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

.course-tile,
.blog-tile,
.price-tier {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-tile:hover,
.blog-tile:hover,
.price-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.course-tile img,
.blog-tile img {
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
}

.course-tile-body,
.blog-tile-body,
.price-tier-body {
  padding: 1.25rem;
}

.course-tile h3,
.blog-tile h3,
.price-tier h3 {
  font-size: 1.25rem;
}

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

.price-tier {
  padding: 0;
}

.price-tier.featured {
  border: 2px solid var(--coral);
  background: linear-gradient(180deg, #fff 0%, #ffe9e2 100%);
}

.price-tier-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin: 0.5rem 0 1rem;
}

.price span {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--ink-soft);
}

.price-tier ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  flex: 1;
}

.modules {
  display: grid;
  gap: 1rem;
}

.module {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
}

.module h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.instructor {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.25rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
}

.instructor img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--lemon);
}

.faq details {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.95rem 1.1rem;
  margin-bottom: 0.75rem;
}

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

.form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(11, 31, 26, 0.22);
  background: #fff;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 3px solid rgba(0, 194, 168, 0.35);
  border-color: var(--teal);
}

.field-error {
  color: var(--coral-deep);
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
}

.form-status.success {
  background: rgba(0, 194, 168, 0.18);
  color: var(--teal-deep);
}

.form-status.error {
  background: rgba(255, 90, 60, 0.15);
  color: var(--coral-deep);
}

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

.contact-card {
  background: var(--ink);
  color: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.contact-card a {
  color: var(--lemon);
}

.legal {
  max-width: 48rem;
}

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

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

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

.legal th {
  background: rgba(245, 230, 99, 0.55);
}

.article {
  max-width: 44rem;
}

.article-hero {
  margin: 1.5rem 0 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  max-height: 24rem;
  object-fit: cover;
}

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

.case-study {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.rating {
  color: var(--coral-deep);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.not-found h1 {
  font-size: clamp(3rem, 12vw, 7rem);
  color: var(--coral);
  margin-bottom: 0.25rem;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 3rem;
  padding: 3rem 1.25rem 1.5rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 1.5rem;
}

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

.footer-heading {
  color: var(--lemon);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.footer-col a,
.footer-brand a {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  margin-bottom: 0.4rem;
}

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

.footer-address,
.footer-phone,
.footer-tag {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 42rem;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 1.25rem;
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
  display: none;
}

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

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.inline-error {
  background: rgba(255, 90, 60, 0.12);
  color: var(--coral-deep);
  border: 1px solid rgba(255, 90, 60, 0.35);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  margin: 1rem 1.25rem;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.signal-block {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.25rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.signal-block::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  right: -1rem;
  bottom: -1rem;
  background: var(--teal);
  opacity: 0.18;
  border-radius: 40% 60% 55% 45%;
}

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

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.35rem;
  }

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

  .site-nav a {
    padding: 0.7rem 0.35rem;
  }

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

  .feature-course,
  .contact-layout,
  .grid-3,
  .grid-2,
  .custom-grid,
  .footer-grid,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .instructor {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-home {
    min-height: 78vh;
  }
}
