/* ===========================================================
   DigiStacs Co. -- shared design system
   Dark navy / azure-accent tech identity. Montserrat 900 display,
   Epilogue for nav/labels/buttons, Inter for body copy.
=========================================================== */

:root{
  --bg: #070a12;
  --bg-2: #0b0f1a;
  --surface: #0f1524;
  --surface-2: #131a2c;
  --border: #212a3f;
  --text: #f2f4fa;
  --muted: #8d96ac;
  --accent: #2ea8ff;
  --accent-dim: #153a56;
  --accent-ink: #05141f;
  --good: #35d38a;
}

*{ box-sizing: border-box; }
html,body{ margin: 0; padding: 0; }
body{
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection{ background: var(--accent); color: var(--accent-ink); }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; }
:focus-visible{ outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
img{ max-width: 100%; }

/* ---------- backdrop, shared across every page ---------- */
.stage__field{
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(60% 42% at 50% 0%, rgba(46,168,255,0.14), rgba(46,168,255,0) 70%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 55%, #04060a 100%);
}
.stage__stacks{ position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.stage__stacks span{
  position: absolute;
  left: -10%;
  width: 130%;
  height: 3.4vw;
  min-height: 26px;
  max-height: 46px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46,168,255,0) 0%, rgba(46,168,255,0.10) 35%, rgba(46,168,255,0.16) 55%, rgba(46,168,255,0) 100%);
  transform: rotate(-6deg);
}
.stage__stacks span:nth-child(1){ top: 4%;  transform: rotate(-6deg) translateX(-4%); opacity: .5; }
.stage__stacks span:nth-child(2){ top: 11%; transform: rotate(-6deg) translateX(2%);  opacity: .75; }
.stage__stacks span:nth-child(3){ top: 17.6%; transform: rotate(-6deg) translateX(-1%); opacity: .9; }
.stage__stacks span:nth-child(4){ top: 82%; transform: rotate(-6deg) translateX(6%);  opacity: .45; }
.stage__stacks span:nth-child(5){ top: 89%; transform: rotate(-6deg) translateX(-3%); opacity: .7; }
.stage__stacks span:nth-child(6){ top: 95.6%; transform: rotate(-6deg) translateX(1%);  opacity: .9; }
.stage__grid{
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  background-position: -4px -4px;
  -webkit-mask-image: radial-gradient(70% 55% at 50% 8%, #000 0%, transparent 80%);
          mask-image: radial-gradient(70% 55% at 50% 8%, #000 0%, transparent 80%);
  pointer-events: none;
}

/* ---------- nav ---------- */
.nav{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 24px clamp(20px, 5vw, 56px) 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(7,10,18,0.65), rgba(7,10,18,0.2));
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  opacity: 0;
  animation: rise .7s cubic-bezier(.16,1,.3,1) forwards;
}
.nav a{
  position: relative;
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 2px;
  transition: color .18s ease;
}
.nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right .22s cubic-bezier(.16,1,.3,1);
}
.nav a:hover{ color: var(--text); }
.nav a:hover::after{ right: 0; }
.nav a[aria-current="page"]{ color: var(--text); }
.nav a[aria-current="page"]::after{ right: 0; }

.nav__phone{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px !important;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent) !important;
  font-family: "Epilogue", sans-serif;
  transition: background .18s ease, color .18s ease, transform .18s cubic-bezier(.16,1,.3,1);
}
.nav__phone svg{ width: 13px; height: 13px; }
.nav__phone::after{ display: none; }
.nav__phone:hover{ background: var(--accent); color: var(--accent-ink) !important; transform: translateY(-1px); }
.nav__phone:active{ transform: translateY(0) scale(0.96); }

