/* Pop Fizz — shared styles (dark "Spritz" direction).
   Used by both the live placeholder (index.php) and the full site (index_new.php). */
:root{
  --bg:#0f0b15;
  --bg2:#140f1d;
  --panel:#191322;
  --panel2:#1f1830;
  --ink:#f4eff7;
  --ink-soft:#a99fb8;
  --cherry:#ff3d63;
  --cherry-bright:#ff5a78;
  --line:rgba(255,255,255,.09);
  --line2:rgba(255,255,255,.14);
  --shadow:0 1px 2px rgba(0,0,0,.4),0 24px 60px -24px rgba(0,0,0,.7);
  --serif:"Instrument Serif",Georgia,serif;
  --sans:"Hanken Grotesque",system-ui,sans-serif;
  /* type scale — keep to these: hero (home only), H1, H2, H3, body, small */
  --fs-hero:132px;
  --fs-h1:92px;
  --fs-h2:52px;
  --fs-h3:27px;
  --fs-body:16.5px;
  --fs-small:13px;
  /* theme-dependent surfaces */
  --nav-bg:rgba(15,11,21,.9);
  --tint:rgba(255,255,255,.018);
  --bub:rgba(255,255,255,.13);
  --bub-ring:rgba(255,255,255,.20);
}
/* ---------- Light theme ---------- */
:root[data-theme="light"]{
  --bg:#fbf7f2;
  --bg2:#f3ede4;
  --panel:#ffffff;
  --panel2:#f6f0e8;
  --ink:#1a1320;
  --ink-soft:#6c6175;
  --cherry:#ff3d63;
  --cherry-bright:#d81b43;
  --line:rgba(20,10,30,.10);
  --line2:rgba(20,10,30,.16);
  --shadow:0 1px 2px rgba(20,10,30,.05),0 24px 60px -24px rgba(20,10,30,.20);
  --nav-bg:rgba(251,247,242,.9);
  --tint:rgba(20,10,30,.025);
  --bub:rgba(20,10,30,.06);
  --bub-ring:rgba(20,10,30,.12);
  color-scheme:light;
}
:root{color-scheme:dark}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--sans);background:var(--bg);color:var(--ink);-webkit-font-smoothing:antialiased;line-height:1.55;overflow-x:hidden}
.wrap{max-width:1180px;margin:0 auto;padding:0 40px}
a{color:inherit;text-decoration:none}
::selection{background:var(--cherry);color:#fff}

/* ---------- Ambient bubble field ---------- */
.fizz-bg{position:fixed;inset:0;z-index:0;overflow:hidden;pointer-events:none}
.fizz-bg span{position:absolute;bottom:-50px;border-radius:50%;animation:floatUp var(--dur,16s) linear forwards;will-change:transform,opacity}
@keyframes floatUp{
  0%{transform:translate(0,0) scale(.9);opacity:0}
  14%{opacity:var(--peak,.5)}
  86%{opacity:var(--peak,.5)}
  100%{transform:translate(var(--drift,0),-114vh) scale(1);opacity:0}
}
.bub{background:var(--bub)}
.bub.ring{background:transparent;border:1px solid var(--bub-ring)}
.bub.cherry{background:rgba(255,61,99,.30)}
.bub.cherry.ring{background:transparent;border:1px solid rgba(255,90,120,.45)}
.layer{position:relative;z-index:1}
@media (prefers-reduced-motion:reduce){.fizz-bg span{animation:none}}

/* ---------- Brand wordmark ---------- */
.brand{display:flex;align-items:center;gap:9px;font-family:var(--serif);font-size:30px;letter-spacing:.2px;white-space:nowrap}
.brand-name{white-space:nowrap}
.brand .pop{color:var(--ink)}
.brand .fizz{color:var(--cherry);font-style:italic}
@keyframes rise{0%,100%{transform:translateY(0);opacity:.6}50%{transform:translateY(-7px);opacity:1}}

/* ---------- Buttons & quiet links ---------- */
.btn{font-family:var(--sans);font-weight:600;font-size:15px;border:none;cursor:pointer;border-radius:100px;white-space:nowrap;transition:transform .15s ease,box-shadow .15s ease,background .15s ease,filter .15s}
.btn:hover{transform:translateY(-1px)}
.btn-light{background:var(--ink);color:var(--bg);padding:11px 22px}
.btn-light:hover{filter:brightness(1.08)}
.btn-cherry{background:var(--cherry);color:#fff;padding:13px 26px}
.btn-cherry:hover{filter:brightness(1.08)}
.btn-ghost{background:rgba(255,255,255,.04);color:var(--ink);padding:13px 22px;border:1.5px solid var(--line2)}
.btn-ghost:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.3)}
.link-quiet{font-size:15px;font-weight:600;color:var(--ink);display:inline-flex;align-items:center;gap:6px;white-space:nowrap}
.link-quiet .arr{transition:transform .15s}
.link-quiet:hover .arr{transform:translateX(4px)}

