/*
Theme Name: Note It Claude
Text Domain: noteitclaude
Version: 1.0
Tested up to: 6.5
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Custom theme for Note It.
Author: the Note It team
Author URI: https://noteit.com.au/
Theme URI: https://noteit.com.au/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Note It - combined site stylesheet */
/* Extracted from all page style blocks. Noscript fallback stays in HTML. */

/* ===== base  (from index.html) ===== */
:root {
  --ink: #262f37;
  --ink-deep: #1b2127;
  --ink-soft: #3a434b;
  --paper: #f4f4f1;
  --paper-pure: #ffffff;
  --signal: #ff6b00;
  --signal-deep: #b34700;
  --signal-tint: rgba(255, 107, 0, 0.12);
  --body: #4b535a;
  --body-dim: #5c6368;
  --mono-grey: #a4a4a5;
  --line: #e3e1db;
  --line-dk: #39424a;
  --cream-on-dk: #edeeec;
  --dim-on-dk: #bcc0c3;
  --font: "Nunito Sans", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.skip-link {
  position: absolute;
  left: 8px;
  top: -100px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
}
.skip-link:focus {
  top: 8px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
}
h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 {
  font-weight: 900;
}

/* NAV */
header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 244, 241, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
header.nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo-img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a.navlink {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
  position: relative;
  padding: 4px 0;
}
.nav-links a.navlink::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--signal);
  transition: right 0.25s;
}
.nav-links a.navlink:hover::after {
  right: 0;
}
.btn {
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 21px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.15s,
    background 0.2s,
    border-color 0.2s;
  display: inline-block;
}
.btn:hover {
  background: var(--signal);
  border-color: var(--signal);
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn.ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn.lg {
  padding: 15px 28px;
  font-size: 16px;
}
.btn.on-dk {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}
.btn.on-dk:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.navtoggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.navtoggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: 0.25s;
}

/* HERO */
.hero {
  padding-top: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(40px, 6vw, 60px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 70px);
  margin: 18px 0 22px;
  max-width: 15ch;
}
.hero h1 .em {
  color: var(--signal);
}
.hero p.sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--body);
  max-width: 46ch;
  margin-bottom: 26px;
}
.payoff {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.payoff .tick {
  width: 8px;
  height: 8px;
  background: var(--signal);
  display: inline-block;
  border-radius: 2px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ledger {
  background: var(--ink-deep);
  border-radius: 10px;
  padding: 24px 22px 20px;
  box-shadow:
    0 40px 80px -30px rgba(27, 33, 39, 0.5),
    0 8px 24px -12px rgba(27, 33, 39, 0.35);
  position: relative;
  overflow: hidden;
}
.ledger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 100% 0%,
    rgba(255, 107, 0, 0.14),
    transparent 60%
  );
  pointer-events: none;
}
.ledger-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dk);
  padding-bottom: 14px;
  margin-bottom: 6px;
}
.ledger-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-on-dk);
}
.ledger-title b {
  color: var(--signal);
  font-weight: 800;
}
.ledger-week {
  font-size: 11px;
  font-weight: 600;
  color: var(--dim-on-dk);
  letter-spacing: 0.04em;
}
.entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dk);
  opacity: 0;
  transform: translateY(8px);
}
.entry:last-child {
  border-bottom: none;
}
.reveal-on .entry {
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.reveal-on .entry:nth-child(2) {
  animation-delay: 0.1s;
}
.reveal-on .entry:nth-child(3) {
  animation-delay: 0.22s;
}
.reveal-on .entry:nth-child(4) {
  animation-delay: 0.34s;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.entry .ts {
  font-size: 11px;
  font-weight: 600;
  color: var(--dim-on-dk);
  padding-top: 3px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 6px;
}
.tag.perf {
  color: #ffb37a;
  background: rgba(255, 107, 0, 0.18);
}
.tag.well {
  color: #cfd4d7;
  background: rgba(160, 168, 175, 0.18);
}
.tag.safe {
  color: #e7dcc9;
  background: rgba(200, 170, 120, 0.18);
}
.tag.cond {
  color: #c6cbd0;
  background: rgba(120, 132, 145, 0.22);
}
.entry .txt {
  color: var(--cream-on-dk);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}
.entry .status {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dim-on-dk);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.entry .status.done {
  color: #84d69a;
}
.entry .status .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.ledger-foot {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dk);
}
.stat .n {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .l {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-on-dk);
  margin-top: 4px;
}

/* PROOF */
.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.proof p {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-dim);
  text-align: center;
  margin-bottom: 20px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3.5vw, 46px);
}
.logos span {
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 20px);
  color: var(--ink);
  opacity: 0.4;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.logos span:hover {
  opacity: 0.85;
}

/* SECTION SHELL */
.sec {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}
.sec-ink {
  background: var(--ink);
  color: var(--cream-on-dk);
}
.sec-deep {
  background: var(--ink-deep);
  color: var(--cream-on-dk);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* DIFFERENT */
.diff h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  max-width: 18ch;
  margin: 18px 0 0;
  color: #fff;
}
.diff .lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: #d2d5d6;
  max-width: 54ch;
  margin-top: 24px;
  font-weight: 500;
}
.sor {
  margin-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid var(--line-dk);
}
.sor-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dk);
}
.sor-fn {
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--dim-on-dk);
  letter-spacing: -0.01em;
}
.sor-sys {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim-on-dk);
  display: flex;
  align-items: center;
  gap: 9px;
}
.sor-sys .ok {
  color: #5e6a6c;
}
.sor-row.last .sor-fn {
  color: #fff;
  font-weight: 800;
}
.sor-row.last {
  border-bottom: none;
  padding-top: 22px;
}
.sor-sys.none {
  color: var(--signal);
  font-weight: 800;
}
.sor-sys.none .x {
  font-size: 18px;
  line-height: 1;
}
.diff .resolve {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--cream-on-dk);
  max-width: 52ch;
  margin-top: 34px;
  font-weight: 500;
}
.diff .resolve b {
  color: #fff;
  font-weight: 800;
}
.diff .q {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--signal);
  max-width: 26ch;
  margin-top: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  padding-left: 22px;
  border-left: 3px solid var(--signal);
}

/* STAKES */
.stakes-head {
  max-width: 34ch;
  margin-bottom: 8px;
}
.stakes-head h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  margin-top: 14px;
}
.stakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 3vw, 44px);
}
.stk .n {
  font-weight: 900;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--signal);
}
.stk .t {
  color: var(--body);
  font-size: 16px;
  margin-top: 14px;
  max-width: 30ch;
  font-weight: 500;
}
.stakes-foot {
  margin-top: clamp(30px, 3vw, 40px);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  max-width: 42ch;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
@media (max-width: 760px) {
  .stakes-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* SEE/SHAPE/PROVE */
.ssp-head {
  max-width: 30ch;
  margin-bottom: 14px;
}
.ssp-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-top: 16px;
}
.rooms {
  margin-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.room {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}
.room .idx {
  font-size: 14px;
  font-weight: 800;
  color: var(--body-dim);
  padding-top: 8px;
}
.room h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 12px;
}
.room p {
  color: var(--body);
  max-width: 50ch;
  font-size: 16.5px;
  font-weight: 500;
}
.room .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body-dim);
  display: block;
  margin-bottom: 10px;
}
.room .verdict {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 8px;
}
.room .verdict.up {
  color: var(--signal);
}
.room .verdict.down {
  color: var(--ink);
}
.room .verdict.see {
  color: var(--body-dim);
}
.ssp-foot {
  margin-top: clamp(32px, 4vw, 48px);
}
.ssp-resolve {
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.02em;
}
.ssp-resolve .o {
  color: var(--signal);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 7px 11px;
}
@media (max-width: 760px) {
  .room {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 26px 0;
  }
  .room .idx {
    padding-top: 0;
  }
  .room .verdict {
    padding-top: 6px;
  }
}

/* WHY NOW */
.law h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  max-width: 22ch;
  color: #fff;
  margin-top: 16px;
}
.law .lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: #d2d5d6;
  max-width: 58ch;
  margin-top: 24px;
  font-weight: 500;
}
.refs {
  margin-top: clamp(34px, 4vw, 50px);
  border-top: 1px solid var(--line-dk);
}
.ref {
  display: grid;
  grid-template-columns: minmax(150px, 260px) 1fr;
  gap: clamp(14px, 3vw, 40px);
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dk);
  align-items: baseline;
}
.ref .k {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
}
.ref .v {
  color: var(--cream-on-dk);
  font-size: 16px;
  font-weight: 500;
}
.law .q {
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 34px);
  color: #fff;
  max-width: 26ch;
  margin-top: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.law .q .em {
  color: var(--signal);
}
@media (max-width: 680px) {
  .ref {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* QUOTES */
.quote-sec {
  background: var(--paper-pure);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quotes-head {
  max-width: 30ch;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.quotes-head h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  margin-top: 14px;
}
.quotes3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.5vw, 36px);
}
.qcard {
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--ink);
  padding-top: 22px;
}
.qcard blockquote {
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}
.qcard .cite {
  margin-top: 22px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--body-dim);
  text-transform: uppercase;
  line-height: 1.6;
}
.qcard .cite b {
  color: var(--ink);
  font-weight: 800;
  display: block;
}
@media (max-width: 820px) {
  .quotes3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* FOUNDERS */
.founders {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.founders h2 {
  font-size: clamp(28px, 3.6vw, 46px);
}
.founders p {
  color: var(--body);
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 52ch;
  font-weight: 500;
}
.founders p + p {
  margin-top: 18px;
}
.founders .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.pill {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 12px;
}
@media (max-width: 760px) {
  .founders {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* FINAL */
.final {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.final h2 {
  font-size: clamp(34px, 5vw, 64px);
}
.final h2 .o {
  color: var(--signal);
}
.final p {
  color: #cfd3d4;
  font-size: clamp(17px, 1.6vw, 21px);
  margin: 20px auto 34px;
  max-width: 42ch;
  font-weight: 500;
}
.final .hero-cta {
  justify-content: center;
}
.final .ph {
  display: block;
  margin-top: 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dim-on-dk);
}
.final .ph a {
  color: var(--cream-on-dk);
}

/* FOOTER */
footer.ft {
  background: var(--ink-deep);
  color: var(--dim-on-dk);
  border-top: 1px solid var(--line-dk);
  padding: 56px 0 36px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 32px;
}
.ft .logo-img {
  height: 30px;
  margin-bottom: 16px;
}
.ft .tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--dim-on-dk);
  max-width: 30ch;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: normal;
  padding: 0;
}
.ft h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-on-dk);
  margin-bottom: 16px;
}
.ft ul {
  list-style: none;
}
.ft li {
  margin-bottom: 10px;
}
.ft a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dim-on-dk);
  transition: color 0.2s;
}
.ft a:hover {
  color: var(--signal);
}
.ft .ft .ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dk);
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bottom span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 860px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .ledger {
    max-width: 480px;
  }
}
@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    transform: translateY(-130%);
    transition: transform 0.3s;
    z-index: 55;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a.navlink {
    padding: 14px var(--gut);
    width: 100%;
  }
  .nav-links .btn {
    margin: 10px var(--gut);
  }
  .navtoggle {
    display: flex;
  }
  .hero h1 {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .entry {
    opacity: 1;
    transform: none;
  }
}
/* PHONE */
.stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6px 0 2px;
}
.phone {
  position: relative;
  width: clamp(286px, 32vw, 340px);
  background: #0f1316;
  border-radius: 48px;
  padding: 11px;
  box-shadow:
    0 54px 90px -34px rgba(15, 19, 22, 0.6),
    0 14px 34px -14px rgba(15, 19, 22, 0.45);
}
.screen {
  position: relative;
  background: #f6f6f3;
  border-radius: 38px;
  overflow: hidden;
  aspect-ratio: 1/2.03;
  display: flex;
  flex-direction: column;
}
.screen::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 22px;
  background: #0f1316;
  border-radius: 12px;
  z-index: 6;
}
.app-top {
  padding: 40px 18px 13px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #fff;
  border-bottom: 1px solid #eceae3;
}
.app-h {
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.app-sub {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal);
  margin-top: 5px;
}
.app-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.app-list {
  flex: 1;
  overflow: hidden;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #f6f6f3;
}
.arow {
  background: #fff;
  border: 1px solid #edebe4;
  border-radius: 14px;
  padding: 11px 12px;
  box-shadow: 0 8px 18px -14px rgba(38, 47, 55, 0.5);
  opacity: 0;
  transform: translateY(8px);
}
.reveal-on .arow {
  animation: rise 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.reveal-on .arow:nth-child(2) {
  animation-delay: 0.1s;
}
.reveal-on .arow:nth-child(3) {
  animation-delay: 0.22s;
}
.reveal-on .arow:nth-child(4) {
  animation-delay: 0.34s;
}
.atag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 7px;
}
.atag.perf {
  color: #ff6900;
  background: rgba(255, 107, 0, 0.12);
}
.atag.well {
  color: #5c636b;
  background: #eeeee8;
}
.atag.safe {
  color: #7c6a42;
  background: #f2ead8;
}
.atag.cond {
  color: #566069;
  background: #e9edf0;
}
.atx {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.38;
}
.ameta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--body-dim);
  letter-spacing: 0.02em;
}
.ameta .st.open {
  color: #ff6900;
}
.tabbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 11px 22px 16px;
  background: #fff;
  border-top: 1px solid #eceae3;
}

