/* Forje purchase flow presentation layer. The form IDs and checkout logic live in start.html. */
body.forje-modern-start{
  --modern-panel:rgba(255,255,255,.035);
  --modern-blue:#38bdf8;
  --modern-pink:#ec4899;
  --modern-green:#22c55e;
  --modern-purple:#a78bfa;
  --modern-orange:#f59e0b;
  --modern-teal:#14b8a6;
}

body.forje-modern-start .builder-flow .page-head{
  padding:20px;
  border:1px solid var(--accent-border);
  border-radius:18px;
  background:linear-gradient(135deg,rgba(201,169,110,.13),rgba(255,255,255,.02));
  margin-bottom:16px;
  overflow:hidden;
}
body.forje-modern-start .builder-flow .page-title{font-size:25px;line-height:1.12}
body.forje-modern-start .builder-flow .page-sub{max-width:680px;line-height:1.55}

body.forje-modern-start .step-indicator{
  position:relative;
  top:auto;
  z-index:1;
  padding:6px;
  background:rgba(9,9,7,.88);
  border:1px solid var(--border-dim);
  border-radius:15px;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  gap:5px;
}
body.forje-modern-start .step-pill{
  flex:1;
  justify-content:center;
  padding:10px 6px;
  border-radius:10px;
  font-size:11px;
  white-space:nowrap;
}
body.forje-modern-start .step-pill.active{background:var(--accent);color:var(--bg);border-color:var(--accent)}
body.forje-modern-start .step-pill.active .step-num{background:var(--bg);color:var(--accent)}

.modern-step-note{
  display:flex;
  gap:11px;
  align-items:flex-start;
  padding:12px 14px;
  border-radius:14px;
  background:var(--modern-panel);
  border:1px solid var(--border-dim);
  font-size:12px;
  line-height:1.52;
  color:var(--muted);
  margin:0 0 14px;
}
.modern-step-note strong{color:var(--text)}
.modern-note-icon{
  width:30px;
  height:30px;
  flex:0 0 30px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:var(--accent);
  background:rgba(201,169,110,.1);
  border:1px solid var(--accent-border);
}
.modern-note-icon svg,.modern-choice-icon svg,.modern-stage-marker svg{width:17px;height:17px;display:block}

