/* ============================================================
   Public Defend — v2
   Direction: modern product. Clean, bold, high contrast.
   Display/UI: Archivo. Technical data: JetBrains Mono.
   ============================================================ */

:root {
  --bg:         #FFFFFF;
  --surface:    #F4F5F7;
  --surface-2:  #EAECF0;
  --ink:        #0A0B0D;
  --ink-2:      #1F2328;
  --ink-soft:   #565C66;
  --line:       #E2E5EA;
  --line-2:     #CFD4DB;

  --blue:       #2540E8;
  --blue-deep:  #1728A8;
  --blue-tint:  #EEF0FE;

  --verified:   #0B8F5C;
  --verified-t: #E3F4EC;
  --alleged:    #6B7280;
  --alleged-t:  #EFF1F3;
  --disputed:   #C2410C;
  --disputed-t: #FCEDE4;

  --gutter: 2rem;
  --max: 78rem;
  --r: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Archivo, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
p { margin: 0 0 1.1em; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}
h3, h4 { letter-spacing: -0.02em; line-height: 1.15; }

.mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: .8em;
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 3px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.band { padding-block: 7rem; }
.band-sm { padding-block: 4.5rem; }
.dark { background: var(--ink); color: #A8AEB8; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.tint { background: var(--surface); }
.blue { background: var(--blue); color: #C9D1FF; }
.blue h2, .blue h3 { color: #fff; }

.shead { max-width: 52rem; margin-bottom: 3.5rem; }
.shead h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 1.1rem; }
.shead p { font-size: 1.2rem; line-height: 1.5; color: var(--ink-soft); max-width: 40rem; margin: 0; }
.dark .shead p { color: #98A0AC; }
.blue .shead p { color: #C3CCFF; }

.kicker {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--blue);
  margin-bottom: 1.1rem;
}
.dark .kicker { color: #7C93FF; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.75rem;
  font: inherit; font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: 8px;
  transition: background-color .15s, border-color .15s, color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-fill { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-fill:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--ink); }
.dark .btn-line { color: #fff; border-color: #333A45; }
.dark .btn-line:hover { border-color: #6C7787; }
.btn-white { background: #fff; color: var(--blue); border-color: #fff; }
.btn-white:hover { background: #EEF0FE; border-color: #EEF0FE; }
.btn-wide { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav-bar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: 74px; }
.logo { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.logo-mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  font-size: .82rem; font-weight: 800; letter-spacing: -0.04em;
}
.logo-name { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.035em; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: .96rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; }
.nav a:hover { color: var(--ink); }
.nav .btn { padding: .62rem 1.2rem; font-size: .92rem; }
.burger {
  display: none; background: none; border: 2px solid var(--line-2);
  border-radius: 7px; padding: .5rem .8rem; font: inherit; font-weight: 600; cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-block: 6rem 6.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4.5rem; align-items: center; }
.hero h1 {
  font-size: clamp(2.9rem, 6.6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: .96;
  margin-bottom: 1.6rem;
}
.hero-sub { font-size: 1.24rem; line-height: 1.5; color: var(--ink-soft); max-width: 32rem; margin-bottom: 2.25rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-foot { display: flex; flex-wrap: wrap; gap: 1.9rem; margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero-foot div { font-size: .92rem; color: var(--ink-soft); }
.hero-foot strong { display: block; font-size: 1.7rem; font-weight: 700; letter-spacing: -0.035em; color: var(--ink); line-height: 1.1; }

/* the product object: an evidence record */
.record {
  background: var(--ink);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 26px 60px -22px rgba(10,11,13,.45);
}
.record-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1.05rem; margin-bottom: 1.05rem;
  border-bottom: 1px solid #262C35;
}
.record-top span { font-size: .78rem; font-weight: 600; color: #8891A0; }
.record-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: .85rem; align-items: center;
  padding: .82rem 0; border-bottom: 1px solid #1B2027;
}
.record-row:last-of-type { border-bottom: 0; }
.record-row p { margin: 0; font-size: .9rem; color: #D2D7DE; line-height: 1.35; }
.record-row .mono { display: block; font-size: .72rem; color: #6E7887; margin-top: .22rem; }
.dot { width: 11px; height: 11px; border-radius: 3px; flex: none; }
.dot-v { background: #14C97E; }
.dot-a { background: transparent; border: 2px solid #7C8798; }
.dot-d { background: linear-gradient(135deg, #F0812F 0 50%, transparent 50%); border: 2px solid #F0812F; }
.tag { font-size: .72rem; font-weight: 700; padding: .22rem .5rem; border-radius: 5px; white-space: nowrap; }
.tag-v { color: #14C97E; background: rgba(20,201,126,.12); }
.tag-a { color: #9AA5B4; background: rgba(154,165,180,.12); }
.tag-d { color: #F0812F; background: rgba(240,129,47,.12); }

/* ============================================================
   BIG STATEMENT BAND
   ============================================================ */
.statement { font-size: clamp(1.9rem, 4.4vw, 3.4rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.06; max-width: 24ch; }
.statement-sub { font-size: 1.18rem; line-height: 1.55; max-width: 34rem; margin-top: 1.6rem; }

/* ============================================================
   CLASSIFICATION EXPLORER (signature interactive)
   ============================================================ */
.explorer { display: grid; grid-template-columns: 19rem 1fr; gap: 2.5rem; align-items: start; }
.tabs { display: flex; flex-direction: column; gap: .6rem; }
.tab {
  display: flex; align-items: center; gap: .85rem;
  width: 100%; text-align: left; cursor: pointer;
  font: inherit; font-size: 1.06rem; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink-soft);
  background: transparent; border: 2px solid var(--line);
  border-radius: 10px; padding: 1.05rem 1.2rem;
  transition: border-color .15s, background-color .15s, color .15s;
}
.tab:hover { border-color: var(--line-2); }
.tab[aria-selected="true"] { color: var(--ink); background: var(--bg); border-color: var(--ink); }
.tab .dot { width: 13px; height: 13px; }
.tab .dot-a { border-color: var(--alleged); }
.tab .dot-v { background: var(--verified); }
.tab .dot-d { background: linear-gradient(135deg, var(--disputed) 0 50%, transparent 50%); border-color: var(--disputed); }

.panel { border: 2px solid var(--ink); border-radius: 14px; padding: 2.4rem; background: var(--bg); }
.panel[hidden] { display: none; }
.panel h3 { font-size: 1.7rem; margin-bottom: .9rem; }
.panel > p { font-size: 1.06rem; line-height: 1.6; color: var(--ink-soft); max-width: 38rem; }
.panel-eg {
  margin-top: 1.6rem; padding: 1.15rem 1.3rem;
  border-radius: 10px; background: var(--surface);
  font-size: .96rem; line-height: 1.5;
}
.panel-eg strong { display: block; font-size: .78rem; font-weight: 700; color: var(--ink-soft); margin-bottom: .4rem; }

/* ============================================================
   DOES / DOES NOT
   ============================================================ */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.col { border-radius: 14px; padding: 2.4rem; }
.col-y { background: var(--bg); border: 2px solid var(--ink); }
.col-n { background: var(--surface); border: 2px solid transparent; }
.col h3 { font-size: 1.45rem; margin-bottom: 1.5rem; }
.col ul { margin: 0; padding: 0; list-style: none; }
.col li { font-size: 1rem; line-height: 1.5; padding: .95rem 0 .95rem 1.85rem; position: relative; color: var(--ink-soft); border-top: 1px solid var(--line); }
.col li:first-child { border-top: 0; padding-top: 0; }
.col li:first-child::before { top: .42rem; }
.col li strong { color: var(--ink); font-weight: 700; }
.col-y li::before {
  content: ""; position: absolute; left: 0; top: 1.35rem;
  width: 11px; height: 11px; border-radius: 3px; background: var(--verified);
}
.col-n li::before {
  content: ""; position: absolute; left: 0; top: 1.6rem;
  width: 11px; height: 2px; background: var(--disputed);
}

/* ============================================================
   PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stepc { border-radius: 14px; background: var(--bg); border: 1px solid var(--line); padding: 1.9rem 1.6rem; }
.stepn {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ink); color: #fff;
  font-size: .92rem; font-weight: 700;
  margin-bottom: 1.15rem;
}
.stepc h3 { font-size: 1.22rem; margin-bottom: .55rem; }
.stepc p { font-size: .94rem; line-height: 1.5; color: var(--ink-soft); margin: 0; }

/* ============================================================
   DISCIPLINES
   ============================================================ */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cell { border-radius: 14px; border: 1px solid #262C35; padding: 2rem 1.8rem; }
.cell h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.cell p { font-size: .94rem; line-height: 1.55; color: #98A0AC; margin: 0; }

/* ============================================================
   FUNDING
   ============================================================ */
.flow3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.fcard { background: rgba(255,255,255,.09); border-radius: 14px; padding: 2rem 1.8rem; }
.fcard h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.fcard p { font-size: .96rem; line-height: 1.55; color: #C9D1FF; margin: 0; }
.legalbox { background: #fff; border-radius: 14px; padding: 2.2rem 2.4rem; color: var(--ink-2); }
.legalbox h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.legalbox p { font-size: .96rem; line-height: 1.65; color: var(--ink-soft); max-width: 58rem; }
.legalbox p:last-child { margin-bottom: 0; }
.legalbox strong { color: var(--ink); }

/* ============================================================
   IMAGE SLOTS (for real photography later)
   ============================================================ */
.imgslot {
  border-radius: 14px;
  background:
    repeating-linear-gradient(135deg, var(--surface) 0 12px, var(--surface-2) 12px 24px);
  border: 2px dashed var(--line-2);
  display: grid; place-items: center;
  min-height: 17rem; padding: 2rem; text-align: center;
}
.imgslot span { font-size: .92rem; font-weight: 600; color: var(--ink-soft); max-width: 24rem; }

/* ============================================================
   FORM
   ============================================================ */
.formwrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.fld { margin-bottom: 1.1rem; }
.fld label { display: block; font-size: .92rem; font-weight: 600; color: var(--ink); margin-bottom: .42rem; }
.fld input, .fld select, .fld textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--bg); border: 2px solid var(--line-2); border-radius: 8px; padding: .82rem .95rem;
}
.fld textarea { min-height: 9rem; resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--blue); outline: none; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.warn {
  font-size: .9rem; line-height: 1.55; color: var(--ink-soft);
  background: var(--blue-tint); border-radius: 10px; padding: 1rem 1.15rem; margin-bottom: 1.5rem;
}
.agree { display: flex; gap: .75rem; align-items: flex-start; font-size: .86rem; line-height: 1.5; color: var(--ink-soft); margin: 1.3rem 0 1.5rem; }
.agree input { flex: none; margin-top: .3rem; width: 17px; height: 17px; accent-color: var(--blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink); color: #7D8794; padding-block: 4.5rem 2.5rem; }
.foot a { color: #B6BEC9; text-decoration: none; }
.foot a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #232932; }
.foot h4 { font-size: .8rem; font-weight: 700; letter-spacing: .02em; color: #fff; margin-bottom: 1.05rem; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: .6rem; font-size: .95rem; }
.foot .logo-name { color: #fff; }
.foot-tag { font-size: .95rem; color: #7D8794; max-width: 21rem; margin-top: 1.1rem; }
.foot-legal { padding-top: 2rem; font-size: .82rem; line-height: 1.7; color: #6B7684; max-width: 64rem; }
.foot-legal p { margin-bottom: .8rem; }

/* ============================================================
   LONG FORM
   ============================================================ */
.doc { max-width: 44rem; }
.doc h2 { font-size: 2rem; margin: 3.5rem 0 1rem; }
.doc h3 { font-size: 1.3rem; margin: 2.2rem 0 .6rem; }
.doc p, .doc li { font-size: 1.04rem; line-height: 1.7; color: var(--ink-soft); }
.doc li { margin-bottom: .55rem; }
.doc strong { color: var(--ink); }
.pagehead { padding-block: 5rem 3rem; }
.pagehead h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800; letter-spacing: -0.045em; max-width: 18ch; margin-bottom: 1.2rem; }
.pagehead p { font-size: 1.2rem; color: var(--ink-soft); max-width: 38rem; margin: 0; }

/* ---------- hero entrance: one moment only ---------- */
@media (prefers-reduced-motion: no-preference) {
  .in { opacity: 0; transform: translateY(14px); animation: rise .72s cubic-bezier(.22,.61,.36,1) forwards; }
  .in-2 { animation-delay: .09s; }
  .in-3 { animation-delay: .18s; }
  .in-4 { animation-delay: .3s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .explorer { grid-template-columns: 1fr; }
  .tabs { flex-direction: row; flex-wrap: wrap; }
  .tab { width: auto; flex: 1 1 12rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .grid3, .flow3 { grid-template-columns: 1fr 1fr; }
  .formwrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
}
@media (max-width: 720px) {
  :root { --gutter: 1.25rem; }
  body { font-size: 16px; }
  .band { padding-block: 4rem; }
  .hero { padding-block: 3rem 4rem; }
  .two, .steps, .grid3, .flow3 { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .col, .panel, .legalbox { padding: 1.6rem; }
  .nav { display: none; }
  .nav.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.3rem;
  }
  .nav.open a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav.open .btn { margin-top: 1rem; border-bottom: 0; }
  .burger { display: block; }
  .btn { width: 100%; }
  .hero-btns { flex-direction: column; align-items: stretch; }
}

/* inline text link (long-form pages) */
.tlink { font-weight: 600; color: var(--blue); text-decoration: none; border-bottom: 2px solid rgba(37,64,232,.28); }
.tlink:hover { border-bottom-color: var(--blue); }

/* ============================================================
   PHOTOGRAPHY
   Slots degrade to a designed placeholder if the file is absent,
   so a missing image never renders as a broken icon.
   ============================================================ */
.photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--surface);
  background-image: repeating-linear-gradient(135deg, #EDEFF2 0 14px, #E4E7EC 14px 28px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo::after {
  content: attr(data-slot);
  position: absolute; inset: auto 0 0 0;
  padding: .7rem 1rem;
  font-size: .74rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(10,11,13,.72));
  opacity: 0; transition: opacity .15s;
}
.photo:hover::after { opacity: 1; }
.photo-4x3  { aspect-ratio: 4 / 3; }
.photo-3x4  { aspect-ratio: 3 / 4; }
.photo-16x9 { aspect-ratio: 16 / 9; }

/* full-bleed photo band with overlaid statement */
.band-photo {
  position: relative;
  min-height: 32rem;
  display: grid; align-items: end;
  background-color: var(--ink);
  background-size: cover; background-position: center;
  background-image: repeating-linear-gradient(135deg, #16191F 0 16px, #1E222A 16px 32px);
}
.band-photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,11,13,.92) 0%, rgba(10,11,13,.72) 45%, rgba(10,11,13,.35) 100%);
}
.band-photo .wrap { position: relative; padding-block: 4.5rem; }
.band-photo h2 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.2rem); max-width: 20ch; margin-bottom: 1.1rem; }
.band-photo p { color: #C2C8D2; font-size: 1.14rem; line-height: 1.55; max-width: 34rem; margin: 0; }

/* who does the work */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3.5rem; align-items: center; }
.about h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 1.2rem; }
.about p { font-size: 1.08rem; line-height: 1.6; color: var(--ink-soft); max-width: 36rem; }

.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }

@media (max-width: 1040px) {
  .about { grid-template-columns: 1fr; gap: 2.25rem; }
  .about .photo-3x4 { aspect-ratio: 16 / 10; }
}
@media (max-width: 720px) {
  .gal { grid-template-columns: 1fr 1fr; }
  .band-photo { min-height: 24rem; }
}

/* ============================================================
   SAMPLE BANNER + CASE FILE LAYOUT
   ============================================================ */
.sample-bar {
  position: sticky; top: 0; z-index: 90;
  background: #C2410C; color: #fff;
  padding: .7rem 0;
  font-size: .88rem; font-weight: 700; letter-spacing: -0.01em;
}
.sample-bar .wrap { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.sample-bar span { font-weight: 500; color: #FCE3D6; }
.sample-bar + .nav-bar { top: 44px; }

.case-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3.5rem; align-items: start; }
.case-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.ctag {
  font-size: .78rem; font-weight: 600; padding: .35rem .7rem;
  border-radius: 6px; background: var(--surface); color: var(--ink-soft);
}
.ctag-live { background: var(--verified-t); color: var(--verified); }

.eidx { margin-top: 1rem; }
.eitem {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 1rem; align-items: start;
  padding: 1.1rem 0; border-top: 1px solid var(--line);
}
.eitem p { margin: 0; font-size: 1rem; line-height: 1.5; color: var(--ink-2); }
.eitem .mono { display: block; font-size: .76rem; color: var(--ink-soft); margin-top: .3rem; }
.eitem .dot { margin-top: .45rem; }
.eitem .dot-a { border-color: var(--alleged); }
.eitem .dot-v { background: var(--verified); }
.eitem .dot-d { background: linear-gradient(135deg, var(--disputed) 0 50%, transparent 50%); border-color: var(--disputed); }
.pill { font-size: .74rem; font-weight: 700; padding: .25rem .55rem; border-radius: 5px; white-space: nowrap; }
.pill-v { color: var(--verified); background: var(--verified-t); }
.pill-a { color: var(--alleged); background: var(--alleged-t); }
.pill-d { color: var(--disputed); background: var(--disputed-t); }

.support {
  border: 2px solid var(--ink); border-radius: 14px;
  padding: 1.9rem; position: sticky; top: 130px; background: var(--bg);
}
.support h3 { font-size: 1.05rem; margin-bottom: 1.3rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.big { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--ink); display: block; }
.big-sub { font-size: .95rem; color: var(--ink-soft); margin: .45rem 0 1.1rem; }
.bar { height: 8px; background: var(--surface-2); border-radius: 5px; overflow: hidden; margin-bottom: 1.5rem; }
.bar span { display: block; height: 100%; background: var(--blue); border-radius: 5px; }
.costs { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.costs li { display: flex; justify-content: space-between; gap: 1rem; font-size: .94rem; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.costs li span:last-child { color: var(--ink-soft); white-space: nowrap; }
.btn-dead { background: var(--surface-2); color: var(--ink-soft); border-color: var(--surface-2); cursor: not-allowed; }
.note {
  font-size: .82rem; line-height: 1.55; color: var(--ink-soft);
  background: var(--surface); border-radius: 9px; padding: .9rem 1rem; margin-top: 1.2rem;
}
.note strong { color: var(--ink); }

@media (max-width: 1040px) {
  .case-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .support { position: static; }
}
@media (max-width: 720px) {
  .eitem { grid-template-columns: auto 1fr; row-gap: .55rem; }
  .eitem .pill { grid-column: 2; justify-self: start; }
}