@keyframes rise{ from{ opacity: 0; transform: translateY(14px); } to{ opacity: 1; transform: translateY(0); } }
.reveal{ opacity: 0; animation: rise .8s cubic-bezier(.16,1,.3,1) forwards; }
.reveal--1{ animation-delay: .08s; }
.reveal--2{ animation-delay: .16s; }
.reveal--3{ animation-delay: .24s; }
.reveal--4{ animation-delay: .32s; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4bb6ff, var(--accent) 60%);
  color: var(--accent-ink);
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 16px 34px -14px rgba(46,168,255,0.55);
  transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .18s ease, filter .18s ease;
}
.btn:hover{ transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 20px 38px -14px rgba(46,168,255,0.65); }
.btn:active{ transform: translateY(0) scale(0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 8px 18px -10px rgba(46,168,255,0.5); transition-duration: .08s; }
.btn svg{ width: 15px; height: 15px; transition: transform .18s ease; }
.btn:hover svg{ transform: translateX(3px); }

.btn--ghost{
  background: transparent;
  color: var(--text);
  box-shadow: none;
  border: 1px solid var(--border);
}
.btn--ghost:hover{ border-color: var(--accent); box-shadow: none; filter: none; }
.btn--ghost:active{ transform: translateY(0) scale(0.97); background: var(--surface); }

.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--accent);
  transition: gap .18s ease;
}
.link-arrow:hover{ gap: 10px; }

/* ---------- page hero (content pages) ---------- */
.page-hero{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(52px, 9vh, 92px) 24px clamp(40px, 6vh, 60px);
  max-width: 840px;
  margin: 0 auto;
}
.page-hero h1{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.026em;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 0 40px rgba(46,168,255,0.24);
}
.page-hero p{
  margin: 18px auto 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  text-wrap: balance;
}

/* ---------- hero (home) ---------- */
.hero{
  position: relative;
  z-index: 1;
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(56px, 10vh, 108px) 24px clamp(48px, 8vh, 84px);
}
.hero h1{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6.6vw, 5.1rem);
  line-height: 1.03;
  letter-spacing: -0.028em;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 0 46px rgba(46,168,255,0.28);
}
.hero__tagline{
  margin: 22px 0 0;
  font-weight: 500;
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  letter-spacing: 0.02em;
  color: var(--muted);
  max-width: 40ch;
  text-wrap: balance;
}
.hero__mark{ display: inline-flex; align-items: center; gap: 12px; margin-top: clamp(30px, 5vh, 46px); }
.hero__mark svg{ width: 30px; height: 30px; flex: none; }
.hero__mark span{
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.01em;
  color: var(--accent);
}
.hero__cta{ margin-top: clamp(30px, 5vh, 40px); }
.hero__sub{ margin: 18px 0 0; font-size: 13px; color: var(--muted); }

/* ---------- tag row (small credential pills) ---------- */
.tag-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}
.tag{
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 7px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ---------- section rhythm ---------- */
.section{
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 88px) 24px;
}
.section + .section{ border-top: 1px solid var(--border); }
.section__head{ text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 6vh, 56px); }
.section__head h2{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}
.section__head p{ margin: 12px 0 0; color: var(--muted); font-size: 1rem; text-wrap: balance; }

