:root {
    --ink: #24182f;
    --ink-2: #3f314e;
    --muted: #6f627b;
    --canvas: #fffaf4;
    --paper: #fffefd;
    --soft: #f7f0ff;
    --lavender: #d9c6ff;
    --violet: #7547c7;
    --violet-2: #9b6cff;
    --rose: #d94f85;
    --gold: #d99d35;
    --teal: #179b8e;
    --night: #171020;
    --night-2: #241a33;
    --line: rgba(36, 24, 47, .13);
    --line-strong: rgba(36, 24, 47, .24);
    --white: #fff;
    --shadow: 0 22px 60px rgba(52, 31, 86, .15);
    --shadow-soft: 0 12px 34px rgba(52, 31, 86, .10);
    --r: 8px;
    --rs: 6px;
    --mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 250, 244, .98), rgba(247, 240, 255, .84) 44%, rgba(255, 250, 244, .96)),
        radial-gradient(circle at 1px 1px, rgba(117, 71, 199, .18) 1px, transparent 0);
    background-size: auto, 34px 34px;
    font-family: var(--sans);
    line-height: 1.65;
    overflow-x: hidden;
}
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet); text-decoration-thickness: 1px; text-underline-offset: .18em; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: var(--paper); padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--rs); }
:focus-visible { outline: 3px solid rgba(23, 155, 142, .42); outline-offset: 3px; }
.icon { width: 1.05em; height: 1.05em; flex: 0 0 auto; }
.icon.tiny { width: .92em; height: .92em; }

.scroll-progress { position: fixed; top: 0; left: 0; z-index: 200; height: 3px; width: 0; background: linear-gradient(90deg, var(--rose), var(--gold), var(--teal)); }
.ambient-layer { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .42; overflow: hidden; }
.ambient-layer span { position: absolute; width: 1px; height: 34vh; background: linear-gradient(180deg, transparent, rgba(117, 71, 199, .26), transparent); transform: rotate(28deg); }
.ambient-layer span:nth-child(1) { left: 10%; top: 8%; }
.ambient-layer span:nth-child(2) { left: 58%; top: 16%; height: 46vh; transform: rotate(-22deg); }
.ambient-layer span:nth-child(3) { right: 12%; top: 52%; height: 32vh; transform: rotate(18deg); }