/* ---------- Nav ---------- */
nav{position:sticky;top:0;z-index:50;background:var(--nav-bg);border-bottom:1px solid var(--line)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:74px}
.nav-links{display:flex;gap:30px;font-size:15px;font-weight:500;color:var(--ink-soft)}
.nav-links a:hover{color:var(--ink)}
.nav-links a.active{color:var(--ink)}
.nav-cta{display:flex;align-items:center;gap:14px}

/* ---------- Hero ---------- */
header.hero{padding:104px 0 92px;position:relative}
.kicker{display:inline-flex;align-items:center;gap:9px;font-size:var(--fs-small);font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--cherry-bright);background:rgba(255,61,99,.08);border:1px solid rgba(255,61,99,.25);padding:7px 15px;border-radius:100px;margin-bottom:28px}
.kicker .pulse{width:8px;height:8px;border-radius:50%;background:var(--cherry);box-shadow:0 0 0 0 var(--cherry);animation:pulse 2.4s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(255,61,99,.55)}70%{box-shadow:0 0 0 11px rgba(255,61,99,0)}100%{box-shadow:0 0 0 0 rgba(255,61,99,0)}}
h1{font-family:var(--serif);font-weight:400;font-size:var(--fs-h1);line-height:1.02;letter-spacing:-1.5px;margin-bottom:30px;max-width:13ch}
/* Front page hero — the largest type on the site */
.home-hero h1{font-size:var(--fs-hero);letter-spacing:-2px;margin-bottom:34px}
h1 em{font-style:italic;color:var(--cherry)}
/* small superscript trademark mark (so ® doesn't balloon at heading sizes) */
.tm{font-size:.42em;font-weight:400;font-style:normal;vertical-align:super;line-height:0}
.hero p.lead{font-size:21px;color:var(--ink-soft);max-width:33em;margin-bottom:36px;text-wrap:pretty}
.hero-cta{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.hero-note{margin-top:24px;font-size:14.5px;color:var(--ink-soft);display:flex;align-items:center;gap:8px}
.hero-note b{color:var(--cherry-bright);font-weight:700}

/* ---------- Trust strip ---------- */
.trust{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--tint)}
.trust-inner{display:flex;padding:0;flex-wrap:wrap}
.trust-item{flex:1;display:flex;align-items:center;gap:12px;font-weight:600;font-size:15px;padding:24px 30px;border-left:1px solid var(--line)}
.trust-item:first-child{border-left:none;padding-left:0}
.trust-item:last-child{padding-right:0}
.trust-item .ti-ic{display:inline-grid;place-items:center;color:var(--cherry-bright);flex:none}
.trust-item .ti-ic .ic{width:20px;height:20px}

