/* Featuregatebase — vibrant creative theme */
:root {
  --coral: #ff5a36;
  --coral-deep: #e03e1c;
  --aqua: #2dd4bf;
  --aqua-deep: #0d9488;
  --sun: #ffe566;
  --sun-hot: #fbbf24;
  --ink: #0f172a;
  --ink-soft: #334155;
  --paper: #fff8f0;
  --paper-2: #ffe8d6;
  --mist: #e8fffb;
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 40px rgba(255, 90, 54, 0.18);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 72rem;
  --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(255, 229, 102, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 5%, rgba(45, 212, 191, 0.35), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255, 90, 54, 0.12), transparent 60%),
    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.1em;
  text-underline-offset: 0.18em;
}

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

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

p {
  margin: 0 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: clip;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
}

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

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

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

.logo {
  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;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background:
    linear-gradient(135deg, var(--coral) 40%, var(--sun) 40% 70%, var(--aqua) 70%);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-6deg);
}

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.35rem 0.2rem;
}

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

.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

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

@media (max-width: 920px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 1rem 1.25rem 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .nav-cta { text-align: center; }
}

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;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--aqua);
  color: var(--ink);
  padding: 0.3rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  margin-bottom: 1rem;
  transform: rotate(-2deg);
}

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

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

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}

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

.btn-primary:hover { color: #fff; }

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

.btn-ghost {
  background: transparent;
  box-shadow: none;
  border-style: dashed;
}

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

/* Hero — brand-forward asymmetric composition */
.hero-home {
  padding: 3.5rem 0 4rem;
  position: relative;
}

.hero-home::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 40% 60% 55% 45%;
  background: var(--aqua);
  opacity: 0.35;
  top: 8%;
  right: -4%;
  animation: drift 12s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-home::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 60% 40% 45% 55%;
  background: var(--sun);
  opacity: 0.55;
  bottom: 5%;
  left: -2%;
  animation: drift 9s ease-in-out infinite alternate-reverse;
  z-index: 0;
}

@keyframes drift {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(12px, -18px) rotate(8deg); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.brand-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.brand-hero span {
  display: block;
  color: var(--coral);
  -webkit-text-stroke: 0;
}

.hero-side {
  background: var(--ink);
  color: var(--paper);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--coral);
  transform: rotate(1.5deg);
}

.hero-side p {
  margin: 0 0 1.25rem;
  color: rgba(255, 248, 240, 0.88);
}

.hero-visual {
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--aqua);
  min-height: 16rem;
}

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

.blob-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  overflow: hidden;
}

.blob-card::before {
  content: "";
  position: absolute;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: var(--sun);
  opacity: 0.45;
  top: -2rem;
  right: -1.5rem;
  pointer-events: none;
}

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

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

@media (max-width: 860px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .split,
  .pricing-grid,
  .course-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .hero-side { transform: none; }
}

.proof-band {
  background: var(--ink);
  color: var(--paper);
  border-block: 2px solid var(--ink);
  padding: 1.75rem 0;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: space-between;
}

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

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

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

.media-frame {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--coral);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
}

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

.course-card,
.blog-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.course-card:hover,
.blog-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
}

.course-card img,
.blog-card img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
}

.course-card-body,
.blog-card-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-card h3,
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

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

.chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--mist);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.6rem;
}

.quote-block {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 6px 6px 0 var(--aqua);
}

.quote-block blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.quote-block cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--coral);
  color: #fff;
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 8px 8px 0 var(--ink);
}

.price-card.featured a { color: var(--sun); }
.price-card.featured .btn { background: var(--sun); color: var(--ink); }

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

.price span {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

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

.form {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--sun);
}

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

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

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 3px solid var(--aqua);
  outline-offset: 1px;
}

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

.field-error.is-visible { display: block; }

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

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

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

.inline-error {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: #ffe0d8;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  display: none;
}

.inline-error.is-visible { display: block; }

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

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

.page-hero {
  padding: 3rem 0 2rem;
}

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

.legal-content {
  max-width: 48rem;
}

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

.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
}

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

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

th {
  background: var(--mist);
  font-family: var(--font-display);
}

.site-footer {
  margin-top: 3rem;
  background: var(--ink);
  color: rgba(255, 248, 240, 0.88);
  border-top: 2px solid var(--ink);
}

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

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

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

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

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

.footer-links a,
.footer-contact a {
  color: rgba(255, 248, 240, 0.85);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--aqua);
}

.footer-address {
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.15);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.88rem;
}

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

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

@keyframes pop-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

.modules ol {
  padding-left: 1.2rem;
}

.modules li {
  margin-bottom: 0.75rem;
}

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

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

.stars {
  color: var(--coral);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.case-study {
  background: var(--mist);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 1.5rem;
}

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

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

.reveal {
  animation: rise 0.7s ease both;
}

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

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
