/* ==========================================================================
   Multy SSK — main stylesheet (mobile-first)
   ========================================================================== */

:root {
  --ink: #24143F;
  --plum: #5A2CA0;
  --plum-deep: #3D1B73;
  --violet: #6B24D1;
  --ivory: #FBF7F1;
  --cream: #F4ECE1;
  --paper: #FFFFFF;
  --rose: #F08A97;
  --rose-soft: #FBE4E7;
  --saffron: #E39A2E;
  --saffron-soft: #FBEBD2;
  --sage: #86C6B3;
  --sage-soft: #E2F2EC;
  --text: #4A3F5C;
  --muted: #7A7189;
  --line: #E8E0F0;
  --wa: #146C43;
  --wa-soft: #EAF8EF;
  --display: "Fraunces", "Georgia", "Times New Roman", serif;
  --body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 20px 50px rgba(36, 20, 63, .10);
  --shadow-sm: 0 8px 24px rgba(36, 20, 63, .08);
  --nav-h: 68px;
  --wrap: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body { margin: 0; background: var(--ivory); color: var(--text); font-family: var(--body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.multy-ssk { padding-top: calc(var(--nav-h) + 12px); }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--violet); }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); margin: 0; font-weight: 600; line-height: 1.08; letter-spacing: -.015em; text-wrap: pretty; font-variation-settings: "opsz" 120; }
