/* ============ STARTUP SERVICES — page-specific compositions ============ */

/* Editorial statement — full-screen cinematic moment */
.editorial {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 96px 0; text-align: center;
}
.editorial .stmt {
  margin: 0 auto; max-width: none;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(120px, 12vw, 160px); line-height: 1.0; letter-spacing: -.035em;
  color: var(--ink); text-wrap: balance;
}
.editorial .stmt .w {
  display: inline-block;
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.editorial .stmt .w.in { opacity: 1; transform: none; }
.editorial .stmt .brand-word { color: var(--brand); }
.editorial .stmt .stmt-2 { transition-delay: .2s; }
@media (max-width: 900px){ .editorial .stmt { font-size: clamp(80px, 11vw, 100px); } }
@media (max-width: 600px){ .editorial { padding: 64px 0; } .editorial .stmt { font-size: clamp(48px, 13vw, 64px); max-width: 12ch; margin-inline: auto; } }

/* Editorial variant with supporting line */
.editorial.has-sub { padding: clamp(72px,10vw,140px) 24px; }
.editorial.has-sub .stmt { max-width: 20ch; font-size: clamp(44px,9vw,116px); }
.editorial .stmt-sub {
  margin: clamp(24px,3vw,34px) auto 0; max-width: 56ch;
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(17px,1.7vw,21px); line-height: 1.6; color: var(--body);
  text-wrap: pretty;
}
@media (max-width: 600px){ .editorial.has-sub .stmt { max-width: 12ch; } }

/* Breadcrumb */
.crumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); font-weight: 500; }
.crumb a:hover { color: var(--brand); }
.crumb [data-lucide] { width: 15px; height: 15px; }

/* Detail hero — split */
.dhero { position: relative; overflow: hidden; padding-top: clamp(36px,4vw,56px); padding-bottom: clamp(52px,6vw,88px); }
.dhero .hero-bg { position:absolute; inset:0; z-index:-1;
  background: radial-gradient(56% 60% at 86% 4%, color-mix(in oklab,var(--brand) 11%, transparent), transparent 70%), radial-gradient(40% 44% at 6% 0%, var(--brand-50), transparent 64%); }
.dhero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; margin-top: 28px; }
.dhero h1 { margin-top: 20px; }
.dhero .lead { margin-top: 20px; max-width: 520px; }
.dhero-cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.dhero-assure { margin-top: 26px; display: flex; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: 14.5px; }
.dhero-assure span { display: inline-flex; align-items: center; gap: 8px; }
.dhero-assure [data-lucide] { width: 17px; height: 17px; color: var(--green); }
@media (max-width: 880px){ .dhero-grid { grid-template-columns: 1fr; gap: 44px; } .dhero .mock { max-width: 460px; margin-inline:auto; } }