.modern-advanced{
  margin:10px 0 4px;
  border:1px solid var(--border-dim);
  border-radius:12px;
  background:rgba(0,0,0,.12);
  overflow:hidden;
}
.modern-advanced>summary{
  list-style:none;
  cursor:pointer;
  padding:13px 14px;
  font-size:12px;
  font-weight:750;
  color:var(--text);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.modern-advanced>summary::-webkit-details-marker{display:none}
.modern-advanced>summary:after{content:'⌄';color:var(--accent);font-size:16px;font-weight:700;transition:transform .17s ease}
.modern-advanced[open]>summary:after{transform:rotate(180deg)}
.modern-advanced-body{padding:2px 12px 12px}

.modern-outcomes{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:9px;
  margin:0 0 14px;
}
.modern-outcome{
  min-width:0;
  padding:13px;
  text-align:left;
  color:var(--text);
  border:1px solid var(--border-dim);
  border-radius:14px;
  background:rgba(255,255,255,.022);
  cursor:pointer;
  transition:border-color .16s ease,background .16s ease,transform .16s ease;
}
.modern-outcome:hover,.modern-outcome:focus-visible{border-color:var(--accent-border);background:rgba(201,169,110,.07);transform:translateY(-1px);outline:none}
.modern-outcome strong{display:block;font:750 12px 'DM Sans',sans-serif;margin-bottom:4px}
.modern-outcome span{display:block;color:var(--muted);font-size:10.5px;line-height:1.4}

body.forje-modern-start .flat-sec.modern-choice{
  --choice:var(--modern-blue);
  margin:0 0 10px;
  padding:0;
  border:1px solid color-mix(in srgb,var(--choice) 31%,var(--border-dim));
  border-radius:16px;
  background:linear-gradient(135deg,color-mix(in srgb,var(--choice) 11%,rgba(255,255,255,.025)),rgba(255,255,255,.018));
  overflow:hidden;
  scroll-margin-top:88px;
}
body.forje-modern-start .flat-sec.modern-choice[data-modern-choice="social media"]{--choice:var(--modern-pink)}
body.forje-modern-start .flat-sec.modern-choice[data-modern-choice="music"]{--choice:var(--modern-green)}
body.forje-modern-start .flat-sec.modern-choice[data-modern-choice="messaging"]{--choice:var(--modern-blue)}
body.forje-modern-start .flat-sec.modern-choice[data-modern-choice="payment"]{--choice:var(--modern-purple)}
body.forje-modern-start .flat-sec.modern-choice[data-modern-choice="professional"]{--choice:var(--modern-orange)}
body.forje-modern-start .flat-sec.modern-choice[data-modern-choice="optional profile details"]{--choice:var(--modern-teal)}
.modern-choice-head{
  width:100%;
  border:0;
  background:transparent;
  color:var(--text);
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:13px;
  padding:15px 16px;
  text-align:left;
  font:750 13px 'DM Sans',sans-serif;
}
.modern-choice-icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:13px;
  display:grid;
  place-items:center;
  background:color-mix(in srgb,var(--choice) 18%,#111);
  border:1px solid color-mix(in srgb,var(--choice) 45%,transparent);
  color:var(--choice);
}
.modern-choice-copy{min-width:0;flex:1}
.modern-choice-copy strong{display:block;font-size:14px}
.modern-choice-copy small{display:block;color:var(--muted);font-size:11.5px;font-weight:400;margin-top:3px;line-height:1.35}
.modern-choice-chevron{width:24px;height:24px;flex:0 0 24px;display:grid;place-items:center;color:var(--choice);transition:transform .17s ease}
.modern-choice-chevron svg{width:18px;height:18px;display:block}
.modern-choice.open .modern-choice-chevron{transform:rotate(180deg)}
.modern-choice-body{display:none;padding:0 15px 15px}
.modern-choice.open .modern-choice-body{display:block}
body.forje-modern-start .cat-banner{display:none}
body.forje-modern-start .optional-pack{background:rgba(0,0,0,.12)}

body.forje-modern-start .sec-wrap{border-radius:14px;margin-bottom:9px}
body.forje-modern-start .sec-head{min-height:56px;padding:13px 15px}
body.forje-modern-start .modern-stage-heading{margin-bottom:16px!important;padding:4px 1px 0}
body.forje-modern-start .modern-stage-heading>div:nth-child(2){font-size:24px!important;line-height:1.12;letter-spacing:-.02em}
body.forje-modern-start .sec-wrap.modern-stage-card{
  --stage:var(--modern-blue);
  border-color:color-mix(in srgb,var(--stage) 32%,var(--border-dim));
  background:linear-gradient(135deg,color-mix(in srgb,var(--stage) 10%,rgba(255,255,255,.025)),rgba(255,255,255,.014));
}
body.forje-modern-start .sec-wrap.modern-stage-card .sec-head{background:linear-gradient(90deg,color-mix(in srgb,var(--stage) 10%,transparent),transparent)}
.modern-stage-marker{
  width:29px;
  height:29px;
  display:inline-grid;
  place-items:center;
  margin-right:9px;
  border-radius:9px;
  background:color-mix(in srgb,var(--stage) 17%,#10100e);
  border:1px solid color-mix(in srgb,var(--stage) 43%,transparent);
  color:var(--stage);
  vertical-align:middle;
}
body.forje-modern-start .sec-wrap.modern-stage-card .sec-head-label{display:flex;align-items:center;min-width:0;flex:1}
body.forje-modern-start .sec-wrap.modern-stage-card .sec-arrow{color:var(--stage)}
body.forje-modern-start #sec-identity{--stage:var(--modern-blue)}
body.forje-modern-start #sec-contact{--stage:var(--modern-green)}
body.forje-modern-start #sec-puck{--stage:var(--modern-orange)}
body.forje-modern-start #sec-style{--stage:var(--modern-purple)}
body.forje-modern-start #sec-cover{--stage:var(--modern-teal)}

/* Basics stays visually quiet so the first screen does not feel busy. */
body.forje-modern-start #step-1-content .sec-wrap.modern-stage-card{border-color:var(--border-dim);background:var(--surface)}
body.forje-modern-start #step-1-content .sec-wrap.modern-stage-card .sec-head{background:transparent}
body.forje-modern-start #step-1-content .modern-stage-marker{background:rgba(201,169,110,.09);border-color:var(--accent-border);color:var(--accent)}
body.forje-modern-start #step-1-content .sec-wrap.modern-stage-card .sec-arrow{color:var(--muted)}
body.forje-modern-start #step-1-content .price-tag{border:1px solid var(--accent-border);background:var(--surface)}
body.forje-modern-start #step-1-content .business-qty-panel{border-color:var(--border-dim);background:var(--surface)}
body.forje-modern-start #step-1-content .ux-inline-note{border-color:var(--border-dim);background:rgba(255,255,255,.025)}
body.forje-modern-start #step-1-content #setup-now-btn,
body.forje-modern-start #step-1-content #setup-later-btn{border-color:var(--border-dim);background:var(--surface2);color:var(--muted)}
body.forje-modern-start #step-1-content .modern-review-card{border:1px solid var(--border-dim)!important;background:var(--surface)!important}

/* Design keeps the structure, but its color is deliberately more restrained. */
body.forje-modern-start #step-3-content .sec-wrap.modern-stage-card{
  border-color:color-mix(in srgb,var(--stage) 14%,var(--border-dim));
  background:linear-gradient(135deg,color-mix(in srgb,var(--stage) 4%,rgba(255,255,255,.025)),rgba(255,255,255,.014));
}
body.forje-modern-start #step-3-content .sec-wrap.modern-stage-card .sec-head{background:linear-gradient(90deg,color-mix(in srgb,var(--stage) 4%,transparent),transparent)}
body.forje-modern-start #step-3-content .modern-stage-marker{background:color-mix(in srgb,var(--stage) 8%,#10100e);border-color:color-mix(in srgb,var(--stage) 20%,var(--border-dim));color:color-mix(in srgb,var(--stage) 72%,var(--text))}
body.forje-modern-start #step-3-content .sec-wrap.modern-stage-card .sec-arrow{color:color-mix(in srgb,var(--stage) 62%,var(--muted))}
.modern-design-help{font-size:11.5px;line-height:1.5;color:var(--muted);padding:0 15px 13px;margin-top:-6px}

body.forje-modern-start .product-option ul{display:none}
body.forje-modern-start .product-option{padding:19px;min-height:0}
body.forje-modern-start .product-option p{min-height:48px;margin-bottom:14px}
body.forje-modern-start .product-entry-sub{max-width:680px}

body.forje-modern-start .checkout-bar{gap:14px}
body.forje-modern-start .modern-checkout-actions{display:flex;align-items:center;gap:9px;flex:0 0 auto}
.sticky-back-btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:0 17px;
  border:1px solid var(--border-dim);
  border-radius:999px;
  background:rgba(255,255,255,.025);
  color:var(--text);
  font:750 13px 'DM Sans',sans-serif;
  cursor:pointer;
}
.sticky-back-btn:hover,.sticky-back-btn:focus-visible{border-color:var(--accent-border);background:rgba(201,169,110,.06);outline:none}
.sticky-back-btn svg{width:16px;height:16px;display:block}