.fab {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -7px rgba(255, 107, 0, 0.7);
  margin-top: -26px;
  flex: none;
}
.insight-chip {
  position: absolute;
  top: 26px;
  right: -10px;
  z-index: 7;
  background: #fff;
  border: 1px solid #eceae3;
  border-radius: 13px;
  padding: 11px 14px;
  box-shadow: 0 20px 40px -16px rgba(38, 47, 55, 0.5);
}
.ic-row {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: -0.01em;
}
.ic-row .up {
  color: var(--signal);
  font-size: 15px;
}
.ic-row b {
  font-size: 19px;
  font-weight: 900;
}
.ic-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--body-dim);
  margin-top: 3px;
  letter-spacing: 0.01em;
}
.ic-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 20px;
  margin-top: 9px;
}
.ic-bars i {
  width: 6px;
  background: rgba(255, 107, 0, 0.28);
  border-radius: 2px;
}
.ic-bars i.hot {
  background: var(--signal);
}
@media (max-width: 400px) {
  .insight-chip {
    right: 0;
    top: 14px;
  }
}

/* STAKES v2 */
.stakes-head {
  max-width: 48ch;
}
.stakes-intro {
  color: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 58ch;
  margin-top: 18px;
  font-weight: 500;
}
.cost2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 3vw, 52px);
  margin-top: clamp(40px, 4vw, 60px);
}
.cost-col {
  border-top: 3px solid var(--signal);
  padding-top: 22px;
}
.cost-col.risk {
  border-top-color: var(--ink);
}
.cost-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cost-tag.up {
  color: #ff6900;
}
.cost-tag.down {
  color: var(--ink);
}
.cost-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cost-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: baseline;
}
.cn {
  font-weight: 900;
  font-size: clamp(30px, 3.1vw, 42px);
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
}
.cn small {
  font-size: 0.5em;
  font-weight: 800;
  letter-spacing: 0;
}
.cn.up {
  color: var(--signal);
}
.ct {
  color: var(--body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.cost-src {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--body-dim);
  margin-top: clamp(26px, 3vw, 38px);
  letter-spacing: 0.01em;
}
@media (max-width: 820px) {
  .cost2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 520px) {
  .cost-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* nav active */
.nav-links a.navlink.active {
  color: var(--ink);
}
.nav-links a.navlink.active::after {
  right: 0;
}
/* interior hero */
.phero {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(38px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
}
.phero h1 {
  font-size: clamp(34px, 5vw, 60px);
  max-width: 18ch;
  margin: 16px 0 18px;
}
.phero p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--body);
  max-width: 54ch;
  font-weight: 500;
}
.phero .hero-cta {
  margin-top: 26px;
}
/* feature blocks */
.fblock {
  padding-top: clamp(54px, 6vw, 90px);
  padding-bottom: clamp(54px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}
.fb-head {
  max-width: 62ch;
}
.fb-verdict {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
  display: inline-block;
}
.fb-verdict.up {
  color: var(--signal);
}
.fb-verdict.down {
  color: var(--ink);
}
.fblock h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin-top: 12px;
}
.fb-sub {
  color: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  margin-top: 14px;
  max-width: 56ch;
  font-weight: 500;
}
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(30px, 3vw, 42px);
}
.fgrid.five {
  grid-template-columns: repeat(5, 1fr);
}
.fcard {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.fcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(38, 47, 55, 0.4);
}
.fcard .fi {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--signal-tint);
  position: relative;
  margin-bottom: 16px;
}
.fcard .fi::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 3px;
  background: var(--signal);
}
.fcard h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.fcard p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .fgrid,
  .fgrid.five {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .fgrid,
  .fgrid.five {
    grid-template-columns: 1fr;
  }
}
/* two-col */
.two {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.two p {
  color: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 500;
  max-width: 56ch;
}
.two p + p {
  margin-top: 16px;
}
@media (max-width: 760px) {
  .two {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* founders */
.fdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: clamp(30px, 3vw, 42px);
}
.fdr-card {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.fdr-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.fdr-av {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.fdr-card h3 {
  font-size: 19px;
  line-height: 1.1;
}
.fdr-card .role {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-top: 5px;
}
.fdr-card p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .fdr {
    grid-template-columns: 1fr;
  }
}
/* values */
.vgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 26px;
  margin-top: clamp(30px, 3vw, 42px);
}
.vcard {
  border-top: 2px solid var(--signal);
  padding-top: 18px;
}
.vcard h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.vcard p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.5;
  max-width: 46ch;
}
@media (max-width: 680px) {
  .vgrid {
    grid-template-columns: 1fr;
  }
}
/* contact */
.csplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.cdetails {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cdet h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-dim);
  margin-bottom: 5px;
}
.cdet a,
.cdet span {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.cform {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 30px 60px -40px rgba(38, 47, 55, 0.5);
}
.cform label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.cform input,
.cform textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  transition: border-color 0.2s;
}
.cform input:focus,
.cform textarea:focus {
  outline: none;
  border-color: var(--signal);
}
.cform textarea {
  resize: vertical;
}
.cform .btn {
  width: 100%;
  margin-top: 4px;
  text-align: center;
  border: none;
}
.cnote {
  font-size: 12px;
  color: var(--body-dim);
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 760px) {
  .csplit {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* cost alignment fix */
.cost-item {
  display: block;
  grid-template-columns: none;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.cost-col .cost-item:first-child {
  border-top: none;
  padding-top: 2px;
}
.cn {
  display: block;
  text-align: left;
  min-width: 0;
  line-height: 1;
}
.ct {
  margin-top: 9px;
  max-width: 40ch;
}

/* ===== ambient + motion (wow layer) ===== */
.hero {
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.glow.g1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.3), transparent 65%);
  top: -170px;
  right: -70px;
  animation: drift1 18s ease-in-out infinite;
}
.glow.g2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(38, 47, 55, 0.14), transparent 65%);
  bottom: -220px;
  left: -130px;
  animation: drift2 23s ease-in-out infinite;
}
@keyframes drift1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-44px, 38px);
  }
}
@keyframes drift2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(52px, -28px);
  }
}
.grid {
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(
    125% 95% at 72% 6%,
    #000 26%,
    transparent 72%
  );
  mask-image: radial-gradient(125% 95% at 72% 6%, #000 26%, transparent 72%);
  animation: gridDrift 34s linear infinite;
}
@keyframes gridDrift {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      48px 48px,
      48px 48px;
  }
}
.spot {
  position: absolute;
  left: 62%;
  top: 36%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    left 0.2s ease,
    top 0.2s ease;
  will-change: left, top;
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
.hero-col > * {
  opacity: 0;
  animation: heroRise 0.85s cubic-bezier(0.2, 0.7, 0.25, 1) forwards;
}
.hero-col > *:nth-child(1) {
  animation-delay: 0.15s;
}
.hero-col > *:nth-child(2) {
  animation-delay: 0.3s;
}
.hero-col > *:nth-child(3) {
  animation-delay: 0.44s;
}
.hero-col > *:nth-child(4) {
  animation-delay: 0.56s;
}
.hero-col > *:nth-child(5) {
  animation-delay: 0.66s;
}
@keyframes heroStage {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.stage {
  opacity: 0;
  animation: heroStage 1.1s cubic-bezier(0.2, 0.7, 0.25, 1) 0.4s forwards;
}
.phone {
}

@keyframes chipPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.insight-chip {
  opacity: 0;
  animation: chipPop 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 1.25s forwards;
}
.ic-bars i {
  transform-origin: bottom;
  animation: barGrow 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.ic-bars i:nth-child(1) {
  animation-delay: 1.35s;
}
.ic-bars i:nth-child(2) {
  animation-delay: 1.42s;
}
.ic-bars i:nth-child(3) {
  animation-delay: 1.49s;
}
.ic-bars i:nth-child(4) {
  animation-delay: 1.56s;
}
.ic-bars i:nth-child(5) {
  animation-delay: 1.63s;
}
.ic-bars i:nth-child(6) {
  animation-delay: 1.7s;
}
@keyframes barGrow {
  from {
    transform: scaleY(0.05);
  }
  to {
    transform: scaleY(1);
  }
}
.sec-ink {
  position: relative;
  overflow: hidden;
}
.sec-ink > .wrap {
  position: relative;
  z-index: 1;
}
.sec-ink::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12), transparent 66%);
  top: -220px;
  right: -160px;
  filter: blur(50px);
  pointer-events: none;
  animation: drift1 21s ease-in-out infinite;
}
.reveal {
  filter: blur(6px);
  transition:
    opacity 0.7s,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
    filter 0.7s;
}
.reveal.in {
  filter: blur(0);
}
.sor-row.last .sor-sys.none {
  animation: sorPulse 2.8s ease-in-out 1s infinite;
}
@keyframes sorPulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 107, 0, 0);
  }
  50% {
    text-shadow: 0 0 16px rgba(255, 107, 0, 0.45);
  }
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
  .hero-col > *,
  .stage,
  .insight-chip {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
  .phone,
  .glow,
  .grid,
  .spot,
  .ic-bars i,
  .sec-ink::before,
  .sor-row.last .sor-sys.none {
    animation: none !important;
  }
  .reveal {
    filter: none !important;
  }
  .spot,
  body::after {
    display: none;
  }
}

