/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  /* Brand (Domestika primary-400 = #f2095c magenta) */
  --color-brand: #f2095c;
  --color-brand-dark: #c90047;
  --color-brand-soft: #feecf4;

  /* Secondary (Domestika secondary-400 = #027d88, hover secondary-500) */
  --color-accent: #027d88;
  --color-accent-dark: #016b74;
  --color-accent-soft: #e0f4f6;

  /* Premium Highlights (Plus magenta #f2095c) */
  --color-plus: #f2095c;
  --color-plus-dark: #d90048;
  --color-plus-soft: #ffe5ed;

  /* Ink & Typography (Domestika neutral scale) */
  --color-ink: #303030;
  --color-ink-2: #767676;
  --color-ink-3: #999999;
  --color-line: #e0e0e0;
  --color-bg: #ffffff;
  --color-bg-soft: #f2f2f2;
  --color-bg-dark: #202020;
  --color-foreground: #171717;
  --color-alert: #f02d00;
  --color-top: #facc15;
  --color-slate-100: #f1f5f9;
  --color-red-600: #dc2626;

  /* Typography (real Domestika system stack) */
  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, Helvetica, Roboto, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* Radii (Tailwind tokens) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  /* Shadows (Domestika shadow-md = 0 4px 16px rgba(23,23,23,.12)) */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(23,23,23,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);

  /* Layout */
  --container: 1240px;
  --gutter: 24px;
  --space: 64px;

  /* Gradients */
  --grad-plus: linear-gradient(90deg, #ff4e10, #ff1b17 28%, #ff0f47 53%, #ff0571 67%, #f101e5);

  /* -------------------------------------------------------
     Atonika front-page palette (single source of truth).
     home.css consumes these via the --atk-* aliases.
     ------------------------------------------------------- */
  --atk-cream: #fbfaf8;
  --atk-navy: #1b2a5e;
  --atk-navy-2: #12224c;
  --atk-gold: #dcb681;
  --atk-gold-dark: #c9a57b;
  --atk-ink: #1a1a1a;
  --atk-ink-soft: #6b7280;
  --atk-line: #eae8e4;
  --atk-card: #f4f2ef;
  --atk-method-bg: #f0f0f6;
  --atk-slate: #5a6072;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; font-weight: 600; line-height: 1.2; font-family: var(--font-sans); }

h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 500; letter-spacing: 0; }
h2 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; letter-spacing: 0; }
h3 { font-size: 18px; font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }

p { margin: 0 0 1em; }

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

input, button, select, textarea { font-family: inherit; font-size: inherit; }