@media(max-width:1080px){
  .modern-outcomes{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  body.forje-modern-start .builder-flow .page-head{padding:17px 15px}
  body.forje-modern-start .step-indicator{gap:4px}
  body.forje-modern-start .step-pill{font-size:9.5px;padding:9px 2px}
  body.forje-modern-start .step-pill .step-num{display:none}
  body.forje-modern-start .product-option-grid{grid-template-columns:1fr}
  body.forje-modern-start .product-entry-media{max-height:180px;overflow:hidden}
  body.forje-modern-start .checkout-bar{padding:10px 12px;gap:8px}
  body.forje-modern-start .checkout-bar .co-info{min-width:0;max-width:34%;flex:1 1 auto}
  body.forje-modern-start .checkout-bar .co-info strong,
  body.forje-modern-start .checkout-bar .co-info span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  body.forje-modern-start .modern-checkout-actions{gap:6px}
  .sticky-back-btn{width:46px;min-width:46px;padding:0;border-radius:50%}
  .sticky-back-label{display:none}
  body.forje-modern-start .checkout-bar .btn-order{padding-left:15px;padding-right:15px;white-space:nowrap}
}
@media(max-width:480px){
  .modern-outcomes{grid-template-columns:1fr}
  .modern-step-note{padding:11px 12px}
  .modern-choice-head{padding:13px 12px;gap:10px}
  .modern-choice-icon{width:38px;height:38px;flex-basis:38px}
  body.forje-modern-start .checkout-bar .co-info{max-width:30%}
  body.forje-modern-start .checkout-bar .co-info span{display:none}
  body.forje-modern-start .checkout-bar .btn-order{font-size:12.5px!important;padding-left:12px;padding-right:12px}
}
@media(max-width:380px){
  body.forje-modern-start .checkout-bar .co-info{display:none}
}

/* Balanced production shell: mirrors the approved checkout preview instead of
   leaving the legacy form grid in charge of the page. */
body.forje-modern-start.product-picked{
  background:
    radial-gradient(circle at 50% -16%,rgba(201,169,110,.10),transparent 34%),
    #080806;
}
body.forje-modern-start.product-picked .page-wrap{
  width:min(100%,1480px);
  margin:0 auto;
  padding:86px clamp(20px,3vw,44px) 0;
  grid-template-columns:minmax(0,920px) 310px;
  justify-content:center;
  gap:30px;
  min-height:100vh;
}
body.forje-modern-start.product-picked .form-side{
  min-width:0;
  padding:14px 0 132px;
  border-right:0;
  background:transparent;
}
body.forje-modern-start.product-picked .builder-flow.ready:before{display:none}
body.forje-modern-start.product-picked .builder-flow{scroll-margin-top:84px}

body.forje-modern-start .builder-flow .page-head{
  min-height:150px;
  display:grid;
  grid-template-columns:52px minmax(0,1fr);
  grid-template-rows:auto auto auto;
  column-gap:17px;
  align-content:center;
  padding:25px 28px;
  border-radius:22px;
  margin:0 0 17px;
  background:
    radial-gradient(circle at 91% 18%,rgba(201,169,110,.10),transparent 27%),
    linear-gradient(135deg,rgba(201,169,110,.09),rgba(255,255,255,.018) 52%,rgba(201,169,110,.025));
  border:1px solid rgba(201,169,110,.18);
  box-shadow:0 26px 70px rgba(0,0,0,.20);
}
body.forje-modern-start .builder-flow .page-head:after{
  width:190px;
  height:190px;
  right:-52px;
  bottom:-104px;
  opacity:.65;
}
.modern-head-mark{
  grid-row:1 / 4;
  width:52px;
  height:52px;
  align-self:center;
  display:grid;
  place-items:center;
  color:var(--accent);
  border:1px solid rgba(201,169,110,.28);
  border-radius:16px;
  background:rgba(201,169,110,.08);
}
.modern-head-mark svg{width:25px;height:25px}
body.forje-modern-start .builder-flow .page-head .eyebrow{grid-column:2;margin:0 0 5px}
body.forje-modern-start .builder-flow .page-title{
  grid-column:2;
  margin:0 0 7px;
  font-size:clamp(30px,3.4vw,44px);
  line-height:1;
  letter-spacing:-.045em;
}
body.forje-modern-start .builder-flow .page-sub{
  grid-column:2;
  margin:0;
  max-width:650px;
  font-size:13px;
  line-height:1.55;
}

body.forje-modern-start .step-indicator{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  padding:7px;
  gap:7px;
  margin:0 0 24px;
  border-radius:18px;
  background:rgba(13,12,9,.86);
  border:1px solid rgba(255,255,255,.075);
  box-shadow:0 16px 48px rgba(0,0,0,.18);
}
body.forje-modern-start .step-pill{
  min-width:0;
  justify-content:flex-start;
  gap:10px;
  min-height:54px;
  padding:9px 11px;
  border:1px solid transparent;
  border-radius:12px;
  color:rgba(240,237,232,.45);
  background:transparent;
}
body.forje-modern-start .step-pill.active{
  color:var(--text);
  border-color:rgba(201,169,110,.24);
  background:linear-gradient(135deg,rgba(201,169,110,.16),rgba(201,169,110,.065));
}
body.forje-modern-start .step-pill.done{
  color:rgba(240,237,232,.72);
  background:rgba(255,255,255,.025);
}
body.forje-modern-start .step-pill .step-num{
  width:27px;
  height:27px;
  flex:0 0 27px;
  color:#080806;
  background:rgba(240,237,232,.38);
  font-size:10px;
}
body.forje-modern-start .step-pill.active .step-num,
body.forje-modern-start .step-pill.done .step-num{background:var(--accent);color:#080806}
.modern-pill-copy{display:block;min-width:0;line-height:1.15}
.modern-pill-copy strong{display:block;font-size:11.5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.modern-pill-copy small{display:block;margin-top:4px;font-size:9px;font-weight:450;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

body.forje-modern-start .step-content.active{animation:modernStepIn .24s ease both}
@keyframes modernStepIn{from{opacity:0;transform:translateY(5px)}to{opacity:1;transform:none}}
body.forje-modern-start .modern-stage-heading{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  column-gap:12px;
  align-items:end;
  padding:2px 4px 0;
  margin:0 0 17px!important;
}
body.forje-modern-start .modern-stage-heading .eyebrow{grid-column:1 / -1;margin-bottom:6px!important}
body.forje-modern-start .modern-stage-heading>div:nth-child(2){font-size:clamp(27px,3vw,36px)!important;letter-spacing:-.04em}
body.forje-modern-start .modern-stage-heading>div:nth-child(3){font-size:12.5px!important;line-height:1.5;max-width:650px}

.modern-step-note{
  padding:14px 16px;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(201,169,110,.065),rgba(255,255,255,.018));
  border-color:rgba(201,169,110,.15);
  margin-bottom:16px;
}
.modern-outcomes{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:16px}
.modern-outcome{min-height:76px;padding:16px;background:rgba(255,255,255,.022);border-color:rgba(255,255,255,.075)}
.modern-outcome strong{font-size:13px}
.modern-outcome span{font-size:11px;margin-top:5px}

body.forje-modern-start #step-2-content{display:none}
body.forje-modern-start #step-2-content.active{display:block}
body.forje-modern-start #step-2-content .flat-sec.modern-choice{
  --choice:var(--accent)!important;
  margin-bottom:10px;
  border-color:rgba(255,255,255,.085);
  background:linear-gradient(135deg,rgba(255,255,255,.034),rgba(201,169,110,.018));
  box-shadow:0 12px 38px rgba(0,0,0,.10);
}
body.forje-modern-start #step-2-content .modern-choice-head{min-height:74px;padding:14px 17px}
body.forje-modern-start #step-2-content .modern-choice-icon{
  width:44px;
  height:44px;
  flex-basis:44px;
  color:var(--accent);
  background:rgba(201,169,110,.08);
  border-color:rgba(201,169,110,.22);
}
body.forje-modern-start #step-2-content .modern-choice-copy strong{font-size:14px}
body.forje-modern-start #step-2-content .modern-choice-chevron{color:var(--accent)}
body.forje-modern-start #step-2-content .modern-choice-body{padding:2px 17px 18px}

body.forje-modern-start .sec-wrap,
body.forje-modern-start .sec-wrap.modern-stage-card{
  border-radius:17px;
  border-color:rgba(255,255,255,.085);
  background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.014));
  box-shadow:0 14px 42px rgba(0,0,0,.11);
  margin-bottom:11px;
}
body.forje-modern-start .sec-wrap.modern-stage-card .sec-head,
body.forje-modern-start #step-1-content .sec-wrap.modern-stage-card .sec-head,
body.forje-modern-start #step-3-content .sec-wrap.modern-stage-card .sec-head{background:transparent}
body.forje-modern-start .sec-head{min-height:62px;padding:14px 17px}
body.forje-modern-start .sec-body{padding:17px;background:rgba(7,7,6,.34)}
body.forje-modern-start .modern-stage-marker,
body.forje-modern-start #step-1-content .modern-stage-marker,
body.forje-modern-start #step-3-content .modern-stage-marker{
  width:34px;
  height:34px;
  color:var(--accent);
  background:rgba(201,169,110,.08);
  border-color:rgba(201,169,110,.20);
}
body.forje-modern-start .f-in,
body.forje-modern-start .f-sel,
body.forje-modern-start .f-ta,
body.forje-modern-start .icon-wrap{
  min-height:46px;
  border-radius:11px;
  border-color:rgba(255,255,255,.085);
  background:rgba(255,255,255,.035);
}
body.forje-modern-start .f-in:focus,
body.forje-modern-start .f-sel:focus,
body.forje-modern-start .f-ta:focus,
body.forje-modern-start .icon-wrap:focus-within{border-color:rgba(201,169,110,.52);box-shadow:0 0 0 3px rgba(201,169,110,.07)}