.site-header { position: sticky; top: 0; z-index: 90; background: rgba(255, 250, 244, .84); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; min-width: max-content; }
.brand img { width: 44px; height: 44px; border-radius: 8px; border: 1px solid rgba(117, 71, 199, .24); background: var(--paper); }
.brand-copy { display: grid; gap: 0; }
.brand-copy strong { font-family: var(--serif); font-size: 1.1rem; line-height: 1.05; }
.brand-copy small { font-family: var(--mono); color: var(--muted); font-size: .74rem; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.nav-link, .nav-cta, .nav-toggle { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--rs); border: 1px solid transparent; color: var(--ink); background: transparent; text-decoration: none; font-weight: 800; padding: 9px 10px; }
.nav-link { font-size: .94rem; }
.nav-link:hover, .nav-dropdown:focus-within > .nav-link { background: rgba(255,255,255,.82); border-color: var(--line); }
.nav-cta { background: var(--night); color: var(--canvas); padding-inline: 14px; box-shadow: 0 10px 26px rgba(23, 16, 32, .18); }
.nav-toggle { display: none; border-color: var(--line); background: var(--paper); }
.nav-dropdown { position: relative; }
.nav-drop-toggle { cursor: pointer; }
.nav-panel { position: absolute; right: 0; top: calc(100% + 12px); width: min(620px, calc(100vw - 40px)); padding: 14px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(255, 254, 253, .98); box-shadow: var(--shadow); opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.nav-dropdown:hover .nav-panel, .nav-dropdown:focus-within .nav-panel, .nav-dropdown.open .nav-panel { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-panel p { margin: 0 0 12px; color: var(--muted); font-size: .92rem; }
.nav-panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.nav-panel-link { display: flex; align-items: flex-start; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: var(--rs); color: var(--ink); text-decoration: none; background: rgba(247,240,255,.42); }
.nav-panel-link:hover { border-color: rgba(117, 71, 199, .32); background: var(--paper); }
.nav-panel-link small { display: block; color: var(--muted); font-size: .8rem; margin-top: 2px; }

h1, h2, h3 { color: var(--ink); font-family: var(--serif); line-height: 1.08; margin: 0; }
h1 { font-size: 5.1rem; max-width: 980px; }
h2 { font-size: 3.2rem; }
h3 { font-size: 1.34rem; }
p { margin-top: 0; }
.kicker, .eyebrow, .terminal-label, .meta { font-family: var(--mono); letter-spacing: 0; }
.kicker { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 14px; color: var(--violet); font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.kicker:before { content: ""; width: 28px; height: 1px; background: var(--rose); }
.kicker.invert { color: var(--lavender); }
.kicker.invert:before { background: var(--gold); }
.eyebrow { margin: 0 0 9px; color: var(--teal); font-size: .77rem; font-weight: 800; text-transform: uppercase; }
.lede { max-width: 720px; color: var(--ink-2); font-size: 1.18rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; border: 1px solid transparent; border-radius: var(--rs); background: var(--violet); color: var(--white); text-decoration: none; font-weight: 850; padding: 12px 18px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(117, 71, 199, .20); }
.btn.secondary { background: rgba(255, 254, 253, .74); color: var(--violet); border-color: rgba(117, 71, 199, .28); }
.btn.light { background: var(--canvas); color: var(--night); border-color: rgba(255,255,255,.28); }
.chip { display: inline-flex; align-items: center; min-height: 30px; border: 1px solid rgba(117, 71, 199, .18); border-radius: 999px; background: rgba(255,255,255,.78); color: var(--ink); font-family: var(--mono); font-size: .78rem; font-weight: 800; padding: 5px 10px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; color: var(--violet); font-weight: 850; text-decoration: none; }
.text-link:hover { color: var(--rose); }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; opacity: .62; }
.immersive-hero:before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(255,250,244,.98), rgba(255,250,244,.78) 46%, rgba(247,240,255,.54)); }
.constellation-canvas { position: absolute; inset: 0; z-index: -1; opacity: .44; background-image: linear-gradient(115deg, transparent 0 18%, rgba(117,71,199,.16) 18.2%, transparent 18.4% 45%, rgba(23,155,142,.12) 45.2%, transparent 45.5%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 44px; align-items: center; padding: 96px 0 86px; }
.hero-copy { position: relative; z-index: 1; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-width: 680px; margin-top: 28px; }
.hero-proof span { border: 1px solid var(--line); border-radius: var(--rs); background: rgba(255,255,255,.68); padding: 12px; color: var(--muted); font-size: .9rem; }
.hero-proof strong { display: block; color: var(--ink); font-family: var(--mono); font-size: 1.28rem; }
.oracle-console { border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); background: var(--night); color: rgba(255,255,255,.84); min-height: 560px; padding: 22px; box-shadow: 0 28px 80px rgba(23,16,32,.32); overflow: hidden; position: relative; }
.oracle-console:before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(117,71,199,.22), transparent 28%, rgba(23,155,142,.12) 68%, transparent); opacity: .9; }
.oracle-console > * { position: relative; z-index: 1; }
.oracle-console.mini { min-height: 360px; }
.console-top { display: flex; justify-content: space-between; gap: 12px; color: var(--lavender); font-family: var(--mono); font-size: .78rem; border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 14px; }
.zodiac-wheel { width: min(380px, 100%); aspect-ratio: 1; margin: 28px auto; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; position: relative; animation: spin-slow 42s linear infinite; }
.zodiac-wheel:before, .zodiac-wheel:after { content: ""; position: absolute; inset: 14%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.zodiac-wheel:after { inset: 31%; border-color: rgba(217,157,53,.34); }
.zodiac-wheel span { position: absolute; left: 50%; top: 50%; width: 38px; height: 26px; margin: -13px 0 0 -19px; display: grid; place-items: center; transform: rotate(calc(var(--i) * 30deg)) translateY(-166px) rotate(calc(var(--i) * -30deg)); color: var(--canvas); font-family: var(--mono); font-size: .78rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.07); }
.zodiac-wheel b { position: absolute; inset: 50%; width: 72px; height: 72px; margin: -36px; display: grid; place-items: center; color: var(--gold); border: 1px solid rgba(217,157,53,.44); border-radius: 50%; background: rgba(255,255,255,.06); animation: counter-spin 42s linear infinite; }
.console-lines { display: grid; gap: 10px; font-family: var(--mono); font-size: .92rem; }
.console-lines p { margin: 0; padding: 11px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--rs); background: rgba(255,255,255,.06); }
.console-lines span { color: var(--gold); }
.console-metrics { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin-top: 16px; }
.console-metrics span { border: 1px solid rgba(255,255,255,.12); border-radius: var(--rs); padding: 10px; font-family: var(--mono); font-size: .78rem; color: rgba(255,255,255,.72); }