h1 { font-size: clamp(36px, 8.5vw, 68px); }
h2 { font-size: clamp(30px, 5.6vw, 48px); }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 6px; }
.screen-reader-text { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; color: #fff; }
.center { text-align: center; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.wrap.narrow { max-width: 780px; }
.section { padding: 64px 0; }
.section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; max-width: 700px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--plum); }
.eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--saffron); }
.lede { font-size: 17px; color: var(--text); max-width: 54ch; }
.fine { font-size: 13px; color: var(--muted); }
.meta { font-size: 14px; color: var(--muted); }
.ic { width: 18px; height: 18px; flex: none; }
.ic.flip { transform: scaleX(-1); }
.ic-wrap { --tone: #E9DDFA; --ink: #6B24D1; width: 44px; height: 44px; border-radius: 14px; background: var(--tone); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.ic-wrap .ic { width: 20px; height: 20px; }
.stars { display: inline-flex; gap: 2px; color: var(--saffron); }
.stars .ic { width: 15px; height: 15px; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 600; font-size: 15px; line-height: 1.2; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { min-height: 56px; padding: 0 28px; font-size: 16px; }
.btn-primary { background: var(--violet); color: #fff; box-shadow: 0 10px 24px rgba(107, 36, 209, .26); }
.btn-primary:hover { background: var(--plum); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--plum-deep); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-light:hover { color: var(--plum-deep); border-color: var(--plum); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { color: var(--ink); border-color: var(--plum); }
.btn-wa { background: var(--wa-soft); color: var(--wa); border-color: #BFE6CC; }
.btn-wa:hover { background: #DDF3E5; color: #0F5A37; }
.btn-wa-dark { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-wa-dark:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ---- announcement ---- */
.announce { position: relative; z-index: 60; background: var(--plum-deep); color: #fff; text-align: center; font-size: 14px; font-weight: 500; padding: 8px 16px; }
.announce a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.announce .ic { width: 16px; height: 16px; }

/* ---- header: floating pill (Jitter-style) ---- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 90; pointer-events: none; padding: 10px 12px 0; transition: transform .4s var(--ease), top .4s var(--ease); animation: navIn .7s var(--ease) both; }
@keyframes navIn { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.site-header.hide { transform: translateY(-120%); }
.nav-shell { max-width: var(--wrap); margin: 0 auto; }
.nav-pill { pointer-events: auto; position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px; height: var(--nav-h); padding: 0 8px 0 14px; border-radius: 999px; background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.38)); border: 1px solid rgba(255,255,255,.75); backdrop-filter: blur(22px) saturate(1.7); -webkit-backdrop-filter: blur(22px) saturate(1.7); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 -1px 0 rgba(36,20,63,.04) inset, 0 8px 30px rgba(36,20,63,.08); transition: background .25s, box-shadow .25s, border-color .25s; }
.scrolled .nav-pill { background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.58)); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 14px 40px rgba(36,20,63,.14); border-color: rgba(255,255,255,.85); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; }
.brand-tag { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-actions .nav-login { display: none; }
.nav-actions .nav-cta { display: none; min-height: 44px; padding: 0 18px; font-size: 14px; }
.nav-burger { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.8); background: rgba(241,237,246,.7); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.nav-burger { position: relative; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.nav-burger:active { transform: scale(.94); }
.nav-burger .bar { position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%) translateY(-4px); transition: transform .35s var(--ease); }
.nav-burger .bar + .bar { transform: translate(-50%, -50%) translateY(4px); }
.menu-open .nav-burger { background: var(--ink); color: #fff; }
.menu-open .nav-burger .bar { transform: translate(-50%, -50%) rotate(45deg); }
.menu-open .nav-burger .bar + .bar { transform: translate(-50%, -50%) rotate(-45deg); }

/* mobile menu panel */
.nav-primary { position: absolute; z-index: 95; left: 0; right: 0; top: calc(100% + 8px); background: rgba(255,255,255,.95); backdrop-filter: blur(14px) saturate(1.5); -webkit-backdrop-filter: blur(14px) saturate(1.5); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); padding: 10px 14px 16px; max-height: calc(100dvh - var(--nav-h) - 40px); overflow: auto; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px) scale(.985); transform-origin: 50% 0; transition: opacity .28s var(--ease), transform .32s var(--ease), visibility 0s linear .32s; will-change: transform, opacity; overscroll-behavior: contain; }
.menu-open .nav-primary { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: opacity .28s var(--ease), transform .36s var(--ease), visibility 0s; }
.nav-primary .menu > li, .nav-mobile-extra > * { opacity: 0; transform: translateY(8px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.menu-open .nav-primary .menu > li, .menu-open .nav-mobile-extra > * { opacity: 1; transform: none; }
.menu-open .nav-primary .menu > li:nth-child(1) { transition-delay: .05s; } .menu-open .nav-primary .menu > li:nth-child(2) { transition-delay: .09s; } .menu-open .nav-primary .menu > li:nth-child(3) { transition-delay: .13s; } .menu-open .nav-primary .menu > li:nth-child(4) { transition-delay: .17s; } .menu-open .nav-primary .menu > li:nth-child(5) { transition-delay: .21s; } .menu-open .nav-primary .menu > li:nth-child(6) { transition-delay: .25s; }
.menu-open .nav-mobile-extra > * { transition-delay: .3s; }
.nav-primary .sub-menu { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s var(--ease), opacity .3s var(--ease), padding .3s var(--ease); }
.nav-primary li.open > .sub-menu { max-height: 480px; opacity: 1; }
.nav-primary .menu > li > a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 6px; font-size: 18px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav-primary .menu > li:last-child > a { border-bottom: 0; }
.nav-primary .menu a span { display: flex; flex-direction: column; }
.nav-primary .menu a small { font-size: 12px; font-weight: 500; color: var(--muted); }
.nav-primary .menu a .caret { display: none; }
.nav-primary .menu li { position: relative; }
.sub-toggle { position: absolute; right: 0; top: 8px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .2s; }
.sub-toggle[aria-expanded="true"] { transform: rotate(180deg); background: var(--ink); color: #fff; }
.nav-primary .sub-menu { padding: 0 0 0 14px; }
.nav-primary li.open > .sub-menu { padding: 4px 0 8px 14px; }
.nav-primary .sub-menu a { display: block; padding: 10px 6px; color: var(--text); font-weight: 500; font-size: 16px; border-radius: 10px; }
.nav-primary .sub-menu a:hover { background: var(--ivory); color: var(--ink); }
.nav-primary a[aria-current="page"] { color: var(--violet); }
.nav-mobile-extra { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.nav-mobile-extra .btn { width: 100%; }
.nav-mobile-extra .nav-login { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; color: var(--ink); font-weight: 600; }
.nav-mobile-extra .nav-cta { order: -1; }
body.menu-open { overflow: hidden; }

/* ---- hero ---- */
.hero { position: relative; overflow: hidden; padding: 28px 0 40px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .blob { position: absolute; border-radius: 50%; filter: blur(64px); opacity: .55; animation: drift 16s ease-in-out infinite alternate; }
.hero-bg .b1 { width: 420px; height: 420px; background: var(--rose-soft); top: -140px; right: -120px; }
.hero-bg .b2 { width: 380px; height: 380px; background: #E9DDFA; bottom: -160px; left: -140px; animation-delay: -6s; }
.hero-bg .b3 { width: 260px; height: 260px; background: var(--saffron-soft); top: 40%; left: 55%; animation-delay: -3s; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 20px; }
.hero-copy > * { animation: fadeUp .9s var(--ease) both; }
.hero-copy > *:nth-child(2) { animation-delay: .1s; }
.hero-copy > *:nth-child(3) { animation-delay: .2s; }
.hero-copy > *:nth-child(4) { animation-delay: .3s; }
.hero-copy > *:nth-child(5) { animation-delay: .4s; }
.hero-copy > *:nth-child(6) { animation-delay: .5s; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--plum); }
.hero-actions { display: flex; flex-direction: column; gap: 12px; }
.hero-actions .btn { width: 100%; }
.hero-proof { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.hero-proof b { color: var(--ink); }
.hero-visual { position: relative; animation: fadeUp 1.1s .3s var(--ease) both; }
.arch { position: relative; margin: 0 auto; width: min(100%, 440px); aspect-ratio: 3 / 4; border-radius: 240px 240px 32px 32px; overflow: hidden; background: linear-gradient(160deg, #6B24D1 0%, #4A1C9C 60%, #3D1B73 100%); box-shadow: 0 30px 60px rgba(61, 27, 115, .25); }
.arch.arch-sage { background: linear-gradient(160deg, #86C6B3, #2E8A6E); }
.arch.arch-plum { background: linear-gradient(160deg, #F08A97, #6B24D1); }
.arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.chip { position: absolute; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 16px; padding: 10px 14px; box-shadow: 0 12px 30px rgba(36, 20, 63, .16); font-size: 13px; font-weight: 600; color: var(--ink); animation: float 6s ease-in-out infinite; }
.chip .ic-wrap { width: 32px; height: 32px; border-radius: 10px; }
.chip .ic-wrap .ic { width: 16px; height: 16px; }
.chip small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; }
.chip.c1 { left: -4px; top: 16%; }
.chip.c2 { right: -4px; top: 52%; animation-delay: -2s; }
.chip.c3 { left: 8%; bottom: 5%; animation-delay: -4s; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 36px; position: relative; }
.stats li { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px 10px; text-align: center; }
.stats b { display: block; font-family: var(--display); font-size: 28px; line-height: 1; color: var(--ink); font-weight: 700; }
.stats span { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.3; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink); }
.chips .ic { width: 15px; height: 15px; color: var(--plum); }
.hero-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.hero-price b { font-family: var(--display); font-size: 44px; line-height: 1; color: var(--ink); font-weight: 700; }
.hero-price s { color: var(--muted); font-size: 17px; }
.hero-price small { width: 100%; font-size: 13px; color: var(--muted); }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; color: var(--muted); }
.trust-row li { display: inline-flex; align-items: center; gap: 6px; }
.trust-row .ic { width: 15px; height: 15px; color: var(--sage); }

/* ---- path chooser ---- */
.paths { display: grid; grid-template-columns: 1fr; gap: 16px; }
.path { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; color: #fff; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.path:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: #fff; }
.path img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: transform .8s var(--ease); }
.path:hover img { transform: scale(1.04); }
.path::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,20,63,0) 35%, rgba(36,20,63,.85) 100%); }
.path-body { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.path .tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #F6D28A; }
.path h3 { color: #fff; font-size: 28px; }
.path .go { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: rgba(255,255,255,.9); }
.path .go .ic { transition: transform .2s; }
.path:hover .go .ic { transform: translateX(4px); }
.ribbon { position: absolute; top: 14px; right: 14px; z-index: 3; background: var(--saffron); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }

/* ---- why ---- */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.why-art img { width: min(100%, 420px); margin: 0 auto; }
.why-list { display: grid; gap: 12px; margin-bottom: 24px; }
.why-list li { display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--ivory); border: 1px solid var(--line); }
.why-list .ic-wrap { grid-row: 1 / 3; }
.why-list b { color: var(--ink); font-size: 16px; }
.why-list span:last-child { font-size: 13px; color: var(--muted); }
.guru-quote { margin: 0; display: grid; grid-template-columns: 64px 1fr; gap: 14px 16px; align-items: center; padding: 20px; border-radius: var(--radius); background: var(--plum-deep); color: #fff; }
.guru-quote img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: 50% 15%; border: 3px solid var(--saffron); }
.guru-quote blockquote { margin: 0; font-family: var(--display); font-size: 19px; line-height: 1.3; font-style: italic; }
.guru-quote figcaption { grid-column: 1 / 3; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.guru-quote.big { padding: 28px; }
.guru-quote.big blockquote { font-size: 22px; }

/* ---- courses ---- */
.courses { background: var(--cream); }
.course-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: stretch; }
.course-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.course-card.featured { border: 2px solid var(--violet); box-shadow: 0 30px 60px rgba(107, 36, 209, .14); }
.course-img { display: block; position: relative; height: 220px; background: var(--cream); }
.course-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; transition: transform .7s var(--ease); }
.course-card:hover .course-img img { transform: scale(1.04); }
.course-card.compact .course-img { height: 180px; }
.course-body { display: flex; flex-direction: column; gap: 14px; padding: 22px; }
.course-body .for { font-size: 13px; font-weight: 600; color: var(--muted); }
.course-body h3 { font-size: 26px; }
.course-body h3 a { color: var(--ink); }
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--ivory); border: 1px solid var(--line); color: var(--ink); }
.pill .ic { width: 14px; height: 14px; color: var(--plum); }
.price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price b { font-family: var(--display); font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1; }
.price s { color: var(--muted); font-size: 15px; }
.price.big b { font-size: 56px; }
.course-actions { display: flex; flex-direction: column; gap: 10px; }
.course-actions.center { align-items: center; margin-top: 20px; }
.progress { height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--violet), var(--rose)); border-radius: 999px; }

/* ---- bento ---- */
.bento { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.tile { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 170px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; padding: 18px; background: #fff; border: 1px solid var(--line); color: var(--text); }
.tile b { color: var(--ink); font-size: 17px; line-height: 1.2; }
.tile > span:last-child { font-size: 13px; color: var(--muted); }
.tile .ic-wrap { margin-bottom: auto; }
.tile-img { padding: 0; border: 0; color: #fff; }
.tile-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile-img:hover img { transform: scale(1.05); }
.tile-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,20,63,0) 40%, rgba(36,20,63,.8) 100%); }
.tile-label { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 16px; font-weight: 600; font-size: 14px; color: #fff; margin-top: auto; }
.tile-label .ic { width: 18px; height: 18px; color: #F6D28A; }
.tile.tall { grid-column: 1 / -1; min-height: 240px; }
.tile-app .tile-label, .tile-feature .tile-label { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.01em; line-height: 1.15; align-items: flex-end; }
.tile-app .tile-label .ic, .tile-feature .tile-label .ic { width: 22px; height: 22px; margin-bottom: 3px; }
.tile-app img { object-position: 50% 30%; }
.tile-feature img { object-position: 50% 40%; }
.tile-app::after, .tile-feature::after { background: linear-gradient(180deg, rgba(36,20,63,0) 30%, rgba(36,20,63,.55) 65%, rgba(36,20,63,.92) 100%) !important; }
.tile-app .tile-label, .tile-feature .tile-label { text-shadow: 0 2px 12px rgba(36,20,63,.5); padding: 18px; }
.tile-num { background: var(--saffron-soft); border-color: #F1DDB5; }
.tile-num b { font-family: var(--display); font-size: 64px; line-height: 1; color: var(--saffron); }
.tile-dark { background: var(--plum-deep); border-color: var(--plum-deep); color: rgba(255,255,255,.8); }
.tile-dark b { color: #fff; }
.tile-dark > span:last-child { color: rgba(255,255,255,.75); }
.tile-soft { background: var(--sage-soft); border-color: #CDE9DD; }

/* ---- live sessions ---- */
.live-section { background: #fff; }
.live-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.events-strip { display: grid; gap: 10px; }
.event { display: grid; grid-template-columns: 56px 1fr 24px; gap: 14px; align-items: center; padding: 14px; border-radius: var(--radius-sm); background: var(--ivory); border: 1px solid var(--line); color: var(--text); transition: transform .2s, box-shadow .2s; }
.event:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--text); }
.event .date { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; background: var(--plum-deep); color: #fff; }
.event .date b { font-family: var(--display); font-size: 22px; line-height: 1; }
.event .date small { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.ev-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ev-body b { color: var(--ink); font-size: 15px; line-height: 1.25; }
.ev-body small { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.ev-body .ic { width: 14px; height: 14px; }
.event .go { color: var(--plum); }

/* ---- kit ---- */
.kit { background: var(--plum-deep); color: #fff; position: relative; overflow: hidden; }
.kit h2, .kit h3 { color: #fff; }
.kit .eyebrow { color: var(--saffron); }
.kit .lede { color: rgba(255,255,255,.82); }
.kit .fine { color: rgba(255,255,255,.65); margin-top: 16px; }
.kit-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.kit-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.3); transform: rotate(-1.5deg); }
.kit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.kit-list li { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); font-size: 14px; font-weight: 500; }
.kit-list .ic { color: var(--saffron); }

/* ---- reviews ---- */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.testi { margin: 0; display: flex; flex-direction: column; gap: 14px; padding: 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.testi blockquote { margin: 0; font-family: var(--display); font-size: 20px; line-height: 1.32; color: var(--ink); }
.testi figcaption { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink); font-weight: 600; }
.testi figcaption small { display: block; color: var(--muted); font-weight: 500; }
.testi .av { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }
.video-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 260px; border-radius: var(--radius); overflow: hidden; color: #fff; }
.video-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,20,63,.05) 30%, rgba(36,20,63,.85) 100%); }
.video-card .play { position: absolute; z-index: 2; top: 20px; left: 20px; width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--violet); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,.2); transition: transform .2s; }
.video-card:hover .play { transform: scale(1.08); }
.video-card .play .ic { width: 22px; height: 22px; margin-left: 3px; }
.video-label { position: relative; z-index: 2; padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.video-label b { font-family: var(--display); font-size: 24px; line-height: 1.15; }
.video-label small { font-size: 13px; opacity: .85; }

/* ---- app ---- */
.app { background: #fff; }
.app-card { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 28px 22px 0; border-radius: var(--radius); background: linear-gradient(160deg, var(--rose-soft), var(--saffron-soft)); border: 1px solid #F3DDD3; overflow: hidden; }
.app-copy { display: flex; flex-direction: column; gap: 6px; padding-bottom: 8px; }
.app-copy .section-head { margin-bottom: 14px; }
.store { display: flex; flex-direction: column; gap: 10px; }
.store .btn { width: 100%; }
.phone { margin: 0 auto; width: 230px; height: 300px; border-radius: 36px 36px 0 0; background: var(--ink); padding: 12px 12px 0; box-shadow: 0 30px 60px rgba(36,20,63,.25); }
.phone .scr { height: 100%; border-radius: 26px 26px 0 0; background: var(--ivory); padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.phone .scr img { width: 100%; height: 120px; object-fit: cover; object-position: 50% 20%; border-radius: 16px; }
.phone .bar { height: 10px; border-radius: 6px; background: #E5DDF0; display: block; }
.phone .w60 { width: 60%; } .phone .w80 { width: 80%; } .phone .w40 { width: 40%; }
.phone .tile-mini { height: 44px; border-radius: 12px; background: linear-gradient(160deg, #6B24D1, #3D1B73); display: block; }

/* ---- faq ---- */
.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 0 20px; }
.faq[open] { border-color: var(--plum); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-weight: 600; font-size: 16px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq .plus { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line); display: inline-flex; align-items: center; justify-content: center; flex: none; transition: transform .25s, background .25s; }
.faq .plus .ic { width: 14px; height: 14px; }
.faq[open] .plus { transform: rotate(45deg); background: var(--plum); border-color: var(--plum); color: #fff; }
.faq-a { padding: 0 0 20px; color: var(--text); font-size: 15px; }

/* ---- final cta ---- */
.final { position: relative; overflow: hidden; background: linear-gradient(160deg, #6B24D1 0%, #4A1C9C 55%, #3D1B73 100%); color: #fff; }
.final h2 { color: #fff; font-size: clamp(32px, 6.5vw, 56px); }
.final p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 50ch; margin-top: 10px; }
.final-in { display: flex; flex-direction: column; gap: 22px; position: relative; }
.final-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.final-actions .btn { width: 100%; }
.final .orb { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,0) 70%); right: -140px; top: -140px; animation: drift 12s ease-in-out infinite alternate; }

/* ---- landing: for you / curriculum / steps / pricing ---- */
.foryou { background: #fff; }
.foryou-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.foryou-card { display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: center; padding: 14px; border-radius: var(--radius); background: var(--ivory); border: 1px solid var(--line); }
.foryou-card img { width: 88px; height: 88px; border-radius: 16px; object-fit: cover; }
.foryou-card b { display: block; color: var(--ink); font-size: 17px; margin-bottom: 4px; }
.foryou-card span { font-size: 14px; color: var(--muted); }
.curriculum { background: var(--cream); }
.curriculum-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.lesson-list { display: grid; gap: 8px; counter-reset: l; }
.lesson-list li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.lesson-list .num { width: 40px; height: 40px; border-radius: 12px; background: var(--ivory); color: var(--plum); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; }
.lesson-list b { display: block; color: var(--ink); font-size: 15px; }
.lesson-list small { display: block; font-size: 12px; color: var(--muted); }
.how { background: #fff; }
.steps { display: grid; grid-template-columns: 1fr; gap: 12px; }
.step { display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; column-gap: 16px; padding: 18px; border-radius: var(--radius); background: var(--ivory); border: 1px solid var(--line); }
.step .n { grid-row: 1 / 3; width: 44px; height: 44px; border-radius: 50%; background: var(--plum-deep); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 20px; }
.step b { color: var(--ink); font-size: 17px; }
.step span:last-child { font-size: 14px; color: var(--muted); }
.guru-section { padding: 0 0 64px; background: #fff; }
.pricing { background: var(--cream); }
.price-card { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 26px; border-radius: var(--radius); background: #fff; border: 2px solid var(--violet); box-shadow: 0 30px 60px rgba(107, 36, 209, .14); }
.price-main { display: flex; flex-direction: column; gap: 14px; }
.price-main .btn { width: 100%; }
.price-list { display: grid; gap: 10px; align-content: start; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text); }
.price-list .ic { color: var(--plum); margin-top: 3px; }

/* ---- sticky bar (mobile) ---- */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: grid; grid-template-columns: 1fr 52px auto; gap: 8px; align-items: center; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(36,20,63,.10); transform: translateY(110%); transition: transform .35s var(--ease); }
.sticky-bar.show { transform: none; }
.sticky-price { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.sticky-price b { font-family: var(--display); font-size: 22px; color: var(--ink); }
.sticky-price s { font-size: 12px; color: var(--muted); }
.sticky-price small { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-bar .btn { min-height: 48px; padding: 0 18px; }
.sticky-bar .btn-wa { width: 52px; padding: 0; }
body.has-sticky .ht-ctc-chat, body.has-sticky .ht-ctc { bottom: 92px !important; }
body.has-sticky { padding-bottom: 84px; }

/* ---- inner pages / blog ---- */
.page-head { display: flex; flex-direction: column; gap: 12px; margin: 8px 0 28px; }
.page-head h1 { font-size: clamp(32px, 7vw, 54px); }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--plum); }
.entry-thumb { margin: 0 0 28px; border-radius: var(--radius); overflow: hidden; }
.entry-thumb img { width: 100%; }
.entry-content { font-size: 17px; line-height: 1.75; }
.entry-content > * + * { margin-top: 1.2em; }
.entry-content h2 { font-size: clamp(26px, 4.5vw, 36px); margin-top: 1.6em; }
.entry-content h3 { font-size: 24px; margin-top: 1.4em; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content ul { list-style: disc; } .entry-content ol { list-style: decimal; }
.entry-content li + li { margin-top: .4em; }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content blockquote { margin: 1.5em 0; padding: 18px 22px; border-left: 4px solid var(--saffron); background: #fff; border-radius: 0 16px 16px 0; font-family: var(--display); font-size: 21px; color: var(--ink); }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.entry-content th, .entry-content td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; }
.entry-content .wp-block-button__link { border-radius: 999px; background: var(--violet); }
.entry-content iframe { max-width: 100%; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tags a { font-size: 13px; padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }
.post-nav { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-weight: 600; }
.post-nav .next { text-align: right; }
.post-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.post-body h3 { font-size: 21px; }
.post-body h3 a { color: var(--ink); }
.post-body p { font-size: 14px; color: var(--muted); }
.pagination, .navigation.pagination { margin: 36px 0 0; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.nav-links .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.nav-links .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.inline-cta { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 40px 0 0; padding: 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.inline-cta img { width: 100%; max-height: 220px; object-fit: cover; object-position: 50% 25%; border-radius: 16px; }
.inline-cta h3 { margin: 8px 0 6px; }
.inline-cta p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.archive-main, .page-main, .single-main, .error-main, .woo-main { padding: 20px 0 64px; }
.error-main { padding: 60px 0 90px; }
.error-main .search-form { margin: 24px auto; max-width: 420px; }
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] { flex: 1; min-height: 48px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font: inherit; }
.search-form button { width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }

/* ---- comments ---- */
.comments { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.comments-title { font-size: 26px; margin-bottom: 20px; }
.comment-list .comment { padding: 16px 0; border-bottom: 1px solid var(--line); }
.comment-list .children { padding-left: 24px; }
.comment-author img { border-radius: 50%; vertical-align: middle; margin-right: 8px; }
.comment-meta { font-size: 13px; color: var(--muted); }
.comment-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.comment-form input:not([type="submit"]):not([type="checkbox"]), .comment-form textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; font: inherit; }
.comment-form p { margin-bottom: 14px; }

/* ---- forms (Gravity Forms / WPForms basics) ---- */
.gform_wrapper input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), .gform_wrapper select, .gform_wrapper textarea, .wpforms-form input:not([type="submit"]), .wpforms-form textarea, .wpforms-form select { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; font: inherit; }
.gform_wrapper input[type="submit"], .gform_wrapper .gform_button, .wpforms-form button[type="submit"] { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 26px; border-radius: 999px; border: 0; background: var(--violet); color: #fff; font-weight: 600; font-size: 15px; cursor: pointer; }

/* ---- footer ---- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 56px 0 28px; font-size: 14px; margin-top: auto; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.foot-brand { display: flex; flex-direction: column; gap: 14px; }
.foot-brand .brand { color: #fff; }
.foot-brand p { max-width: 42ch; }
.foot-brand address { font-style: normal; line-height: 1.7; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.site-footer h4 { margin: 0 0 12px; font-family: var(--body); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--saffron); }
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-app .store { margin-top: 12px; }
.foot-app .btn-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.social { display: flex; gap: 8px; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center; }
.social a:hover { background: rgba(255,255,255,.1); }
.foot-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); }
.legal-menu { display: flex; gap: 14px; flex-wrap: wrap; }
.powered { font-size: 12px; }
.canvas-main { padding: 40px 0 80px; }
.canvas-brand { margin-bottom: 24px; }

/* ---- motion ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(30px, 24px) scale(1.08); } }
.rv-js .rv { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv-js .rv.rv-2 { transition-delay: .1s; }
.rv-js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv-js .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---- tablet ---- */
@media (min-width: 720px) {
  .wrap { padding-left: 32px; padding-right: 32px; }
  .section { padding: 88px 0; }
  .hero { padding: 40px 0 56px; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
  .paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .path { aspect-ratio: 3 / 4; }
  .course-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .course-img { height: 250px; }
  .course-actions { flex-direction: row; }
  .course-actions .btn { flex: 1; }
  .bento { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .tile { min-height: 200px; }
  .tile.tall { grid-column: span 2; grid-row: span 1; }
  .live-grid { grid-template-columns: 1fr 1.2fr; gap: 40px; }
  .kit-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .testi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .app-card { grid-template-columns: 1.2fr 1fr; padding: 40px 40px 0; align-items: center; }
  .app-card .phone { align-self: end; margin: 0 auto; }
  .app-copy { padding-bottom: 40px; }
  .store { flex-direction: row; }
  .store .btn { width: auto; }
  .faq-grid { grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
  .final-in { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
  .final-actions { flex-direction: row; width: auto; }
  .final-actions .btn { width: auto; }
  .foryou-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foryou-card { grid-template-columns: 1fr; padding: 0 0 18px; overflow: hidden; }
  .foryou-card img { width: 100%; height: 190px; border-radius: 0; }
  .foryou-card > div { padding: 0 18px; }
  .curriculum-grid { grid-template-columns: 1fr 1.2fr; gap: 48px; }
  .lesson-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .price-card { grid-template-columns: 1.1fr 1fr; padding: 40px; }
  .price-main .btn { width: auto; align-self: flex-start; }
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inline-cta { grid-template-columns: 200px 1fr; align-items: center; }
  .inline-cta img { height: 200px; max-height: none; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .sticky-bar { grid-template-columns: 1fr auto auto; padding-left: 24px; padding-right: 24px; }
  .sticky-bar .btn-wa { width: auto; padding: 0 18px; }
  .stats { max-width: 600px; }
  .why-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; }
  .guru-quote { grid-template-columns: 72px 1fr; }
  .guru-quote.big { grid-template-columns: 96px 1fr; padding: 36px 40px; }
  .guru-quote.big img { width: 96px; height: 96px; }
  .guru-quote.big blockquote { font-size: 26px; }
  .brand-text { display: flex; }
}

/* ---- desktop ---- */
@media (min-width: 1024px) {
  :root { --nav-h: 72px; }
  .nav-pill { padding: 0 8px 0 18px; }
  .nav-burger { display: none; }
  .nav-actions .nav-login { display: inline-flex; align-items: center; gap: 6px; padding: 0 14px; font-weight: 600; font-size: 15px; color: var(--ink); }
  .nav-actions .nav-cta { display: inline-flex; }
  .nav-mobile-extra { display: none; }
  .nav-primary { position: static; display: flex; background: transparent; border: 0; box-shadow: none; padding: 0; max-height: none; overflow: visible; opacity: 1; visibility: visible; pointer-events: auto; transform: none; backdrop-filter: none; -webkit-backdrop-filter: none; transition: none; }
  .nav-primary .menu > li, .nav-mobile-extra > * { opacity: 1; transform: none; transition: none; }
  .nav-primary .sub-menu { display: block; max-height: none; overflow: visible; padding: 10px; }
  .nav-primary .menu { display: flex; align-items: center; gap: 2px; }
  .nav-primary .menu > li > a { padding: 10px 14px; font-size: 15px; font-weight: 600; border: 0; border-radius: 999px; color: var(--ink); transition: background .2s; }
  .nav-primary .menu > li > a:hover { background: rgba(255,255,255,.7); }
  .nav-primary .menu > li > a .caret { display: inline-block; width: 15px; height: 15px; opacity: .6; transition: transform .2s; }
  .nav-primary .menu > li:hover > a .caret, .nav-primary .menu > li.open > a .caret { transform: rotate(180deg); }
  .sub-toggle { display: none; }
  .nav-primary .sub-menu { display: block; position: absolute; left: 0; top: calc(100% + 10px); min-width: 280px; padding: 10px; background: rgba(255,255,255,.82); backdrop-filter: blur(24px) saturate(1.6); -webkit-backdrop-filter: blur(24px) saturate(1.6); border: 1px solid rgba(255,255,255,.9); border-radius: 20px; box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.985); transform-origin: 50% 0; transition: opacity .28s var(--ease), transform .32s var(--ease), visibility 0s linear .32s; will-change: transform, opacity; }
  .nav-primary .menu > li:hover > .sub-menu, .nav-primary .menu > li.open > .sub-menu, .nav-primary .menu > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; transition: opacity .28s var(--ease), transform .36s var(--ease), visibility 0s; }
  .nav-primary .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
  .nav-primary .sub-menu a { padding: 11px 14px; border-radius: 12px; font-size: 15px; }
  .nav-primary .sub-menu a:hover { background: var(--ivory); }
  .nav-primary .sub-menu a small { font-size: 12px; color: var(--muted); }
  body.menu-open { overflow: auto; }
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .arch { width: min(100%, 470px); }
  .stats li { text-align: left; padding: 16px 18px; }
  .stats b { font-size: 32px; }
  .section-head { margin-bottom: 40px; }
  .course-body { padding: 28px; }
  .course-img { height: 280px; }
  .bento { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .tile { min-height: 220px; }
  .tile.tall { grid-column: span 2; }
  .testi-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .step { grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: 8px; padding: 24px; }
  .step .n { grid-row: auto; margin-bottom: 6px; }
  .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
  .sticky-bar { display: none; }
  body.has-sticky { padding-bottom: 0; }
  body.has-sticky .ht-ctc-chat, body.has-sticky .ht-ctc { bottom: 15px !important; }
  .kit-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chip.c1 { left: -30px; }
  .chip.c2 { right: -30px; }
}
@media (min-width: 1280px) {
  .hero-grid { gap: 72px; }
}

/* ---- LearnDash on regular (non focus) pages ---- */
.ld-main .wrap.ld-wrap { max-width: 1000px; }
.course-hero { padding: 16px 0 40px; background: linear-gradient(180deg, #fff, var(--ivory)); }
.course-hero-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.course-hero h1 { font-size: clamp(32px, 6vw, 52px); margin: 10px 0 14px; }
.course-hero .chips { margin: 16px 0; }
.course-hero .price { margin: 8px 0 16px; }
.course-hero .trust-row { margin-top: 14px; }
.course-hero .progress { margin: 14px 0 6px; max-width: 420px; }
.course-hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.course-hero-img img { width: 100%; }
.ld-course-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .course-hero-grid { grid-template-columns: 1.1fr .9fr; gap: 48px; } .ld-course-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .ld-course-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---- contact page ---- */
.contact-hero { padding: 16px 0 48px; background: linear-gradient(180deg, #fff, var(--ivory)); }
.contact-hero-in { max-width: 640px; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-hero h1 { font-size: clamp(36px, 7vw, 60px); }
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.contact-card { display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto auto; column-gap: 14px; row-gap: 2px; padding: 18px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); color: var(--text); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--text); }
.contact-card .ic-wrap { grid-row: 1 / 4; }
.contact-card b { color: var(--ink); font-size: 16px; }
.contact-card > span:not(.ic-wrap) { font-size: 14px; color: var(--text); }
.contact-card small { font-size: 12px; color: var(--muted); }
.contact-form-section { background: #fff; padding-top: 56px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.contact-copy { display: flex; flex-direction: column; gap: 20px; }
.contact-copy .section-head { margin-bottom: 4px; }
.contact-photo { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.contact-form-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.contact-form-card .gform_wrapper .gform_title { font-family: var(--display); font-size: 26px; color: var(--ink); margin: 0 0 6px; }
.contact-form-card .gform_wrapper .gform_description { color: var(--muted); font-size: 14px; }
.contact-form-card .gform_wrapper .gfield_label, .contact-form-card .gform_wrapper legend.gfield_label { font-size: 14px; font-weight: 600; color: var(--ink); }
.contact-form-card .gform_wrapper .gfield_required { color: var(--rose); }
.contact-form-card .gform_wrapper input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), .contact-form-card .gform_wrapper select, .contact-form-card .gform_wrapper textarea { min-height: 48px; padding: 10px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; font: inherit; }
.contact-form-card .gform_wrapper textarea { min-height: 140px; }
.contact-form-card .gform_wrapper input:focus, .contact-form-card .gform_wrapper textarea:focus, .contact-form-card .gform_wrapper select:focus { outline: 0; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(107,36,209,.12); }
.contact-form-card .gform_wrapper .gform_footer, .contact-form-card .gform_wrapper .gform-footer { padding: 8px 0 0; margin: 0; }
.contact-form-card .gform_wrapper input[type="submit"], .contact-form-card .gform_wrapper .gform_button { width: 100%; min-height: 54px; font-size: 16px; box-shadow: 0 10px 24px rgba(107,36,209,.22); }
.contact-form-card .gform_wrapper .gform_validation_errors, .contact-form-card .gform_wrapper .validation_message { border-radius: 12px; }
.contact-form-card .gform_confirmation_message { font-family: var(--display); font-size: 24px; color: var(--ink); }
.contact-form-card .gform_wrapper .gfield_consent_label { font-size: 13px; color: var(--muted); }
@media (min-width: 720px) {
  .contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 48px; }
  .contact-form-card { padding: 32px; }
}
@media (min-width: 1024px) { .contact-hero { padding: 24px 0 64px; } }

/* ---- app bar (native, replaces the smart-banner plugin) ---- */
.app-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 96; display: none; align-items: center; gap: 12px; padding: 8px 12px; padding-top: calc(8px + env(safe-area-inset-top)); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); box-shadow: 0 6px 20px rgba(36,20,63,.06); transform: translateY(-100%); transition: transform .4s var(--ease); }
.app-bar:not([hidden]) { display: flex; }
.has-appbar .app-bar { transform: none; }
.app-bar img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; flex: none; }
.app-bar .app-bar-text { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.2; }
.app-bar .app-bar-text b { font-size: 14px; color: var(--ink); }
.app-bar .app-bar-text small { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-bar .app-bar-text .stars .ic { width: 11px; height: 11px; }
.app-bar .btn { min-height: 36px; padding: 0 16px; font-size: 13px; flex: none; }
.app-bar .app-bar-close { width: 32px; height: 32px; border-radius: 50%; border: 0; background: transparent; color: var(--muted); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; flex: none; padding: 0; }
.app-bar .app-bar-close .ic { width: 16px; height: 16px; }
.has-appbar .site-header { top: var(--appbar-h, 62px); }
.has-appbar.admin-bar .site-header { top: calc(var(--appbar-h, 62px) + 46px); }
body.has-appbar { padding-top: calc(var(--nav-h) + 12px + var(--appbar-h, 62px)); transition: padding-top .4s var(--ease); }
.has-appbar .site-header.hide { transform: translateY(calc(-100% - var(--appbar-h, 62px))); }
@media (min-width: 1024px) { .app-bar, .app-bar:not([hidden]) { display: none; } .has-appbar .site-header { top: 0; } body.has-appbar { padding-top: calc(var(--nav-h) + 12px); } }