body.forje-modern-start.product-picked .preview-side{
  position:sticky;
  top:84px;
  height:calc(100vh - 104px);
  min-height:620px;
  align-self:start;
  justify-content:flex-start;
  padding:18px 10px 24px;
  border:1px solid rgba(255,255,255,.075);
  border-radius:24px;
  background:linear-gradient(160deg,rgba(255,255,255,.035),rgba(201,169,110,.018));
  box-shadow:0 26px 80px rgba(0,0,0,.24);
}
body.forje-modern-start #co-price{display:none!important}
body.forje-modern-start.product-picked .preview-hint{margin:2px 0 16px;opacity:.75;color:rgba(240,237,232,.52)}
body.forje-modern-start.product-picked .preview-side .phone{width:254px;border-radius:42px;padding:10px}
body.forje-modern-start.product-picked .preview-side .phone-screen{height:min(510px,calc(100vh - 205px));min-height:430px}
body.forje-modern-start.product-picked .preview-side .phone-scaler{transform:scale(.6)}

body.forje-modern-start .checkout-bar{
  padding:12px max(18px,calc((100vw - 1400px)/2));
  background:rgba(8,8,6,.94);
  border-color:rgba(255,255,255,.075);
}

@media(max-width:1180px){
  body.forje-modern-start.product-picked .page-wrap{grid-template-columns:minmax(0,1fr) 282px;gap:22px;padding-left:22px;padding-right:22px}
  body.forje-modern-start.product-picked .preview-side .phone{width:236px}
  body.forje-modern-start.product-picked .preview-side .phone-scaler{transform:scale(.554)}
}
@media(max-width:900px){
  body.forje-modern-start.product-picked .page-wrap{display:block;width:min(100%,780px);padding:76px 18px 0}
  body.forje-modern-start.product-picked .preview-side{display:none}
  body.forje-modern-start.product-picked .form-side{padding-top:10px}
  body.forje-modern-start .builder-flow .page-head{min-height:136px}
}
@media(max-width:700px){
  body.forje-modern-start.product-picked .page-wrap{padding:68px 13px 0}
  body.forje-modern-start .builder-flow .page-head{grid-template-columns:42px minmax(0,1fr);column-gap:12px;padding:20px 17px;min-height:126px;border-radius:18px}
  .modern-head-mark{width:42px;height:42px;border-radius:13px}
  .modern-head-mark svg{width:21px;height:21px}
  body.forje-modern-start .builder-flow .page-title{font-size:30px!important}
  body.forje-modern-start .builder-flow .page-sub{font-size:11.5px}
  body.forje-modern-start .step-indicator{gap:5px;padding:5px;border-radius:15px;overflow-x:auto}
  body.forje-modern-start .step-pill{min-width:58px;min-height:47px;justify-content:center;padding:7px 5px}
  body.forje-modern-start .step-pill .step-num{display:flex;width:24px;height:24px;flex-basis:24px}
  .modern-pill-copy small{display:none}
  .modern-pill-copy strong{display:none}
  .modern-pill-copy:after{display:block;font-size:9px;font-weight:750;white-space:nowrap}
  body.forje-modern-start .step-pill:nth-child(1) .modern-pill-copy:after{content:'Basics'}
  body.forje-modern-start .step-pill:nth-child(2) .modern-pill-copy:after{content:'Add'}
  body.forje-modern-start .step-pill:nth-child(3) .modern-pill-copy:after{content:'Design'}
  body.forje-modern-start .step-pill:nth-child(4) .modern-pill-copy:after{content:'Review'}
  .modern-outcomes{grid-template-columns:1fr 1fr}
  body.forje-modern-start .modern-stage-heading{display:block;padding-left:2px}
  body.forje-modern-start .modern-stage-heading>div:nth-child(2){font-size:29px!important}
  body.forje-modern-start .modern-stage-heading>div:nth-child(3){margin-top:5px}
}
@media(max-width:480px){
  body.forje-modern-start .builder-flow .page-head{grid-template-columns:1fr;padding:18px 16px}
  .modern-head-mark{display:none}
  body.forje-modern-start .builder-flow .page-head .eyebrow,
  body.forje-modern-start .builder-flow .page-title,
  body.forje-modern-start .builder-flow .page-sub{grid-column:1}
  body.forje-modern-start .builder-flow .page-title{font-size:29px!important}
  .modern-outcomes{grid-template-columns:1fr}
  body.forje-modern-start #step-2-content .modern-choice-head{min-height:68px;padding:12px}
}