.section { padding: 96px 0; }
.band-soft { background: rgba(255,255,255,.42); border-block: 1px solid var(--line); }
.band-dark { background: var(--night); color: rgba(255,255,255,.78); }
.band-dark h2, .band-dark h3 { color: var(--canvas); }
.section-head { max-width: 820px; margin-bottom: 32px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.path-grid, .service-grid, .course-grid, .post-grid, .plan-grid, .module-grid, .policy-stack { display: grid; gap: 18px; }
.path-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.course-grid, .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.module-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.policy-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.path-card, .service-card, .course-card, .post-card, .plan-card, .insight-card, .module-card, .policy-card, .contact-panel, .social-card, .contact-notes { border: 1px solid var(--line); border-radius: var(--r); background: rgba(255, 254, 253, .82); box-shadow: var(--shadow-soft); }
.path-card { min-height: 280px; padding: 22px; color: var(--ink); text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; }
.path-card p, .service-card p, .course-card p, .post-card p, .plan-card p, .insight-card p, .module-card p, .policy-card p { color: var(--muted); }
.path-card:hover, .service-card:hover, .course-card:hover, .post-card:hover, .plan-card:hover { border-color: rgba(117,71,199,.32); box-shadow: var(--shadow); }
.icon-badge { width: 44px; height: 44px; display: inline-grid; place-items: center; border: 1px solid rgba(117,71,199,.20); border-radius: var(--rs); background: linear-gradient(135deg, rgba(247,240,255,.94), rgba(255,255,255,.92)); color: var(--violet); }
.icon-badge.large { width: 62px; height: 62px; position: absolute; right: 18px; bottom: 18px; color: var(--rose); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-bar button { min-height: 38px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.68); color: var(--ink); font-family: var(--mono); font-weight: 800; padding: 8px 12px; }
.filter-bar button.active, .filter-bar button:hover { color: var(--canvas); background: var(--night); border-color: var(--night); }
.service-card, .course-card, .post-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease; }
.service-card.is-hidden { display: none; }
.media-link { display: block; text-decoration: none; color: inherit; }
.service-card img, .course-card img, .post-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-bottom: 1px solid var(--line); background: var(--soft); }
.card-body { padding: 20px; }
.card-body .icon-badge { margin-bottom: 14px; }
.mini-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 4px; }
.mini-tags span { border: 1px solid var(--line); border-radius: 999px; padding: 5px 8px; color: var(--muted); font-size: .78rem; background: rgba(255,255,255,.72); }

