{"product_id":"personalised-vagus-nerve-strategy-for-educators","title":"Personalised vagus nerve strategy for educators","description":"\u003cstyle\u003e\n  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }\n\n  :root {\n    --teal: #1D9E75;\n    --teal-dark: #0F6E56;\n    --teal-light: #E1F5EE;\n    --teal-mid: #9FE1CB;\n    --text: #1a1a1a;\n    --muted: #6b7280;\n    --border: #e5e7eb;\n    --bg: #fafaf8;\n    --white: #ffffff;\n  }\n\n  html { scroll-behavior: smooth; }\n\n  body {\n    font-family: 'DM Sans', sans-serif;\n    background: var(--bg);\n    color: var(--text);\n    font-size: 16px;\n    line-height: 1.6;\n    -webkit-font-smoothing: antialiased;\n  }\n\n  \/* NAV *\/\n  nav {\n    position: fixed;\n    top: 0; left: 0; right: 0;\n    background: rgba(250,250,248,0.92);\n    backdrop-filter: blur(8px);\n    border-bottom: 1px solid var(--border);\n    padding: 0 24px;\n    height: 60px;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    z-index: 100;\n  }\n  .nav-logo {\n    font-family: 'DM Serif Display', serif;\n    font-size: 17px;\n    color: var(--teal-dark);\n    text-decoration: none;\n  }\n  .nav-logo span { color: var(--muted); font-size: 13px; font-family: 'DM Sans', sans-serif; font-weight: 300; margin-left: 8px; }\n  .nav-cta {\n    background: var(--teal);\n    color: #fff;\n    text-decoration: none;\n    font-size: 13px;\n    font-weight: 500;\n    padding: 8px 18px;\n    border-radius: 6px;\n    transition: background 0.2s;\n  }\n  .nav-cta:hover { background: var(--teal-dark); }\n\n  \/* HERO *\/\n  .hero {\n    padding: 120px 24px 80px;\n    max-width: 680px;\n    margin: 0 auto;\n    text-align: center;\n  }\n  .hero-badge {\n    display: inline-block;\n    background: var(--teal-light);\n    color: var(--teal-dark);\n    font-size: 12px;\n    font-weight: 500;\n    letter-spacing: 0.8px;\n    text-transform: uppercase;\n    padding: 6px 16px;\n    border-radius: 99px;\n    margin-bottom: 28px;\n  }\n  .hero h1 {\n    font-family: 'DM Serif Display', serif;\n    font-size: clamp(36px, 6vw, 54px);\n    line-height: 1.15;\n    color: var(--text);\n    margin-bottom: 20px;\n  }\n  .hero h1 em {\n    font-style: italic;\n    color: var(--teal);\n  }\n  .hero p {\n    font-size: 18px;\n    color: var(--muted);\n    line-height: 1.7;\n    margin-bottom: 40px;\n    font-weight: 300;\n  }\n  .hero-cta {\n    display: inline-block;\n    background: var(--teal);\n    color: #fff;\n    text-decoration: none;\n    font-size: 16px;\n    font-weight: 500;\n    padding: 16px 36px;\n    border-radius: 8px;\n    transition: background 0.2s, transform 0.15s;\n  }\n  .hero-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }\n  .hero-sub {\n    display: block;\n    margin-top: 14px;\n    font-size: 13px;\n    color: var(--muted);\n  }\n\n  \/* ENGINE LEVELS *\/\n  .levels {\n    padding: 60px 24px;\n    max-width: 860px;\n    margin: 0 auto;\n  }\n  .levels-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));\n    gap: 16px;\n  }\n  .level-card {\n    border-radius: 12px;\n    padding: 24px;\n    border: 1px solid transparent;\n  }\n  .level-card.blue  { background: #EFF6FF; border-color: #BFDBFE; }\n  .level-card.green { background: var(--teal-light); border-color: var(--teal-mid); }\n  .level-card.red   { background: #FEF2F2; border-color: #FECACA; }\n  .level-dot {\n    width: 12px; height: 12px;\n    border-radius: 50%;\n    display: inline-block;\n    margin-right: 8px;\n    vertical-align: middle;\n  }\n  .level-dot.blue  { background: #3B82F6; }\n  .level-dot.green { background: var(--teal); }\n  .level-dot.red   { background: #EF4444; }\n  .level-name {\n    font-size: 15px;\n    font-weight: 500;\n    margin-bottom: 8px;\n  }\n  .level-name.blue  { color: #1E40AF; }\n  .level-name.green { color: var(--teal-dark); }\n  .level-name.red   { color: #991B1B; }\n  .level-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }\n\n  \/* HOW IT WORKS *\/\n  .how {\n    background: var(--white);\n    border-top: 1px solid var(--border);\n    border-bottom: 1px solid var(--border);\n    padding: 80px 24px;\n  }\n  .how-inner { max-width: 760px; margin: 0 auto; }\n  .section-label {\n    font-size: 11px;\n    font-weight: 500;\n    letter-spacing: 1.2px;\n    text-transform: uppercase;\n    color: var(--teal);\n    margin-bottom: 12px;\n  }\n  .section-title {\n    font-family: 'DM Serif Display', serif;\n    font-size: clamp(28px, 4vw, 38px);\n    line-height: 1.2;\n    margin-bottom: 48px;\n    color: var(--text);\n  }\n  .steps { display: flex; flex-direction: column; gap: 0; }\n  .step {\n    display: grid;\n    grid-template-columns: 48px 1fr;\n    gap: 20px;\n    padding-bottom: 36px;\n    position: relative;\n  }\n  .step:not(:last-child)::before {\n    content: '';\n    position: absolute;\n    left: 23px;\n    top: 48px;\n    bottom: 0;\n    width: 1px;\n    background: var(--border);\n  }\n  .step-num {\n    width: 48px; height: 48px;\n    border-radius: 50%;\n    background: var(--teal-light);\n    color: var(--teal-dark);\n    font-size: 16px;\n    font-weight: 500;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    flex-shrink: 0;\n  }\n  .step-content h3 {\n    font-size: 17px;\n    font-weight: 500;\n    margin-bottom: 6px;\n    padding-top: 10px;\n  }\n  .step-content p { font-size: 14px; color: var(--muted); line-height: 1.7; }\n\n  \/* PRICING *\/\n  .pricing {\n    padding: 80px 24px;\n    max-width: 520px;\n    margin: 0 auto;\n    text-align: center;\n  }\n  .price-card {\n    background: var(--white);\n    border: 1px solid var(--border);\n    border-radius: 16px;\n    padding: 40px 36px;\n    position: relative;\n    overflow: hidden;\n    text-align: left;\n  }\n  .price-card::before {\n    content: '';\n    position: absolute;\n    top: 0; left: 0; right: 0;\n    height: 4px;\n    background: var(--teal);\n  }\n  .price-tag {\n    display: flex;\n    align-items: baseline;\n    gap: 4px;\n    margin-bottom: 6px;\n  }\n  .price-tag .currency { font-size: 22px; font-weight: 500; color: var(--teal-dark); padding-top: 6px; }\n  .price-tag .amount { font-family: 'DM Serif Display', serif; font-size: 64px; color: var(--teal-dark); line-height: 1; }\n  .price-tag .period { font-size: 15px; color: var(--muted); }\n  .price-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; }\n  .price-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }\n  .features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }\n  .features li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text); }\n  .features li::before {\n    content: '';\n    width: 18px; height: 18px;\n    border-radius: 50%;\n    background: var(--teal-light);\n    flex-shrink: 0;\n    margin-top: 1px;\n    background-image: url(\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l3 3 5-5' stroke='%231D9E75' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'\/%3E%3C\/svg%3E\");\n    background-repeat: no-repeat;\n    background-position: center;\n  }\n  .subscribe-btn {\n    display: block;\n    width: 100%;\n    background: var(--teal);\n    color: #fff;\n    text-decoration: none;\n    font-size: 16px;\n    font-weight: 500;\n    padding: 16px;\n    border-radius: 8px;\n    text-align: center;\n    transition: background 0.2s, transform 0.15s;\n    border: none;\n    cursor: pointer;\n  }\n  .subscribe-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }\n  .price-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }\n  .team-note {\n    margin-top: 24px;\n    background: var(--teal-light);\n    border-radius: 10px;\n    padding: 18px 20px;\n    font-size: 14px;\n    color: var(--teal-dark);\n    line-height: 1.6;\n    text-align: left;\n  }\n  .team-note strong { font-weight: 500; }\n\n  \/* WHY *\/\n  .why {\n    background: var(--teal-dark);\n    padding: 80px 24px;\n  }\n  .why-inner { max-width: 760px; margin: 0 auto; }\n  .why .section-label { color: var(--teal-mid); }\n  .why .section-title { color: #fff; margin-bottom: 40px; }\n  .why-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n    gap: 24px;\n  }\n  .why-item { }\n  .why-item h4 { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 6px; }\n  .why-item p { font-size: 14px; color: var(--teal-mid); line-height: 1.7; }\n\n  \/* PRIVACY *\/\n  .privacy {\n    background: var(--white);\n    border-top: 1px solid var(--border);\n    padding: 48px 24px;\n    text-align: center;\n  }\n  .privacy-inner { max-width: 560px; margin: 0 auto; }\n  .privacy-icon { font-size: 28px; margin-bottom: 12px; }\n  .privacy h3 { font-size: 18px; font-weight: 500; margin-bottom: 10px; }\n  .privacy p { font-size: 14px; color: var(--muted); line-height: 1.7; }\n\n  \/* FOOTER *\/\n  footer {\n    padding: 32px 24px;\n    text-align: center;\n    border-top: 1px solid var(--border);\n    font-size: 13px;\n    color: var(--muted);\n  }\n  footer a { color: var(--teal); text-decoration: none; }\n\n  \/* ANIMATIONS *\/\n  @keyframes fadeUp {\n    from { opacity: 0; transform: translateY(20px); }\n    to   { opacity: 1; transform: translateY(0); }\n  }\n  .hero-badge, .hero h1, .hero p, .hero-cta, .hero-sub {\n    animation: fadeUp 0.6s ease both;\n  }\n  .hero-badge { animation-delay: 0.05s; }\n  .hero h1    { animation-delay: 0.15s; }\n  .hero p     { animation-delay: 0.25s; }\n  .hero-cta   { animation-delay: 0.35s; }\n  .hero-sub   { animation-delay: 0.4s; }\n\n  @media (max-width: 600px) {\n    .price-card { padding: 28px 22px; }\n    .price-tag .amount { font-size: 52px; }\n  }\n\u003c\/style\u003e\n\u003cnav\u003e\u003cspan class=\"hero-badge\"\u003eFor Early Childhood Educators\u003c\/span\u003e\u003c\/nav\u003e\u003c!-- HERO --\u003e\n\u003csection class=\"hero\"\u003e\n\u003ch1\u003eYour reset is one\u003cbr\u003e\u003cem\u003epulse check\u003c\/em\u003e away\u003c\/h1\u003e\n\u003cp\u003eA personalised vagus nerve strategy delivered to your inbox every time you check in, matched to exactly how your body is feeling right now.\u003c\/p\u003e\n\u003cspan class=\"hero-sub\"\u003eCancel any time. No lock-in.\u003c\/span\u003e\u003c\/section\u003e\n\u003c!-- ENGINE LEVELS --\u003e\n\u003csection class=\"levels\"\u003e\n\u003cdiv class=\"levels-grid\"\u003e\n\u003cdiv class=\"level-card green\"\u003e\n\u003cdiv class=\"level-name green\"\u003e\n\u003cspan class=\"level-dot green\"\u003e\u003c\/span\u003eSteady and Strong\u003c\/div\u003e\n\u003cp class=\"level-desc\"\u003eYou feel calm, connected, and ready. The Square strategy keeps you here.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"level-card red\"\u003e\n\u003cdiv class=\"level-name red\"\u003e\n\u003cspan class=\"level-dot red\"\u003e\u003c\/span\u003eBubbly and Fast\u003c\/div\u003e\n\u003cp class=\"level-desc\"\u003eRushed, overwhelmed, heart racing. The Star strategy brings you back down.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"level-card blue\"\u003e\n\u003cdiv class=\"level-name blue\"\u003e\n\u003cspan class=\"level-dot blue\"\u003e\u003c\/span\u003eSlow and Heavy\u003c\/div\u003e\n\u003cp class=\"level-desc\"\u003eTired, flat, struggling to focus. The Circle strategy lifts you back up.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- HOW IT WORKS --\u003e\n\u003csection class=\"how\" id=\"how\"\u003e\n\u003cdiv class=\"how-inner\"\u003e\n\u003cp class=\"section-label\"\u003eHow it works\u003c\/p\u003e\n\u003ch2 class=\"section-title\"\u003eTwo minutes. One reset.\u003cbr\u003eAny time you need it.\u003c\/h2\u003e\n\u003cdiv class=\"steps\"\u003e\n\u003cdiv class=\"step\"\u003e\n\u003cdiv class=\"step-num\"\u003e1\u003c\/div\u003e\n\u003cdiv class=\"step-content\"\u003e\n\u003ch3\u003eNotice your engine level\u003c\/h3\u003e\n\u003cp\u003eOpen the pulse check form on your phone. It takes under two minutes. No login, no app to download — just a link you save to your home screen.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step\"\u003e\n\u003cdiv class=\"step-num\"\u003e2\u003c\/div\u003e\n\u003cdiv class=\"step-content\"\u003e\n\u003ch3\u003eReceive your personalised strategy\u003c\/h3\u003e\n\u003cp\u003eWithin seconds an email arrives with a somatic reset strategy matched to your current engine state. Each strategy is different — you work through the full library before anything repeats.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step\"\u003e\n\u003cdiv class=\"step-num\"\u003e3\u003c\/div\u003e\n\u003cdiv class=\"step-content\"\u003e\n\u003ch3\u003eReframe what you just observed\u003c\/h3\u003e\n\u003cp\u003eIf a child's behaviour triggered your check-in, the tool helps you swap a behavioural label for a somatic one — and suggests a movement strategy for the child too.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step\"\u003e\n\u003cdiv class=\"step-num\"\u003e4\u003c\/div\u003e\n\u003cdiv class=\"step-content\"\u003e\n\u003ch3\u003eBuild your toolkit over time\u003c\/h3\u003e\n\u003cp\u003eEvery check-in teaches you something new about your own nervous system. Over weeks you naturally build a full somatic toolkit — without sitting through a single training day.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- WHY --\u003e\n\u003csection class=\"why\"\u003e\n\u003cdiv class=\"why-inner\"\u003e\n\u003cp class=\"section-label\"\u003eWhy it works\u003c\/p\u003e\n\u003ch2 class=\"section-title\"\u003eBuilt on The Regulated Educator framework\u003c\/h2\u003e\n\u003cdiv class=\"why-grid\"\u003e\n\u003cdiv class=\"why-item\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"why-item\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"why-item\"\u003e\n\u003ch4\u003eEvidence-based rotation\u003c\/h4\u003e\n\u003cp\u003eThe system cycles through your library so you discover every strategy before any repeats.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"why-item\"\u003e\n\u003ch4\u003eCompletely private\u003c\/h4\u003e\n\u003cp\u003eYour responses are never shared with your director or employer. This is for you, not for anyone else.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- PRICING --\u003e\n\u003csection class=\"pricing\" id=\"pricing\"\u003e\n\u003cp class=\"section-label\" style=\"text-align: center;\"\u003ePricing\u003c\/p\u003e\n\u003ch2 class=\"section-title\" style=\"text-align: center; margin-bottom: 32px;\"\u003eSimple and honest\u003c\/h2\u003e\n\u003cdiv class=\"price-card\"\u003e\n\u003cdiv class=\"price-tag\"\u003e\n\u003cspan class=\"currency\"\u003e$\u003c\/span\u003e \u003cspan class=\"amount\"\u003e12\u003c\/span\u003e \u003cspan class=\"period\"\u003e\/ month\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cp class=\"price-desc\"\u003eIndividual educator subscription — use it as often as you need.\u003c\/p\u003e\n\u003chr class=\"price-divider\"\u003e\n\u003cul class=\"features\"\u003e\n\u003cli\u003eUnlimited pulse check submissions\u003c\/li\u003e\n\u003cli\u003ePersonalised strategy email after every check-in\u003c\/li\u003e\n\u003cli\u003eRotating library — a new strategy every time\u003c\/li\u003e\n\u003cli\u003eReframing tool for challenging child behaviour\u003c\/li\u003e\n\u003cli\u003eRoom audit — identify and fix your sensory leaks\u003c\/li\u003e\n\u003cli\u003eCompletely private — never shared with your employer\u003c\/li\u003e\n\u003cli\u003eCancel any time — no lock-in, no questions asked\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003ch2 class=\"price-note\"\u003eAfter subscribing you will receive your pulse check link instantly in your order confirmation email.\u003c\/h2\u003e\n\u003c\/section\u003e\n\u003c!-- PRIVACY --\u003e\n\u003csection class=\"privacy\"\u003e\n\u003cdiv class=\"privacy-inner\"\u003e\n\u003ch3\u003eYour data stays yours\u003c\/h3\u003e\n\u003cp\u003eYour responses are completely confidential. They are collected by Play Move Improve and are never shared with your centre director or employer. Your data is used only to send you your personalised reset strategy and to help us improve our support for educators across Australia.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003cfooter\u003e\n\u003cp\u003e© 2026 Play Move Improve — The Regulated Educator  |  robyn\u003ca href=\"mailto:hello@playmoveimprove.com.au\"\u003e@playmoveimprove.com.au\u003c\/a\u003e\u003c\/p\u003e\n\u003c\/footer\u003e","brand":"Play Move Improve","offers":[{"title":"Default Title","offer_id":45062449135669,"sku":null,"price":12.0,"currency_code":"AUD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0013\/6164\/1525\/files\/Gemini_Generated_Image_h8f2cbh8f2cbh8f2.png?v=1773892842","url":"https:\/\/playmoveimprove.com.au\/products\/personalised-vagus-nerve-strategy-for-educators","provider":"Play Move Improve","version":"1.0","type":"link"}