/* cost grid (aligned two-column) */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: 0;
  margin-top: clamp(40px, 4vw, 60px);
}
.ctag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-top: 3px solid var(--signal);
  padding-top: 18px;
  padding-bottom: 4px;
}
.ctag.up {
  color: #ff6900;
  border-top-color: var(--signal);
}
.ctag.down {
  color: var(--ink);
  border-top-color: var(--ink);
}
.ccell {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.ccell.r1 {
  border-top: none;
  padding-top: 18px;
}
.cnum {
  font-weight: 900;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.cnum.up {
  color: var(--signal);
}
.cnum small {
  font-size: 0.45em;
  font-weight: 800;
  letter-spacing: 0;
}
.cdesc {
  color: var(--body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 10px;
  max-width: 42ch;
}
@media (max-width: 680px) {
  .cost-grid {
    grid-template-columns: 1fr;
  }
  .ctag.up {
    order: 1;
  }
  .cu1 {
    order: 2;
  }
  .cu2 {
    order: 3;
  }
  .cu3 {
    order: 4;
  }
  .ctag.down {
    order: 5;
    margin-top: 22px;
  }
  .cd1 {
    order: 6;
  }
  .cd2 {
    order: 7;
  }
  .cd3 {
    order: 8;
  }
}
@keyframes feedIn {
  from {
    opacity: 0;
    transform: translateY(-9px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.arow.feed-in {
  animation: feedIn 0.5s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

.fdr-photo {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 34px 64px -32px rgba(38, 47, 55, 0.6);
  border: 1px solid var(--line);
}
.fdr-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.fdr-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(to top, rgba(27, 33, 39, 0.9), transparent);
  text-transform: uppercase;
}
.home-photo {
  margin-top: 28px;
  max-width: 480px;
}
@media (max-width: 760px) {
  .home-photo {
    max-width: none;
  }
}

/* client logo wall */
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 38px) clamp(26px, 4vw, 54px);
}
.clogo {
  height: auto;
  width: auto;
  max-height: 30px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0) brightness(1) opacity(0.92);
  transition: filter 0.3s ease;
}
.clogo:hover {
  filter: grayscale(0) brightness(1) opacity(1);
}
@media (max-width: 640px) {
  .clogo {
    max-height: 24px;
    max-width: 110px;
  }
}

/* logo marquee */
.proof .wrap {
  margin-bottom: 26px;
}
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.logo-track {
  display: flex;
  width: max-content;
}
.logo-track.go {
  animation: logoMarquee 50s linear infinite;
}
.logo-marquee:hover .logo-track.go {
  animation-play-state: paused;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 86px);
  padding-right: clamp(48px, 6vw, 86px);
}
@keyframes logoMarquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.clogo {
  height: auto;
  width: auto;
  max-height: 48px;
  max-width: 210px;
  object-fit: contain;
  filter: grayscale(0) brightness(1) opacity(0.92);
  transition: filter 0.3s ease;
  flex: none;
}
.clogo:hover {
  filter: grayscale(0) brightness(1) opacity(1);
}
@media (max-width: 640px) {
  .clogo {
    max-height: 40px;
    max-width: 160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo-group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }
}

/* statement band */
.band {
  background: var(--ink-deep);
  color: #fff;
  text-align: center;
  padding: clamp(64px, 9vw, 104px) 0;
  position: relative;
  overflow: hidden;
}
.band > .wrap {
  position: relative;
  z-index: 1;
}
.band::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.13), transparent 66%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  pointer-events: none;
}
.band-line {
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto;
}
.band-line .o {
  color: var(--signal);
}
.band-line .o2 {
  color: #fff;
}
/* feed smoothness */
.app-list {
  gap: 0;
}
.arow {
  margin-bottom: 9px;
  transition:
    max-height 0.55s cubic-bezier(0.2, 0.7, 0.3, 1),
    opacity 0.45s ease,
    margin-bottom 0.55s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.45s ease;
}
.reveal-on .arow.live {
  animation: none !important;
}
/* logo widths */
.clogo {
  max-width: 240px;
}
@media (max-width: 640px) {
  .clogo {
    max-width: 170px;
  }
}

/* ===== polish-layer  (from index.html) ===== */
/* ===================== POLISH LAYER · award-grade refinement ===================== */
:root {
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  accent-color: var(--signal);
}
html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection {
  background: rgba(255, 107, 0, 0.2);
  color: var(--ink);
}
h1,
h2,
h3 {
  text-wrap: balance;
}
.hero h1,
h1 {
  letter-spacing: -0.026em;
}
h2 {
  letter-spacing: -0.02em;
}
h3 {
  letter-spacing: -0.012em;
}
p,
li,
blockquote,
figcaption {
  text-wrap: pretty;
}

/* unified premium depth + hover language */
.fcard,
.vcard,
.qcard,
.cform,
.room {
  transition:
    transform 0.55s var(--ease-lux),
    box-shadow 0.55s var(--ease-lux),
    border-color 0.4s ease;
}
.fcard:hover,
.vcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px -30px rgba(27, 33, 39, 0.4);
  border-color: var(--signal);
}
.qcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -30px rgba(27, 33, 39, 0.32);
}
.cform:hover {
  box-shadow: 0 44px 84px -50px rgba(27, 33, 39, 0.55);
}

/* buttons: confident, brand-lit */
.btn {
  transition:
    transform 0.4s var(--ease-lux),
    box-shadow 0.4s var(--ease-lux),
    background 0.25s ease,
    color 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
a.btn:not(.ghost):hover,
button.btn:not(.ghost):hover {
  box-shadow: 0 18px 38px -18px rgba(255, 107, 0, 0.55);
}

/* crisp brand focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 5px;
}

/* sophisticated thin scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #c9c6c0 transparent;
}
*::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
*::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 20px;
  border: 3px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--mono-grey);
  background-clip: content-box;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fcard,
  .vcard,
  .qcard,
  .cform,
  .room,
  .btn {
    transition: none;
  }
  .fcard:hover,
  .vcard:hover,
  .qcard:hover,
  .btn:hover {
    transform: none;
  }
}
/* ===================== /POLISH LAYER ===================== */

/* ===== appmock  (from index.html) ===== */
.ac-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 16px 12px;
  background: #fff;
  border-bottom: 1px solid #eeece6;
}
.ac-spacer {
  width: 21px;
}
.ac-logo {
  display: flex;
  align-items: center;
  gap: 1px;
  font-weight: 900;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.ac-logo > span {
  color: var(--signal);
}
.ac-mark {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--signal);
  position: relative;
  margin-right: 3px;
}
.ac-mark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5.5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}
.ac-burger {
  display: flex;
  flex-direction: column;
  gap: 3.5px;
}
.ac-burger i {
  width: 19px;
  height: 2.3px;
  border-radius: 2px;
  background: var(--ink);
}
.ac-logo-img {
  height: 22px;
  width: auto;
  display: block;
}
.ac-body {
  flex: 1;
  overflow: hidden;
  background: #f4f5f7;
  padding: 14px 13px 0;
  display: flex;
  flex-direction: column;
}
.ac-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 15px;
  flex: none;
}
.ac-tile {
  background: #fff;
  border-radius: 13px;
  padding: 13px 4px 11px;
  text-align: center;
  box-shadow: 0 6px 16px -13px rgba(38, 47, 55, 0.5);
}
.ac-tile.hot {
  background: #fbe6d4;
}
.ac-tile.cool {
  background: #e7eef6;
}
.ac-num {
  font-weight: 900;
  font-size: 26px;
  color: var(--signal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.ac-lab {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ac-rec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 1px 9px;
  border-bottom: 1px solid #e3e1da;
  flex: none;
}
.ac-rec b {
  color: var(--signal);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.ac-view {
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
}
.ac-date {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  margin: 13px 1px 10px;
  flex: none;
}
.app-list {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #f4f5f7;
  padding: 0;
}
.acard {
  background: #fff;
  border: 1px solid #eceae3;
  border-radius: 15px;
  padding: 13px 13px 11px;
  margin-bottom: 10px;
  box-shadow: 0 10px 22px -17px rgba(38, 47, 55, 0.55);
}
.ac-person {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ac-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #222b33;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  letter-spacing: 0.02em;
}
.ac-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ac-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}
.ac-ic {
  flex: none;
  color: var(--ink);
  display: flex;
}
.ac-ic svg {
  width: 21px;
  height: 21px;
}
.ac-tx {
  font-size: 12.5px;
  font-weight: 600;
  color: #3a434b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.ac-div {
  height: 1px;
  background: #eeece6;
  margin: 11px 0 9px;
}
.ac-by {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ac-av.sm {
  width: 24px;
  height: 24px;
  font-size: 9px;
}
.ac-byname {
  font-size: 12px;
  font-weight: 600;
  color: #646a6e;
}
.tabbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2px;
  padding: 11px 74px 15px 20px;
  background: #fff;
  border-top: 1px solid #eeece6;
  flex: none;
}
.tb {
  width: 26px;
  height: 26px;
  color: #b4b9bc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: none;
  border: none;
}
.tb svg {
  width: 25px;
  height: 25px;
}
.tb.active {
  color: var(--signal);
}
.ac-fab {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-62%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px -10px rgba(255, 107, 0, 0.6);
  border: none;
}
.ac-fab svg {
  width: 22px;
  height: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .acard {
    transition: none !important;
  }
}

/* ===== socialcss  (from index.html) ===== */
.ft-soc {
  margin-top: 16px;
  display: flex;
  gap: 14px;
}
.soc {
  color: var(--dim-on-dk, #bcc0c3);
  display: inline-flex;
  transition:
    color 0.25s ease,
    transform 0.3s var(--ease-lux, ease);
}
.soc svg {
  width: 21px;
  height: 21px;
  display: block;
}
.soc:hover {
  color: var(--signal);
  transform: translateY(-2px);
}
.tag a {
  color: var(--cream-on-dk, #edeeec);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  display: inline-block;
  margin-top: 5px;
}
.tag a:hover {
  color: var(--signal);
}

/* ===== storecss  (from index.html) ===== */
.sor-logo {
  height: 21px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ===== ausbadge-css  (from index.html) ===== */
.ausbadge {
  height: 62px;
  width: auto;
  margin-top: 20px;
  display: block;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}
.ausbadge:hover {
  opacity: 1;
}

/* ===== storebadge  (from index.html) ===== */
.store {
  width: 188px;
  box-sizing: border-box;
  justify-content: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #13181d;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  padding: 9px 16px;
  color: #fff;
  margin: 0;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s var(--ease-lux, ease);
}
.store:hover {
  background: #1b2127;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.store .st-ic {
  width: 24px;
  height: 24px;
  display: block;
  flex: none;
}
.store .st-tx {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
  text-align: left;
}
.store .st-tx small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.92;
}
.store .st-tx b {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

/* ===== ftbalance  (from index.html) ===== */
.ft .wrap {
  max-width: var(--maxw);
}
.ft-grid {
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.ft-brand {
  max-width: 300px;
}
.ft-grid > div:first-child .logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 18px;
}
.ft .tag {
  margin: 0 0 4px;
}
.ausbadge {
  height: 64px;
  width: auto;
  margin-top: 22px;
  display: block;
  opacity: 0.92;
  transition:
    opacity 0.25s ease,
    transform 0.3s var(--ease-lux, ease);
}
.ausbadge:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.ft-app {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.ft-soc {
  margin-top: 20px;
  gap: 14px;
}
@media (max-width: 880px) {
  .ft-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }
  .ft-grid > div:first-child {
    grid-column: 1/-1;
    max-width: none;
    display: flex;
    flex-direction: column;
  }
  .ausbadge {
    margin-top: 18px;
  }
}
@media (max-width: 560px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .ft-grid > div:first-child {
    grid-column: 1/-1;
  }
}

/* ===== ledgerfade  (from index.html) ===== */
.app-list#ledger {
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 7%,
    #000 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 7%,
    #000 86%,
    transparent 100%
  );
}
.app-list#ledger > .acard {
  will-change: transform, opacity;
}

/* ===== feedtrackcss  (from index.html) ===== */
.app-list#ledger {
  position: relative;
}
.feed-track {
  display: flex;
  flex-direction: column;
  padding: 13px;
  will-change: transform;
}

/* ===== icpulsecss  (from index.html) ===== */
@keyframes icpulse {
  0% {
    transform: scale(1);
  }
  38% {
    transform: scale(1.26);
  }
  100% {
    transform: scale(1);
  }
}
.insight-chip b.bump {
  display: inline-block;
  animation: icpulse 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* ===== unicornpolish  (from index.html) ===== */
/* Cost tiles: container becomes a trigger, cells cascade in */
.cost-grid.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.cost-grid .ccell {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s var(--ease-lux, ease),
    transform 0.65s var(--ease-lux, ease);
}
.cost-grid.in .ccell {
  opacity: 1;
  transform: none;
}
.cost-grid.in .ccell:nth-child(1) {
  transition-delay: 0.04s;
}
.cost-grid.in .ccell:nth-child(2) {
  transition-delay: 0.12s;
}
.cost-grid.in .ccell:nth-child(3) {
  transition-delay: 0.2s;
}
.cost-grid.in .ccell:nth-child(4) {
  transition-delay: 0.28s;
}
.cost-grid.in .ccell:nth-child(5) {
  transition-delay: 0.36s;
}
.cost-grid.in .ccell:nth-child(6) {
  transition-delay: 0.44s;
}
/* See it / Shape it / Prove it: cascade the three rooms */
.rooms.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.rooms .room {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease-lux, ease),
    transform 0.7s var(--ease-lux, ease);
}
.rooms.in .room {
  opacity: 1;
  transform: none;
}
.rooms.in .room:nth-child(1) {
  transition-delay: 0.06s;
}
.rooms.in .room:nth-child(2) {
  transition-delay: 0.2s;
}
.rooms.in .room:nth-child(3) {
  transition-delay: 0.34s;
}
/* Tactile press on buttons */
.btn:active {
  transform: translateY(1px) scale(0.992);
}
@media (prefers-reduced-motion: reduce) {
  .cost-grid .ccell,
  .rooms .room {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== base  (from about.html) ===== */
:root {
  --ink: #262f37;
  --ink-deep: #1b2127;
  --ink-soft: #3a434b;
  --paper: #f4f4f1;
  --paper-pure: #ffffff;
  --signal: #ff6b00;
  --signal-deep: #b34700;
  --signal-tint: rgba(255, 107, 0, 0.12);
  --body: #4b535a;
  --body-dim: #5c6368;
  --mono-grey: #a4a4a5;
  --line: #e3e1db;
  --line-dk: #39424a;
  --cream-on-dk: #edeeec;
  --dim-on-dk: #bcc0c3;
  --font: "Nunito Sans", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.skip-link {
  position: absolute;
  left: 8px;
  top: -100px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
}
.skip-link:focus {
  top: 8px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
}
h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 {
  font-weight: 900;
}

/* NAV */
header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 244, 241, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
header.nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo-img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a.navlink {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
  position: relative;
  padding: 4px 0;
}
.nav-links a.navlink::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--signal);
  transition: right 0.25s;
}
.nav-links a.navlink:hover::after {
  right: 0;
}
.btn {
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 21px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.15s,
    background 0.2s,
    border-color 0.2s;
  display: inline-block;
}
.btn:hover {
  background: var(--signal);
  border-color: var(--signal);
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn.ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn.lg {
  padding: 15px 28px;
  font-size: 16px;
}
.btn.on-dk {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}
.btn.on-dk:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.navtoggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.navtoggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: 0.25s;
}

/* HERO */
.hero {
  padding-top: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(40px, 6vw, 60px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 70px);
  margin: 18px 0 22px;
  max-width: 15ch;
}
.hero h1 .em {
  color: var(--signal);
}
.hero p.sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--body);
  max-width: 46ch;
  margin-bottom: 26px;
}
.payoff {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.payoff .tick {
  width: 8px;
  height: 8px;
  background: var(--signal);
  display: inline-block;
  border-radius: 2px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ledger {
  background: var(--ink-deep);
  border-radius: 10px;
  padding: 24px 22px 20px;
  box-shadow:
    0 40px 80px -30px rgba(27, 33, 39, 0.5),
    0 8px 24px -12px rgba(27, 33, 39, 0.35);
  position: relative;
  overflow: hidden;
}
.ledger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 100% 0%,
    rgba(255, 107, 0, 0.14),
    transparent 60%
  );
  pointer-events: none;
}
.ledger-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dk);
  padding-bottom: 14px;
  margin-bottom: 6px;
}
.ledger-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-on-dk);
}
.ledger-title b {
  color: var(--signal);
  font-weight: 800;
}
.ledger-week {
  font-size: 11px;
  font-weight: 600;
  color: var(--dim-on-dk);
  letter-spacing: 0.04em;
}
.entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dk);
  opacity: 0;
  transform: translateY(8px);
}
.entry:last-child {
  border-bottom: none;
}
.reveal-on .entry {
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.reveal-on .entry:nth-child(2) {
  animation-delay: 0.1s;
}
.reveal-on .entry:nth-child(3) {
  animation-delay: 0.22s;
}
.reveal-on .entry:nth-child(4) {
  animation-delay: 0.34s;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.entry .ts {
  font-size: 11px;
  font-weight: 600;
  color: var(--dim-on-dk);
  padding-top: 3px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 6px;
}
.tag.perf {
  color: #ffb37a;
  background: rgba(255, 107, 0, 0.18);
}
.tag.well {
  color: #cfd4d7;
  background: rgba(160, 168, 175, 0.18);
}
.tag.safe {
  color: #e7dcc9;
  background: rgba(200, 170, 120, 0.18);
}
.tag.cond {
  color: #c6cbd0;
  background: rgba(120, 132, 145, 0.22);
}
.entry .txt {
  color: var(--cream-on-dk);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}
.entry .status {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dim-on-dk);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.entry .status.done {
  color: #84d69a;
}
.entry .status .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.ledger-foot {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dk);
}
.stat .n {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .l {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-on-dk);
  margin-top: 4px;
}

/* PROOF */
.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.proof p {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-dim);
  text-align: center;
  margin-bottom: 20px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3.5vw, 46px);
}
.logos span {
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 20px);
  color: var(--ink);
  opacity: 0.4;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.logos span:hover {
  opacity: 0.85;
}