.founder-grid, .service-hero, .process-grid, .contact-layout, .faq-layout { display: grid; gap: 42px; align-items: center; }
.founder-grid { grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr); }
.portrait-stack { position: relative; }
.portrait { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--soft); }
.floating-note { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.floating-note span { border-radius: 999px; padding: 7px 10px; background: rgba(255,255,255,.82); color: var(--ink); font-family: var(--mono); font-size: .76rem; }
.founder-grid p { color: var(--muted); font-size: 1.05rem; }
.method-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 24px; }
.method-grid div { border: 1px solid var(--line); border-radius: var(--rs); padding: 14px; background: rgba(255,255,255,.62); }
.method-grid span, .process-steps span, .module-card span { color: var(--rose); font-family: var(--mono); font-weight: 900; }
.method-grid strong { display: block; margin: 6px 0 4px; }
.method-grid p { font-size: .9rem; margin: 0; }
.process-grid { grid-template-columns: .86fr 1.14fr; }
.process-grid > div:first-child p { color: rgba(255,255,255,.72); }
.process-steps { display: grid; gap: 12px; }
.process-steps article { border: 1px solid rgba(255,255,255,.13); border-radius: var(--r); background: rgba(255,255,255,.06); padding: 18px; }
.process-steps p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.social-card { padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.social-card p { max-width: 760px; color: var(--muted); }

.page-shell { padding: 54px 0 96px; }
.page-hero { padding: 54px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(255,254,253,.78); box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.page-hero:after { content: ""; position: absolute; inset: auto 24px 0 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--violet), var(--gold), transparent); }
.page-hero p { max-width: 820px; color: var(--muted); font-size: 1.08rem; }
.service-hero { grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); padding: 42px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(255,254,253,.74); box-shadow: var(--shadow-soft); overflow: hidden; }
.service-hero-copy p { color: var(--muted); font-size: 1.08rem; }
.service-visual { position: relative; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--soft); min-height: 420px; }
.service-visual img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.insight-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.insight-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.insight-card { padding: 22px; align-self: stretch; }
.insight-card h2 { font-size: 1.7rem; margin-bottom: 14px; }
.icon-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.icon-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.icon-list .icon { color: var(--teal); margin-top: .25em; }
.plan-card { padding: 22px; }
.plan-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; color: var(--muted); font-family: var(--mono); font-size: .78rem; }
.plan-ideal { font-weight: 760; color: var(--ink-2) !important; }
.support-line { display: inline-flex; align-items: center; gap: 7px; color: var(--violet) !important; font-family: var(--mono); font-size: .84rem; }
.faq-layout { grid-template-columns: .8fr 1.2fr; align-items: start; }
.faq-stack { display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: var(--r); background: rgba(255,254,253,.82); padding: 16px 18px; }
summary { cursor: pointer; color: var(--ink); font-weight: 850; }
details p { margin: 12px 0 0; color: var(--muted); }
.module-card, .policy-card { padding: 20px; }
.module-card h3 { font-size: 1.1rem; margin-top: 8px; }
.policy-card h2 { font-size: 1.55rem; margin-bottom: 10px; }

.post-card h3 a { color: var(--ink); text-decoration: none; }
.meta { color: var(--muted); font-size: .82rem; font-weight: 800; }
.center { text-align: center; }
.single-shell { padding: 74px 0 104px; }
.single-shell h1 { text-align: center; margin-inline: auto; font-size: 4.2rem; }
.single-image { width: 100%; max-height: 560px; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--shadow); margin: 30px 0; }
.content { max-width: 800px; margin-inline: auto; font-size: 1.08rem; }
.content h2 { font-size: 2rem; margin: 34px 0 10px; }
.content p { color: var(--ink-2); }