/* ---------- prose (body copy, privacy policy, about) ---------- */
.prose{ max-width: 68ch; margin: 0 auto; color: var(--text); font-size: 1.02rem; line-height: 1.7; }
.prose p{ margin: 0 0 1.2em; color: #d7dbe8; }
.prose p:last-child{ margin-bottom: 0; }
.prose strong{ color: #fff; font-weight: 600; }

/* ---------- feature blurb row (no card chrome, for differentiator lists) ---------- */
.blurb-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}
.blurb{ text-align: left; }
.blurb__icon{
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 14px;
}
.blurb__icon svg{ width: 19px; height: 19px; }
.blurb h3{ margin: 0 0 6px; font-family: "Epilogue", sans-serif; font-weight: 700; font-size: 1rem; color: #fff; }
.blurb p{ margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

/* ---------- pricing / tier cards ---------- */
.tier-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.tier{
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset, 0 20px 44px -26px rgba(0,0,0,0.7);
}
.tier--popular{ border-color: rgba(46,168,255,0.45); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.tier__badge{
  position: absolute;
  top: -13px; left: 26px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tier__icon{
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 14px;
}
.tier h3{ margin: 0; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.3rem; color: #fff; }
.tier__desc{ margin: 6px 0 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; min-height: 2.7em; }
.tier__price{ display: flex; align-items: baseline; gap: 6px; margin: 18px 0 2px; }
.tier__price strong{ font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 2.1rem; color: #fff; }
.tier__price span{ color: var(--muted); font-size: 0.85rem; }
.tier__fee{ margin: 0 0 18px; color: var(--muted); font-size: 0.78rem; }
.tier__list{ list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.tier__list li{ display: flex; gap: 9px; align-items: flex-start; font-size: 0.87rem; color: #d7dbe8; line-height: 1.4; }
.tier__list svg{ width: 14px; height: 14px; flex: none; margin-top: 3px; color: var(--good); }
.tier__meta{ margin: 0 0 18px; font-size: 0.78rem; color: var(--muted); }
.tier .btn{ width: 100%; justify-content: center; padding: 13px 20px; font-size: 12px; }
.tier__foot{ margin: 12px 0 0; text-align: center; font-size: 0.74rem; color: var(--muted); }

/* ---------- comparison note ---------- */
.compare-note{
  text-align: center;
  max-width: 640px;
  margin: clamp(28px, 4vh, 44px) auto 0;
  padding: 18px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.compare-note strong{ color: var(--text); }

/* ---------- a-la-carte table ---------- */
.price-table{ width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.price-table th{
  text-align: left;
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 14px 12px;
  border-bottom: 1px solid var(--border);
}
.price-table td{ padding: 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.price-table tr:last-child td{ border-bottom: none; }
.price-table td:first-child{ color: #fff; font-weight: 600; }
.price-table td:nth-child(2){ font-family: "Epilogue", sans-serif; font-weight: 700; color: var(--accent); white-space: nowrap; }
.price-table td:nth-child(3){ color: var(--muted); }
.price-table td:last-child{ text-align: right; white-space: nowrap; }
.table-scroll{ overflow-x: auto; }

/* ---------- process steps ---------- */
.steps{ display: flex; flex-direction: column; gap: 0; }
.step{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
}
.step + .step{ border-top: 1px solid var(--border); }
.step__num{
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
}
.step__eyebrow{
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.step h3{ margin: 0 0 8px; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; }
.step p{ margin: 0 0 12px; color: #d7dbe8; font-size: 0.95rem; line-height: 1.6; max-width: 64ch; }
.step__list{ list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.step__list li{ display: flex; gap: 9px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.step__list svg{ width: 13px; height: 13px; flex: none; margin-top: 3px; color: var(--good); }
.step__tag{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "Epilogue", sans-serif; font-weight: 600; font-size: 0.78rem;
  color: var(--good);
}

/* ---------- stat strip (horizontal, dividers not cards) ---------- */
.stat-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.stat-strip__item{
  padding: 30px 24px;
  text-align: left;
  border-left: 1px solid var(--border);
}
.stat-strip__item:first-child{ border-left: none; }
.stat-strip__num{
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-strip__item h3{ margin: 8px 0 6px; font-family: "Epilogue", sans-serif; font-weight: 700; font-size: 0.95rem; color: #fff; }
.stat-strip__item p{ margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.55; }
@media (max-width: 760px){
  .stat-strip{ grid-template-columns: 1fr 1fr; }
  .stat-strip__item:nth-child(2){ border-left: 1px solid var(--border); }
  .stat-strip__item:nth-child(3){ border-left: none; border-top: 1px solid var(--border); }
  .stat-strip__item:nth-child(4){ border-top: 1px solid var(--border); }
}

/* ---------- final CTA band ---------- */
.cta-band{
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-band h2{
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: #fff;
  text-wrap: balance;
}
.cta-band p{ margin: 0 0 26px; color: var(--muted); text-wrap: balance; }
.cta-band__actions{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 760px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-list{ list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li{ display: flex; gap: 14px; align-items: flex-start; }
.contact-list__icon{
  width: 36px; height: 36px; flex: none;
  border-radius: 9px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-list__icon svg{ width: 16px; height: 16px; }
.contact-list strong{ display: block; font-family: "Epilogue", sans-serif; font-weight: 600; font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-list a{ color: var(--text); font-size: 0.98rem; }
.contact-list a:hover{ color: var(--accent); }
.contact-list span{ color: var(--text); font-size: 0.98rem; }

.form-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 34px);
}
.field{ margin-bottom: 18px; }
.field label{
  display: block;
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 8px;
}
.field label .req{ color: var(--accent); }
.field input, .field textarea{
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: border-color .18s ease;
}
.field input:focus, .field textarea:focus{ outline: none; border-color: var(--accent); }
.field textarea{ resize: vertical; min-height: 120px; }
.field__error{
  display: none;
  margin: 7px 0 0;
  font-size: 12.5px;
  color: #ff8a8a;
}
.field--error input, .field--error textarea{ border-color: #e5484d; }
.field--error .field__error{ display: block; }
.form-note{ margin: 14px 0 0; font-size: 0.8rem; color: var(--muted); text-align: center; }
.form-note a{ color: var(--accent); }

/* ---------- privacy / TOC ---------- */
.toc{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.toc a{
  display: flex;
  gap: 10px;
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.toc a:hover{ color: var(--accent); }
.toc a span{ color: var(--accent); font-family: "Epilogue", sans-serif; font-weight: 700; font-size: 0.78rem; }

.legal-section{ max-width: 68ch; margin: 0 auto clamp(36px, 5vh, 52px); scroll-margin-top: 90px; }
.legal-section h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 14px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.legal-section h2 span{ color: var(--accent); font-size: 0.85rem; font-family: "Epilogue", sans-serif; }
.legal-section ul{ margin: 0 0 1.2em; padding-left: 1.3em; color: #d7dbe8; }
.legal-section li{ margin-bottom: 6px; line-height: 1.6; }
.legal-summary{
  max-width: 68ch;
  margin: 0 auto clamp(40px, 6vh, 56px);
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid rgba(46,168,255,0.3);
  background: var(--accent-dim);
  color: #d7ecfb;
  font-size: 0.92rem;
  line-height: 1.6;
}
.legal-meta{ text-align: center; color: var(--muted); font-size: 0.85rem; margin: 0 0 36px; }

/* ---------- footer ---------- */
footer{
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 30px 24px 34px;
  text-align: center;
}
.social{ display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; }
.social a{
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--muted);
  transition: color .18s ease, background .18s ease, transform .18s cubic-bezier(.16,1,.3,1);
}
.social svg{ width: 16px; height: 16px; }
.social a:hover{ color: var(--text); background: var(--surface); transform: translateY(-2px); }
footer p{ margin: 0 0 6px; font-size: 12px; letter-spacing: 0.02em; color: var(--muted); opacity: 0.85; }
footer p:last-child{ margin-bottom: 0; }
footer a.footer-link{ color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
footer a.footer-link:hover{ color: var(--accent); }

@media (prefers-reduced-motion: reduce){
  .nav, .reveal{ animation: none !important; opacity: 1 !important; transform: none !important; }
  .btn, .social a, .nav a::after{ transition: none; }
}

/* ---------- scroll-triggered reveals (content below the fold) ---------- */
/* Hidden only once JS confirms it can un-hide them (html.js) -- content
   stays fully visible with no-JS or if animations.js fails to load. */
.js .reveal-on-scroll{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.js .reveal-on-scroll.is-visible{ opacity: 1; transform: translateY(0); }
.js .reveal-on-scroll--1{ transition-delay: .06s; }
.js .reveal-on-scroll--2{ transition-delay: .12s; }
.js .reveal-on-scroll--3{ transition-delay: .18s; }
.js .reveal-on-scroll--4{ transition-delay: .24s; }

@media (prefers-reduced-motion: reduce){
  .js .reveal-on-scroll{ opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Printing (or saving as PDF) never scrolls, so IntersectionObserver
   would otherwise never fire for anything below the fold -- force
   every reveal-on-scroll target visible for print output regardless
   of on-screen scroll state. */
@media print{
  .js .reveal-on-scroll{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .stage__field, .stage__stacks, .stage__grid{ display: none !important; }
}

/* ---------- ambient background drift (subtle, slow, one moment) ---------- */
.js .stage__stacks span{ transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
@media (prefers-reduced-motion: reduce){
  .js .stage__stacks span{ transition: none; }
}

/* ---------- card hover lift (tiers, table rows) ---------- */
.tier{ transition: transform .22s cubic-bezier(.16,1,.3,1), border-color .22s ease, box-shadow .22s ease; }
.tier:hover{ transform: translateY(-4px); border-color: rgba(46,168,255,0.4); box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 26px 50px -24px rgba(0,0,0,0.75); }
.price-table tbody tr{ transition: background .18s ease; }
.price-table tbody tr:hover{ background: rgba(46,168,255,0.05); }
.blurb__icon{ transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s ease; }
.blurb:hover .blurb__icon{ transform: translateY(-3px) scale(1.05); background: rgba(46,168,255,0.24); }
.step__num{ transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease; }
.step:hover .step__num{ transform: scale(1.08); border-color: var(--accent); }