/* SECTION SHELL */
.sec {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}
.sec-ink {
  background: var(--ink);
  color: var(--cream-on-dk);
}
.sec-deep {
  background: var(--ink-deep);
  color: var(--cream-on-dk);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* DIFFERENT */
.diff h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  max-width: 18ch;
  margin: 18px 0 0;
  color: #fff;
}
.diff .lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: #d2d5d6;
  max-width: 54ch;
  margin-top: 24px;
  font-weight: 500;
}
.sor {
  margin-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid var(--line-dk);
}
.sor-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dk);
}
.sor-fn {
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--dim-on-dk);
  letter-spacing: -0.01em;
}
.sor-sys {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim-on-dk);
  display: flex;
  align-items: center;
  gap: 9px;
}
.sor-sys .ok {
  color: #5e6a6c;
}
.sor-row.last .sor-fn {
  color: #fff;
  font-weight: 800;
}
.sor-row.last {
  border-bottom: none;
  padding-top: 22px;
}
.sor-sys.none {
  color: var(--signal);
  font-weight: 800;
}
.sor-sys.none .x {
  font-size: 18px;
  line-height: 1;
}
.diff .resolve {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--cream-on-dk);
  max-width: 52ch;
  margin-top: 34px;
  font-weight: 500;
}
.diff .resolve b {
  color: #fff;
  font-weight: 800;
}
.diff .q {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--signal);
  max-width: 26ch;
  margin-top: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  padding-left: 22px;
  border-left: 3px solid var(--signal);
}

/* STAKES */
.stakes-head {
  max-width: 34ch;
  margin-bottom: 8px;
}
.stakes-head h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  margin-top: 14px;
}
.stakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 3vw, 44px);
}
.stk .n {
  font-weight: 900;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--signal);
}
.stk .t {
  color: var(--body);
  font-size: 16px;
  margin-top: 14px;
  max-width: 30ch;
  font-weight: 500;
}
.stakes-foot {
  margin-top: clamp(30px, 3vw, 40px);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  max-width: 42ch;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
@media (max-width: 760px) {
  .stakes-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* SEE/SHAPE/PROVE */
.ssp-head {
  max-width: 30ch;
  margin-bottom: 14px;
}
.ssp-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-top: 16px;
}
.rooms {
  margin-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.room {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}
.room .idx {
  font-size: 14px;
  font-weight: 800;
  color: var(--body-dim);
  padding-top: 8px;
}
.room h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 12px;
}
.room p {
  color: var(--body);
  max-width: 50ch;
  font-size: 16.5px;
  font-weight: 500;
}
.room .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body-dim);
  display: block;
  margin-bottom: 10px;
}
.room .verdict {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 8px;
}
.room .verdict.up {
  color: var(--signal);
}
.room .verdict.down {
  color: var(--ink);
}
.room .verdict.see {
  color: var(--body-dim);
}
.ssp-foot {
  margin-top: clamp(32px, 4vw, 48px);
}
.ssp-resolve {
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.02em;
}
.ssp-resolve .o {
  color: var(--signal);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 7px 11px;
}
@media (max-width: 760px) {
  .room {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 26px 0;
  }
  .room .idx {
    padding-top: 0;
  }
  .room .verdict {
    padding-top: 6px;
  }
}