/* TikTok-first checkout pass: faster scanning, a stable/larger preview, and
   fewer explanatory blocks competing with the actual controls. */
body.forje-modern-start .builder-flow .page-sub,
body.forje-modern-start .modern-stage-heading>div:nth-child(3),
body.forje-modern-start .modern-step-note,
body.forje-modern-start .modern-outcomes{display:none!important}

body.forje-modern-start .builder-flow .page-head{
  min-height:116px;
  grid-template-rows:auto auto;
  padding-top:21px;
  padding-bottom:21px;
}
.modern-head-mark{grid-row:1 / 3}
body.forje-modern-start .builder-flow .page-title{margin-bottom:0}
body.forje-modern-start .modern-stage-heading{
  display:block;
  margin-bottom:13px!important;
}
body.forje-modern-start .modern-stage-heading .eyebrow{margin-bottom:5px!important}

body.forje-modern-start.product-picked .page-wrap{
  width:min(100%,1320px);
  grid-template-columns:minmax(0,850px) 370px;
  gap:34px;
  padding-top:72px;
  padding-left:20px;
  padding-right:20px;
}
body.forje-modern-start.product-picked .preview-side{
  top:72px;
  height:calc(100vh - 92px);
  min-height:660px;
  justify-content:center;
  padding:18px 18px 24px;
  overflow:hidden;
}
body.forje-modern-start.product-picked .preview-hint{margin:0 0 14px}
body.forje-modern-start.product-picked .preview-side .phone{
  width:304px;
  border-radius:46px;
}
body.forje-modern-start.product-picked .preview-side .phone-screen{
  height:min(600px,calc(100vh - 174px));
  min-height:500px;
}
body.forje-modern-start.product-picked .preview-side .phone-scaler{transform:scale(.7282)}

