/* PLTCo — Platinum Co PLT Pty Ltd */

:root {
  --ink: #17253C;
  --ink-2: #1C2E4A;
  --ink-3: #284461;
  --cobalt: #2F6FED;
  --cobalt-2: #7FB0FF;
  --cobalt-tint: #E8F0FE;
  --coral: #EE9A54;
  --coral-tint: #FDEEDF;
  --bone: #FCFAF6;
  --mist: #F3F1EA;
  --mist-2: #E7E3D8;
  --slate: #53617A;
  --slate-2: #918EAE;
  --line: rgba(21, 34, 56, .13);
  --line-2: rgba(21, 34, 56, .07);
  --line-d: rgba(255, 255, 255, .14);
  --r: 14px;
  --r-lg: 22px;
  --pill: 100px;
  --sh: 0 1px 2px rgba(21, 34, 56, .05), 0 12px 30px -16px rgba(21, 34, 56, .22);
  --sh-l: 0 2px 6px rgba(21, 34, 56, .07), 0 30px 56px -24px rgba(21, 34, 56, .36);
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .rv {
    opacity: 1 !important;
    transform: none !important;
  }
}

h1,
h2,
h3,
h4 {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(38px, 5.6vw, 70px);
}

h2 {
  font-size: clamp(28px, 3.7vw, 46px);
}

h3 {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h4 {
  font-size: 18px;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--coral);
  color: var(--ink);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 26px;
}

.narrow {
  max-width: 800px;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.on-d .eyebrow {
  color: var(--cobalt-2);
}

.lead {
  font-size: 19px;
  color: var(--slate);
  line-height: 1.55;
}

.on-d .lead,
.on-d p {
  color: #A9B7C9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s cubic-bezier(.2, .8, .3, 1), background .15s, border-color .15s, box-shadow .15s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-c {
  background: var(--cobalt);
  color: #fff;
}

.btn-c:hover {
  background: #1E56D0;
  box-shadow: 0 16px 30px -14px rgba(47, 111, 237, .6);
}

.btn-coral {
  background: var(--coral);
  color: var(--ink);
}

.btn-coral:hover {
  background: #F5B379;
  box-shadow: 0 16px 30px -14px rgba(240, 160, 90, .65);
}

.btn-ink {
  background: var(--ink);
  color: #fff;
}

.btn-ink:hover {
  background: var(--ink-3);
  box-shadow: var(--sh-l);
}

.btn-o {
  border-color: var(--line);
  color: var(--ink);
}

.btn-o:hover {
  border-color: var(--ink);
  background: var(--mist);
}

.btn-ol {
  border-color: var(--line-d);
  color: #fff;
}

.btn-ol:hover {
  border-color: var(--cobalt-2);
  color: var(--cobalt-2);
}

.btn-sm {
  padding: 10px 19px;
  font-size: 14px;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 251, 250, .88);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line-2);
}

nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text b {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand-text span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  color: var(--slate-2);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate);
  padding: 9px 14px;
  border-radius: var(--pill);
  transition: .15s;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--mist);
}

.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}

.nav-right {
  display: flex;
  gap: 9px;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 11px;
  cursor: pointer;
  font-size: 16px;
}

section {
  padding: 112px 0;
}

section.tight {
  padding: 72px 0;
}

.dark {
  background: var(--ink);
  color: #fff;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4 {
  color: #fff;
}

.mistbg {
  background: var(--mist);
}

.sec-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.sec-head .eyebrow {
  margin-bottom: 14px;
}

.sec-head h2 {
  margin-bottom: 16px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center .eyebrow {
  justify-content: center;
}

.rv {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2, .8, .3, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

.g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

/* hero */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -8%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, .40), transparent 66%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -12%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 160, 90, .26), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 16px 0 18px;
  color: #fff;
}

.hero h1 mark {
  background: none;
  color: var(--coral);
}

.hero .lead {
  max-width: 500px;
  margin-bottom: 32px;
  font-size: 19px;
}

.hero-a {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-d);
}

.trust div {
  font-size: 13.5px;
  color: #A9B7C9;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tick {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(240, 160, 90, .26);
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* calc */
.calc {
  background: var(--bone);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, .65);
  color: var(--ink);
}