/* ---------- Section frame ---------- */
section{padding:100px 0}
.eyebrow{font-size:var(--fs-small);font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--cherry-bright);margin-bottom:14px}
/* Editorial section headers — a full-width hairline, an № index and the label on one line */
body{counter-reset:sec}
.sec-head{max-width:none;margin-bottom:52px;counter-increment:sec;padding-top:26px;border-top:1px solid var(--line)}
.sec-head .eyebrow{display:flex;align-items:center;gap:18px;margin-bottom:20px}
.sec-head .eyebrow::before{content:"№ " counter(sec,decimal-leading-zero);font-family:var(--serif);font-style:italic;font-weight:400;font-size:17px;letter-spacing:0;text-transform:none;color:var(--ink-soft)}
.sec-head .eyebrow::after{content:"";flex:1;height:1px;background:var(--line)}
.sec-head h2{font-family:var(--serif);font-weight:400;font-size:var(--fs-h2);line-height:1.0;letter-spacing:-.5px;max-width:18ch}
.sec-head p{font-size:var(--fs-body);color:var(--ink-soft);margin-top:16px;max-width:48ch}

/* Inline icons */
.ic{width:20px;height:20px;display:inline-block;vertical-align:middle;flex:none}
.ficon{display:inline-grid;place-items:center;width:46px;height:46px;border-radius:12px;background:rgba(255,61,99,.1);color:var(--cherry-bright);margin-bottom:18px}
.ficon .ic{width:23px;height:23px}
.pcard-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.picon{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:11px;background:rgba(255,61,99,.1);color:var(--cherry-bright)}
.picon .ic{width:21px;height:21px}
.inc-head{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.inc-head h4{margin:0}
.inc-ic{display:inline-grid;place-items:center;color:var(--cherry-bright);flex:none}
.inc-ic .ic{width:19px;height:19px}
.theme-toggle button{display:inline-flex;align-items:center;gap:7px}
.theme-toggle .ic{width:15px;height:15px}

/* ---------- Products ---------- */
.products{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.pcard{background:var(--panel);border:1px solid var(--line);border-radius:18px;padding:32px 30px 28px;display:flex;flex-direction:column;min-height:344px;transition:transform .2s ease,border-color .2s ease}
.pcard:hover{transform:translateY(-4px);border-color:var(--cherry)}
.pcard .ptag{font-size:var(--fs-small);font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--cherry-bright)}
.pcard h3{font-family:var(--serif);font-weight:400;font-size:var(--fs-h3);line-height:1.05;margin:14px 0 12px}
.pcard .blurb{font-size:15.5px;color:var(--ink-soft);flex:1}
.pcard .price{display:flex;align-items:baseline;gap:6px;margin:20px 0 6px}
.pcard .price .from{font-size:14px;color:var(--ink-soft);font-weight:600}
.pcard .price .amt{font-family:var(--serif);font-size:46px;line-height:1}
.pcard .price .per{font-size:15px;color:var(--ink-soft);font-weight:600}
.pcard .seeall{margin-top:14px;border-top:1px solid var(--line);padding-top:16px}

/* ---------- Tiers ---------- */
.tiers-sec{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--tint)}
.tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;align-items:stretch}
.tier{background:var(--panel);border:1.5px solid var(--line);border-radius:18px;padding:34px 30px;display:flex;flex-direction:column;position:relative}
.tier.pop{background:var(--cherry);border-color:var(--cherry)}
.tier.pop *{color:#fff}
.tier.pop .tier-tag{color:rgba(255,255,255,.85)}
.tier.pop .btn-light{color:var(--bg)}
.tier.pop .btn-light:hover{color:var(--bg)}
.tier .badge{position:absolute;top:-13px;left:30px;background:var(--ink);color:var(--bg);font-weight:700;font-size:var(--fs-small);padding:5px 14px;border-radius:100px}
.tier h3{font-family:var(--serif);font-weight:400;font-size:var(--fs-h3);margin-bottom:4px}
.tier-tag{font-size:15px;color:var(--ink-soft);min-height:44px}
.tier .tprice{display:flex;align-items:baseline;gap:5px;margin:8px 0 22px}
.tier .tprice .amt{font-family:var(--serif);font-size:58px;line-height:1}
.tier .tprice .per{font-size:15px;color:var(--ink-soft);font-weight:600}
.tier.pop .tprice .per{color:rgba(255,255,255,.8)}
.feat{list-style:none;display:flex;flex-direction:column;gap:13px;font-size:15.5px;color:var(--ink-soft);margin-bottom:28px;flex:1}
.feat li{display:flex;gap:11px;align-items:flex-start}
.feat .ck{flex:none;width:19px;height:19px;border-radius:50%;background:rgba(255,61,99,.16);color:var(--cherry-bright);display:grid;place-items:center;font-size:11px;margin-top:2px}
.tier.pop .feat .ck{background:rgba(255,255,255,.22);color:#fff}

/* ---------- Features ---------- */
.feat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:var(--line);border:1px solid var(--line);border-radius:18px;overflow:hidden}
.fcell{background:var(--bg2);padding:42px 40px}
.fcell .fnum{font-family:var(--serif);font-size:26px;color:var(--cherry-bright);margin-bottom:16px}
.fcell h4{font-family:var(--serif);font-weight:400;font-size:var(--fs-h3);margin-bottom:10px;letter-spacing:-.3px}
.fcell p{font-size:var(--fs-body);color:var(--ink-soft);max-width:34ch}

/* ---------- Closer ---------- */
.closer{background:var(--cherry);color:#fff;border-radius:24px;padding:76px 60px;text-align:center;position:relative;overflow:hidden}
.closer h2{font-family:var(--serif);font-weight:400;font-size:var(--fs-h2);line-height:1;margin-bottom:16px}
.closer p{font-size:var(--fs-body);max-width:40ch;margin:0 auto 30px;color:rgba(255,255,255,.92)}
.closer .btn-dark{background:#15101c;color:#fff;padding:15px 32px;font-size:16px}
.closer .btn-dark:hover{background:#000}
.closer .fizz-deco{position:absolute;border-radius:50%;background:rgba(255,255,255,.13)}

/* ---------- Footer ---------- */
footer{padding:84px 0 44px;border-top:1px solid var(--line);background:var(--bg2)}
.foot-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px;padding-bottom:48px;border-bottom:1px solid var(--line)}
.foot-brand .brand{font-size:34px;margin-bottom:14px}
.foot-brand p{color:var(--ink-soft);font-size:16px;max-width:26ch}
.fcol h5{font-size:var(--fs-small);font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--ink);margin-bottom:16px}
.fcol ul{list-style:none;display:flex;flex-direction:column;gap:11px}
.fcol a{color:var(--ink-soft);font-size:15px}
.fcol a:hover{color:var(--cherry-bright)}
.legal{padding-top:32px;display:flex;flex-direction:column;gap:14px}
.legal p{font-size:var(--fs-small);color:var(--ink-soft);line-height:1.65;max-width:92ch}
.legal .row{display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;align-items:center;margin-top:8px}
.legal .row a{font-size:var(--fs-small);color:var(--ink-soft)}
.theme-toggle{display:inline-flex;gap:4px;margin-top:18px;background:var(--panel);border:1px solid var(--line);border-radius:100px;padding:4px}
.theme-toggle button{font-family:var(--sans);font-size:13px;font-weight:600;color:var(--ink-soft);background:none;border:none;cursor:pointer;padding:7px 16px;border-radius:100px;transition:color .15s,background .15s}
.theme-toggle button:hover{color:var(--ink)}
.theme-toggle button.active{background:var(--cherry);color:#fff}

/* ---------- Plan-page distinctive sections ----------
   Each plan page (hosting / WordPress / photos) renders one of these to
   set itself apart. All reuse the shared tokens, type and section frame. */
/* Stats band (web) */
.stat-band{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.stat{background:var(--panel);border:1px solid var(--line);border-radius:16px;padding:30px 26px}
.stat-k{font-family:var(--serif);font-size:46px;line-height:1;color:var(--cherry-bright);margin-bottom:8px}
.stat-v{font-size:15px;color:var(--ink-soft)}
/* Steps (WordPress) */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;counter-reset:step}
.step{background:var(--panel);border:1px solid var(--line);border-radius:16px;padding:32px 30px}
.step-n{font-family:var(--serif);font-size:30px;color:var(--cherry-bright);margin-bottom:14px}
.step h4{font-family:var(--serif);font-weight:400;font-size:var(--fs-h3);margin-bottom:8px;letter-spacing:-.3px}
.step p{font-size:15.5px;color:var(--ink-soft)}
/* Showcase (photos) */
.showcase{display:grid;grid-template-columns:1fr 1fr;gap:46px;align-items:center}
.show-list{list-style:none;display:flex;flex-direction:column;gap:16px;font-size:var(--fs-body)}
.show-list li{display:flex;gap:12px;align-items:flex-start}
.show-list .ck{flex:none;width:22px;height:22px;border-radius:50%;background:rgba(255,61,99,.16);color:var(--cherry-bright);display:grid;place-items:center;font-size:12px;margin-top:3px}
.show-art{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:88px;gap:10px}
.show-art .tile{border-radius:14px;background:var(--panel2);border:1px solid var(--line)}
.show-art .tile.t0{background:linear-gradient(135deg,rgba(255,61,99,.35),rgba(255,61,99,.06))}
.show-art .tile.t1{background:linear-gradient(135deg,rgba(47,210,154,.30),rgba(47,210,154,.05))}
.show-art .tile.t2{background:linear-gradient(135deg,rgba(79,155,255,.30),rgba(79,155,255,.05))}

/* ---------- Domains page ---------- */
.dsearch{display:flex;gap:12px;max-width:560px;flex-wrap:wrap;margin-top:6px}
.dsearch input{flex:1;min-width:240px;background:var(--panel);border:1.5px solid var(--line2);color:var(--ink);border-radius:100px;padding:15px 22px;font-family:var(--sans);font-size:16px}
.dsearch input::placeholder{color:var(--ink-soft)}
.dsearch input:focus{outline:none;border-color:var(--cherry);background:var(--panel2)}
.tld-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.tld{background:var(--panel);border:1px solid var(--line);border-radius:18px;padding:22px 24px;display:flex;align-items:baseline;justify-content:space-between;gap:12px;transition:transform .2s ease,border-color .2s ease}
.tld:hover{transform:translateY(-4px);border-color:rgba(255,61,99,.4)}
.tld .ext{font-family:var(--serif);font-size:var(--fs-h3)}
.tld .tprice{font-size:14px;color:var(--ink-soft);white-space:nowrap}
.tld .tprice b{color:var(--cherry-bright);font-weight:700;font-size:18px}

/* ---------- Plan pages (hosting / WordPress / photos) ---------- */
/* Split hero with an at-a-glance spec card */
.phero-wrap{padding:0}
.phero{display:grid;grid-template-columns:1.08fr .92fr;gap:60px;align-items:center;padding:84px 0 78px}
.phero-main h1{font-size:var(--fs-h1);margin-bottom:22px}
.phero-main .lead{margin-bottom:30px}
.glance{background:var(--panel);border:1px solid var(--line);border-radius:18px;padding:28px 32px}
.glance h3{font-size:var(--fs-small);font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--cherry-bright);margin-bottom:6px}
.glance dl{display:flex;flex-direction:column}
.glance .row{display:flex;justify-content:space-between;align-items:baseline;gap:16px;padding:14px 0;border-top:1px solid var(--line)}
.glance .row:first-of-type{border-top:none}
.glance dt{font-size:15px;color:var(--ink-soft)}
.glance dd{font-size:15px;color:var(--ink);font-weight:600;text-align:right}

/* Feature deep-dives — alternating text / visual rows */
.deepdive{display:flex;flex-direction:column;gap:26px}
.drow{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;background:var(--panel);border:1px solid var(--line);border-radius:20px;padding:46px 48px}
.drow:nth-child(even) .dtext{order:2}
.dtext h3{font-family:var(--serif);font-weight:400;font-size:var(--fs-h3);line-height:1.05;letter-spacing:-.4px;margin:6px 0 12px}
.dtext p{font-size:var(--fs-body);color:var(--ink-soft);line-height:1.6}
.dpoints,.dlist{list-style:none;display:flex;flex-direction:column;gap:12px}
.dpoints{margin-top:20px;font-size:15.5px}
.dpoints li,.dlist li{display:flex;gap:11px;align-items:flex-start;line-height:1.5}
.dpoints .ck,.dlist .ck{flex:none;width:20px;height:20px;border-radius:50%;background:rgba(255,61,99,.16);color:var(--cherry-bright);display:grid;place-items:center;font-size:11px;margin-top:2px}
.dmedia{display:flex}
.dmedia .stat-band{grid-template-columns:1fr 1fr;gap:14px;width:100%}
.dmedia .stat{padding:24px 22px}
.dmedia .stat-k{font-size:38px}
.dmedia .steps{grid-template-columns:1fr;gap:14px;width:100%}
.dmedia .step{padding:22px 24px}
.dmedia .step-n{font-size:24px;margin-bottom:8px}
.dmedia .step h4{font-size:var(--fs-h3)}
.dmedia .show-art{width:100%;grid-auto-rows:74px}
.dmedia .dlist{width:100%;background:var(--bg2);border:1px solid var(--line);border-radius:20px;padding:26px 28px;font-size:var(--fs-body)}

/* What's included matrix */
.inc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);border:1px solid var(--line);border-radius:18px;overflow:hidden}
.inc-cell{background:var(--bg2);padding:30px 28px}
.inc-cell h4{font-family:var(--serif);font-weight:400;font-size:var(--fs-h3);margin-bottom:16px}
.inc-list{list-style:none;display:flex;flex-direction:column;gap:12px;font-size:15px;color:var(--ink-soft)}
.inc-list li{display:flex;gap:10px;align-items:flex-start;line-height:1.4}
.inc-list .ck{flex:none;width:18px;height:18px;border-radius:50%;background:rgba(255,61,99,.16);color:var(--cherry-bright);display:grid;place-items:center;font-size:10px;margin-top:2px}
.inc-note{margin-top:18px;font-size:var(--fs-small);color:var(--ink-soft)}