/* Desktop workspace: keep the live card independent from accordion reflow and
   give the form enough room to feel balanced on larger screens. */
@media(min-width:1181px){
  body.forje-modern-start.product-picked .page-wrap{
    width:min(calc(100% - 24px),1540px);
    grid-template-columns:minmax(0,1fr) 390px;
  }
  body.forje-modern-start.product-picked .preview-side{
    position:fixed;
    top:72px;
    right:max(32px,calc((100vw - 1540px)/2 + 20px));
    width:390px;
    z-index:12;
    overflow-anchor:none;
    contain:layout paint;
  }
}

body.forje-modern-start .sec-wrap,
body.forje-modern-start .modern-choice,
body.forje-modern-start .modern-advanced{overflow-anchor:none}

body.forje-modern-start #step-4-content .review-top-back,
body.forje-modern-start #review-back-btn{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid var(--border-dim);
  border-radius:999px;
  background:rgba(255,255,255,.025);
  color:var(--text);
  font:750 13px 'DM Sans',sans-serif;
  cursor:pointer;
}
body.forje-modern-start #step-4-content .review-top-back{margin:0 0 16px}
body.forje-modern-start #review-back-btn{width:100%;margin-top:10px}
body.forje-modern-start #step-4-content .checkout-card{
  width:100%;
  max-width:620px;
  margin:0 auto;
  padding:20px;
}