::selection { background: var(--color-brand); color: #fff; }

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; word-wrap: normal !important;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Domestika padding utilities */
.py-10 { padding-top: 40px; padding-bottom: 40px; }
.py-14 { padding-top: 56px; padding-bottom: 56px; }
.py-5 { padding-top: 20px; padding-bottom: 20px; }
.pb-10 { padding-bottom: 40px; }
.pt-4 { padding-top: 16px; }
.pt-6 { padding-top: 24px; }
.pt-12 { padding-top: 48px; }
.pb-12 { padding-bottom: 48px; }
.pb-4 { padding-bottom: 16px; }
.pb-6 { padding-bottom: 24px; }
.pb-8 { padding-bottom: 32px; }
.pt-5 { padding-top: 20px; }
.pt-10 { padding-top: 40px; }
.pb-12 { padding-bottom: 48px; }
.pt-16 { padding-top: 64px; }

/* Domestika gap utilities */
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-10 { gap: 40px; }
.gap-x-6 { column-gap: 24px; }
.gap-y-2 { row-gap: 8px; }
.gap-y-6 { row-gap: 24px; }

/* Domestika margin utilities */
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-16 { margin-top: 64px; }
.mt-5 { margin-top: 20px; }

/* Domestika flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.grow-0 { flex-grow: 0; }
.grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }

/* Domestika grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-x-6 { column-gap: 24px; }
.gap-y-4 { row-gap: 16px; }
.gap-x-4 { column-gap: 16px; }

/* Domestika text utilities */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-neutral-50 { color: #e5e5e5; }
.text-neutral-100 { color: #f0f0f0; }
.text-neutral-900 { color: #171717; }
.text-primary { color: var(--color-brand); }
.text-primary-400 { color: var(--color-brand); }
.text-primary-500 { color: var(--color-brand); }
.text-s { font-size: 15px; line-height: 24px; }
.text-xs { font-size: 12px; line-height: 18px; }
.text-2xs { font-size: 11px; line-height: 16px; }
.text-xl { font-size: 20px; line-height: 28px; }
.text-2xl { font-size: 24px; line-height: 32px; }
.text-[26px] { font-size: 26px; }
.text-[27px] { font-size: 27px; }
.text-[19px] { font-size: 19px; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-normal { font-weight: 400; }

/* Domestika background utilities */
.bg-background { background-color: var(--color-bg); }
.bg-foreground { background-color: var(--color-foreground); }
.bg-neutral-900 { background-color: #171717; }
.bg-neutral-400 { background-color: #a0a0a0; }
.bg-slate-100 { background-color: var(--color-slate-100); }
.bg-primary-400 { background-color: var(--color-brand); }
.bg-primary-500 { background-color: var(--color-brand); }

/* Domestika border utilities */
.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; }
.border-neutral-900 { border-color: var(--color-ink); }
.border-slate-100 { border-color: var(--color-slate-100); }
.rounded { border-radius: var(--radius-sm); }
.rounded-xl { border-radius: 8px; }
.rounded-3xl { border-radius: 24px; }
.rounded-full { border-radius: 999px; }

/* Domestika width/height utilities */
.w-full { width: 100%; }
.w-\[650px\] { width: 650px; }
.w-1\/2 { width: 50%; }
.w-6 { width: 24px; }
.w-7 { width: 28px; }
.h-full { height: 100%; }
.h-12 { height: 48px; }
.h-5 { height: 20px; }
.h-auto { height: auto; }

/* Domestika aspect ratio utilities */
.aspect-video { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1/1; }

/* Domestika position utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-11 { top: 44px; }
.top-1\/2 { top: 50%; }
.left-0 { left: 0; }
.left-4 { left: 16px; }
.left-10 { left: 40px; }
.right-3 { right: 12px; }
.right-8 { right: 32px; }
.right-10 { right: 40px; }

/* Domestika transform utilities */
.translate-y-0 { transform: translateY(0); }
.translate-y-\[50\%\] { transform: translateY(50%); }
.translate-y-\[calc\(-50\%-2px\)\] { transform: translateY(calc(-50% - 2px)); }
.translate-x-\(-100\%\), { transform: translateX(-100%); }
.rotate-180 { transform: rotate(180deg); }

/* Domestika flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-col-reverse { flex-direction: column-reverse; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.grow-0 { flex-grow: 0; }
.grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.min-h-\[28\.5px\] { min-height: 28.5px; }
.min-w-0 { min-width: 0; }
.min-w-6 { min-width: 24px; }
.min-w-8 { min-width: 32px; }

/* Domestika spacing utilities */
.p-0 { padding: 0; }
.p-1\.5 { padding: 6px; }
.p-1 { padding: 4px; }
.px-1\.5 { padding-left: 6px; padding-right: 6px; }
.px-1 { padding-left: 4px; padding-right: 4px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-1\.5 { padding-top: 6px; padding-bottom: 6px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.pb-12 { padding-bottom: 48px; }
.pl-0 { padding-left: 0; }
.pr-16 { padding-right: 64px; }
.pr-4 { padding-right: 16px; }
.pl-14 { padding-left: 56px; }
.pr-12 { padding-right: 48px; }
.pr-6 { padding-right: 24px; }
.pl-12 { padding-left: 48px; }
.pl-4 { padding-left: 16px; }

/* Domestika margin utilities */
.m-0 { margin: 0; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-8 { margin-top: 32px; }
.mt-16 { margin-top: 64px; }
.mt-24 { margin-top: 96px; }
.mr-1 { margin-right: 4px; }
.mr-2 { margin-right: 8px; }
.mr-3 { margin-right: 12px; }
.mr-4 { margin-right: 16px; }
.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 4px; }
.ml-6 { margin-left: 24px; }
.ml-auto { margin-left: auto; }
.mt-auto { margin-top: auto; }

/* Domestika cursor utilities */
.cursor-grab { cursor: grab; }
.cursor-grabbing { cursor: grabbing; }
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Domestika overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-y-scroll { overflow-y: scroll; }
.scroll-snap-type-x-mandatory { scroll-snap-type: x mandatory; }

/* Domestika pointer events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Domestika user select */
.user-select-none { user-select: none; }
.select-none { user-select: none; }

/* Domestika z-index utilities */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }
.z-\[210\] { z-index: 210; }
.z-\[10\] { z-index: 10; }

/* Domestika visibility utilities */
.block { display: block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Domestika whitespace utilities */
.whitespace-pre { white-space: pre; }
.whitespace-nowrap { white-space: nowrap; }

/* Domestika transition utilities */
.transition { transition: all 0.15s ease; }
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-transform { transition: transform 0.15s ease; }

/* Domestika hover utilities */
.hover\:text-background:hover { color: var(--color-foreground); }
.hover\:bg-neutral-100:hover { background-color: #f0f0f0; }
.hover\:bg-neutral-800:hover { background-color: #2b2b2b; }
.hover\:bg-neutral-900:hover { background-color: #171717; }
.hover\:bg-primary-500:hover { background-color: var(--color-brand); }
.hover\:text-background:hover { color: var(--color-foreground); }
.hover\:text-primary:hover { color: var(--color-brand); }
.hover\:text-foreground:hover { color: #ffffff; }
.hover\:border-primary:hover { border-color: var(--color-brand); }

/* Domestika focus utilities */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus-visible\:outline-none:focus-visible { outline: none; }
.focus-visible\:ring-2:focus-visible { outline: 2px solid transparent; outline-offset: 2px; }
.focus-visible\:ring-neutral-50:focus-visible { outline-color: rgba(255,255,255,0.1); }

/* Domestika disabled utilities */
.disabled\:pointer-events-none:disabled { pointer-events: none; }
.disabled\:bg-neutral-500:disabled { background-color: #a0a0a0; }
.disabled\:text-neutral-400:disabled { color: #808080; }

/* Domestika opacity utilities */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 100; }
.opacity-30 { opacity: 30%; }
.opacity-40 { opacity: 40%; }
.opacity-60 { opacity: 60%; }

/* Domestika animation utilities */
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Domestika filter utilities */
.backdrop-blur-\[200px\] { backdrop-filter: blur(200px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(24px); }

.section { padding: var(--space) 0; }
.section--soft { background: var(--color-bg-soft); }
.section--line { border-top: 1px solid var(--color-line); }

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section__head h2 { margin: 0; }
.section__head .section__kicker { margin-bottom: 4px; }

.section__kicker {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-ink-3);
  margin-bottom: 8px;
}

.link-arrow { font-size: 15px; font-weight: 700; color: var(--color-ink); white-space: nowrap; }
.link-arrow:hover { color: var(--color-brand); }
.link-arrow::after { content: ' \2192'; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--brand { background: var(--color-brand); color: #fff; }
.btn--brand:hover { background: var(--color-brand-dark); color: #fff; }

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

.btn--outline { background: transparent; border-color: var(--color-ink); color: var(--color-ink); }
.btn--outline:hover { background: var(--color-ink); color: #fff; }

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

.btn--plus { background: var(--grad-plus); color: #fff; }
.btn--plus:hover { filter: brightness(1.05); color: #fff; }

.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--lg { padding: 14px 30px; font-size: 16px; }

/* =========================================================
   ALERT BAR
   ========================================================= */
.alert-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: var(--color-alert);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.alert-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 7px 48px;
  min-height: 33px;
  text-align: center;
  flex-wrap: wrap;
}
.alert-bar__info {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.alert-bar__badge {
  background: #ffffff;
  color: var(--color-alert);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  transform: skewX(-8deg);
  display: inline-block;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.alert-bar__text {
  font-weight: 700;
  color: #ffffff;
}
.alert-bar__timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.timer-box {
  background: #111111;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  min-width: 28px;
  text-align: center;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.4);
}
.timer-label {
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.timer-sep {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px; /* aligns with center of boxes */
  opacity: 0.8;
}
.alert-bar__cta {
  color: #fff !important;
  font-weight: 800;
  text-decoration: underline;
  margin-left: 4px;
}
.alert-bar__cta:hover {
  color: #ffe6e0 !important;
}
.alert-bar__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: .7;
  line-height: 1;
}
.alert-bar__close:hover { opacity: 1; }
.alert-bar.is-hidden { display: none; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #171717;
  border-bottom: 1px solid #242424;
  color: #ffffff;
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.35); }

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}

.brand {
  font-family: var(--font-sans);
  font-size: 21px; 
  font-weight: 900; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  white-space: nowrap; 
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand__logo { height: 32px; width: auto; flex-shrink: 0; }
.brand span { color: var(--color-brand) !important; }
.brand::first-letter { color: var(--color-brand); }

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav--desktop { display: flex; align-items: center; gap: 20px; }
.site-nav__list--desktop { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }

.site-nav a, .site-nav__list--desktop a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #e5e5e5;
  border-radius: var(--radius-pill);
  transition: color .15s ease, background .15s ease;
}
.site-nav a:hover, .site-nav__list--desktop a:hover { background: rgba(255,255,255,.08); color: #fff; }
.site-nav a.nav-plus, .site-nav__list--desktop a.nav-plus { color: var(--color-plus); }

.nav-plus__badge {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-plus);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 5px rgba(255,0,85,.3);
}

.site-search { flex: 1; max-width: 440px; margin-left: auto; }
.site-search .search-form { position: relative; }
.site-search .search-field {
  width: 100%;
  padding: 9px 18px 9px 38px;
  border: 1px solid #333;
  border-radius: var(--radius-pill);
  background: #262626;
  color: #fff;
  font-size: 14px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.site-search .search-field::placeholder {
  color: #888;
}
.site-search .search-field:focus {
  outline: none;
  background: #2b2b2b;
  border-color: #555;
  box-shadow: 0 0 0 2px rgba(255,255,255,.05);
}
.site-search::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}
.site-search .search-submit {
  display: none;
}

.site-actions { display: flex; align-items: center; gap: 8px; }
.site-actions .action-link {
  display: inline-flex; align-items: center;
  padding: 8px 12px; font-size: 14px; font-weight: 600;
  color: #ffffff; border-radius: var(--radius-pill);
  transition: background .15s ease;
}
.site-actions .action-link:hover { background: rgba(255,255,255,.08); }
.site-actions .action-icon {
  display: inline-flex; align-items: center; padding: 8px; border-radius: 50%; position: relative;
  color: #ffffff;
  transition: background .15s ease;
}
.site-actions .action-icon:hover { background: rgba(255,255,255,.08); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: #fff; }

/* Center primary nav (desktop) */
.site-nav--center { border-top: 1px solid #242424; background: #1a1a1a; }
.site-nav__list { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #c9c9c9;
  transition: color .15s ease;
}
.site-nav__list a:hover { color: #ffffff; }
.site-nav__list a.nav-plus { color: var(--color-plus); }
.site-nav__list .nav-plus__badge { margin-left: 4px; }

/* =========================================================
   MEGA-MENU (Cursos dropdown - Domestika style)
   ========================================================= */
.menu-item--mega {
  position: static;
}
.site-nav__list--desktop .menu-item--mega {
  position: static;
}
.mega-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mega-menu__chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.15s ease;
}
.menu-item--mega:hover .mega-menu__chevron {
  transform: rotate(180deg);
}
.mega-menu__panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #171717;
  color: #e5e5e5;
  border-top: 1px solid #242424;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 80;
}
.menu-item--mega:hover .mega-menu__panel,
.menu-item--mega:focus-within .mega-menu__panel {
  display: block;
}
.mega-menu__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.mega-menu__heading {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}
.mega-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu__list li {
  margin: 0;
}
.mega-menu__list a {
  display: inline-block;
  padding: 3px 0;
  font-size: 14px;
  font-weight: 400;
  color: #c9c9c9;
  border-radius: 0;
  transition: color 0.15s ease;
}
.mega-menu__list a:hover {
  color: var(--color-brand);
}

/* =========================================================
   MOBILE NAV DRAWER
   ========================================================= */
.drawer { display: none; }
body.nav-open { overflow: hidden; }
body.nav-open .drawer { display: block; }
body.nav-open .drawer__overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 200;
}
.drawer__panel {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(360px, 88vw);
  background: #fff; z-index: 210; overflow-y: auto;
  transform: translateX(-100%); transition: transform .25s ease;
  padding: 20px; box-shadow: 12px 0 40px rgba(0,0,0,.18);
  display: flex; flex-direction: column;
}
body.nav-open .drawer__panel { transform: translateX(0); }
.drawer__header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--color-line);
}
.drawer__header .brand {
  color: var(--atk-navy) !important; font-size: 18px; letter-spacing: .07em;
}
.drawer__header .brand::first-letter { color: var(--atk-gold-dark); }
.drawer__close {
  background: none; border: 0; font-size: 26px; cursor: pointer; line-height: 1;
  color: var(--color-ink); padding: 4px;
}
.drawer__nav { padding-top: 6px; }
.drawer__nav a {
  display: flex; align-items: center; gap: 6px; padding: 13px 4px;
  font-size: 17px; font-weight: 600; color: var(--color-ink);
  border-bottom: 1px solid var(--color-line);
}
.drawer__nav a.nav-plus { color: var(--color-brand); }
.drawer__auth {
  margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 10px;
}
.drawer__login {
  font-size: 15px; font-weight: 600; color: var(--atk-navy); text-align: center; padding: 10px;
}
.drawer__cta { width: 100%; }

.site-header {
  background: #fff;
  border-bottom-color: var(--atk-line);
  color: var(--atk-navy);
}
.site-header .brand,
.site-header .brand::first-letter,
.site-header .brand span { color: var(--atk-navy) !important; }
.site-header .site-nav a,
.site-header .site-nav__list--desktop a { color: #4b5563; }
.site-header .site-nav a:hover,
.site-header .site-nav__list--desktop a:hover { background: rgba(27,42,94,.06); color: var(--atk-navy); }
.site-header .site-nav a.nav-plus,
.site-header .site-nav__list--desktop a.nav-plus { color: var(--atk-navy); }
.site-header .nav-plus__badge { background: var(--atk-gold); color: var(--atk-navy); box-shadow: none; }
.site-header .site-search .search-field { background: #fff; border-color: var(--atk-line); color: var(--atk-ink); }
.site-header .site-search .search-field::placeholder { color: #9ca3af; }
.site-header .site-search .search-field:focus { background: #fff; border-color: var(--atk-gold-dark); box-shadow: 0 0 0 2px rgba(201,165,123,.22); }
.site-header .site-actions .action-link,
.site-header .site-actions .action-icon { color: var(--atk-navy); }
.site-header .site-actions .action-link:hover,
.site-header .site-actions .action-icon:hover { background: rgba(27,42,94,.06); }
.site-header .menu-toggle { color: var(--atk-navy); }
.site-header .btn--brand,
.site-header .drawer__cta { background: var(--atk-gold); color: var(--atk-navy); }
.site-header .btn--brand:hover,
.site-header .drawer__cta:hover { background: var(--atk-gold-dark); color: var(--atk-navy); }
.site-header .drawer__nav a.nav-plus { color: var(--atk-navy); }
.site-header .mega-menu__panel { background: #fff; color: var(--atk-ink); border-top-color: var(--atk-line); box-shadow: 0 20px 40px rgba(27,42,94,.12); }
.site-header .mega-menu__heading { color: var(--atk-navy); }
.site-header .mega-menu__list a { color: var(--atk-ink-soft); }
.site-header .mega-menu__list a:hover { color: var(--atk-navy); }