/* FAQ */
.faq{border-bottom:1px solid var(--line)}
.faq-item{border-top:1px solid var(--line)}
.faq-item summary{cursor:pointer;list-style:none;padding:24px 0;font-family:var(--serif);font-size:var(--fs-h3);color:var(--ink);display:flex;justify-content:space-between;align-items:center;gap:24px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";color:var(--cherry-bright);font-size:28px;line-height:1;flex:none;transition:transform .2s}
.faq-item[open] summary::after{content:"–"}
.faq-item p{padding:0 0 24px;margin:0;color:var(--ink-soft);font-size:var(--fs-body);line-height:1.7;max-width:74ch}

/* ---------- Help section ---------- */
.help-layout{display:grid;grid-template-columns:272px 1fr;gap:56px;align-items:start}
.help-side{position:sticky;top:98px;align-self:start;background:var(--panel);border:1px solid var(--line);border-radius:18px;padding:22px 18px}
.help-side-head{font-size:var(--fs-small);font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-soft);padding:0 12px;margin-bottom:14px}
.help-side .help-home{display:flex;align-items:center;gap:10px;font-weight:600;font-size:15px;color:var(--ink);padding:9px 12px;border-radius:10px}
.help-side .help-home .ic{width:17px;height:17px;color:var(--cherry-bright)}
.help-side .help-home:hover{background:var(--tint)}
.help-side .help-home.active{background:rgba(255,61,99,.1);color:var(--cherry-bright)}
.help-group{margin-top:14px;padding-top:14px;border-top:1px solid var(--line)}
.help-group h4{display:flex;align-items:center;gap:9px;font-size:var(--fs-small);font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--ink-soft);margin:0 12px 8px}
.help-group h4 .ic{width:15px;height:15px;color:var(--cherry-bright)}
.help-group ul{list-style:none;display:flex;flex-direction:column;gap:1px}
.help-group a{font-size:14px;color:var(--ink-soft);line-height:1.35;display:block;padding:8px 12px;border-radius:9px;transition:background .15s,color .15s}
.help-group a:hover{color:var(--ink);background:var(--tint)}
.help-group a.active{color:var(--cherry-bright);font-weight:600;background:rgba(255,61,99,.1)}