.calc h3 {
  font-size: 19px;
}

.calc .sub {
  font-size: 13px;
  color: var(--slate);
  margin: 4px 0 20px;
}

.cf {
  margin-bottom: 16px;
}

.cf label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}

.cf label span {
  font-family: 'JetBrains Mono', monospace;
  color: var(--cobalt);
}

.cf input[type=range] {
  width: 100%;
  accent-color: var(--cobalt);
  height: 4px;
}

.cout {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  padding: 20px;
  margin-top: 20px;
}

.cout .big {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--coral);
}

.cout .lbl {
  font-size: 12.5px;
  color: #A9B7C9;
  margin-top: 6px;
}

.cout .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 13px;
  margin-top: 13px;
  border-top: 1px solid var(--line-d);
  font-size: 13.5px;
  color: #A9B7C9;
}

.cout .row b {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  color: #fff;
}

.cnote {
  font-size: 11px;
  color: var(--slate-2);
  margin-top: 11px;
  line-height: 1.5;
}

/* tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tile {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-l);
  border-color: var(--cobalt);
}

.tile .ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--cobalt-tint);
  display: grid;
  place-items: center;
}

.tile .ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--cobalt);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile h4 {
  font-size: 16px;
}

.tile p {
  font-size: 13.5px;
  color: var(--slate);
}

.tile .go {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  margin-top: auto;
}

/* cards */
.card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-l);
}

.card .kick {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  display: block;
}

.card h3 {
  margin-bottom: 9px;
}

.card p {
  font-size: 15px;
  color: var(--slate);
}

.card ul {
  list-style: none;
  margin-top: 15px;
}

.card li {
  font-size: 14.5px;
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: 1px solid var(--line-2);
}

.card li:first-child {
  border-top: none;
}

.card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--cobalt);
}

.card .why {
  margin-top: 16px;
  padding: 13px 15px;
  background: var(--cobalt-tint);
  border-radius: var(--r);
  font-size: 13.5px;
  color: var(--slate);
}

.card .why b {
  color: var(--ink);
}

.card-d {
  background: var(--ink-2);
  border-color: var(--line-d);
}

.card-d p {
  color: #A9B7C9;
}

.card-d li {
  color: #E3E7F7;
  border-top-color: var(--line-d);
}

.card-d .why {
  background: rgba(255, 255, 255, .06);
  color: #A9B7C9;
}

.card-d .why b {
  color: #fff;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat {
  padding: 28px 22px;
  border-right: 1px solid var(--line-2);
}

.stat:last-child {
  border-right: none;
}

.stat .n {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.stat .n em {
  font-style: normal;
  color: var(--cobalt);
}

.stat .t {
  font-size: 13px;
  color: var(--slate);
  margin-top: 7px;
}

/* timeline */
.tl {
  position: relative;
  padding-left: 32px;
}

.tl::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line-d);
}

.tlx {
  position: relative;
  padding-bottom: 30px;
}

.tlx:last-child {
  padding-bottom: 0;
}

.tlx::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--cobalt);
}

.tlx .when {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--coral);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.tlx h4 {
  color: #fff;
  margin: 4px 0 5px;
}

.tlx p {
  font-size: 14.5px;
  color: #A9B7C9;
  max-width: 560px;
}

/* reviews */
.rev {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.stars {
  color: var(--coral);
  letter-spacing: 2px;
  font-size: 13px;
}

.rev blockquote {
  font-size: 16px;
  line-height: 1.55;
  flex: 1;
}

.rev .res {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--cobalt);
  background: var(--cobalt-tint);
  padding: 6px 12px;
  border-radius: var(--pill);
  align-self: flex-start;
}

.rev .who {
  display: flex;
  gap: 11px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}

.av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.rev .nm {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
}

.rev .rl {
  font-size: 12.5px;
  color: var(--slate-2);
}

/* people */
.person {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.person:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-l);
}

