/* ============================================================
   Vertical Integrations Unlimited — inner pages
   Palette and type inherited from the landing page so the site
   reads as one thing. Single-theme by design; every colour is
   painted explicitly.
   ============================================================ */
:root{
  --ground:        #0B0805;
  --ground-raised: #14100A;
  --ground-line:   #241C11;

  --gold-bright:   #F8D060;
  --gold:          #F8B830;
  --amber:         #E08000;
  --bronze:        #C87000;

  --bone:          #F2EDE4;
  --muted:         #978973;
  --muted-dim:     #6B6053;

  --step-0: 1rem;
  --step-1: 1.15rem;
  --step-2: 1.45rem;
  --step-3: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem);
  --step-4: clamp(2.15rem, 1.1rem + 4vw, 4.9rem);

  --shell: 1120px;
  --font-display: 'Archivo Black', 'Arial Black', system-ui, sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--ground);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a{ color: var(--gold); text-decoration: none; }
a:hover{ color: var(--gold-bright); }
:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
img{ max-width: 100%; height: auto; }

.shell{
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.narrow{ max-width: 46rem; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0;
}

h1,h2,h3{
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
  line-height: 1.06;
}
h1{ font-size: var(--step-3); }
h2{ font-size: var(--step-2); }
p{ margin: 0; text-wrap: pretty; }

/* ---------- header -------------------------------------- */

.site-head{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11,8,5,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ground-line);
}
.head-in{
  max-width: var(--shell);
  margin-inline: auto;
  padding: 0.9rem clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.head-mark{ display: flex; align-items: center; gap: 0.7rem; flex: 1 1 auto; min-width: 0; }
.head-mark img{ width: 34px; height: 34px; flex: none; }
.head-mark span{
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  color: var(--bone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.head-nav{ display: flex; gap: 1.4rem; align-items: center; }
.head-nav a{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.head-nav a:hover, .head-nav a[aria-current]{ color: var(--gold); }
@media (max-width: 720px){
  .head-mark span{ display: none; }
  .head-nav{ gap: 1rem; }
}

/* ---------- page head ----------------------------------- */

.page-head{
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}
.page-head::before{
  content: "";
  position: absolute;
  top: -40%; left: 50%;
  width: min(140vw, 1000px);
  aspect-ratio: 1;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(248,184,48,0.10) 0%, rgba(224,128,0,0.04) 40%, transparent 66%);
  pointer-events: none;
}
.page-head .shell{ position: relative; z-index: 1; }
.page-head h1{ font-size: var(--step-4); line-height: 0.99; margin-top: 0.9rem; }
.page-head .lede{
  margin-top: 1.1rem;
  font-size: var(--step-1);
  color: var(--muted);
  max-width: 40rem;
}

.rule{
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--ground-line) 18%, var(--bronze) 50%, var(--ground-line) 82%, transparent);
  opacity: 0.55;
}

section{ padding-block: clamp(3rem, 8vw, 5rem); }

.section-head{
  display: flex; flex-direction: column; gap: 0.9rem;
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.section-head p{ color: var(--muted); font-size: var(--step-1); }

/* ---------- tiers --------------------------------------- */

.tiers{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1px;
  background: var(--ground-line);
  border: 1px solid var(--ground-line);
}
.tier{
  background: var(--ground);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex; flex-direction: column;
  position: relative;
  transition: background 260ms ease;
}
.tier:hover{ background: var(--ground-raised); }
.tier::after{
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 340ms cubic-bezier(.2,.7,.25,1);
}
.tier:hover::after{ transform: scaleX(1); }
.tier.on::after{ transform: scaleX(1); }

.tier h3{ font-size: var(--step-2); color: var(--gold); }
.tier .price{
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin-top: 1.1rem;
  font-variant-numeric: tabular-nums;
}
.tier .price small{
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.tier .setup{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--bronze);
  margin-top: 0.5rem;
}
.tier ul{
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.62rem; flex: 1;
}
.tier li{
  position: relative; padding-left: 1.35rem;
  font-size: 0.93rem; line-height: 1.55; color: var(--muted);
}
.tier li::before{
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 4px;
  border-left: 2px solid var(--bronze);
  border-bottom: 2px solid var(--bronze);
  rotate: -45deg;
}

.note{
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--muted-dim);
}
.note b{ color: var(--muted); font-weight: 500; }

/* ---------- cards --------------------------------------- */

.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1px;
  background: var(--ground-line);
  border: 1px solid var(--ground-line);
}
.card{
  background: var(--ground);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: background 260ms ease;
}
.card:hover{ background: var(--ground-raised); }
.card h3{ font-size: 1.12rem; color: var(--gold); }
.card p{ color: var(--muted); font-size: 0.93rem; line-height: 1.6; }
.card .amount{
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--bronze);
}

/* ---------- contact ------------------------------------- */

.contact-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--ground-line);
  border: 1px solid var(--ground-line);
}
.contact-cell{
  background: var(--ground);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 0.55rem;
}
.contact-cell .lbl{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.contact-cell .val{
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  color: var(--bone);
  word-break: break-word;
}
.contact-cell .val a{ color: var(--bone); }
.contact-cell .val a:hover{ color: var(--gold); }
.contact-cell p{ color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.btn{
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--bronze);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.btn:hover, .btn:focus-visible{ background: var(--gold); border-color: var(--gold); color: #120C02; }
.btn-row{ display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }

.btn-solid{ background: var(--gold); border-color: var(--gold); color: #120C02; }
.btn-solid:hover, .btn-solid:focus-visible{ background: var(--gold-bright); border-color: var(--gold-bright); color: #120C02; }
.btn-quiet{ border-color: var(--ground-line); color: var(--muted); }
.btn-quiet:hover, .btn-quiet:focus-visible{ background: transparent; border-color: var(--bronze); color: var(--gold); }

.tier-cta{
  display: flex; flex-direction: column; gap: 0.55rem;
  margin-top: 1.6rem;
}
.tier-cta .btn{ justify-content: center; padding-inline: 1rem; text-align: center; }

/* ---------- prose --------------------------------------- */

.prose{ max-width: 44rem; }
.prose h2{
  font-size: var(--step-2);
  color: var(--gold);
  margin: 2.8rem 0 0.9rem;
}
.prose h2:first-of-type{ margin-top: 0; }
.prose h3{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0;
  color: var(--bone);
  margin: 1.7rem 0 0.5rem;
}
.prose p{ color: var(--muted); margin-bottom: 0.95rem; line-height: 1.7; }
.prose ul{
  margin: 0 0 1.1rem; padding-left: 1.2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.prose li{ color: var(--muted); line-height: 1.65; }
.prose li::marker{ color: var(--bronze); }
.prose strong{ color: var(--bone); font-weight: 600; }
.updated{
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 2.5rem;
}

/* ---------- footer -------------------------------------- */

footer{
  border-top: 1px solid var(--ground-line);
  padding-block: 2.5rem 2.75rem;
  margin-top: clamp(2rem, 6vw, 4rem);
}
.foot-nav{
  display: flex; flex-wrap: wrap; gap: 0.9rem 1.8rem;
  margin-bottom: 1.6rem;
}
.foot-nav a{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-nav a:hover{ color: var(--gold); }
.footer-in{
  display: flex; flex-wrap: wrap; gap: 0.7rem 2rem;
  align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted-dim);
}
.footer-in span{ display: block; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