/* WHY NOW */
.law h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  max-width: 22ch;
  color: #fff;
  margin-top: 16px;
}
.law .lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: #d2d5d6;
  max-width: 58ch;
  margin-top: 24px;
  font-weight: 500;
}
.refs {
  margin-top: clamp(34px, 4vw, 50px);
  border-top: 1px solid var(--line-dk);
}
.ref {
  display: grid;
  grid-template-columns: minmax(150px, 260px) 1fr;
  gap: clamp(14px, 3vw, 40px);
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dk);
  align-items: baseline;
}
.ref .k {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
}
.ref .v {
  color: var(--cream-on-dk);
  font-size: 16px;
  font-weight: 500;
}
.law .q {
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 34px);
  color: #fff;
  max-width: 26ch;
  margin-top: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.law .q .em {
  color: var(--signal);
}
@media (max-width: 680px) {
  .ref {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* QUOTES */
.quote-sec {
  background: var(--paper-pure);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quotes-head {
  max-width: 30ch;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.quotes-head h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  margin-top: 14px;
}
.quotes3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.5vw, 36px);
}
.qcard {
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--ink);
  padding-top: 22px;
}
.qcard blockquote {
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}
.qcard .cite {
  margin-top: 22px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--body-dim);
  text-transform: uppercase;
  line-height: 1.6;
}
.qcard .cite b {
  color: var(--ink);
  font-weight: 800;
  display: block;
}
@media (max-width: 820px) {
  .quotes3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* FOUNDERS */
.founders {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.founders h2 {
  font-size: clamp(28px, 3.6vw, 46px);
}
.founders p {
  color: var(--body);
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 52ch;
  font-weight: 500;
}
.founders p + p {
  margin-top: 18px;
}
.founders .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.pill {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 12px;
}
@media (max-width: 760px) {
  .founders {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* FINAL */
.final {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.final h2 {
  font-size: clamp(34px, 5vw, 64px);
}
.final h2 .o {
  color: var(--signal);
}
.final p {
  color: #cfd3d4;
  font-size: clamp(17px, 1.6vw, 21px);
  margin: 20px auto 34px;
  max-width: 42ch;
  font-weight: 500;
}
.final .hero-cta {
  justify-content: center;
}
.final .ph {
  display: block;
  margin-top: 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dim-on-dk);
}
.final .ph a {
  color: var(--cream-on-dk);
}

/* FOOTER */
footer.ft {
  background: var(--ink-deep);
  color: var(--dim-on-dk);
  border-top: 1px solid var(--line-dk);
  padding: 56px 0 36px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 32px;
}
.ft .logo-img {
  height: 30px;
  margin-bottom: 16px;
}
.ft .tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--dim-on-dk);
  max-width: 30ch;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: normal;
  padding: 0;
}
.ft h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-on-dk);
  margin-bottom: 16px;
}
.ft ul {
  list-style: none;
}
.ft li {
  margin-bottom: 10px;
}
.ft a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dim-on-dk);
  transition: color 0.2s;
}
.ft a:hover {
  color: var(--signal);
}
.ft .ft .ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dk);
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bottom span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 860px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .ledger {
    max-width: 480px;
  }
}
@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    transform: translateY(-130%);
    transition: transform 0.3s;
    z-index: 55;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a.navlink {
    padding: 14px var(--gut);
    width: 100%;
  }
  .nav-links .btn {
    margin: 10px var(--gut);
  }
  .navtoggle {
    display: flex;
  }
  .hero h1 {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .entry {
    opacity: 1;
    transform: none;
  }
}
/* PHONE */
.stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6px 0 2px;
}
.phone {
  position: relative;
  width: clamp(286px, 32vw, 340px);
  background: #0f1316;
  border-radius: 48px;
  padding: 11px;
  box-shadow:
    0 54px 90px -34px rgba(15, 19, 22, 0.6),
    0 14px 34px -14px rgba(15, 19, 22, 0.45);
}
.screen {
  position: relative;
  background: #f6f6f3;
  border-radius: 38px;
  overflow: hidden;
  aspect-ratio: 1/2.03;
  display: flex;
  flex-direction: column;
}
.screen::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 22px;
  background: #0f1316;
  border-radius: 12px;
  z-index: 6;
}
.app-top {
  padding: 40px 18px 13px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #fff;
  border-bottom: 1px solid #eceae3;
}
.app-h {
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.app-sub {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal);
  margin-top: 5px;
}
.app-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.app-list {
  flex: 1;
  overflow: hidden;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #f6f6f3;
}
.arow {
  background: #fff;
  border: 1px solid #edebe4;
  border-radius: 14px;
  padding: 11px 12px;
  box-shadow: 0 8px 18px -14px rgba(38, 47, 55, 0.5);
  opacity: 0;
  transform: translateY(8px);
}
.reveal-on .arow {
  animation: rise 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.reveal-on .arow:nth-child(2) {
  animation-delay: 0.1s;
}
.reveal-on .arow:nth-child(3) {
  animation-delay: 0.22s;
}
.reveal-on .arow:nth-child(4) {
  animation-delay: 0.34s;
}
.atag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 7px;
}
.atag.perf {
  color: #ff6900;
  background: rgba(255, 107, 0, 0.12);
}
.atag.well {
  color: #5c636b;
  background: #eeeee8;
}
.atag.safe {
  color: #7c6a42;
  background: #f2ead8;
}
.atag.cond {
  color: #566069;
  background: #e9edf0;
}
.atx {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.38;
}
.ameta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--body-dim);
  letter-spacing: 0.02em;
}
.ameta .st.open {
  color: #ff6900;
}
.tabbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 11px 22px 16px;
  background: #fff;
  border-top: 1px solid #eceae3;
}
.tb {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #d8d8d2;
}
.tb.active {
  background: var(--ink);
}
.fab {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -7px rgba(255, 107, 0, 0.7);
  margin-top: -26px;
  flex: none;
}
.insight-chip {
  position: absolute;
  top: 26px;
  right: -10px;
  z-index: 7;
  background: #fff;
  border: 1px solid #eceae3;
  border-radius: 13px;
  padding: 11px 14px;
  box-shadow: 0 20px 40px -16px rgba(38, 47, 55, 0.5);
}
.ic-row {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: -0.01em;
}
.ic-row .up {
  color: var(--signal);
  font-size: 15px;
}
.ic-row b {
  font-size: 19px;
  font-weight: 900;
}
.ic-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--body-dim);
  margin-top: 3px;
  letter-spacing: 0.01em;
}
.ic-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 20px;
  margin-top: 9px;
}
.ic-bars i {
  width: 6px;
  background: rgba(255, 107, 0, 0.28);
  border-radius: 2px;
}
.ic-bars i.hot {
  background: var(--signal);
}
@media (max-width: 400px) {
  .insight-chip {
    right: 0;
    top: 14px;
  }
}

/* STAKES v2 */
.stakes-head {
  max-width: 48ch;
}
.stakes-intro {
  color: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 58ch;
  margin-top: 18px;
  font-weight: 500;
}
.cost2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 3vw, 52px);
  margin-top: clamp(40px, 4vw, 60px);
}
.cost-col {
  border-top: 3px solid var(--signal);
  padding-top: 22px;
}
.cost-col.risk {
  border-top-color: var(--ink);
}
.cost-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cost-tag.up {
  color: #ff6900;
}
.cost-tag.down {
  color: var(--ink);
}
.cost-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cost-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: baseline;
}
.cn {
  font-weight: 900;
  font-size: clamp(30px, 3.1vw, 42px);
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
}
.cn small {
  font-size: 0.5em;
  font-weight: 800;
  letter-spacing: 0;
}
.cn.up {
  color: var(--signal);
}
.ct {
  color: var(--body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.cost-src {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--body-dim);
  margin-top: clamp(26px, 3vw, 38px);
  letter-spacing: 0.01em;
}
@media (max-width: 820px) {
  .cost2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 520px) {
  .cost-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* nav active */
.nav-links a.navlink.active {
  color: var(--ink);
}
.nav-links a.navlink.active::after {
  right: 0;
}
/* interior hero */
.phero {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(38px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
}
.phero h1 {
  font-size: clamp(34px, 5vw, 60px);
  max-width: 18ch;
  margin: 16px 0 18px;
}
.phero p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--body);
  max-width: 54ch;
  font-weight: 500;
}
.phero .hero-cta {
  margin-top: 26px;
}
/* feature blocks */
.fblock {
  padding-top: clamp(54px, 6vw, 90px);
  padding-bottom: clamp(54px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}
.fb-head {
  max-width: 62ch;
}
.fb-verdict {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
  display: inline-block;
}
.fb-verdict.up {
  color: var(--signal);
}
.fb-verdict.down {
  color: var(--ink);
}
.fblock h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin-top: 12px;
}
.fb-sub {
  color: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  margin-top: 14px;
  max-width: 56ch;
  font-weight: 500;
}
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(30px, 3vw, 42px);
}
.fgrid.five {
  grid-template-columns: repeat(5, 1fr);
}
.fcard {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.fcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(38, 47, 55, 0.4);
}
.fcard .fi {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--signal-tint);
  position: relative;
  margin-bottom: 16px;
}
.fcard .fi::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 3px;
  background: var(--signal);
}
.fcard h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.fcard p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .fgrid,
  .fgrid.five {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .fgrid,
  .fgrid.five {
    grid-template-columns: 1fr;
  }
}
/* two-col */
.two {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.two p {
  color: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 500;
  max-width: 56ch;
}
.two p + p {
  margin-top: 16px;
}
@media (max-width: 760px) {
  .two {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* founders */
.fdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: clamp(30px, 3vw, 42px);
}
.fdr-card {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.fdr-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.fdr-av {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.fdr-card h3 {
  font-size: 19px;
  line-height: 1.1;
}
.fdr-card .role {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-top: 5px;
}
.fdr-card p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .fdr {
    grid-template-columns: 1fr;
  }
}
/* values */
.vgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 26px;
  margin-top: clamp(30px, 3vw, 42px);
}
.vcard {
  border-top: 2px solid var(--signal);
  padding-top: 18px;
}
.vcard h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.vcard p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.5;
  max-width: 46ch;
}
@media (max-width: 680px) {
  .vgrid {
    grid-template-columns: 1fr;
  }
}
/* contact */
.csplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.cdetails {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cdet h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-dim);
  margin-bottom: 5px;
}
.cdet a,
.cdet span {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.cform {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 30px 60px -40px rgba(38, 47, 55, 0.5);
}
.cform label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.cform input,
.cform textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  transition: border-color 0.2s;
}
.cform input:focus,
.cform textarea:focus {
  outline: none;
  border-color: var(--signal);
}
.cform textarea {
  resize: vertical;
}
.cform .btn {
  width: 100%;
  margin-top: 4px;
  text-align: center;
  border: none;
}
.cnote {
  font-size: 12px;
  color: var(--body-dim);
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 760px) {
  .csplit {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* cost alignment fix */
.cost-item {
  display: block;
  grid-template-columns: none;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.cost-col .cost-item:first-child {
  border-top: none;
  padding-top: 2px;
}
.cn {
  display: block;
  text-align: left;
  min-width: 0;
  line-height: 1;
}
.ct {
  margin-top: 9px;
  max-width: 40ch;
}

.fdr-photo {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 34px 64px -32px rgba(38, 47, 55, 0.6);
  border: 1px solid var(--line);
}
.fdr-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.fdr-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(to top, rgba(27, 33, 39, 0.9), transparent);
  text-transform: uppercase;
}
.fdr-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: clamp(30px, 3vw, 42px);
}
.fdr-bios {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fdr-bios .story-p {
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}
.fbio {
  border-top: 2px solid var(--signal);
  padding-top: 16px;
}
.fbio h3 {
  font-size: 19px;
  line-height: 1.1;
}
.fbio .role {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 5px 0 8px;
}
.fbio p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.55;
  max-width: 46ch;
}
@media (max-width: 760px) {
  .fdr-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== polish-layer  (from about.html) ===== */
/* ===================== POLISH LAYER · award-grade refinement ===================== */
:root {
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  accent-color: var(--signal);
}
html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection {
  background: rgba(255, 107, 0, 0.2);
  color: var(--ink);
}
h1,
h2,
h3 {
  text-wrap: balance;
}
.hero h1,
h1 {
  letter-spacing: -0.026em;
}
h2 {
  letter-spacing: -0.02em;
}
h3 {
  letter-spacing: -0.012em;
}
p,
li,
blockquote,
figcaption {
  text-wrap: pretty;
}

/* unified premium depth + hover language */
.fcard,
.vcard,
.qcard,
.cform,
.room {
  transition:
    transform 0.55s var(--ease-lux),
    box-shadow 0.55s var(--ease-lux),
    border-color 0.4s ease;
}
.fcard:hover,
.vcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px -30px rgba(27, 33, 39, 0.4);
  border-color: var(--signal);
}
.qcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -30px rgba(27, 33, 39, 0.32);
}
.cform:hover {
  box-shadow: 0 44px 84px -50px rgba(27, 33, 39, 0.55);
}