.person .ph {
  height: 180px;
  background: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.person .ph::after {
  content: "";
  position: absolute;
  inset: auto -25% -60% -25%;
  height: 130px;
  background: var(--ink-3);
  border-radius: 50% 50% 0 0;
}

.person .ph b {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  position: relative;
  z-index: 2;
}

.person .bd {
  padding: 20px;
}

.person .nm {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.person .rl {
  font-size: 12.5px;
  color: var(--cobalt);
  font-weight: 600;
  margin: 3px 0 10px;
}

.person .bio {
  font-size: 13.5px;
  color: var(--slate);
}

.person .human {
  font-size: 12.5px;
  color: var(--slate-2);
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid var(--line-2);
}

.chips {
  margin-top: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  background: var(--mist);
  padding: 5px 9px;
  border-radius: var(--pill);
  color: var(--slate);
}

/* pick */
.pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pick label {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  padding: 15px 17px;
  cursor: pointer;
  transition: .15s;
  font-size: 14.5px;
}

.pick label:hover {
  border-color: var(--cobalt);
}

.pick input {
  margin-top: 3px;
  accent-color: var(--cobalt);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.pick-out {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  font-size: 15.5px;
  display: none;
}

.pick-out.show {
  display: block;
}

.pick-out b {
  color: var(--coral);
}

/* table */
.cmp {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}

.cmp th,
.cmp td {
  padding: 15px 17px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}

.cmp thead th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-2);
  font-weight: 500;
}

.cmp .us {
  background: var(--cobalt-tint);
  font-weight: 600;
}

.cmp thead .us {
  color: var(--cobalt);
  border-radius: 12px 12px 0 0;
}

.cmp tbody tr:last-child .us {
  border-radius: 0 0 12px 12px;
}

.cmp td.dim {
  color: var(--slate-2);
}

/* faq */
.faq details {
  border-bottom: 1px solid var(--line-2);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--coral);
  font-size: 23px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--slate);
  max-width: 760px;
}

.pull {
  border-left: 3px solid var(--coral);
  padding: 6px 0 6px 20px;
  margin: 24px 0;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 21px;
  letter-spacing: -0.025em;
  line-height: 1.32;
}

/* cta */
.cta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 56px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -50%;
  transform: translateX(-50%);
  width: 720px;
  height: 560px;
  background: radial-gradient(ellipse, rgba(47, 111, 237, .34), transparent 62%), radial-gradient(ellipse at 20% 80%, rgba(240, 160, 90, .20), transparent 60%);
}

.cta>* {
  position: relative;
  z-index: 2;
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  color: #A9B7C9;
  max-width: 520px;
  margin: 0 auto 24px;
  font-size: 17px;
}

.cta-a {
  display: flex;
  gap: 11px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-f {
  margin-top: 16px;
  font-size: 13px;
  color: #7B78A0;
}

/* sticky */
.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  background: var(--ink);
  color: #fff;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1);
  font-size: 14.5px;
}

.sticky.show {
  transform: none;
}

.sticky b {
  color: var(--coral);
}

footer {
  background: var(--ink);
  color: #93A3B6;
  padding: 56px 0 24px;
}

.fg {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.fg h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.fg a {
  display: block;
  font-size: 13.5px;
  color: #93A3B6;
  margin-bottom: 9px;
  transition: .15s;
}

.fg a:hover {
  color: var(--cobalt-2);
}

.fg p {
  font-size: 13.5px;
  max-width: 290px;
  color: #93A3B6;
}

.fb {
  border-top: 1px solid var(--line-d);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.legal {
  font-size: 11px;
  color: #716E96;
  line-height: 1.65;
  margin-top: 16px;
}

.pagehead {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}

.pagehead::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -5%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, .36), transparent 60%);
}

.pagehead .wrap {
  position: relative;
  z-index: 2;
}

.pagehead h1 {
  font-size: clamp(33px, 4.6vw, 56px);
  margin: 14px 0 14px;
  color: #fff;
}

.pagehead .lead {
  max-width: 620px;
}

.prose p {
  margin-bottom: 16px;
  color: var(--slate);
}

.prose h3 {
  margin: 30px 0 10px;
  color: var(--ink);
}

.prose strong {
  color: var(--ink);
}

