:root {
  --bg: #fff7ef;
  --bg2: #ffe8d6;
  --ink: #241610;
  --muted: #6d5143;
  --orange: #ff6b3d;
  --orange-dark: #e94e1b;
  --pink: #ff8ca8;
  --cream: #fffdf8;
  --green: #19b65b;
  --line: rgba(74, 38, 20, .12);
  --shadow: 0 24px 70px rgba(95, 43, 18, .18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 189, 122, .58), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255, 140, 168, .28), transparent 25%),
    linear-gradient(180deg, var(--bg) 0%, #fffaf3 58%, #fff 100%);
}
a { color: inherit; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: min(1180px, calc(100% - 28px)); margin: 14px auto 0; padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.8); border-radius: 999px;
  background: rgba(255,253,248,.78); backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(89,43,17,.08);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--pink)); color: #fff; font-weight: 950; letter-spacing: -.06em; }
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: .76rem; margin-top: 1px; }
nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
nav a { text-decoration: none; font-weight: 850; color: #5d3e30; padding: 10px 12px; border-radius: 999px; font-size: .92rem; }
.nav-cta { background: #2a140d; color: #fff4da; }
.hero { width: min(1180px, calc(100% - 32px)); margin: 0 auto; min-height: calc(100vh - 76px); display: grid; grid-template-columns: 1.08fr .92fr; gap: 42px; align-items: center; padding: 48px 0 56px; }
.eyebrow { margin: 0 0 13px; color: var(--orange-dark); font-size: .78rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(2.8rem, 7.6vw, 5.9rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 5vw, 4.25rem); }
h3 { font-size: 1.35rem; }
.subtitle, .blog-hero p, .section-head p, .split p, .manifesto p { color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.28rem); line-height: 1.55; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 18px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 950; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(180deg, #1fd46c 0%, var(--green) 58%, #108743 100%); color: #fff; box-shadow: 0 18px 36px rgba(25, 182, 91, .28); }
.btn-primary::before { content: "💬"; margin-right: 8px; }
.btn-ghost { background: rgba(255,255,255,.72); border-color: var(--line); }
.btn-large { min-height: 62px; padding-inline: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-row span { display: inline-flex; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid var(--line); color: #5d3e30; font-weight: 750; font-size: .9rem; }
.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; background: linear-gradient(135deg, rgba(255, 210, 83, .62), rgba(255, 98, 61, .2), rgba(255,140,168,.22)); filter: blur(4px); animation: pulse 4.2s ease-in-out infinite; }
.visual-stack { position: relative; width: min(460px, 92vw); }
.main-card { position: relative; z-index: 2; display: block; width: 100%; border-radius: 36px; box-shadow: var(--shadow); transform: rotate(1deg); }
.mini-card { position: absolute; z-index: 3; width: 44%; border-radius: 22px; box-shadow: 0 18px 48px rgba(64,30,14,.18); border: 6px solid rgba(255,255,255,.8); }
.card-a { left: -8%; bottom: -7%; transform: rotate(-6deg); }
.card-b { right: -9%; top: -7%; transform: rotate(5deg); }
.section { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 76px 0; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 34px; }
.section-dark, .final-cta { width: min(1120px, calc(100% - 32px)); margin: 20px auto; border-radius: 42px; color: #fff9ed; background: linear-gradient(135deg, #2a140d, #522010 55%, #ff6b3d 140%); box-shadow: var(--shadow); padding: clamp(34px, 7vw, 72px); }
.section-dark .eyebrow, .final-cta .eyebrow { color: #ffd483; }
.section-dark h2, .final-cta h2 { max-width: 900px; }
.section-dark p, .final-cta p { color: rgba(255,249,237,.82); max-width: 820px; }
.manifesto-grid, .plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 28px; }
.manifesto-grid article, .plan-grid article { padding: 20px; border-radius: 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.manifesto-grid strong, .manifesto-grid span, .plan-grid strong, .plan-grid span { display: block; }
.manifesto-grid span, .plan-grid span { margin-top: 6px; color: rgba(255,249,237,.76); line-height: 1.4; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.category-card { min-height: 245px; padding: 24px; border-radius: 30px; background: rgba(255,255,255,.82); border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(89,43,17,.08); }
.category-card.featured { background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,232,214,.9)); }
.icon { font-size: 2rem; display: inline-grid; width: 54px; height: 54px; place-items: center; border-radius: 18px; background: #fff4e7; margin-bottom: 18px; }
.category-card p, .steps p, .blog-card p { color: var(--muted); line-height: 1.5; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: center; }
.post-list { display: grid; gap: 12px; }
.post-list a { display: grid; gap: 6px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.82); border: 1px solid var(--line); text-decoration: none; }
.post-list span { color: var(--orange-dark); font-weight: 850; font-size: .9rem; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.steps article { padding: 22px; border-radius: 28px; background: rgba(255,255,255,.82); border: 1px solid var(--line); }
.steps span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #2a140d; color: #fff4da; font-weight: 950; margin-bottom: 18px; }
.final-cta { text-align: center; margin-bottom: 70px; }
.final-cta h2, .final-cta p { margin-left: auto; margin-right: auto; }
.final-cta small { display: block; margin-top: 16px; color: rgba(255,249,237,.72); }
footer { display: grid; gap: 6px; text-align: center; padding: 32px 18px 70px; color: var(--muted); font-size: .92rem; }
footer strong { color: var(--ink); }
.blog-hero { width: min(960px, calc(100% - 32px)); margin: 0 auto; padding: 90px 0 28px; text-align: center; }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; align-items: start; }
.blog-card { overflow: hidden; border-radius: 30px; background: rgba(255,255,255,.84); border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(89,43,17,.08); }
.blog-card.big { grid-column: 1 / -1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; }
.blog-card img { display: block; width: 100%; height: 260px; object-fit: contain; object-position: center; background: #fff; }
.blog-card.big img { height: 430px; }
.blog-card div { padding: 24px; }
.blog-card span { color: var(--orange-dark); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: .78rem; }
.blog-card h2 { margin: 9px 0 12px; font-size: clamp(1.6rem, 3vw, 2.8rem); }
.blog-card a { color: var(--green); font-weight: 950; text-decoration: none; }
.content-plan { border-radius: 40px; background: #2a140d; color: #fff9ed; padding: clamp(34px, 6vw, 58px); }
.content-plan .eyebrow { color: #ffd483; }
.content-plan .plan-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
@keyframes pulse { 0%,100% { transform: scale(.98); opacity:.88; } 50% { transform: scale(1.04); opacity:1; } }
@media (max-width: 860px) {
  .site-header { position: static; border-radius: 26px; align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero, .split, .blog-card.big { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 42px; }
  .hero-visual { min-height: 430px; }
  .category-grid, .manifesto-grid, .steps, .blog-grid, .content-plan .plan-grid { grid-template-columns: 1fr; }
  .category-card { min-height: auto; }
  h1 { font-size: clamp(2.6rem, 13vw, 4.6rem); }
  .mini-card { width: 40%; }
}
@media (max-width: 520px) {
  .site-header, .hero, .section, .section-dark, .final-cta, .blog-hero { width: min(100% - 20px, 1120px); }
  nav a { padding: 9px 10px; font-size: .86rem; }
  .brand small { display: none; }
  .hero-visual { min-height: 360px; }
  .main-card { border-radius: 28px; }
  .card-a { left: 0; }
  .card-b { right: 0; }
}

/* V2 blog/article growth system */
.article-page { padding: 48px 20px 72px; background: linear-gradient(180deg, #fff8f2 0%, #fff 55%); }
.article-shell { width: min(920px, 100%); margin: 0 auto; background: rgba(255,255,255,.84); border: 1px solid rgba(255,107,61,.16); border-radius: 34px; padding: clamp(24px, 5vw, 56px); box-shadow: 0 24px 70px rgba(92, 50, 31, .10); }
.article-shell h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: .98; margin: 10px 0 18px; color: #2b1810; letter-spacing: -0.045em; }
.article-shell h2 { font-size: clamp(1.35rem, 3vw, 2rem); color: #3b2016; margin-top: 38px; }
.article-shell p { color: #694436; font-size: 1.06rem; line-height: 1.78; }
.article-hero-image { margin: 34px 0; border-radius: 30px; overflow: hidden; background: #ffe3d4; }
.article-hero-image img { width: 100%; max-height: 520px; object-fit: cover; display: block; }
.answer-box, .summary-box, .faq-section { margin-top: 28px; padding: 24px; border-radius: 26px; border: 1px solid rgba(255, 107, 61, .18); background: #fff8f2; }
.answer-box { background: linear-gradient(135deg, #fff8f2, #fff0e7); }
.answer-box ul { margin: 14px 0 0; padding-left: 22px; color: #694436; line-height: 1.7; }
.faq-section h3 { margin-top: 20px; color: #3b2016; }
.product-callout, .group-callout { margin-top: 36px; padding: 28px; border-radius: 28px; background: #fff0e7; border: 1px solid rgba(255, 107, 61, .22); }
.group-callout { background: linear-gradient(135deg, #ff6b3d, #ff9f68); color: white; }
.group-callout h2, .group-callout p { color: white; }
.disclosure { margin-top: 28px; font-size: .88rem !important; color: #8a6555 !important; }
.blog-grid { width: min(1120px, 100%); margin: 0 auto 64px; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.blog-card { background: #fff; border-radius: 28px; overflow: hidden; border: 1px solid rgba(255, 107, 61, .16); box-shadow: 0 18px 46px rgba(92, 50, 31, .09); }
.blog-card img { width: 100%; height: 210px; object-fit: cover; display: block; background: #fff0e7; }
.blog-card span { display: inline-block; margin: 20px 22px 0; color: #ff6b3d; font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.blog-card h2 { margin: 10px 22px; font-size: 1.35rem; line-height: 1.08; color: #2b1810; }
.blog-card p { margin: 0 22px 18px; color: #765042; line-height: 1.55; }
.blog-card a { display: inline-block; margin: 0 22px 24px; color: #ff6b3d; font-weight: 800; text-decoration: none; }
footer a { color: inherit; }
@media (max-width: 720px) { .article-shell { border-radius: 24px; padding: 22px; } .article-page { padding: 22px 12px 48px; } .blog-card img { height: 180px; } }

.top-product-link{margin:22px 0 30px;padding:18px;border:1px solid rgba(230,116,45,.22);border-radius:22px;background:#fff7ef;text-align:center}.top-product-link .btn{display:inline-flex;align-items:center;justify-content:center;gap:.35rem}.top-product-link p{margin:.7rem 0 0;color:#7a6254;font-size:.92rem}