/* buttons: confident, brand-lit */
.btn {
  transition:
    transform 0.4s var(--ease-lux),
    box-shadow 0.4s var(--ease-lux),
    background 0.25s ease,
    color 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
a.btn:not(.ghost):hover,
button.btn:not(.ghost):hover {
  box-shadow: 0 18px 38px -18px rgba(255, 107, 0, 0.55);
}

/* crisp brand focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 5px;
}

/* sophisticated thin scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #c9c6c0 transparent;
}
*::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
*::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 20px;
  border: 3px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--mono-grey);
  background-clip: content-box;
}

/* tactile film grain (site-wide finish) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fcard,
  .vcard,
  .qcard,
  .cform,
  .room,
  .btn {
    transition: none;
  }
  .fcard:hover,
  .vcard:hover,
  .qcard:hover,
  .btn:hover {
    transform: none;
  }
}
/* ===================== /POLISH LAYER ===================== */

/* ===== btnpress  (from about.html) ===== */
.btn:active {
  transform: translateY(1px) scale(0.992);
}

/* ===== base  (from features.html) ===== */
:root {
  --ink: #262f37;
  --ink-deep: #1b2127;
  --ink-soft: #3a434b;
  --paper: #f4f4f1;
  --paper-pure: #ffffff;
  --signal: #ff6b00;
  --signal-deep: #b34700;
  --signal-tint: rgba(255, 107, 0, 0.12);
  --body: #4b535a;
  --body-dim: #5c6368;
  --mono-grey: #a4a4a5;
  --line: #e3e1db;
  --line-dk: #39424a;
  --cream-on-dk: #edeeec;
  --dim-on-dk: #bcc0c3;
  --font: "Nunito Sans", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.skip-link {
  position: absolute;
  left: 8px;
  top: -100px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
}
.skip-link:focus {
  top: 8px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
}
h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 {
  font-weight: 900;
}

/* NAV */
header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 244, 241, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
header.nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo-img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a.navlink {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
  position: relative;
  padding: 4px 0;
}
.nav-links a.navlink::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--signal);
  transition: right 0.25s;
}
.nav-links a.navlink:hover::after {
  right: 0;
}
.btn {
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 21px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.15s,
    background 0.2s,
    border-color 0.2s;
  display: inline-block;
}
.btn:hover {
  background: var(--signal);
  border-color: var(--signal);
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn.ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn.lg {
  padding: 15px 28px;
  font-size: 16px;
}
.btn.on-dk {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}
.btn.on-dk:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.navtoggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.navtoggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: 0.25s;
}

/* HERO */
.hero {
  padding-top: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(40px, 6vw, 60px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 70px);
  margin: 18px 0 22px;
  max-width: 15ch;
}
.hero h1 .em {
  color: var(--signal);
}
.hero p.sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--body);
  max-width: 46ch;
  margin-bottom: 26px;
}
.payoff {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.payoff .tick {
  width: 8px;
  height: 8px;
  background: var(--signal);
  display: inline-block;
  border-radius: 2px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ledger {
  background: var(--ink-deep);
  border-radius: 10px;
  padding: 24px 22px 20px;
  box-shadow:
    0 40px 80px -30px rgba(27, 33, 39, 0.5),
    0 8px 24px -12px rgba(27, 33, 39, 0.35);
  position: relative;
  overflow: hidden;
}
.ledger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 100% 0%,
    rgba(255, 107, 0, 0.14),
    transparent 60%
  );
  pointer-events: none;
}
.ledger-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dk);
  padding-bottom: 14px;
  margin-bottom: 6px;
}
.ledger-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-on-dk);
}
.ledger-title b {
  color: var(--signal);
  font-weight: 800;
}
.ledger-week {
  font-size: 11px;
  font-weight: 600;
  color: var(--dim-on-dk);
  letter-spacing: 0.04em;
}
.entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dk);
  opacity: 0;
  transform: translateY(8px);
}
.entry:last-child {
  border-bottom: none;
}
.reveal-on .entry {
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.reveal-on .entry:nth-child(2) {
  animation-delay: 0.1s;
}
.reveal-on .entry:nth-child(3) {
  animation-delay: 0.22s;
}
.reveal-on .entry:nth-child(4) {
  animation-delay: 0.34s;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.entry .ts {
  font-size: 11px;
  font-weight: 600;
  color: var(--dim-on-dk);
  padding-top: 3px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 6px;
}
.tag.perf {
  color: #ffb37a;
  background: rgba(255, 107, 0, 0.18);
}
.tag.well {
  color: #cfd4d7;
  background: rgba(160, 168, 175, 0.18);
}
.tag.safe {
  color: #e7dcc9;
  background: rgba(200, 170, 120, 0.18);
}
.tag.cond {
  color: #c6cbd0;
  background: rgba(120, 132, 145, 0.22);
}
.entry .txt {
  color: var(--cream-on-dk);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}
.entry .status {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dim-on-dk);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.entry .status.done {
  color: #84d69a;
}
.entry .status .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.ledger-foot {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dk);
}
.stat .n {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .l {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-on-dk);
  margin-top: 4px;
}

/* PROOF */
.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.proof p {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-dim);
  text-align: center;
  margin-bottom: 20px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3.5vw, 46px);
}
.logos span {
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 20px);
  color: var(--ink);
  opacity: 0.4;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.logos span:hover {
  opacity: 0.85;
}

/* SECTION SHELL */
.sec {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}
.sec-ink {
  background: var(--ink);
  color: var(--cream-on-dk);
}
.sec-deep {
  background: var(--ink-deep);
  color: var(--cream-on-dk);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* DIFFERENT */
.diff h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  max-width: 18ch;
  margin: 18px 0 0;
  color: #fff;
}
.diff .lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: #d2d5d6;
  max-width: 54ch;
  margin-top: 24px;
  font-weight: 500;
}
.sor {
  margin-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid var(--line-dk);
}
.sor-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dk);
}
.sor-fn {
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--dim-on-dk);
  letter-spacing: -0.01em;
}
.sor-sys {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim-on-dk);
  display: flex;
  align-items: center;
  gap: 9px;
}
.sor-sys .ok {
  color: #5e6a6c;
}
.sor-row.last .sor-fn {
  color: #fff;
  font-weight: 800;
}
.sor-row.last {
  border-bottom: none;
  padding-top: 22px;
}
.sor-sys.none {
  color: var(--signal);
  font-weight: 800;
}
.sor-sys.none .x {
  font-size: 18px;
  line-height: 1;
}
.diff .resolve {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--cream-on-dk);
  max-width: 52ch;
  margin-top: 34px;
  font-weight: 500;
}
.diff .resolve b {
  color: #fff;
  font-weight: 800;
}
.diff .q {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--signal);
  max-width: 26ch;
  margin-top: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  padding-left: 22px;
  border-left: 3px solid var(--signal);
}

/* STAKES */
.stakes-head {
  max-width: 34ch;
  margin-bottom: 8px;
}
.stakes-head h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  margin-top: 14px;
}
.stakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 3vw, 44px);
}
.stk .n {
  font-weight: 900;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--signal);
}
.stk .t {
  color: var(--body);
  font-size: 16px;
  margin-top: 14px;
  max-width: 30ch;
  font-weight: 500;
}
.stakes-foot {
  margin-top: clamp(30px, 3vw, 40px);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  max-width: 42ch;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
@media (max-width: 760px) {
  .stakes-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* SEE/SHAPE/PROVE */
.ssp-head {
  max-width: 30ch;
  margin-bottom: 14px;
}
.ssp-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-top: 16px;
}
.rooms {
  margin-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.room {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}
.room .idx {
  font-size: 14px;
  font-weight: 800;
  color: var(--body-dim);
  padding-top: 8px;
}
.room h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 12px;
}
.room p {
  color: var(--body);
  max-width: 50ch;
  font-size: 16.5px;
  font-weight: 500;
}
.room .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body-dim);
  display: block;
  margin-bottom: 10px;
}
.room .verdict {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 8px;
}
.room .verdict.up {
  color: var(--signal);
}
.room .verdict.down {
  color: var(--ink);
}
.room .verdict.see {
  color: var(--body-dim);
}
.ssp-foot {
  margin-top: clamp(32px, 4vw, 48px);
}
.ssp-resolve {
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.02em;
}
.ssp-resolve .o {
  color: var(--signal);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 7px 11px;
}
@media (max-width: 760px) {
  .room {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 26px 0;
  }
  .room .idx {
    padding-top: 0;
  }
  .room .verdict {
    padding-top: 6px;
  }
}