/* Structure comparison cards */
.structs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; align-items: stretch; }
.struct { position: relative; display: flex; flex-direction: column; padding: 26px 24px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.struct:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--line), var(--sh-lg); }
.struct.pop { background: color-mix(in oklab, var(--brand) 4%, var(--surface)); box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--brand) 55%, var(--line)), var(--sh-md); }
.struct.pop:hover { box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--brand) 55%, var(--line)), var(--sh-lg); }
.struct .badge { position: absolute; top: -11px; left: 22px; background: var(--brand); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .03em; padding: 5px 11px; border-radius: var(--r-pill); box-shadow: var(--sh-brand); }
.struct .sname { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink); letter-spacing: -.015em; }
.struct .stag { margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.45; min-height: 38px; }
.struct .srec { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.struct .srec .rtag { font-size: 11.5px; font-weight: 600; color: var(--ink-2); background: var(--soft); box-shadow: inset 0 0 0 1px var(--line-2); padding: 4px 10px; border-radius: var(--r-pill); line-height: 1.25; white-space: nowrap; }
.struct.pop .srec .rtag { color: var(--brand); background: color-mix(in oklab, var(--brand) 9%, #fff); box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--brand) 22%, transparent); }
.struct .attrs { margin-top: 16px; border-top: 1px solid var(--line-2); }
.struct .attr { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line-2); }
.struct .attr .k { font-size: 12px; color: var(--muted); font-weight: 500; }
.struct .attr .v { font-size: 13px; color: var(--ink-2); font-weight: 600; text-align: right; }
.dots { display: inline-flex; gap: 3px; }
.dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); display: block; }
.dots i.on { background: var(--brand); }
.dots.g i.on { background: var(--green); }
.dots.a i.on { background: var(--amber); }
.struct .link-arrow { margin-top: auto; padding-top: 18px; font-size: 14px; }
.struct .link-arrow.stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
@media (max-width: 1080px){ .structs { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .structs { grid-template-columns: 1fr; } }

/* Subtle helper card — secondary structures */
.struct-helper { margin-top: 18px; display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: var(--r-lg); background: var(--soft); box-shadow: inset 0 0 0 1px var(--line-2); text-decoration: none; transition: box-shadow .2s ease, background .2s ease; }
.struct-helper:hover { background: var(--surface); box-shadow: inset 0 0 0 1px var(--line), var(--sh-sm); }
.struct-helper .sh-ic { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); color: var(--ink-2); box-shadow: inset 0 0 0 1px var(--line-2); }
.struct-helper .sh-ic [data-lucide]{ width: 19px; height: 19px; }
.struct-helper .sh-tx { flex: 1 1 auto; }
.struct-helper .sh-tx b { display: block; font-size: 14.5px; color: var(--ink); font-weight: 600; }
.struct-helper .sh-tx span { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.struct-helper .sh-cta { flex: none; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--green); }
.struct-helper .sh-cta [data-lucide]{ width: 16px; height: 16px; }
@media (max-width: 560px){ .struct-helper { flex-wrap: wrap; } .struct-helper .sh-tx { flex-basis: 100%; } }