.help-content{max-width:720px;font-size:var(--fs-body);color:var(--ink-soft)}
.help-content .md-h1{font-family:var(--serif);font-weight:400;color:var(--ink);font-size:var(--fs-h2);line-height:1.08;letter-spacing:-.5px;margin:0 0 18px}
.help-content .md-h2{font-family:var(--serif);font-weight:400;color:var(--ink);font-size:var(--fs-h3);margin:38px 0 12px;letter-spacing:-.3px}
.help-content .md-h3{font-family:var(--serif);font-weight:400;color:var(--ink);font-size:var(--fs-h3);margin:26px 0 10px}
.help-content p{margin:0 0 16px;line-height:1.7}
.help-content p.md-label{color:var(--ink);font-weight:600;margin:22px 0 6px;font-size:var(--fs-body)}
.help-content ul,.help-content ol{margin:0 0 18px;padding-left:22px;display:flex;flex-direction:column;gap:9px}
.help-content li{line-height:1.6;padding-left:4px}
.help-content li::marker{color:var(--cherry-bright)}
.help-content a{color:var(--cherry-bright);text-decoration:underline;text-underline-offset:2px;text-decoration-color:rgba(255,90,120,.4)}
.help-content a:hover{text-decoration-color:var(--cherry-bright)}
.help-content strong{color:var(--ink);font-weight:700}
.help-content code{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.88em;background:var(--panel2);border:1px solid var(--line);border-radius:6px;padding:2px 6px;color:var(--cherry-bright)}
.help-content pre{background:var(--panel);border:1px solid var(--line);border-radius:14px;padding:18px 20px;overflow:auto;margin:0 0 18px}
.help-content pre code{background:none;border:none;padding:0;color:var(--ink);font-size:13.5px}
.help-content blockquote{margin:0 0 18px;padding:14px 20px;border-left:3px solid var(--cherry);background:rgba(255,61,99,.06);border-radius:0 12px 12px 0}
.help-content blockquote p{margin:0}
.help-content hr{border:none;border-top:1px solid var(--line);margin:30px 0}