/* WHY NOW */
.law h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  max-width: 22ch;
  color: #fff;
  margin-top: 16px;
}
.law .lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: #d2d5d6;
  max-width: 58ch;
  margin-top: 24px;
  font-weight: 500;
}
.refs {
  margin-top: clamp(34px, 4vw, 50px);
  border-top: 1px solid var(--line-dk);
}
.ref {
  display: grid;
  grid-template-columns: minmax(150px, 260px) 1fr;
  gap: clamp(14px, 3vw, 40px);
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dk);
  align-items: baseline;
}
.ref .k {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
}
.ref .v {
  color: var(--cream-on-dk);
  font-size: 16px;
  font-weight: 500;
}
.law .q {
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 34px);
  color: #fff;
  max-width: 26ch;
  margin-top: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.law .q .em {
  color: var(--signal);
}
@media (max-width: 680px) {
  .ref {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* QUOTES */
.quote-sec {
  background: var(--paper-pure);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quotes-head {
  max-width: 30ch;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.quotes-head h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  margin-top: 14px;
}
.quotes3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.5vw, 36px);
}
.qcard {
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--ink);
  padding-top: 22px;
}
.qcard blockquote {
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}
.qcard .cite {
  margin-top: 22px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--body-dim);
  text-transform: uppercase;
  line-height: 1.6;
}
.qcard .cite b {
  color: var(--ink);
  font-weight: 800;
  display: block;
}
@media (max-width: 820px) {
  .quotes3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* FOUNDERS */
.founders {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.founders h2 {
  font-size: clamp(28px, 3.6vw, 46px);
}
.founders p {
  color: var(--body);
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 52ch;
  font-weight: 500;
}
.founders p + p {
  margin-top: 18px;
}
.founders .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.pill {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 12px;
}
@media (max-width: 760px) {
  .founders {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* FINAL */
.final {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.final h2 {
  font-size: clamp(34px, 5vw, 64px);
}
.final h2 .o {
  color: var(--signal);
}
.final p {
  color: #cfd3d4;
  font-size: clamp(17px, 1.6vw, 21px);
  margin: 20px auto 34px;
  max-width: 42ch;
  font-weight: 500;
}
.final .hero-cta {
  justify-content: center;
}
.final .ph {
  display: block;
  margin-top: 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dim-on-dk);
}
.final .ph a {
  color: var(--cream-on-dk);
}

/* FOOTER */
footer.ft {
  background: var(--ink-deep);
  color: var(--dim-on-dk);
  border-top: 1px solid var(--line-dk);
  padding: 56px 0 36px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 32px;
}
.ft .logo-img {
  height: 30px;
  margin-bottom: 16px;
}
.ft .tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--dim-on-dk);
  max-width: 30ch;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: normal;
  padding: 0;
}
.ft h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-on-dk);
  margin-bottom: 16px;
}
.ft ul {
  list-style: none;
}
.ft li {
  margin-bottom: 10px;
}
.ft a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dim-on-dk);
  transition: color 0.2s;
}
.ft a:hover {
  color: var(--signal);
}
.ft .ft .ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dk);
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bottom span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 860px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .ledger {
    max-width: 480px;
  }
}
@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    transform: translateY(-130%);
    transition: transform 0.3s;
    z-index: 55;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a.navlink {
    padding: 14px var(--gut);
    width: 100%;
  }
  .nav-links .btn {
    margin: 10px var(--gut);
  }
  .navtoggle {
    display: flex;
  }
  .hero h1 {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .entry {
    opacity: 1;
    transform: none;
  }
}
/* PHONE */
.stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6px 0 2px;
}
.phone {
  position: relative;
  width: clamp(286px, 32vw, 340px);
  background: #0f1316;
  border-radius: 48px;
  padding: 11px;
  box-shadow:
    0 54px 90px -34px rgba(15, 19, 22, 0.6),
    0 14px 34px -14px rgba(15, 19, 22, 0.45);
}
.screen {
  position: relative;
  background: #f6f6f3;
  border-radius: 38px;
  overflow: hidden;
  aspect-ratio: 1/2.03;
  display: flex;
  flex-direction: column;
}
.screen::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 22px;
  background: #0f1316;
  border-radius: 12px;
  z-index: 6;
}
.app-top {
  padding: 40px 18px 13px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #fff;
  border-bottom: 1px solid #eceae3;
}
.app-h {
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.app-sub {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal);
  margin-top: 5px;
}
.app-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.app-list {
  flex: 1;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #f6f6f3;
}
.arow {
  background: #fff;
  border: 1px solid #edebe4;
  border-radius: 14px;
  padding: 11px 12px;
  box-shadow: 0 8px 18px -14px rgba(38, 47, 55, 0.5);
  opacity: 0;
  transform: translateY(8px);
}
.reveal-on .arow {
  animation: rise 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.reveal-on .arow:nth-child(2) {
  animation-delay: 0.1s;
}
.reveal-on .arow:nth-child(3) {
  animation-delay: 0.22s;
}
.reveal-on .arow:nth-child(4) {
  animation-delay: 0.34s;
}
.atag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 7px;
}
.atag.perf {
  color: #ff6900;
  background: rgba(255, 107, 0, 0.12);
}
.atag.well {
  color: #5c636b;
  background: #eeeee8;
}
.atag.safe {
  color: #7c6a42;
  background: #f2ead8;
}
.atag.cond {
  color: #566069;
  background: #e9edf0;
}
.atx {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.38;
}
.ameta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--body-dim);
  letter-spacing: 0.02em;
}
.ameta .st.open {
  color: #ff6900;
}
.tabbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 11px 22px 16px;
  background: #fff;
  border-top: 1px solid #eceae3;
}
.tb {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #d8d8d2;
}
.tb.active {
  background: var(--ink);
}
.fab {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -7px rgba(255, 107, 0, 0.7);
  margin-top: -26px;
  flex: none;
}
.insight-chip {
  position: absolute;
  top: 26px;
  right: -10px;
  z-index: 7;
  background: #fff;
  border: 1px solid #eceae3;
  border-radius: 13px;
  padding: 11px 14px;
  box-shadow: 0 20px 40px -16px rgba(38, 47, 55, 0.5);
}
.ic-row {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: -0.01em;
}
.ic-row .up {
  color: var(--signal);
  font-size: 15px;
}
.ic-row b {
  font-size: 19px;
  font-weight: 900;
}
.ic-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--body-dim);
  margin-top: 3px;
  letter-spacing: 0.01em;
}
.ic-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 20px;
  margin-top: 9px;
}
.ic-bars i {
  width: 6px;
  background: rgba(255, 107, 0, 0.28);
  border-radius: 2px;
}
.ic-bars i.hot {
  background: var(--signal);
}
@media (max-width: 400px) {
  .insight-chip {
    right: 0;
    top: 14px;
  }
}

/* STAKES v2 */
.stakes-head {
  max-width: 48ch;
}
.stakes-intro {
  color: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 58ch;
  margin-top: 18px;
  font-weight: 500;
}
.cost2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 3vw, 52px);
  margin-top: clamp(40px, 4vw, 60px);
}
.cost-col {
  border-top: 3px solid var(--signal);
  padding-top: 22px;
}
.cost-col.risk {
  border-top-color: var(--ink);
}
.cost-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cost-tag.up {
  color: #ff6900;
}
.cost-tag.down {
  color: var(--ink);
}
.cost-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cost-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: baseline;
}
.cn {
  font-weight: 900;
  font-size: clamp(30px, 3.1vw, 42px);
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
}
.cn small {
  font-size: 0.5em;
  font-weight: 800;
  letter-spacing: 0;
}
.cn.up {
  color: var(--signal);
}
.ct {
  color: var(--body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.cost-src {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--body-dim);
  margin-top: clamp(26px, 3vw, 38px);
  letter-spacing: 0.01em;
}
@media (max-width: 820px) {
  .cost2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 520px) {
  .cost-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* nav active */
.nav-links a.navlink.active {
  color: var(--ink);
}
.nav-links a.navlink.active::after {
  right: 0;
}
/* interior hero */
.phero {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(38px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
}
.phero h1 {
  font-size: clamp(34px, 5vw, 60px);
  max-width: 18ch;
  margin: 16px 0 18px;
}
.phero p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--body);
  max-width: 54ch;
  font-weight: 500;
}
.phero .hero-cta {
  margin-top: 26px;
}
/* feature blocks */
.fblock {
  padding-top: clamp(54px, 6vw, 90px);
  padding-bottom: clamp(54px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}
.fb-head {
  max-width: 62ch;
}
.fb-verdict {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
  display: inline-block;
}
.fb-verdict.up {
  color: var(--signal);
}
.fb-verdict.down {
  color: var(--ink);
}
.fblock h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin-top: 12px;
}
.fb-sub {
  color: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  margin-top: 14px;
  max-width: 56ch;
  font-weight: 500;
}
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(30px, 3vw, 42px);
}
.fgrid.five {
  grid-template-columns: repeat(5, 1fr);
}
.fcard {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.fcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(38, 47, 55, 0.4);
}
.fcard .fi {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--signal-tint);
  position: relative;
  margin-bottom: 16px;
}
.fcard .fi::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 3px;
  background: var(--signal);
}
.fcard h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.fcard p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .fgrid,
  .fgrid.five {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .fgrid,
  .fgrid.five {
    grid-template-columns: 1fr;
  }
}
/* two-col */
.two {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.two p {
  color: var(--body);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 500;
  max-width: 56ch;
}
.two p + p {
  margin-top: 16px;
}
@media (max-width: 760px) {
  .two {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* founders */
.fdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: clamp(30px, 3vw, 42px);
}
.fdr-card {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.fdr-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.fdr-av {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.fdr-card h3 {
  font-size: 19px;
  line-height: 1.1;
}
.fdr-card .role {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-top: 5px;
}
.fdr-card p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .fdr {
    grid-template-columns: 1fr;
  }
}
/* values */
.vgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 26px;
  margin-top: clamp(30px, 3vw, 42px);
}
.vcard {
  border-top: 2px solid var(--signal);
  padding-top: 18px;
}
.vcard h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.vcard p {
  font-size: 14.5px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.5;
  max-width: 46ch;
}
@media (max-width: 680px) {
  .vgrid {
    grid-template-columns: 1fr;
  }
}
/* contact */
.csplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.cdetails {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cdet h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-dim);
  margin-bottom: 5px;
}
.cdet a,
.cdet span {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.cform {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 30px 60px -40px rgba(38, 47, 55, 0.5);
}
.cform label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.cform input,
.cform textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  transition: border-color 0.2s;
}
.cform input:focus,
.cform textarea:focus {
  outline: none;
  border-color: var(--signal);
}
.cform textarea {
  resize: vertical;
}
.cform .btn {
  width: 100%;
  margin-top: 4px;
  text-align: center;
  border: none;
}
.cnote {
  font-size: 12px;
  color: var(--body-dim);
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 760px) {
  .csplit {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* cost alignment fix */
.cost-item {
  display: block;
  grid-template-columns: none;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.cost-col .cost-item:first-child {
  border-top: none;
  padding-top: 2px;
}
.cn {
  display: block;
  text-align: left;
  min-width: 0;
  line-height: 1;
}
.ct {
  margin-top: 9px;
  max-width: 40ch;
}

/* ===== legalcss  (from privacy.html) ===== */
.legal-hero {
  padding: clamp(70px, 11vw, 120px) 0 clamp(28px, 5vw, 48px);
  background: var(--paper-pure);
  border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow {
  color: var(--signal);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.legal-hero h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.026em;
  color: var(--ink);
  margin: 0.35em 0 0.2em;
}
.legal-hero .upd {
  color: var(--body-dim);
  font-size: 14px;
  font-weight: 600;
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) var(--gut) clamp(60px, 9vw, 110px);
}
.legal-wrap.reveal {
  opacity: 1;
  transform: none;
}
.legal-wrap h2 {
  font-size: clamp(20px, 2.5vw, 25px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 2.2em 0 0.5em;
  font-weight: 800;
}
.legal-wrap h2:first-of-type {
  margin-top: 0;
}
.legal-wrap p,
.legal-wrap li {
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.75;
}
.legal-wrap p {
  margin: 0 0 1.1em;
}
.legal-wrap ul,
.legal-wrap ol {
  margin: 0 0 1.2em;
  padding-left: 1.25em;
}
.legal-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 0 1.2em;
}
.legal-wrap li {
  margin: 0 0 0.5em;
}
.legal-wrap a {
  color: #ff6900;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--signal-tint);
  transition: border-color 0.2s;
}
.legal-wrap a:hover {
  border-color: var(--signal);
}
.legal-wrap strong {
  color: var(--ink);
  font-weight: 800;
}
.legal-contact {
  margin-top: 2.4em;
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.legal-contact p {
  margin: 0 0 0.4em;
  font-size: 15.5px;
}
.legal-contact p:last-child {
  margin: 0;
}

/* ===== artcss  (from resources.html) ===== */
.art-hero {
  padding: clamp(64px, 10vw, 112px) 0 clamp(26px, 4vw, 44px);
  background: var(--paper-pure);
  border-bottom: 1px solid var(--line);
}
.art-hero .wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gut);
}
.breadcrumb {
  font-size: 13px;
  color: var(--body-dim);
  font-weight: 700;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: #ff6900;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.art-hero .eyebrow {
  color: var(--signal);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.art-hero h1 {
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.026em;
  color: var(--ink);
  margin: 0.4em 0 0.25em;
  text-wrap: balance;
}
.art-meta {
  color: var(--body-dim);
  font-size: 14px;
  font-weight: 600;
}
.art-meta a {
  color: #ff6900;
  text-decoration: none;
}
.art-meta a:hover {
  text-decoration: underline;
}
.art-note {
  font-size: 13.5px;
  color: var(--body-dim);
  font-style: italic;
  border-left: 3px solid var(--line);
  padding-left: 16px;
  margin: 2.4em 0 0;
}
.art-cta {
  margin-top: 3.2em;
  background: linear-gradient(155deg, var(--ink) 0%, var(--ink-deep) 100%);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 52px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.art-cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.18), transparent 68%);
}
.art-cta h3 {
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 800;
  position: relative;
}
.art-cta p {
  color: var(--dim-on-dk);
  font-size: 16px;
  margin: 0 auto 22px;
  max-width: 42ch;
  position: relative;
}
.art-cta .btn {
  display: inline-block;
  background: var(--signal);
  color: #fff;
  padding: 15px 30px;
  border-radius: 11px;
  font-weight: 800;
  font-size: 15.5px;
  text-decoration: none;
  position: relative;
  transition:
    transform 0.3s var(--ease-lux, ease),
    background 0.25s,
    box-shadow 0.3s;
}
.art-cta .btn:hover {
  background: #ff6900;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(255, 107, 0, 0.6);
}
.res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--gut) clamp(60px, 9vw, 110px);
}
.res-card {
  display: block;
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  transition:
    transform 0.3s var(--ease-lux, ease),
    box-shadow 0.3s,
    border-color 0.2s;
}
.res-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -30px rgba(38, 47, 55, 0.4);
  border-color: #d5d3cc;
}
.res-card .eyebrow {
  color: var(--signal);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.res-card h2 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.5em 0 0.4em;
  font-weight: 800;
}
.res-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}
.res-card .more {
  display: inline-block;
  margin-top: 14px;
  color: #ff6900;
  font-weight: 800;
  font-size: 14px;
}
@media (max-width: 760px) {
  .res-grid {
    grid-template-columns: 1fr;
  }
}
.res-archive .res-grid {
  padding-bottom: 28px;
}
.res-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gut) clamp(60px, 9vw, 110px);
}
.res-pagination a,
.res-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-pure);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}
.res-pagination .current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.res-pagination a:hover {
  border-color: var(--signal);
  color: #ff6900;
}
.res-pagination .dots {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 4px;
}
.res-empty {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--gut) clamp(60px, 9vw, 110px);
  text-align: center;
}
.res-empty p {
  color: var(--body);
  font-size: 16px;
  margin: 0 0 20px;
}

