:root {
  --ink: #111a43;
  --ink-soft: #2c3763;
  --muted: #66719a;
  --violet: #7159e7;
  --violet-deep: #5540be;
  --violet-light: #a18df6;
  --blue: #6c8be8;
  --lavender: #eeeaff;
  --lavender-2: #f6f3ff;
  --cream: #fffaf5;
  --peach: #ffe9dc;
  --gold: #f4bd57;
  --mint: #e6f6ef;
  --white: #fff;
  --line: rgba(58, 64, 116, .12);
  --line-strong: rgba(80, 67, 156, .18);
  --shadow-sm: 0 10px 30px rgba(62, 53, 124, .08);
  --shadow: 0 24px 80px rgba(68, 55, 143, .13);
  --shadow-strong: 0 35px 100px rgba(64, 51, 143, .18);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1220px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -5%, rgba(232, 221, 255, .95), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(215, 228, 255, .9), transparent 31%),
    linear-gradient(180deg, #f7f5ff 0%, #fbfaff 44%, #f7f7ff 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }

::selection { background: #ded6ff; color: #231c54; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
section[id] { scroll-margin-top: 104px; }

.ambient { position: fixed; z-index: -2; border-radius: 999px; filter: blur(60px); pointer-events: none; opacity: .5; }
.ambient-one { width: 360px; height: 360px; background: #ffdfe8; left: -160px; top: 120px; }
.ambient-two { width: 430px; height: 430px; background: #dce3ff; right: -190px; top: 290px; }

.page-shell {
  width: min(calc(100% - 28px), 1536px);
  margin: 14px auto 34px;
  overflow: clip;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 13px max(28px, calc((100% - var(--max)) / 2));
  background: rgba(250, 249, 255, .83);
  border-bottom: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(20px) saturate(150%);
}

.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; font-weight: 850; }
.brand-mark { width: 48px; height: 48px; flex: 0 0 auto; }
.brand-name { font-size: clamp(1.35rem, 1.9vw, 1.82rem); letter-spacing: -.045em; color: #171e4b; white-space: nowrap; }
.brand-name span { color: var(--violet); }

.main-nav { display: flex; align-items: center; justify-content: center; gap: 36px; font-weight: 650; color: #27305b; }
.main-nav a { position: relative; padding: 9px 0; }
.main-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 2px; height: 2px; border-radius: 999px; background: var(--violet); transition: left .2s ease, right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after, .main-nav a.active::after { left: 0; right: 0; }
.header-cta { justify-self: end; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.78); place-items: center; padding: 10px; cursor: pointer; }
.nav-toggle span { grid-area: 1/1; display: block; width: 22px; height: 2px; border-radius: 999px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.section-pad { padding-inline: max(28px, calc((100% - var(--max)) / 2)); }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding-top: 54px;
  padding-bottom: 62px;
  background:
    radial-gradient(circle at 67% 45%, rgba(255, 239, 196, .38), transparent 20%),
    radial-gradient(circle at 85% 15%, rgba(214, 224, 255, .63), transparent 31%),
    radial-gradient(circle at 15% 85%, rgba(255, 227, 237, .43), transparent 28%),
    linear-gradient(132deg, rgba(255,255,255,.96), rgba(251,248,255,.89) 48%, rgba(237,243,255,.91));
}
.hero::before {
  content: "";
  position: absolute;
  left: -68px;
  bottom: -48px;
  width: 250px;
  height: 330px;
  opacity: .68;
  background:
    radial-gradient(ellipse at 52% 82%, #697c72 0 8%, transparent 9%),
    radial-gradient(ellipse at 42% 72%, #859a80 0 6%, transparent 7%),
    radial-gradient(ellipse at 64% 66%, #748a7d 0 7%, transparent 8%),
    radial-gradient(ellipse at 34% 57%, #a08bbd 0 5%, transparent 6%),
    radial-gradient(ellipse at 66% 48%, #8e7bad 0 5%, transparent 6%);
  filter: blur(.2px);
  pointer-events: none;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(180deg, transparent, rgba(226,235,255,.34)); pointer-events: none; }
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.hero-copy { max-width: 650px; }

.eyebrow { color: #5268cf; font-size: .78rem; font-weight: 850; letter-spacing: .21em; margin: 0 0 15px; }
h1 { max-width: 650px; margin-bottom: 22px; font-size: clamp(3.3rem, 5.55vw, 5.8rem); line-height: .99; letter-spacing: -.066em; }
h1 span, h2 span { color: var(--violet); }
.lead { max-width: 650px; color: #566188; font-size: clamp(1.05rem, 1.45vw, 1.28rem); line-height: 1.62; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 34px; }
.button {
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #7a60ec, #6750d9);
  color: #fff;
  font-weight: 770;
  box-shadow: 0 14px 30px rgba(105, 82, 221, .25);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(105, 82, 221, .31); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(114,88,232,.28); outline-offset: 3px; }
.button-small { min-height: 46px; padding: 0 21px; border-radius: 15px; }
.button-ghost { background: rgba(255,255,255,.7); color: #4f3bc1; border-color: rgba(106,83,224,.55); box-shadow: none; }
.button-ghost:hover { background: #fff; box-shadow: 0 10px 24px rgba(90,74,168,.09); }

.hero-benefits { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-benefits span { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 6px 11px; border-radius: 999px; color: #35416f; background: rgba(255,255,255,.58); border: 1px solid rgba(95, 86, 162, .09); font-size: .91rem; font-weight: 690; }
.hero-benefits b { color: var(--violet); font-size: 1rem; }

.hero-visual { min-width: 0; }
.hero-art-card { position: relative; isolation: isolate; width: 100%; max-width: 760px; margin-left: auto; }
.hero-picture { display: block; width: 100%; }
.hero-art-card::before { content: ""; position: absolute; inset: 10% 8% 6% 8%; z-index: -1; border-radius: 48%; background: radial-gradient(circle, rgba(255,247,208,.95), rgba(226,218,255,.65) 40%, rgba(202,220,255,.34) 67%, transparent 72%); filter: blur(20px); }
.hero-art-card::after { content: ""; position: absolute; inset: 3% 0 0; z-index: 2; pointer-events: none; border-radius: 38px; box-shadow: inset 0 0 55px 25px rgba(245,245,255,.21); }
.hero-art { display: block; width: 100%; height: auto; border-radius: 40px; object-fit: cover; box-shadow: 0 25px 65px rgba(79,70,153,.12); }
.art-spark { position: absolute; z-index: 4; color: #efb84d; text-shadow: 0 0 20px rgba(255,235,142,.9); animation: twinkle 2.8s ease-in-out infinite; }
.art-spark-one { left: 4%; top: 20%; font-size: 34px; }
.art-spark-two { right: 7%; top: 11%; font-size: 28px; animation-delay: -1.4s; }
.art-note { position: absolute; z-index: 5; left: 2%; bottom: 8%; display: grid; grid-template-columns: auto 1fr; column-gap: 8px; padding: 10px 13px; border-radius: 14px; background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.88); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); color: #4f43a7; transform: rotate(-3deg); }
.art-note > span { grid-row: 1/3; color: var(--gold); font-size: 22px; align-self: center; }
.art-note strong { font-size: .78rem; line-height: 1.2; }
.art-note small { font-size: .72rem; color: #73699f; }
@keyframes twinkle { 50% { transform: scale(.62) rotate(22deg); opacity: .55; } }

.trust-strip { min-height: 62px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; padding: 16px 28px; color: #687298; background: rgba(255,255,255,.75); border-top: 1px solid rgba(255,255,255,.85); border-bottom: 1px solid var(--line); font-size: .93rem; font-weight: 680; }
.trust-strip i { color: #9a84ed; font-style: normal; }

.section { padding-top: 104px; padding-bottom: 106px; }
.section-heading { max-width: 790px; margin-bottom: 48px; }
h2 { margin-bottom: 20px; font-size: clamp(2.45rem, 4.15vw, 4.2rem); line-height: 1.04; letter-spacing: -.057em; }
.section-heading > p:last-child, .workshop-card p, .contact-copy > p { color: var(--muted); font-size: 1.07rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; overflow: hidden; min-height: 420px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.86); box-shadow: 0 16px 48px rgba(72,57,154,.08); }
.feature-card::after { content: "✦"; position: absolute; right: 24px; top: 22px; color: rgba(114,88,232,.19); font-size: 24px; }
.feature-card-primary { background: linear-gradient(155deg, #f8f5ff, #fff 65%); }
.feature-card-warm { background: linear-gradient(155deg, #fff7f0, #fff 65%); }
.feature-card-cool { background: linear-gradient(155deg, #f2f7ff, #fff 65%); }
.icon-tile { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 17px; background: #ede8ff; color: #654fda; font-size: 1.5rem; font-weight: 800; }
.feature-card-warm .icon-tile { background: #fff0e5; color: #c87857; }
.feature-card-cool .icon-tile { background: #eaf2ff; color: #5075cf; }
.card-kicker { margin-bottom: 8px; color: #7e86a6; font-size: .69rem; font-weight: 820; letter-spacing: .15em; }
.feature-card h3 { margin-bottom: 11px; font-size: 1.5rem; letter-spacing: -.03em; }
.feature-card > p:not(.card-kicker) { color: var(--muted); }
.feature-card ul { padding-left: 18px; margin: 24px 0 0; color: #4e5a82; }
.feature-card li + li { margin-top: 8px; }

.mini-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.mini-benefits > div { display: grid; grid-template-columns: 46px 1fr; column-gap: 12px; align-items: center; padding: 18px 20px; border-radius: 20px; background: rgba(255,255,255,.7); border: 1px solid var(--line); }
.mini-benefits span { grid-row: 1/3; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: #f0ebff; color: var(--violet); font-weight: 850; }
.mini-benefits strong { line-height: 1.25; }
.mini-benefits small { color: #7b84a4; line-height: 1.25; }

.formula { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 7vw, 90px); padding-top: 98px; padding-bottom: 98px; background: linear-gradient(135deg, #161c43, #29225e 58%, #48398f); color: #fff; }
.formula::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 35%, rgba(142,108,255,.22), transparent 22%), radial-gradient(circle at 85% 70%, rgba(255,197,92,.14), transparent 18%); pointer-events: none; }
.formula > * { position: relative; z-index: 2; }
.formula-copy .eyebrow { color: #c8c0ff; }
.formula-copy h2 { max-width: 650px; }
.formula-intro { max-width: 630px; color: #d0d4e7; font-size: 1.06rem; }
.steps { display: grid; gap: 2px; margin-top: 30px; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.step > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.08); color: #ddd5ff; font-size: .9rem; font-weight: 850; }
.step h3 { margin: 0 0 3px; font-size: 1.15rem; }
.step p { margin: 0; color: #c2c7de; }

.formula-visual { position: relative; min-height: 490px; border-radius: 32px; overflow: hidden; background: linear-gradient(180deg, #272768 0%, #303073 41%, #121a3d 100%); box-shadow: inset 0 0 50px rgba(255,255,255,.03), 0 30px 70px rgba(6,9,30,.25); }
.night-sky { position: absolute; inset: 0; background: radial-gradient(circle at 66% 18%, rgba(215,189,255,.38) 0 2%, transparent 3%), radial-gradient(circle at 48% 28%, rgba(255,221,123,.45) 0 1%, transparent 2%), radial-gradient(circle at 75% 35%, rgba(173,155,255,.35), transparent 28%), linear-gradient(180deg, transparent 50%, rgba(7,16,46,.42)); }
.magic-road { position: absolute; width: 410px; height: 520px; left: 35%; top: -60px; border: 14px solid transparent; border-left-color: rgba(147,104,255,.68); border-radius: 50%; transform: rotate(33deg); filter: drop-shadow(0 0 13px rgba(147,104,255,.7)); }
.magic-road::after { content: ""; position: absolute; width: 300px; height: 430px; left: -36px; top: 55px; border: 4px solid transparent; border-left-color: rgba(255,219,113,.7); border-radius: 50%; }
.distant-castle { position: absolute; right: 6%; bottom: 18%; width: 150px; height: 150px; opacity: .55; }
.distant-castle::after { content: ""; position: absolute; left: 15px; right: 5px; bottom: 0; height: 75px; background: #7480ca; clip-path: polygon(7% 20%, 93% 20%, 100% 100%, 0 100%); }
.distant-castle i { position: absolute; bottom: 60px; width: 28px; background: #8c91d9; z-index: 2; }
.distant-castle i::before { content: ""; position: absolute; left: -6px; right: -6px; top: -28px; height: 30px; background: #8c91d9; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.distant-castle i:nth-child(1) { left: 20px; height: 55px; }
.distant-castle i:nth-child(2) { left: 62px; height: 92px; }
.distant-castle i:nth-child(3) { right: 14px; height: 66px; }
.little-wizard { position: absolute; left: 12%; bottom: 12%; font-size: 88px; color: #080d27; transform: scaleX(1.1); text-shadow: 0 10px 20px rgba(0,0,0,.35); }
.wand-star { position: absolute; left: 31%; bottom: 42%; color: #ffd56c; font-size: 38px; text-shadow: 0 0 16px #ffd875, 0 0 34px rgba(255,255,255,.5); animation: twinkle 2.5s ease-in-out infinite; }
.night-spark { position: absolute; color: #ddd0ff; text-shadow: 0 0 14px rgba(206,190,255,.7); }
.ns1 { left: 18%; top: 17%; font-size: 19px; }.ns2 { right: 22%; top: 13%; font-size: 25px; }.ns3 { right: 8%; top: 43%; font-size: 15px; }
.night-note { position: absolute; right: 8%; top: 14%; color: #a996ff; font-size: 1rem; line-height: 1.2; font-style: italic; transform: rotate(-4deg); }

.workshop { padding-top: 94px; padding-bottom: 94px; }
.workshop-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.12fr .88fr; gap: 52px; padding: 48px; border-radius: var(--radius-xl); background: linear-gradient(130deg, #fff7ef, #f7f2ff 53%, #edf5ff); border: 1px solid var(--line); box-shadow: 0 24px 70px rgba(76,62,145,.09); }
.workshop-card::after { content: "✦"; position: absolute; right: 34px; top: 22px; color: rgba(114,88,232,.22); font-size: 30px; }
.workshop-card h2 { font-size: clamp(2.1rem, 3.35vw, 3.25rem); }
.workshop-points { display: grid; gap: 13px; align-content: center; }
.workshop-points span { display: flex; gap: 10px; align-items: flex-start; padding: 14px 17px; border-radius: 16px; background: rgba(255,255,255,.69); border: 1px solid rgba(114,88,232,.09); color: #3e496f; font-weight: 680; }
.workshop-points b { color: var(--violet); }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 12px; color: #5942cb; font-weight: 800; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 66px; padding-top: 98px; padding-bottom: 102px; background: linear-gradient(180deg, rgba(246,244,255,.68), #fff); }
.contact-copy { padding-top: 22px; }
.contact-copy h2 { font-size: clamp(2.3rem, 3.9vw, 3.9rem); }
.contact-note { display: grid; grid-template-columns: auto 1fr; gap: 12px; margin-top: 26px; padding: 16px 18px; border-radius: 17px; background: #fff6dc; color: #6a5930; }
.contact-note > span { color: var(--gold); font-size: 22px; }
.contact-note div { display: grid; }
.contact-note small { color: #8a7953; }
.contact-form { padding: 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,.94); border: 1px solid var(--line); box-shadow: 0 20px 58px rgba(72,57,154,.1); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; margin-bottom: 16px; color: #354069; font-weight: 760; }
input, textarea, select { width: 100%; border: 1px solid #d9dced; border-radius: 14px; padding: 14px 15px; outline: none; background: #fbfbff; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
input:hover, textarea:hover, select:hover { background: #fff; }
input:focus, textarea:focus, select:focus { border-color: #8a71f2; background: #fff; box-shadow: 0 0 0 4px rgba(114,88,232,.1); }
textarea { resize: vertical; min-height: 125px; }
.checkbox { grid-template-columns: auto 1fr; align-items: start; gap: 10px; font-weight: 500; font-size: .9rem; color: #6c7494; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--violet); }
.submit-button { width: 100%; margin-top: 4px; }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: .93rem; color: #52618a; }
.form-status.success { color: #21785f; }.form-status.error { color: #ad4052; }

.site-footer { width: min(calc(100% - 64px), var(--max)); margin: 0 auto; padding: 42px 0 46px; display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; border-top: 1px solid var(--line); color: #697394; }
.footer-brand { color: var(--ink); }.footer-brand .brand-mark { width: 42px; height: 42px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--violet); }
.copyright { grid-column: 1/-1; margin: 0; color: #8b91ab; font-size: .86rem; }

.reveal { opacity: 1; transform: none; }
.reveal.reveal-pending { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s ease; }
.reveal.reveal-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .main-nav { gap: 24px; }
  .hero { grid-template-columns: .88fr 1.12fr; gap: 18px; }
  h1 { font-size: clamp(3.15rem, 6vw, 5rem); }
  .art-note { display: none; }
  .feature-card { min-height: 440px; }
}

@media (max-width: 960px) {
  :root { --header-height: 74px; }
  .site-header { grid-template-columns: 1fr auto; padding-block: 10px; }
  .header-cta { display: none; }
  .nav-toggle { display: grid; justify-self: end; }
  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    left: 18px;
    right: 18px;
    z-index: 120;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(90,79,157,.13);
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 22px 70px rgba(43,35,98,.18);
    backdrop-filter: blur(20px);
    transform: translateY(-10px) scale(.985);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
  .main-nav a { padding: 12px 14px; border-radius: 12px; }
  .main-nav a:hover { background: #f5f2ff; }
  .main-nav a::after { display: none; }

  .hero { grid-template-columns: 1fr; min-height: 0; gap: 34px; padding-top: 42px; padding-bottom: 48px; }
  .hero-copy { max-width: 760px; }
  .hero-art-card { max-width: 820px; margin-inline: auto; }
  .hero-art { border-radius: 34px; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; padding: 28px; }
  .mini-benefits { grid-template-columns: 1fr 1fr 1fr; }
  .formula { grid-template-columns: 1fr; gap: 42px; }
  .formula-copy { max-width: 760px; }
  .formula-visual { min-height: 420px; max-width: 760px; width: 100%; margin: 0 auto; }
  .workshop-card, .contact { grid-template-columns: 1fr; }
  .contact-copy { max-width: 760px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 700px) {
  body { background: #f8f6ff; }
  .page-shell { width: 100%; margin: 0; border: 0; border-radius: 0; box-shadow: none; }
  .site-header { padding-inline: 18px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 1.4rem; }
  .section-pad { padding-inline: 20px; }

  .hero { padding-top: 28px; padding-bottom: 38px; gap: 26px; }
  .hero::before { left: -100px; bottom: 0; transform: scale(.75); opacity: .45; }
  .eyebrow { font-size: .7rem; letter-spacing: .17em; }
  h1 { font-size: clamp(3rem, 14vw, 4.45rem); line-height: .96; letter-spacing: -.064em; }
  .lead { font-size: 1.02rem; line-height: 1.58; }
  .hero-actions { margin: 25px 0 26px; }
  .hero-benefits { gap: 8px; }
  .hero-benefits span { font-size: .83rem; padding: 5px 9px; }
  .hero-art-card { width: calc(100% + 12px); margin-left: -6px; }
  .hero-art { border-radius: 28px; }
  .art-spark-one { left: 2%; top: 15%; }.art-spark-two { right: 4%; }

  .trust-strip { justify-content: flex-start; gap: 9px; padding-inline: 20px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .trust-strip::-webkit-scrollbar { display: none; }
  .trust-strip span { white-space: nowrap; padding: 6px 10px; border-radius: 999px; background: #f7f4ff; }
  .trust-strip i { display: none; }

  .section { padding-top: 76px; padding-bottom: 78px; }
  h2 { font-size: clamp(2.35rem, 11vw, 3.3rem); }
  .section-heading { margin-bottom: 32px; }
  .feature-card { padding: 24px; border-radius: 22px; }
  .mini-benefits { grid-template-columns: 1fr; }

  .formula { padding-top: 74px; padding-bottom: 74px; }
  .formula-visual { min-height: 330px; border-radius: 26px; }
  .magic-road { left: 30%; top: -120px; transform: rotate(30deg) scale(.8); }
  .little-wizard { left: 7%; bottom: 7%; font-size: 70px; }
  .distant-castle { right: 3%; bottom: 14%; transform: scale(.78); transform-origin: bottom right; }
  .night-note { right: 7%; top: 9%; font-size: .84rem; }
  .step { grid-template-columns: 46px 1fr; gap: 12px; }
  .step > span { width: 42px; height: 42px; }

  .workshop { padding-top: 72px; padding-bottom: 72px; }
  .workshop-card { padding: 30px 22px; gap: 28px; border-radius: 26px; }
  .workshop-card::after { right: 20px; font-size: 22px; }
  .contact { gap: 34px; padding-top: 76px; padding-bottom: 80px; }
  .contact-copy { padding-top: 0; }
  .contact-form { padding: 22px 18px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { width: calc(100% - 40px); padding: 36px 0 40px; }
}

@media (max-width: 480px) {
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-benefits span { justify-content: center; padding-inline: 5px; font-size: .77rem; }
  .hero-benefits b { display: none; }
  .formula-visual { min-height: 300px; }
  .night-note { display: none; }
  .workshop-points span { padding: 13px 14px; }
}

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

/* Legal pages + contact-form hardening helpers */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.checkbox a,
.form-fallback a,
.legal-copy a { color: #5b45cf; text-decoration: underline; text-underline-offset: 2px; }
.checkbox a:hover,
.form-fallback a:hover,
.legal-copy a:hover { color: #3f2aa7; }
.form-fallback { margin: 8px 0 0; text-align: center; color: #7d849e; font-size: .86rem; }
.submit-button:disabled { opacity: .65; cursor: wait; transform: none; }

.legal-shell { min-height: 100vh; }
.legal-header .main-nav { justify-content: flex-end; }
.legal-main { padding: 74px 0 100px; }
.legal-hero { max-width: 880px; margin: 0 auto 34px; text-align: center; }
.legal-hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); margin-bottom: 16px; }
.legal-hero p { max-width: 720px; margin-inline: auto; color: var(--muted); font-size: 1.05rem; }
.legal-card { max-width: 920px; margin: 0 auto; padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.95); box-shadow: 0 22px 70px rgba(72,57,154,.08); }
.legal-copy { color: #4f597d; line-height: 1.72; }
.legal-copy h2 { margin: 40px 0 12px; font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -.025em; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin: 25px 0 8px; color: var(--ink); font-size: 1.05rem; }
.legal-copy p, .legal-copy ul { margin: 0 0 14px; }
.legal-copy ul { padding-left: 22px; }
.legal-copy address { font-style: normal; }
.legal-warning { margin-bottom: 28px; padding: 18px 20px; border: 1px solid #f0d98a; border-radius: 16px; background: #fff9df; color: #6c5722; }
.legal-warning strong { color: #4f3c0e; }
.placeholder { display: inline-block; padding: 1px 6px; border-radius: 6px; background: #fff0b8; color: #6b5010; font-weight: 800; }
.legal-meta { margin-top: 30px; color: #9298ad; font-size: .88rem; }

@media (max-width: 700px) {
  .legal-main { padding-top: 48px; padding-bottom: 70px; }
  .legal-card { padding: 26px 20px; border-radius: 22px; }
  .legal-hero { text-align: left; margin-bottom: 24px; }
}