@media(max-width:1180px) and (min-width:901px){
  body.forje-modern-start.product-picked .page-wrap{
    grid-template-columns:minmax(0,1fr) 330px;
    gap:24px;
    padding-left:18px;
    padding-right:18px;
  }
  body.forje-modern-start.product-picked .preview-side .phone{width:274px}
  body.forje-modern-start.product-picked .preview-side .phone-scaler{transform:scale(.6513)}
  body.forje-modern-start.product-picked .preview-side .phone-screen{min-height:470px}
}

@media(max-width:900px){
  body.forje-modern-start.product-picked .page-wrap{
    width:min(100%,760px);
    padding-left:14px;
    padding-right:14px;
  }
  body.forje-modern-start .builder-flow .page-head{min-height:104px}
  body.forje-modern-start #step-4-content .checkout-card{max-width:none}
}

@media(max-width:700px){
  body.forje-modern-start.product-picked .page-wrap{padding:64px 10px 0}
  body.forje-modern-start.product-picked .form-side{padding-bottom:112px}
  body.forje-modern-start .builder-flow .page-head{
    min-height:94px;
    padding:16px;
    margin-bottom:10px;
  }
  body.forje-modern-start .builder-flow .page-title{font-size:28px!important}
  body.forje-modern-start .step-indicator{
    position:sticky;
    top:58px;
    z-index:18;
    margin-bottom:16px;
    background:rgba(8,8,6,.96);
    backdrop-filter:blur(12px);
  }
  body.forje-modern-start .modern-stage-heading>div:nth-child(2){font-size:27px!important}
  body.forje-modern-start .sec-head{min-height:56px;padding:12px 13px}
  body.forje-modern-start .sec-body{padding:13px}
  body.forje-modern-start #step-2-content .modern-choice-head{min-height:66px;padding:11px 12px}
  body.forje-modern-start #step-2-content .modern-choice-body{padding:0 12px 14px}
  body.forje-modern-start .checkout-bar .co-info{display:none}
  body.forje-modern-start .modern-checkout-actions{width:100%}
  body.forje-modern-start .sticky-back-btn{
    width:auto;
    min-width:86px;
    padding:0 15px;
    border-radius:999px;
  }
  body.forje-modern-start .sticky-back-label{display:inline}
  body.forje-modern-start .checkout-bar .btn-order{flex:1;justify-content:center}
  body.forje-modern-start #step-4-content .review-top-back{width:auto;min-width:92px}
}

@media(max-width:480px){
  body.forje-modern-start .builder-flow .page-head{grid-template-columns:1fr;min-height:86px}
  body.forje-modern-start .builder-flow .page-title{font-size:27px!important}
  body.forje-modern-start .step-indicator{top:56px}
  body.forje-modern-start #step-4-content .checkout-card{padding:15px;border-radius:14px}
}
