{"product_id":"getting-started-with-the-enneagram","title":"Getting Started with the Enneagram","description":"\u003cstyle\u003e\n  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }\n\n  :root {\n    --teal:       #1B6B6E;\n    --teal-mid:   #4A9B9E;\n    --teal-light: #A8D5D7;\n    --teal-pale:  #E8F4F4;\n    --cream:      #FAFAF8;\n    --ink:        #1a1a1a;\n    --grey:       #555;\n    --grey-light: #888;\n    --white:      #ffffff;\n    --serif:      'Cormorant Garamond', Georgia, serif;\n    --sans:       'Jost', sans-serif;\n  }\n\n  html { scroll-behavior: smooth; }\n\n  body {\n    font-family: var(--sans);\n    background: var(--cream);\n    color: var(--ink);\n    font-size: 17px;\n    line-height: 1.65;\n    -webkit-font-smoothing: antialiased;\n  }\n\n  \/* ── PRODUCT LAYOUT ── *\/\n  .product-wrap {\n    max-width: 1040px;\n    margin: 0 auto;\n    padding: 60px 52px 80px;\n    display: grid;\n    grid-template-columns: 1fr 1.1fr;\n    gap: 72px;\n    align-items: start;\n  }\n\n  \/* ── LEFT: COVER MOCKUP ── *\/\n  .product-cover { position: sticky; top: 40px; }\n\n  .cover-mockup {\n    background: var(--teal);\n    aspect-ratio: 8.5\/11;\n    display: flex;\n    flex-direction: column;\n    padding: 40px 36px 36px;\n    box-shadow: 14px 18px 52px rgba(0,0,0,0.16), 4px 4px 0 var(--teal-mid);\n    animation: fadeUp 0.8s ease both;\n    position: relative;\n    overflow: hidden;\n  }\n\n  .cover-mockup::before {\n    content: '';\n    position: absolute;\n    bottom: 0; left: 0; right: 0;\n    height: 42%;\n    background: rgba(0,0,0,0.18);\n  }\n\n  @keyframes fadeUp {\n    from { opacity: 0; transform: translateY(24px); }\n    to   { opacity: 1; transform: translateY(0); }\n  }\n\n  .cover-by {\n    font-family: var(--sans);\n    font-size: 10px;\n    letter-spacing: 0.22em;\n    text-transform: uppercase;\n    color: var(--teal-light);\n    margin-bottom: 20px;\n  }\n\n  .cover-title {\n    font-family: var(--serif);\n    font-size: 2.4rem;\n    font-style: italic;\n    font-weight: 300;\n    color: var(--white);\n    line-height: 1.1;\n    margin-bottom: 16px;\n  }\n\n  .cover-rule {\n    width: 48px;\n    height: 1px;\n    background: var(--teal-light);\n    margin-bottom: 14px;\n  }\n\n  .cover-sub {\n    font-family: var(--sans);\n    font-size: 10px;\n    letter-spacing: 0.08em;\n    color: rgba(255,255,255,0.6);\n    line-height: 1.6;\n  }\n\n  .cover-badge {\n    margin-top: auto;\n    position: relative;\n    z-index: 1;\n  }\n\n  .cover-badge-inner {\n    display: inline-flex;\n    align-items: center;\n    gap: 8px;\n    background: rgba(255,255,255,0.12);\n    border: 1px solid rgba(255,255,255,0.2);\n    padding: 8px 14px;\n  }\n\n  .cover-badge-inner span {\n    font-family: var(--sans);\n    font-size: 10px;\n    letter-spacing: 0.12em;\n    text-transform: uppercase;\n    color: var(--teal-light);\n  }\n\n  \/* ── RIGHT: DETAILS ── *\/\n  .product-details { animation: fadeUp 0.8s ease 0.15s both; }\n\n  .eyebrow {\n    font-family: var(--sans);\n    font-size: 11px;\n    font-weight: 500;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    color: var(--teal);\n    margin-bottom: 14px;\n  }\n\n  .product-title {\n    font-family: var(--serif);\n    font-size: clamp(2.2rem, 4vw, 3.2rem);\n    font-weight: 300;\n    line-height: 1.08;\n    color: var(--ink);\n    margin-bottom: 8px;\n  }\n\n  .product-title em { font-style: italic; color: var(--teal); }\n\n  .product-subtitle {\n    font-family: var(--serif);\n    font-size: 1.1rem;\n    font-style: italic;\n    font-weight: 300;\n    color: var(--grey);\n    margin-bottom: 6px;\n  }\n\n  .product-author {\n    font-family: var(--sans);\n    font-size: 13px;\n    letter-spacing: 0.06em;\n    color: var(--grey-light);\n    margin-bottom: 28px;\n  }\n\n  .divider {\n    border: none;\n    border-top: 1px solid var(--teal-pale);\n    margin: 24px 0;\n  }\n\n  .price-row {\n    display: flex;\n    align-items: baseline;\n    gap: 14px;\n    margin-bottom: 20px;\n  }\n\n  .price {\n    font-family: var(--serif);\n    font-size: 2rem;\n    font-weight: 400;\n    color: var(--ink);\n  }\n\n  .price-free {\n    font-family: var(--sans);\n    font-size: 12px;\n    font-weight: 500;\n    letter-spacing: 0.1em;\n    text-transform: uppercase;\n    color: var(--teal);\n    background: var(--teal-pale);\n    border: 1px solid var(--teal-light);\n    padding: 4px 12px;\n  }\n\n  .btn-primary {\n    display: inline-block;\n    background: var(--teal);\n    color: var(--white);\n    font-family: var(--sans);\n    font-size: 13px;\n    font-weight: 500;\n    letter-spacing: 0.12em;\n    text-transform: uppercase;\n    padding: 16px 36px;\n    text-decoration: none;\n    transition: background 0.2s, transform 0.15s;\n    width: 100%;\n    text-align: center;\n    margin-bottom: 12px;\n    display: block;\n  }\n  .btn-primary:hover { background: var(--ink); transform: translateY(-1px); }\n\n  .btn-secondary {\n    display: block;\n    border: 1px solid var(--teal-light);\n    color: var(--teal);\n    font-family: var(--sans);\n    font-size: 13px;\n    font-weight: 500;\n    letter-spacing: 0.12em;\n    text-transform: uppercase;\n    padding: 15px 36px;\n    text-decoration: none;\n    text-align: center;\n    transition: background 0.2s, color 0.2s;\n  }\n  .btn-secondary:hover { background: var(--teal-pale); }\n\n  .product-desc p {\n    font-size: 1.05rem;\n    color: var(--grey);\n    line-height: 1.9;\n    margin-bottom: 16px;\n  }\n\n  .pull-quote {\n    font-family: var(--serif);\n    font-size: 1.2rem;\n    font-style: italic;\n    font-weight: 300;\n    color: var(--teal);\n    border-left: 2px solid var(--teal-light);\n    padding: 10px 0 10px 20px;\n    margin: 24px 0;\n    line-height: 1.55;\n  }\n\n  .product-meta {\n    background: var(--teal-pale);\n    border: 1px solid var(--teal-light);\n    padding: 20px 22px;\n    margin-top: 8px;\n  }\n\n  .meta-row {\n    display: flex;\n    justify-content: space-between;\n    padding: 8px 0;\n    border-bottom: 1px solid var(--teal-light);\n    font-size: 14px;\n  }\n\n  .meta-row:last-child { border-bottom: none; }\n\n  .meta-label {\n    font-family: var(--sans);\n    font-size: 11px;\n    font-weight: 500;\n    letter-spacing: 0.08em;\n    text-transform: uppercase;\n    color: var(--grey);\n  }\n\n  .meta-value {\n    font-family: var(--serif);\n    font-size: 15px;\n    color: var(--ink);\n    text-align: right;\n  }\n\n  \/* ── WHAT'S INSIDE ── *\/\n  .inside-section {\n    background: var(--white);\n    padding: 80px 52px;\n  }\n\n  .inside-inner {\n    max-width: 880px;\n    margin: 0 auto;\n  }\n\n  .section-eyebrow {\n    font-family: var(--sans);\n    font-size: 11px;\n    font-weight: 500;\n    letter-spacing: 0.2em;\n    text-transform: uppercase;\n    color: var(--teal);\n    margin-bottom: 14px;\n    text-align: center;\n  }\n\n  .inside-inner h2 {\n    font-family: var(--serif);\n    font-size: clamp(1.8rem, 2.5vw, 2.4rem);\n    font-weight: 300;\n    color: var(--ink);\n    text-align: center;\n    margin-bottom: 48px;\n    line-height: 1.2;\n  }\n\n  .inside-inner h2 em { font-style: italic; color: var(--teal); }\n\n  .inside-grid {\n    display: grid;\n    grid-template-columns: repeat(3, 1fr);\n    gap: 28px;\n    margin-bottom: 48px;\n  }\n\n  .inside-card {\n    padding: 28px 22px;\n    border: 1px solid var(--teal-light);\n    transition: border-color 0.2s, transform 0.2s;\n  }\n\n  .inside-card:hover { border-color: var(--teal); transform: translateY(-3px); }\n\n  .inside-num {\n    font-family: var(--serif);\n    font-size: 1.8rem;\n    font-style: italic;\n    color: var(--teal-light);\n    display: block;\n    margin-bottom: 10px;\n  }\n\n  .inside-card h3 {\n    font-family: var(--serif);\n    font-size: 1.1rem;\n    font-weight: 400;\n    color: var(--ink);\n    margin-bottom: 8px;\n  }\n\n  .inside-card p {\n    font-size: 0.93rem;\n    color: var(--grey);\n    line-height: 1.75;\n  }\n\n  .worksheets-row {\n    display: grid;\n    grid-template-columns: repeat(3, 1fr);\n    gap: 16px;\n  }\n\n  .worksheet-pill {\n    background: var(--teal-pale);\n    border: 1px solid var(--teal-light);\n    padding: 18px 18px;\n    text-align: center;\n  }\n\n  .worksheet-pill .ws-label {\n    font-family: var(--sans);\n    font-size: 10px;\n    font-weight: 500;\n    letter-spacing: 0.14em;\n    text-transform: uppercase;\n    color: var(--teal);\n    display: block;\n    margin-bottom: 6px;\n  }\n\n  .worksheet-pill .ws-title {\n    font-family: var(--serif);\n    font-size: 1rem;\n    font-style: italic;\n    color: var(--ink);\n  }\n\n  \/* ── WHO IT'S FOR ── *\/\n  .for-section {\n    background: var(--cream);\n    padding: 72px 52px;\n  }\n\n  .for-inner {\n    max-width: 700px;\n    margin: 0 auto;\n  }\n\n  .for-inner h2 {\n    font-family: var(--serif);\n    font-size: clamp(1.8rem, 2.5vw, 2.3rem);\n    font-weight: 300;\n    color: var(--ink);\n    margin-bottom: 32px;\n    line-height: 1.2;\n  }\n\n  .for-inner h2 em { font-style: italic; color: var(--teal); }\n\n  .for-list { list-style: none; }\n\n  .for-list li {\n    font-size: 1.05rem;\n    color: var(--grey);\n    line-height: 1.85;\n    padding: 12px 0 12px 28px;\n    border-bottom: 1px solid var(--teal-pale);\n    position: relative;\n  }\n\n  .for-list li:last-child { border-bottom: none; }\n\n  .for-list li::before {\n    content: '✦';\n    position: absolute;\n    left: 0;\n    color: var(--teal-light);\n    font-size: 11px;\n    top: 15px;\n  }\n\n  \/* ── RESPONSIVE ── *\/\n  @media (max-width: 768px) {\n    .product-wrap {\n      grid-template-columns: 1fr;\n      padding: 40px 28px 64px;\n      gap: 44px;\n    }\n    .product-cover { position: static; }\n    .cover-mockup { max-width: 280px; margin: 0 auto; }\n    .inside-section, .for-section { padding: 60px 28px; }\n    .inside-grid, .worksheets-row { grid-template-columns: 1fr; gap: 16px; }\n  }\n\u003c\/style\u003e\n\u003c!-- PRODUCT --\u003e\n\u003cdiv class=\"product-wrap\"\u003e\n\u003c!-- Cover mockup --\u003e\n\u003cdiv class=\"product-details\"\u003e\n\u003cdiv class=\"product-desc\"\u003e\n\u003cp\u003eI discovered the Enneagram when I was drowning in anxiety and didn't even have a word for what I was experiencing. Reading the description for Type 6 felt like someone had been watching my life without telling me. It was uncomfortable. It was also the most useful thing that had happened to me in years.\u003c\/p\u003e\n\u003cp\u003eThis guide is what I wish had existed back then — plain-language, honest, and focused on the part that actually changes things: how you show up in relationships.\u003c\/p\u003e\n\u003cdiv class=\"pull-quote\"\u003e\"You can't work with what you can't see.\"\u003c\/div\u003e\n\u003cp\u003eIt covers all nine types through a relationships lens, explains wings and stress directions without the jargon, and includes three worksheets to help you find your type and start applying it right away.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003chr class=\"divider\"\u003e\n\u003cdiv class=\"product-meta\"\u003e\n\u003cdiv class=\"meta-row\"\u003e\n\u003cspan class=\"meta-label\"\u003eFormat\u003c\/span\u003e \u003cspan class=\"meta-value\"\u003ePDF — 10 pages\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-row\"\u003e\n\u003cspan class=\"meta-label\"\u003eIncludes\u003c\/span\u003e \u003cspan class=\"meta-value\"\u003e3 worksheets\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-row\"\u003e\n\u003cspan class=\"meta-label\"\u003eFocus\u003c\/span\u003e \u003cspan class=\"meta-value\"\u003eRelationships \u0026amp; self-awareness\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-row\"\u003e\n\u003cspan class=\"meta-label\"\u003eBest for\u003c\/span\u003e \u003cspan class=\"meta-value\"\u003eEnneagram beginners\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"meta-row\"\u003e\n\u003cspan class=\"meta-label\"\u003eAuthor\u003c\/span\u003e \u003cspan class=\"meta-value\"\u003eCara Baker Davis — Type 6\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- WHAT'S INSIDE --\u003e\n\u003csection class=\"inside-section\" id=\"inside\"\u003e\n\u003cdiv class=\"inside-inner\"\u003e\n\u003cp class=\"section-eyebrow\"\u003eWhat's inside\u003c\/p\u003e\n\u003ch2\u003eTen pages. Three worksheets.\u003cbr\u003e\u003cem\u003eNo jargon.\u003c\/em\u003e\n\u003c\/h2\u003e\n\u003cdiv class=\"inside-grid\"\u003e\n\u003cdiv class=\"inside-card\"\u003e\n\u003cspan class=\"inside-num\"\u003e01\u003c\/span\u003e\n\u003ch3\u003eWhat the Enneagram Is\u003c\/h3\u003e\n\u003cp\u003eWhy it's different from every other personality system — and why the \u003cem\u003ewhy\u003c\/em\u003e behind your behavior matters more than the \u003cem\u003ewhat\u003c\/em\u003e.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"inside-card\"\u003e\n\u003cspan class=\"inside-num\"\u003e02\u003c\/span\u003e\n\u003ch3\u003eThe Nine Types\u003c\/h3\u003e\n\u003cp\u003eEvery type described through a relationships lens — what they bring, what they struggle with, and what they actually need even when they're not asking for it.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"inside-card\"\u003e\n\u003cspan class=\"inside-num\"\u003e03\u003c\/span\u003e\n\u003ch3\u003eWings, Stress \u0026amp; Growth\u003c\/h3\u003e\n\u003cp\u003eWhy the same type looks different on everyone — and how to use your stress direction as a warning sign before things go sideways.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"inside-card\"\u003e\n\u003cspan class=\"inside-num\"\u003e04\u003c\/span\u003e\n\u003ch3\u003eUsing It in Relationships\u003c\/h3\u003e\n\u003cp\u003eThe practical part. What changes when you understand your type — and how to apply it to the people around you without turning it into a diagnosis.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"inside-card\"\u003e\n\u003cspan class=\"inside-num\"\u003e05\u003c\/span\u003e\n\u003ch3\u003eWhere to Go From Here\u003c\/h3\u003e\n\u003cp\u003eHonest next steps, recommended reading, and a note from a fellow Type 6 on why your greatest strength lives right next to your greatest struggle.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"inside-card\"\u003e\n\u003cspan class=\"inside-num\"\u003e✦\u003c\/span\u003e\n\u003ch3\u003eThree Worksheets\u003c\/h3\u003e\n\u003cp\u003eFill-in exercises to find your type, map the people in your life, and do a real reflection on your most significant relationship right now.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"worksheets-row\"\u003e\n\u003cdiv class=\"worksheet-pill\"\u003e\n\u003cspan class=\"ws-label\"\u003eWorksheet 1\u003c\/span\u003e \u003cspan class=\"ws-title\"\u003eFinding Your Type\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"worksheet-pill\"\u003e\n\u003cspan class=\"ws-label\"\u003eWorksheet 2\u003c\/span\u003e \u003cspan class=\"ws-title\"\u003eMap Your People\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"worksheet-pill\"\u003e\n\u003cspan class=\"ws-label\"\u003eWorksheet 3\u003c\/span\u003e \u003cspan class=\"ws-title\"\u003eThe Relationship Reflection\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- WHO IT'S FOR --\u003e\n\u003csection class=\"for-section\"\u003e\n\u003cdiv class=\"for-inner\"\u003e\n\u003ch2\u003eThis guide is for you if \u003cem\u003eany of this sounds familiar\u003c\/em\u003e\n\u003c\/h2\u003e\n\u003cul class=\"for-list\"\u003e\n\u003cli\u003eYou've heard of the Enneagram but don't know where to start.\u003c\/li\u003e\n\u003cli\u003eYou keep ending up in the same patterns in your relationships and can't figure out why.\u003c\/li\u003e\n\u003cli\u003eYou took a test online, got a number, and weren't sure what to do with it.\u003c\/li\u003e\n\u003cli\u003eYou want to understand the people in your life better — a partner, a parent, a difficult coworker — without projecting onto them.\u003c\/li\u003e\n\u003cli\u003eYou're doing the work of starting over, healing, or figuring out who you are outside of a role you used to play, and you want a useful framework for that.\u003c\/li\u003e\n\u003cli\u003eYou believe self-awareness is one of the most important things you can develop — and you want a guide that treats it like the serious practice it is.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e","brand":"Paper Tiger","offers":[{"title":"Default Title","offer_id":51344393044256,"sku":null,"price":0.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0852\/1121\/8208\/files\/Screenshot2026-03-14at11.20.05AM.png?v=1773505222","url":"https:\/\/papertiger.store\/products\/getting-started-with-the-enneagram","provider":"Paper Tiger","version":"1.0","type":"link"}