@media (max-width:900px){
  .nav-links{display:none}
  :root{--fs-hero:62px;--fs-h1:58px;--fs-h2:38px;--fs-h3:24px}
  .products,.tiers,.feat-grid,.foot-top,.steps,.showcase{grid-template-columns:1fr}
  .stat-band,.tld-grid,.inc-grid{grid-template-columns:1fr 1fr}
  .phero{grid-template-columns:1fr;gap:36px;padding:64px 0 60px}
  .phero-main h1{margin-bottom:18px}
  .drow{grid-template-columns:1fr;gap:30px;padding:36px 32px}
  .drow:nth-child(even) .dtext{order:0}
  .help-layout{grid-template-columns:1fr;gap:8px}
  .help-side{position:static;order:2;margin-top:40px}
  .help-content{order:1;max-width:none}
  .trust-item{flex:1 1 100%;border-left:none;padding:14px 0}
  .trust-item:first-child{padding-top:20px}
}
@media (max-width:560px){
  .stat-band,.tld-grid,.inc-grid{grid-template-columns:1fr}
  .dmedia .stat-band{grid-template-columns:1fr 1fr}
}

/* ---------- Coming-soon placeholder (index.php) ----------
   Reuses the brand, kicker, hero type, buttons and legal styles above;
   only adds the full-height centred layout specific to this page. */
.coming{min-height:100vh;display:flex;flex-direction:column}
.coming .top{padding:30px 0;display:flex;justify-content:center}
.coming .mid{flex:1;display:flex;align-items:center;text-align:center;padding:48px 0}
.coming .mid .wrap{width:100%}
.coming .kicker{margin-bottom:30px}
.coming h1{margin:0 auto 26px;max-width:18ch}
.coming .lead{font-size:21px;color:var(--ink-soft);max-width:46ch;margin:0 auto 32px;text-wrap:pretty}
.coming .hero-cta{justify-content:center}
.coming .hero-note{justify-content:center}
.coming .foot{padding:28px 0 40px;border-top:1px solid var(--line);background:var(--bg2)}
.coming .foot .legal{text-align:center;align-items:center}
.coming .foot .legal p{margin:0 auto}
.coming .foot .legal .row{justify-content:center}
@media (max-width:900px){.coming h1{max-width:14ch}}