.contact-layout { grid-template-columns: .82fr 1.18fr; align-items: start; }
.contact-notes, .contact-panel { padding: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
form { display: grid; gap: 18px; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 850; }
input, textarea, select { width: 100%; border: 1px solid var(--line-strong); border-radius: var(--rs); background: rgba(255,255,255,.92); color: var(--ink); padding: 12px 14px; }
input:focus, textarea:focus, select:focus { border-color: var(--violet); outline: 3px solid rgba(117,71,199,.14); }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.alert { padding: 12px 14px; border-radius: var(--rs); font-weight: 850; }
.alert.success { background: rgba(23,155,142,.13); color: #0b665d; }
.alert.error { background: rgba(217,79,133,.14); color: #8b214d; }

.site-footer { padding: 64px 0 28px; background: var(--night); color: rgba(255,255,255,.74); }
.footer-oracle { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 26px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--r); background: rgba(255,255,255,.06); margin-bottom: 36px; }
.footer-oracle h2, .site-footer h3 { color: var(--canvas); }
.footer-oracle p { margin-bottom: 0; max-width: 760px; }
.terminal-label { margin: 0 0 8px; color: var(--gold); font-size: .78rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
.footer-grid a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.88); text-decoration: none; margin-bottom: 9px; }
.footer-grid p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-bottom a { color: rgba(255,255,255,.86); margin-left: 14px; }

.wa-float, .chat-toggle { position: fixed; right: 22px; z-index: 120; display: grid; place-items: center; width: 56px; height: 56px; border: 0; border-radius: 50%; color: var(--white); box-shadow: 0 14px 34px rgba(36,26,51,.24); text-decoration: none; }
.wa-float { bottom: 94px; background: #1faa59; }
.chat-toggle { bottom: 24px; background: var(--night); }
.wa-float .icon, .chat-toggle .icon { width: 25px; height: 25px; }
.chat-panel { position: fixed; right: 22px; bottom: 94px; z-index: 130; display: none; width: min(410px, calc(100vw - 32px)); overflow: hidden; border: 1px solid var(--line); border-radius: var(--r); background: rgba(255,254,253,.98); box-shadow: 0 24px 70px rgba(36,26,51,.25); }
.chat-panel.open { display: block; }
.chat-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 15px; background: var(--night); color: var(--canvas); }
.chat-title { display: flex; gap: 10px; align-items: center; font-weight: 850; }
.chat-title small { display: block; color: rgba(255,255,255,.62); font-family: var(--mono); font-size: .72rem; font-weight: 500; }
.chat-close { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: var(--canvas); border-radius: 50%; width: 32px; height: 32px; }
.chat-body { padding: 16px; max-height: 460px; overflow: auto; }
.chat-row { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 12px; }
.chat-row.user { justify-content: flex-end; }
.chat-avatar { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; flex: 0 0 auto; background: var(--soft); color: var(--violet); border: 1px solid rgba(117,71,199,.18); }
.chat-row.user .chat-avatar { display: none; }
.chat-msg { max-width: 86%; margin: 0; padding: 11px 12px; border-radius: var(--r); background: var(--soft); color: var(--ink); }
.chat-row.user .chat-msg { background: rgba(23,155,142,.12); }
.chat-options { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px 39px; }
.chat-option { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(117,60,195,.18); border-radius: 999px; background: var(--paper); color: var(--violet); font: inherit; font-size: .88rem; font-weight: 800; padding: 8px 10px; }
.chat-option:hover { background: var(--soft); }
.cursor, .cursor-dot { position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); opacity: 0; }
.cursor { width: 34px; height: 34px; border: 1px solid rgba(117,71,199,.56); border-radius: 50%; transition: width .16s ease, height .16s ease, border-color .16s ease, opacity .16s ease; }
.cursor-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }
.cursor.active, .cursor-dot.active { opacity: 1; }
.cursor.hover { width: 48px; height: 48px; border-color: var(--teal); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .62s ease, transform .62s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes counter-spin { to { transform: rotate(-360deg); } }

@media (max-width: 1120px) {
    h1 { font-size: 4.2rem; }
    h2 { font-size: 2.7rem; }
    .hero-grid, .service-hero, .founder-grid, .process-grid, .contact-layout, .faq-layout { grid-template-columns: 1fr; }
    .path-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .service-grid, .course-grid, .post-grid, .module-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .oracle-console { max-width: 620px; }
}

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .site-nav { position: absolute; left: 18px; right: 18px; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: 6px; padding: 12px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(255,254,253,.98); box-shadow: var(--shadow); }
    .site-nav.open { display: flex; }
    .nav-link, .nav-cta { justify-content: flex-start; }
    .nav-dropdown { width: 100%; }
    .nav-drop-toggle { width: 100%; }
    .nav-panel { position: static; width: 100%; margin-top: 8px; display: none; opacity: 1; transform: none; pointer-events: auto; box-shadow: none; }
    .nav-dropdown.open .nav-panel { display: block; }
    .nav-dropdown:hover .nav-panel { display: none; }
    .nav-dropdown.open:hover .nav-panel { display: block; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .footer-oracle { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
    .wrap { width: min(100% - 28px, 1180px); }
    .header-inner { min-height: 70px; }
    .brand-copy small { display: none; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.1rem; }
    .hero { min-height: auto; }
    .hero-grid { padding: 68px 0 58px; }
    .hero-proof, .path-grid, .service-grid, .course-grid, .post-grid, .plan-grid, .module-grid, .policy-stack, .insight-grid, .insight-grid.two, .form-grid, .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .page-shell { padding-top: 30px; }
    .page-hero, .service-hero { padding: 26px; }
    .service-visual, .service-visual img { min-height: 300px; }
    .method-grid { grid-template-columns: 1fr; }
    .social-card { align-items: flex-start; flex-direction: column; }
    .zodiac-wheel span { transform: rotate(calc(var(--i) * 30deg)) translateY(-126px) rotate(calc(var(--i) * -30deg)); }
    .single-shell h1 { font-size: 2.6rem; }
    .footer-bottom { display: block; }
    .footer-bottom a { margin-left: 0; margin-right: 12px; }
    .wa-float, .chat-toggle { right: 16px; }
    .chat-panel { right: 16px; bottom: 88px; }
}

@media (max-width: 430px) {
    h1 { font-size: 2.55rem; }
    .oracle-console { min-height: 480px; padding: 16px; }
    .zodiac-wheel span { width: 32px; transform: rotate(calc(var(--i) * 30deg)) translateY(-108px) rotate(calc(var(--i) * -30deg)); }
    .console-metrics { grid-template-columns: 1fr; }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto; }
    .cursor, .cursor-dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
}


/* Lavender visual lift and flip cards */
:root {
    --canvas: #fcf7ff;
    --paper: #fffaff;
    --soft: #f0e6ff;
    --lavender: #cdb7ff;
    --violet: #7650d8;
    --violet-2: #a77bff;
    --line: rgba(70, 42, 114, .16);
    --shadow: 0 24px 70px rgba(93, 55, 148, .18);
    --shadow-soft: 0 14px 38px rgba(93, 55, 148, .12);
}
body {
    background:
        radial-gradient(circle at 16% 12%, rgba(167, 123, 255, .30), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(217, 79, 133, .16), transparent 28%),
        linear-gradient(180deg, #fff8fb 0%, #f2eaff 42%, #fffaf4 100%),
        radial-gradient(circle at 1px 1px, rgba(117, 71, 199, .20) 1px, transparent 0);
    background-size: auto, auto, auto, 34px 34px;
}
svg.icon { width: 1.05em; height: 1.05em; max-width: 1.05em; max-height: 1.05em; }
.icon-badge svg.icon, .chat-avatar svg, .btn svg, .nav-link svg, .nav-cta svg { width: 1.08em; height: 1.08em; }
.icon-badge.large svg.icon, .icon-badge.large-static svg.icon { width: 1.35em; height: 1.35em; }
.immersive-hero:before { background: linear-gradient(92deg, rgba(255,248,251,.98), rgba(243,233,255,.84) 46%, rgba(226,214,255,.70)); }
.band-soft { background: linear-gradient(135deg, rgba(255,255,255,.54), rgba(238,226,255,.74)); }
.page-hero, .service-hero, .path-card, .insight-card, .module-card, .policy-card, .contact-panel, .social-card, .contact-notes { background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(245,237,255,.82)); }

.flip-card {
    perspective: 1400px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    min-height: 560px;
    outline: none;
}
.flip-inner {
    position: relative;
    width: 100%;
    min-height: 560px;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .78s cubic-bezier(.2,.7,.15,1);
}
.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner,
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(241,231,255,.88));
    box-shadow: var(--shadow-soft);
}
.flip-front img { min-height: 236px; }
.flip-back {
    transform: rotateY(180deg);
    justify-content: space-between;
    padding: 24px;
    background:
        radial-gradient(circle at 15% 12%, rgba(167,123,255,.28), transparent 32%),
        linear-gradient(145deg, #20162e, #4b2d83 68%, #7c54d8);
    color: rgba(255,255,255,.86);
}
.flip-back h3 { color: #fffaf4; }
.flip-back .eyebrow { color: #d9c6ff; }
.flip-back .text-link { color: #fff; margin-top: 16px; }
.flip-back .icon-badge.large-static {
    width: 58px;
    height: 58px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.20);
}
.flip-list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 10px; }
.flip-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.82); }
.flip-list svg { color: #d9c6ff; margin-top: .25em; }
.flip-hint {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-top: 14px;
    border: 1px solid rgba(117,80,216,.18);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--violet);
    background: rgba(255,255,255,.72);
    font-family: var(--mono);
    font-size: .76rem;
    font-weight: 800;
}
.flip-card:focus-visible .flip-face { outline: 3px solid rgba(23,155,142,.42); outline-offset: 3px; }
.service-card img, .course-card img, .post-card img { background: var(--soft); }

@media (max-width: 720px) {
    .flip-card, .flip-inner { min-height: 610px; }
    .flip-front img { min-height: 210px; }
}
@media (prefers-reduced-motion: reduce) {
    .flip-inner { transition: none; }
    .flip-card:hover .flip-inner, .flip-card:focus-within .flip-inner, .flip-card.flipped .flip-inner { transform: none; }
    .flip-face { position: relative; }
    .flip-back { transform: none; margin-top: 14px; }
}