@media(max-width:1000px) {

  .tiles,
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-bottom: 1px solid var(--line-2);
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .fg {
    grid-template-columns: 1fr 1fr;
  }

  .pick {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px;
    align-items: stretch;
    gap: 2px;
  }
}

@media(max-width:720px) {

  .g2,
  .g3,
  .g4,
  .tiles,
  .pick,
  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
  }

  section {
    padding: 72px 0;
  }

  .wrap {
    padding: 0 20px;
  }

  .fg {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 38px 22px;
  }

  .cmp {
    font-size: 13px;
  }

  .cmp th,
  .cmp td {
    padding: 11px 9px;
  }

  .sticky {
    font-size: 13px;
    padding: 10px 16px;
    gap: 10px;
  }

  .nav-right .btn-o {
    display: none;
  }
}

.hero,
.dark,
.pagehead,
.cta {
  position: relative;
}

.hero>.wrap,
.pagehead>.wrap,
.dark>.wrap {
  position: relative;
  z-index: 2;
}

.grainy::before {
  z-index: 0;
}

.hero::before,
.hero::after,
.pagehead::before,
.cta::before {
  z-index: 0;
}

.noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: overlay;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: var(--coral);
  z-index: 1;
  pointer-events: none;
}

/* ============ ACCESSIBILITY ============ */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--coral);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 0 0 var(--r) 0;
  font-weight: 600;
  font-size: 15px;
}

.skip:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
label:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.dark a:focus-visible,
.hero a:focus-visible,
.cta a:focus-visible,
footer a:focus-visible,
.sticky a:focus-visible,
.sticky button:focus-visible {
  outline-color: var(--coral);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* contrast corrections */
:root {
  --accent-ink: #1E52C4;
  --slate-2: #65707F;
}

.card .kick,
.tile .go,
.stars,
.faq summary::after,
.person .rl {
  color: var(--accent-ink);
}

.rev .res {
  color: var(--accent-ink);
  background: var(--cobalt-tint);
}

.cta-f {
  color: #A2B0C1;
}

.legal {
  color: #9CAABC;
}

.eyebrow {
  color: var(--accent-ink);
}

.eyebrow::before {
  background: var(--accent-ink);
}

.on-d .eyebrow {
  color: var(--cobalt-2);
}

.on-d .eyebrow::before {
  background: var(--coral);
}

.stat .n em {
  color: var(--accent-ink);
}

/* sticky CTA */
.sticky {
  gap: 14px;
}

.sticky .dismiss {
  background: none;
  border: 1px solid var(--line-d);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 1;
  cursor: pointer;
  font-size: 15px;
  flex-shrink: 0;
}

.sticky .dismiss:hover {
  border-color: var(--coral);
  color: var(--coral);
}

body.sticky-on {
  padding-bottom: 78px;
}

/* ============ ADVICE BOUNDARY ============ */
.boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bcol {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px;
}

.bcol.keep {
  background: var(--cobalt-tint);
  border-color: rgba(110, 86, 248, .22);
}

.bcol h3 {
  margin-bottom: 6px;
}

.bcol .sub {
  font-size: 13.5px;
  color: var(--slate);
  margin-bottom: 14px;
}

.bcol ul {
  list-style: none;
}

.bcol li {
  font-size: 14.5px;
  padding: 9px 0 9px 26px;
  position: relative;
  border-top: 1px solid var(--line-2);
}

.bcol li:first-of-type {
  border-top: none;
}

.bcol li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent-ink);
}

.bcol.keep li::before {
  border-radius: 50%;
  background: var(--ink);
}

.bnote {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--mist);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--slate);
}

.bnote b {
  color: var(--ink);
}

/* ============ OFFICIAL DATA CARDS ============ */
.dgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dcard {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dcard .org {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.dcard h4 {
  font-size: 15.5px;
}

.dval {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.dval.pending {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0;
}

.dsub {
  font-size: 13px;
  color: var(--slate);
}

.dmeta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
  font-size: 11.5px;
  color: var(--slate-2);
  line-height: 1.55;
}

.dstate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--pill);
}

.dstate.live {
  background: var(--cobalt-tint);
  color: var(--accent-ink);
}

.dstate.cached {
  background: var(--coral-tint);
  color: #6B5600;
}