/* Gravity Forms submit — match theme .btn */
.cform .gform_wrapper.gravity-theme .gform_footer,
.cform .gform_wrapper.gravity-theme .gform_page_footer,
.cform .gform_wrapper .gform_footer {
  display: block;
  margin-top: 4px;
}
.cform .gform_wrapper.gravity-theme .gform_footer .gform_button,
.cform .gform_wrapper.gravity-theme .gform_footer button[type="submit"],
.cform .gform_wrapper.gravity-theme .gform_footer input[type="submit"],
.cform .gform_button,
.cform .gform_footer .btn {
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  padding: 13px 21px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  display: block;
  width: 100%;
  align-self: stretch;
  text-align: center;
  box-shadow: none;
  transition:
    transform 0.15s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.4s var(--ease-lux, ease);
}
.cform .gform_wrapper.gravity-theme .gform_footer .gform_button:hover,
.cform .gform_wrapper.gravity-theme .gform_footer button[type="submit"]:hover,
.cform .gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover,
.cform .gform_button:hover,
.cform .gform_footer .btn:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px -18px rgba(255, 107, 0, 0.55);
}
.cform .gform_wrapper.gravity-theme .gform_footer .gform_button:active,
.cform .gform_button:active,
.cform .gform_footer .btn:active {
  transform: translateY(1px) scale(0.992);
}

/* Footer responsive — last so it wins over duplicated earlier copies */
footer.ft {
  padding: clamp(40px, 6vw, 56px) 0 32px;
}
footer.ft .ft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
footer.ft .ft-brand,
footer.ft .ft-grid > div:first-child {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer.ft .logo-img,
footer.ft .ft-grid > div:first-child .logo-img {
  height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  flex: none;
  align-self: flex-start;
}
footer.ft .ausbadge {
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  flex: none;
  align-self: flex-start;
}
footer.ft .ft-app {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
footer.ft .store {
  width: min(188px, 100%);
  max-width: 100%;
}
footer.ft .ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dk);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  footer.ft .ft-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px 24px;
  }
  footer.ft .ft-brand,
  footer.ft .ft-grid > div:first-child,
  footer.ft .ft-col-app {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 480px) {
  footer.ft {
    padding: 36px 0 28px;
  }
  footer.ft .ft-grid {
    gap: 28px 16px;
  }
  footer.ft .ausbadge {
    height: 56px;
    max-width: 150px;
  }
  footer.ft .ft-bottom {
    margin-top: 32px;
  }
}

/* WP nav menus: keep header flex layout with default ul/li markup */
.nav-links > ul,
.nav-links > ul > li {
  display: contents;
}

.gform_required_legend{
  display: none;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-size: 12px !important;
}

/* Password-protected page */
.ppage {
  padding-bottom: clamp(48px, 8vw, 96px);
}
.ppage-hero {
  padding-top: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(28px, 4vw, 48px);
}
.ppage-hero .wrap {
  max-width: 920px;
}
.ppage-hero .eyebrow {
  margin-bottom: 0;
}
.ppage-hero h1 {
  font-size: 40px;
  max-width: none;
  margin: 12px 0 16px;
  line-height: 1.06;
  letter-spacing: -0.026em;
}
.ppage-sub {
  font-size: 15.5px;
  color: var(--body);
  /* max-width: 46ch; */
  margin: 0 0 28px;
}
.ppage .password-protected-form {
  max-width: 820px;
}
.ppage .cform input[type="hidden"] {
  display: none !important;
  width: auto;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
.ppage .post-password-form .btn {
  width: 100%;
  margin-top: 4px;
  text-align: center;
}
.ppage .post-password-form-invalid-password {
  background: var(--signal-tint);
  color: #ff6900;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.ppage .post-password-form-invalid-password p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

/* Gravity Forms on the password-protected page */
.ppage .cform .gform_wrapper.gravity-theme,
.ppage .cform .gform_wrapper {
  margin: 0;
}
.ppage .cform .gform_heading {
  margin: 0 0 22px;
}
.ppage .cform .gform_title {
  font-family: var(--font);
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 8px;
}
.ppage .cform .gform_description {
  font-size: 15px;
  color: var(--body);
  margin: 0;
}
.ppage .cform .gform_wrapper.gravity-theme .gfield,
.ppage .cform .gform_wrapper .gfield {
  margin-bottom: 4px;
}
.ppage .cform .gform_wrapper.gravity-theme .gfield_label,
.ppage .cform .gform_wrapper.gravity-theme .gform-field-label,
.ppage .cform .gform_wrapper .gfield_label,
.ppage .cform .ginput_complex label {
  display: block;
  font-family: var(--font);
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.ppage .cform .gfield_required,
.ppage .cform .gfield_required_asterisk {
  color: var(--signal);
  font-weight: 800;
}
.ppage .cform .gform_wrapper.gravity-theme input[type="text"],
.ppage .cform .gform_wrapper.gravity-theme input[type="email"],
.ppage .cform .gform_wrapper.gravity-theme input[type="tel"],
.ppage .cform .gform_wrapper.gravity-theme input[type="url"],
.ppage .cform .gform_wrapper.gravity-theme input[type="number"],
.ppage .cform .gform_wrapper.gravity-theme input[type="password"],
.ppage .cform .gform_wrapper.gravity-theme textarea,
.ppage .cform .gform_wrapper.gravity-theme select,
.ppage .cform .gform_wrapper input[type="text"],
.ppage .cform .gform_wrapper input[type="email"],
.ppage .cform .gform_wrapper input[type="tel"],
.ppage .cform .gform_wrapper textarea,
.ppage .cform .gform_wrapper select {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 7px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  box-shadow: none;
  transition: border-color 0.2s;
}
.ppage .cform .gform_wrapper.gravity-theme input:focus,
.ppage .cform .gform_wrapper.gravity-theme textarea:focus,
.ppage .cform .gform_wrapper.gravity-theme select:focus,
.ppage .cform .gform_wrapper input:focus,
.ppage .cform .gform_wrapper textarea:focus,
.ppage .cform .gform_wrapper select:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: none;
}
.ppage .cform .gform_wrapper.gravity-theme textarea,
.ppage .cform .gform_wrapper textarea {
  min-height: 120px;
  resize: vertical;
}
.ppage .cform .gform_wrapper input[type="checkbox"],
.ppage .cform .gform_wrapper input[type="radio"] {
  display: inline-block;
  width: auto;
  margin: 0 8px 0 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.ppage .cform .gform_wrapper.gravity-theme .ginput_complex,
.ppage .cform .gform_wrapper .ginput_complex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.ppage .cform .gform_wrapper.gravity-theme .ginput_complex span,
.ppage .cform .gform_wrapper .ginput_complex span {
  width: auto;
  margin: 0;
}
@media (max-width: 560px) {
  .ppage .cform .gform_wrapper.gravity-theme .ginput_complex,
  .ppage .cform .gform_wrapper .ginput_complex {
    grid-template-columns: 1fr;
  }
}
.ppage .cform .gform_wrapper.gravity-theme .gfield_description,
.ppage .cform .gform_wrapper .gfield_description {
  font-size: 13px;
  color: var(--body-dim);
  font-weight: 600;
  padding-top: 6px;
}
.ppage .cform .gform_wrapper.gravity-theme .gfield_validation_message,
.ppage .cform .gform_wrapper.gravity-theme .validation_message,
.ppage .cform .gform_validation_errors {
  color: #ff6900;
  font-size: 13px;
  font-weight: 700;
}
.ppage .cform .gform_wrapper.gravity-theme .gform_submission_error,
.ppage .cform .gform_validation_errors {
  background: var(--signal-tint);
  border: none;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.ppage .cform .gform_confirmation_message {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.ppage .cform .gform_wrapper.gravity-theme .gform_footer,
.ppage .cform .gform_wrapper .gform_footer {
  display: block;
  margin-top: 8px;
  padding: 0;
}
.ppage .cform .gform_wrapper.gravity-theme .gform_footer .gform_button,
.ppage .cform .gform_wrapper.gravity-theme .gform_footer button[type="submit"],
.ppage .cform .gform_wrapper.gravity-theme .gform_footer input[type="submit"],
.ppage .cform .gform_button,
.ppage .cform .gform_footer .btn {
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  padding: 13px 21px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: center;
  box-shadow: none;
  transition:
    transform 0.15s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.4s var(--ease-lux, ease);
}
.ppage .cform .gform_wrapper.gravity-theme .gform_footer .gform_button:hover,
.ppage .cform .gform_wrapper.gravity-theme .gform_footer button[type="submit"]:hover,
.ppage .cform .gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover,
.ppage .cform .gform_button:hover,
.ppage .cform .gform_footer .btn:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px -18px rgba(255, 107, 0, 0.55);
}

/* ===== 404 ===== */
.e404-hero {
  padding-top: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(48px, 7vw, 80px);
}
.e404-hero h1 .em {
  color: var(--signal);
}
.e404-hero .hero-grid,
.e404-hero .hero-col {
  min-width: 0;
  max-width: 100%;
}
.e404-hero p {
  max-width: 42ch;
}
.e404-ledger {
  width: 100%;
  max-width: 380px;
}
.e404-hero .hero-cta .btn {
  white-space: nowrap;
  text-align: center;
}
.e404-hero .ledger {
  margin-inline: auto;
}
.e404-ledger .ledger-top {
  gap: 12px;
}
.e404-empty {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(28px, 4vw, 44px) 8px;
}
.e404-num {
  font-size: clamp(72px, 10vw, 112px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: #fff;
}
.e404-num span {
  color: var(--signal);
}
.e404-empty p {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim-on-dk);
  max-width: none;
}
.e404-links .fcard {
  display: block;
  color: inherit;
  text-decoration: none;
}
.e404-links .fcard .fi {
  display: block;
}
.e404-links .fcard .more {
  display: inline-block;
  margin-top: 14px;
  color: #ff6900;
  font-weight: 800;
  font-size: 14px;
}
@media (max-width: 920px) {
  .e404-hero .hero-grid {
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .e404-hero .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .e404-ledger .ledger-week {
    display: none;
  }
}