/* Help-decide band */
.decide { border-radius: var(--r-xl); overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 0; background: var(--dark); color: var(--on-dark); }
.decide-copy { padding: clamp(32px,4vw,52px); }
.decide-copy h2 { color: #fff; }
.decide-copy p { color: var(--on-dark-mut); margin-top: 14px; font-size: 17px; line-height: 1.5; max-width: 440px; }
.decide-copy .row { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.decide-list { padding: clamp(28px,3vw,44px); background: var(--dark-soft); align-self: stretch; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.decide-list .di { display: flex; align-items: flex-start; gap: 13px; }
.decide-list .di .ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #fff; box-shadow: inset 0 0 0 1px var(--dark-line); }
.decide-list .di .ic [data-lucide]{ width: 19px; height: 19px; }
.decide-list .di b { color: #fff; font-size: 15.5px; display: block; }
.decide-list .di p { color: var(--on-dark-mut); font-size: 13.5px; margin-top: 2px; line-height: 1.45; }
@media (max-width: 820px){ .decide { grid-template-columns: 1fr; } }

/* Audience cards */
.aud-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.aud { padding: 26px; }
.aud .chip { margin-bottom: 16px; }
.aud h4 { color: var(--ink); font-size: 17px; }
.aud p { margin-top: 7px; font-size: 14.5px; color: var(--body); line-height: 1.5; }
@media (max-width: 900px){ .aud-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .aud-grid { grid-template-columns: 1fr; } }

/* What's included */
.incl-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px,5vw,64px); align-items: start; margin-top: 16px; }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.incl { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.incl .tick { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; background: var(--green-100); color: var(--green); }
.incl .tick [data-lucide] { width: 16px; height: 16px; }
.incl b { color: var(--ink); font-size: 15px; font-weight: 600; display: block; }
.incl small { color: var(--muted); font-size: 13px; }
@media (max-width: 820px){ .incl-wrap { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 480px){ .incl-grid { grid-template-columns: 1fr; } }

/* Post-incorporation compliance — compact block inside "What's included" */
.post-incorp { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px,5vw,64px); align-items: start;
  margin-top: clamp(38px,4.4vw,56px); padding-top: clamp(32px,3.6vw,46px); border-top: 1px solid var(--line-2); }
.post-incorp .pi-head h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink);
  font-size: clamp(20px,2.2vw,24px); letter-spacing: -.02em; margin-top: 14px; }
.post-incorp .pi-head > p { color: var(--body); font-size: 14.5px; line-height: 1.55; margin-top: 10px; }
.post-incorp .pi-note { display: flex; align-items: flex-start; gap: 9px; margin-top: 18px;
  font-size: 13px; line-height: 1.5; color: var(--muted); }
.post-incorp .pi-note [data-lucide] { width: 15px; height: 15px; color: var(--brand); flex: none; margin-top: 2px; }
.post-incorp .pi-note a { color: var(--brand); font-weight: 600; white-space: nowrap; }
.post-incorp .incl small { display: block; margin-top: 2px; }
@media (max-width: 820px){ .post-incorp { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 480px){ .post-incorp .incl-grid { grid-template-columns: 1fr; } }

/* 5-step flow */
.flow { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin-top: 52px; position: relative; }
.flow::before { content:""; position:absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }
.fstep { position: relative; z-index: 1; }
.fstep .num { width: 54px; height: 54px; border-radius: 16px; background: var(--surface); box-shadow: var(--sh-sm), inset 0 0 0 1px var(--line); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--brand); margin-bottom: 18px; }
.fstep:hover .num { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.fstep h4 { color: var(--ink); font-size: 16.5px; }
.fstep p { margin-top: 7px; color: var(--body); font-size: 14px; line-height: 1.5; }
@media (max-width: 920px){ .flow { grid-template-columns: 1fr 1fr 1fr; } .flow::before { display:none; } }
@media (max-width: 560px){ .flow { grid-template-columns: 1fr; } }

/* 4-up flow (responsive — replaces inline grid override) */
.flow.cols4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 920px){ .flow.cols4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .flow.cols4 { grid-template-columns: 1fr; } }

/* Compliance / ROC support */
.roc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,60px); align-items: center; margin-top: 16px; }
.roc-feats { margin-top: 24px; display: grid; gap: 16px; }
.roc-feats .rf { display: flex; gap: 14px; align-items: flex-start; }
.roc-feats .rf .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--brand-50); color: var(--brand); box-shadow: inset 0 0 0 1px color-mix(in oklab,var(--brand) 16%, transparent); }
.roc-feats .rf .ic [data-lucide]{ width: 21px; height: 21px; }
.roc-feats .rf b { color: var(--ink); font-size: 16px; display: block; }
.roc-feats .rf p { color: var(--body); font-size: 14.5px; margin-top: 3px; line-height: 1.5; }
.roc-panel { background: linear-gradient(180deg, var(--brand-50), var(--surface) 70%); border-radius: var(--r-xl); padding: 26px; box-shadow: inset 0 0 0 1px var(--line); }
@media (max-width: 820px){ .roc-grid { grid-template-columns: 1fr; gap: 36px; } }

/* FAQ accordion */
.faq-wrap { max-width: 820px; margin: 44px auto 0; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; gap: 18px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); letter-spacing: -.01em; transition: color .15s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary .fq-ic { margin-left: auto; flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--soft); color: var(--ink-2); transition: transform .25s var(--ease), background .2s, color .2s; }
.faq summary .fq-ic [data-lucide]{ width: 18px; height: 18px; }
.faq[open] summary .fq-ic { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq .fa-body { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease); }
.faq[open] .fa-body { max-height: 320px; }
.faq .fa-body p { padding: 0 48px 24px 4px; color: var(--body); font-size: 15.5px; line-height: 1.6; }

/* Related services */
.rel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.rel { display: flex; flex-direction: column; gap: 14px; position: relative; }
.rel .link-arrow::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.rel .chip { width: 46px; height: 46px; border-radius: 12px; }
.rel .chip [data-lucide]{ width: 22px; height: 22px; }
.rel h4 { color: var(--ink); font-size: 18px; }
.rel p { color: var(--body); font-size: 14.5px; line-height: 1.5; }
.rel .link-arrow { margin-top: auto; padding-top: 4px; font-size: 14.5px; }
@media (max-width: 820px){ .rel-grid { grid-template-columns: 1fr; } }

/* 4-up related grid (overrides repeat(4) responsively — replaces inline style) */
.rel-grid.cols4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 980px){ .rel-grid.cols4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .rel-grid.cols4 { grid-template-columns: 1fr; } }