.dstate.off {
  background: var(--mist);
  color: var(--slate);
}

.dcard a.src {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-ink);
}

/* ============ AML / MISC ============ */
.notecard {
  background: var(--mist);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 26px;
}

.notecard h3 {
  margin-bottom: 10px;
}

.notecard p {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 12px;
}

.notecard ul {
  list-style: none;
  margin: 8px 0 12px;
}

.notecard li {
  font-size: 14.5px;
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--slate);
}

.notecard li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent-ink);
}

.sla-list {
  list-style: none;
  margin-top: 14px;
}

.sla-list li {
  font-size: 14.5px;
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.sla-list li:first-child {
  border-top: none;
}

.sla-list li span:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink);
  text-align: right;
  flex-shrink: 0;
}

/* calculator additions */
.cf select {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.cout .row.net {
  border-top-width: 2px;
}

.cout .row.net b {
  color: var(--coral);
  font-size: 16px;
}

.cassume {
  font-size: 11px;
  color: var(--slate-2);
  margin-top: 10px;
  line-height: 1.55;
}

@media(max-width:1000px) {
  .dgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .boundary {
    grid-template-columns: 1fr;
  }
}

@media(max-width:720px) {
  .dgrid {
    grid-template-columns: 1fr;
  }

  /* stacked comparison table */
  .cmp thead {
    display: none;
  }

  .cmp,
  .cmp tbody,
  .cmp tr,
  .cmp td {
    display: block;
    width: 100%;
  }

  .cmp tr {
    border: 1px solid var(--line-2);
    border-radius: var(--r);
    margin-bottom: 12px;
    padding: 6px 0;
    background: #fff;
  }

  .cmp td {
    border-bottom: 1px solid var(--line-2);
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    text-align: right;
  }

  .cmp td:last-child {
    border-bottom: none;
  }

  .cmp td::before {
    content: attr(data-label);
    font-weight: 600;
    text-align: left;
    color: var(--slate);
    flex-shrink: 0;
  }

  .cmp td:first-child {
    background: var(--mist);
    font-weight: 600;
    text-align: left;
    display: block;
    border-radius: var(--r) var(--r) 0 0;
  }

  .cmp td:first-child::before {
    content: none;
  }

  .cmp .us {
    background: var(--cobalt-tint);
    border-radius: 0;
  }

  body.sticky-on {
    padding-bottom: 104px;
  }
}

/* logo strip */
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.logo-slot {
  height: 46px;
  min-width: 132px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-2);
  background: #fff;
  padding: 0 16px;
}

/* due diligence Q&A */
.dd {
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
}

.dd details {
  border-bottom: 1px solid var(--line-2);
}

.dd details:last-child {
  border-bottom: none;
}

.dd summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.dd summary::-webkit-details-marker {
  display: none;
}

.dd summary::after {
  content: "+";
  color: var(--accent-ink);
  font-size: 21px;
  font-weight: 400;
  flex-shrink: 0;
}

.dd details[open] summary {
  background: var(--mist);
}

.dd details[open] summary::after {
  content: "–";
}

.dd .ans {
  padding: 4px 24px 20px;
  font-size: 14.5px;
  color: var(--slate);
}

.dd .ans b {
  color: var(--ink);
}

/* status rows */
.status li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14.5px;
}

.status li:first-child {
  border-top: none;
}

.status .yes {
  color: var(--accent-ink);
  font-weight: 600;
}

.status .no {
  color: var(--slate-2);
}

/* people & culture */
.culture-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: start;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-slot {
  aspect-ratio: 4/3;
  border-radius: var(--r);
  background: var(--mist-2);
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-2);
}

.photo-slot.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 200px;
}

.valuerow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.value {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 22px;
}

.value .vn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 9px;
  display: block;
}

.value h4 {
  margin-bottom: 7px;
}

.value p {
  font-size: 14px;
  color: var(--slate);
}

@media(max-width:1000px) {
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .valuerow {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:720px) {
  .valuerow {
    grid-template-columns: 1fr;
  }
}

/* engagement models */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plan {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-l);
  border-color: var(--cobalt);
}

.plan.feature {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(240, 160, 90, .16);
}

.plan .flag {
  position: absolute;
  top: -11px;
  left: 22px;
  background: var(--coral);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--pill);
  font-weight: 600;
}

.plan .pw {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.plan h4 {
  font-size: 17px;
}

.plan .pdesc {
  font-size: 14px;
  color: var(--slate);
}

.plan .pfit {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--slate);
}

.plan .pfit b {
  color: var(--ink);
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: 'JetBrains Mono', monospace;
}

/* casework list */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 22px;
}

.case .ct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 11px;
  display: block;
}

.case h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.case ul {
  list-style: none;
}

.case li {
  font-size: 13.5px;
  color: var(--slate);
  padding: 6px 0 6px 18px;
  position: relative;
}

.case li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.case-d {
  background: rgba(255, 255, 255, .05);
  border-color: var(--line-d);
}

.case-d h4 {
  color: #fff;
}

.case-d li {
  color: #A9B7C9;
}

.case-d .ct {
  color: var(--coral);
}

/* next-step line */
.nextstep {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--slate);
}

.nextstep a {
  color: var(--accent-ink);
  font-weight: 600;
}

.on-d .nextstep {
  color: #A9B7C9;
}

.on-d .nextstep a {
  color: var(--coral);
}

@media(max-width:1000px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:720px) {

  .plans,
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* headings demoted for semantics, unchanged visually */
h3.sub-h {
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tile h3.sub-h {
  font-size: 16px;
}

.plan h3.sub-h {
  font-size: 17px;
}

.case h3.sub-h {
  font-size: 16px;
  margin-bottom: 8px;
}

.dcard h3.sub-h {
  font-size: 15.5px;
}

.tlx h3.sub-h {
  color: #fff;
  margin: 4px 0 5px;
}

.value h3.sub-h {
  margin-bottom: 7px;
}

.step h3.sub-h,
.person h3.sub-h {
  color: inherit;
}

h2.calc-h {
  font-size: 19px;
  letter-spacing: -0.025em;
}

/* section jump bar */
.jump {
  background: #fff;
  border-bottom: 1px solid var(--line-2);
  position: sticky;
  top: 61px;
  z-index: 150;
}

.jump-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 11px 26px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.jump-in::-webkit-scrollbar {
  display: none;
}

.jump a {
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate);
  border: 1px solid var(--line-2);
  padding: 7px 15px;
  border-radius: var(--pill);
  transition: .15s;
  flex-shrink: 0;
}

.jump a:hover {
  color: var(--ink);
  border-color: var(--cobalt);
  background: var(--cobalt-tint);
}

[id] {
  scroll-margin-top: 118px;
}

@media(max-width:720px) {
  .jump {
    top: 57px;
  }

  .jump-in {
    padding: 9px 20px;
  }

  .jump a {
    font-size: 12.5px;
    padding: 6px 13px;
  }
}

/* warm surface variant for human sections */
.warm {
  background: linear-gradient(180deg, #FBF6EE 0%, #F8F3EA 100%);
}

/* people band */
.faces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.face {
  text-align: left;
}

.face .fp {
  aspect-ratio: 1/1;
  border-radius: 18px;
  background: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.face .fp::after {
  content: "";
  position: absolute;
  inset: auto -22% -58% -22%;
  height: 70%;
  background: var(--ink-3);
  border-radius: 50% 50% 0 0;
}

.face .fp b {
  position: relative;
  z-index: 2;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: -0.03em;
}

.face .fn {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.face .fr {
  font-size: 12.5px;
  color: var(--accent-ink);
  font-weight: 600;
  margin: 2px 0 8px;
}

.face .fq {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.5;
}

/* single pull quote */
.bigquote {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.bigquote blockquote {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
}

.bigquote .qa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--slate);
}

.bigquote .qa .av {
  width: 38px;
  height: 38px;
}

.bigquote .qa b {
  color: var(--ink);
}

/* founder signature */
.sigline {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--ink);
  opacity: .85;
}

@media(max-width:900px) {
  .faces {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media(max-width:560px) {
  .faces {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .face .fq {
    display: none;
  }
}