@font-face {
  font-family: "Source Code Pro";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("fonts/SourceCodePro-Regular.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Code Pro";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("fonts/SourceCodePro-Semibold.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("fonts/SourceSans3-It.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("fonts/SourceSans3-Regular.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("fonts/SourceSans3-Semibold.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/SourceSans3-Bold.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("fonts/SourceSerif4-It.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("fonts/SourceSerif4-Regular.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("fonts/SourceSerif4-Semibold.ttf.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/SourceSerif4-Bold.ttf.woff2") format("woff2");
}
:root {
  color-scheme: dark;
  --black: #000000;
  --ink: #f7f7f5;
  --muted: #c7c9cc;
  --quiet: #7b8089;
  --blue: #6aa7ff;
  --blue-bright: #91bdff;
  --gold: #c6a14d;
  --line: #202329;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Source Sans 3", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--black); min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }
.shell { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }
.narrow { max-width: 790px; }
.centered { text-align: center; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.site-header { border-bottom: 1px solid rgba(255,255,255,.025); }
.header-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand-lockup img { width: 190px; height: auto; }
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}
.site-nav a,
.header-cta,
.footer-links a {
  color: var(--ink);
  font-size: .76rem;
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: color .18s ease;
}
.site-nav a:hover,
.footer-links a:hover { color: var(--blue-bright); }
.site-nav a:first-child::after { content: "⌄"; padding-left: 7px; color: var(--muted); }
.header-cta,
.action-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .13em;
}
.header-cta { font-size: .72rem; }
.header-cta::after,
.action-link::after,
.card-link::after,
.cross-link strong::after { content: "⟶"; font-size: 1.2em; letter-spacing: 0; }
.header-cta:hover,
.action-link:hover,
.product-card:hover .card-link,
.cross-link:hover strong { color: var(--blue-bright); }
.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  padding-block: 58px 44px;
}
.hero-home { min-height: 650px; }
.hero-copy { position: relative; z-index: 1; max-width: 650px; }
.eyebrow,
.section-label,
.card-number,
.step-number {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.breadcrumb { display: flex; gap: 22px; }
.breadcrumb span + span::before { content: "/"; margin-right: 22px; color: var(--quiet); }
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
}
h1 { max-width: 720px; font-size: clamp(3.2rem, 6.2vw, 5.7rem); line-height: .98; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.15; }
.small-heading { font-size: clamp(1.55rem, 3vw, 2.15rem); }
.hero-intro { margin-top: 28px; }
.body-copy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.62;
}
.hero-intro .body-copy { margin: 0; max-width: 510px; }
.action-link {
  width: fit-content;
  margin-top: 32px;
  font-size: .86rem;
  transition: color .18s ease;
}
.hero-art { min-width: 0; align-self: stretch; display: grid; place-items: center; overflow: hidden; }
.hero-art img {
  width: min(100%, 480px);
  max-height: 560px;
  object-fit: contain;
  filter: saturate(.95) contrast(1.03);
}
.section { padding-block: clamp(64px, 8vw, 105px); }
.section-bordered { border-top: 1px solid var(--line); }
.section-intro { margin-bottom: 44px; }
.section-intro p:last-child { margin: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid-overview { gap: 0; }
.product-card {
  min-width: 0;
  min-height: 235px;
  padding: 0 28px 20px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-card:last-child { border-right: 1px solid var(--line); }
.product-card strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-question { min-height: 58px; margin-top: 14px; color: var(--muted); }
.card-link {
  margin-top: auto;
  color: var(--blue);
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .18s ease;
}
.card-link::after { padding-left: 9px; }
.process-grid {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.process-grid li {
  min-width: 0;
  padding: 0 48px;
  text-align: center;
  position: relative;
}
.process-grid li + li::before {
  content: "⟶";
  position: absolute;
  left: -10px;
  top: 52px;
  color: var(--blue);
  font-size: 1.3rem;
}
.process-grid strong {
  display: block;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.process-grid p { color: var(--muted); font-size: .9rem; }
.closing-band { padding-block: 38px; }
.closing-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.closing-inner h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.closing-inner .action-link { margin-top: 0; }
.products-hero { padding-block: clamp(90px, 12vw, 170px) clamp(65px, 8vw, 105px); }
.products-hero h1 { max-width: 900px; }
.split-grid {
  width: min(100%, 620px);
  margin: 46px auto 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.split-grid > div { padding: 8px 38px; }
.split-grid > div + div { border-left: 1px solid var(--line); }
.split-grid strong {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.split-grid p { margin-bottom: 0; }
.cross-grid {
  width: min(100%, 800px);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cross-link { padding: 12px 50px; display: flex; flex-direction: column; gap: 10px; }
.cross-link + .cross-link { border-left: 1px solid var(--line); }
.cross-link span { color: var(--muted); }
.cross-link strong {
  color: var(--blue);
  font-weight: 400;
  transition: color .18s ease;
}
.cross-link strong::after { padding-left: 10px; }
.standard-page {
  min-height: 610px;
  padding-block: clamp(90px, 14vw, 180px);
}
.standard-page h1 { max-width: 850px; }
.standard-body { max-width: 690px; margin-top: 30px; }
.site-footer { border-top: 1px solid var(--line); padding-block: 38px 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  gap: 72px;
  align-items: start;
}
.footer-brand img { width: 188px; height: auto; }
.footer-brand p {
  margin: 9px 0 0;
  color: var(--quiet);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 12px; }
.footer-links a { font-size: .68rem; }
.footer-meta { margin-top: 25px; color: #555b65; font-size: .72rem; }
.footer-meta p { margin: 0; }
@media (max-width: 900px) {
  .header-inner { grid-template-columns: 190px 1fr; gap: 22px; padding-block: 24px; }
  .header-cta { display: none; }
  .site-nav { justify-self: end; gap: 24px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr); min-height: 540px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 35px 0; }
  .product-card:nth-child(3) { border-left: 1px solid var(--line); }
  .process-grid li { padding-inline: 25px; }
}
@media (max-width: 720px) {
  .shell { width: min(100% - 36px, 1180px); }
  .header-inner { grid-template-columns: 1fr; min-height: auto; }
  .brand-lockup img { width: 170px; }
  .site-nav { justify-self: stretch; justify-content: space-between; gap: 14px; }
  .site-nav a { font-size: .66rem; }
  .hero,
  .hero-home {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding-block: 58px 22px;
  }
  .hero-copy { max-width: 100%; }
  h1 { font-size: clamp(2.7rem, 13vw, 3.9rem); }
  .hero-art {
    min-height: 275px;
    margin-top: -96px;
    padding-right: 8px;
    place-items: center end;
  }
  .hero-art img {
    width: min(60vw, 240px);
    height: auto;
    max-height: none;
  }
  .product-grid { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .product-card,
  .product-card:nth-child(3),
  .product-card:last-child {
    min-height: 205px;
    padding-block: 26px;
    border: 0;
    border-top: 1px solid var(--line);
  }
  .product-card:last-child { border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .process-grid li + li::before { content: "↓"; top: -38px; left: calc(50% - 5px); }
  .closing-inner { align-items: flex-start; flex-direction: column; }
  .split-grid,
  .cross-grid { grid-template-columns: minmax(0, 1fr); }
  .split-grid > div { padding: 22px 0; }
  .split-grid > div + div,
  .cross-link + .cross-link { border-left: 0; border-top: 1px solid var(--line); }
  .cross-link { padding: 26px 10px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
}
@media (max-width: 380px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-nav { flex-wrap: wrap; justify-content: flex-start; }
  .hero-art { min-height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}


/* Approved five-page proof reconstruction: fixed 1024x1536 composition canvas. */
.card-price, .purchase-price { color: #a5a5a5; font-size: 12px; font-weight: 400; letter-spacing: .04em; }
.card-price { display: block; margin-top: 8px; }
.purchase-price { margin: 16px 0 8px; }
.proof-price { position: absolute; width: 280px; height: 20px; color: #a5a5a5; font: 12px/20px Arial, sans-serif; letter-spacing: .04em; white-space: nowrap; }
.proof-price-hero { left: 55px; top: 552px; }
.proof-price-receive { left: 350px; top: 1074px; }
:root {
  --proof-canvas-width: 1024px;
  --proof-canvas-height: 1536px;
  --proof-header-boundary-y: 88px;
  --proof-footer-boundary-y: 1398px;
}
body.proof-page {
  inline-size: var(--proof-canvas-width);
  block-size: var(--proof-canvas-height);
  min-inline-size: var(--proof-canvas-width);
  margin: 0;
  overflow: hidden;
  background: #000;
}
.proof-stage {
  position: relative;
  inline-size: var(--proof-canvas-width);
  block-size: var(--proof-canvas-height);
  overflow: hidden;
}
.proof-composition {
  position: absolute;
  inset: 0;
  inline-size: var(--proof-canvas-width);
  block-size: var(--proof-canvas-height);
  max-inline-size: none;
  object-fit: fill;
}
.proof-semantic-layer {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.proof-identity-hooks,
.proof-hotspots {
  position: absolute;
  inset: 0;
}
.proof-identity-hooks {
  pointer-events: none;
}
.proof-identity-cover {
  position: absolute;
  display: block;
  background: #000;
}
.proof-header-cover,
.proof-header-identity {
  position: absolute;
  left: 31px;
  top: 20px;
  inline-size: 199px;
  block-size: 54px;
}
.proof-footer-cover,
.proof-footer-identity {
  position: absolute;
  left: 31px;
  top: 1412px;
  inline-size: 187px;
  block-size: 75px;
}
.proof-header-identity,
.proof-footer-identity,
.proof-hero-identity {
  max-inline-size: none;
  object-fit: contain;
}
.proof-hero-cover,
.proof-hero-identity {
  position: absolute;
  left: 514px;
  top: 130px;
  inline-size: 460px;
  block-size: 378px;
}
.proof-page[data-proof-key="home"] .proof-hero-cover,
.proof-page[data-proof-key="home"] .proof-hero-identity {
  left: 522px;
  top: 135px;
  inline-size: 450px;
  block-size: 370px;
}
.proof-hotspots .hotspot {
  position: absolute;
  display: block;
  opacity: 0;
}
.hotspot-nav-products { left: 365px; top: 30px; inline-size: 110px; block-size: 35px; }
.hotspot-nav-scope { left: 518px; top: 30px; inline-size: 125px; block-size: 35px; }
.hotspot-nav-about { left: 680px; top: 30px; inline-size: 78px; block-size: 35px; }
.hotspot-header-cta { left: 790px; top: 22px; inline-size: 201px; block-size: 46px; }
.hotspot-hero-cta { left: 55px; top: 578px; inline-size: 280px; block-size: 54px; }
.proof-page[data-proof-key="home"] .hotspot-hero-cta { top: 332px; }
.hotspot-receive-cta { left: 350px; top: 1100px; inline-size: 325px; block-size: 48px; }
.hotspot-cross-1 { left: 150px; top: 1230px; inline-size: 300px; block-size: 90px; }
.hotspot-cross-2 { left: 575px; top: 1230px; inline-size: 300px; block-size: 90px; }
.hotspot-card { top: 705px; inline-size: 205px; block-size: 188px; }
.hotspot-card-1 { left: 61px; }
.hotspot-card-2 { left: 266px; }
.hotspot-card-3 { left: 471px; }
.hotspot-card-4 { left: 676px; }
.proof-page[data-proof-key="home"] .hotspot-header-cta { left: 776px; }
.proof-page[data-proof-key="home"] .hotspot-nav-products { left: 379px; }
.proof-page[data-proof-key="home"] .hotspot-nav-scope { left: 527px; }
.proof-page[data-proof-key="home"] .hotspot-nav-about { left: 683px; }
.proof-page[data-proof-key="home"] .proof-footer-cover,
.proof-page[data-proof-key="home"] .proof-footer-identity {
  top: 1407px;
}

.mobile-render { display: none; }

@media (max-width: 900px) {
  body.proof-page {
    inline-size: 100%;
    block-size: auto;
    min-inline-size: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--black);
  }
  body.proof-page .proof-stage { display: none; }
  body.proof-page .mobile-render {
    display: block;
    min-block-size: 100vh;
  }
  .mobile-header {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--line);
    background: var(--black);
  }
  .mobile-header-bar {
    width: min(100% - 36px, 1180px);
    min-height: 84px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .mobile-brand { display: block; min-width: 0; }
  .mobile-brand img {
    width: min(190px, calc(100vw - 100px));
    height: auto;
  }
  .mobile-menu { position: relative; margin-left: auto; }
  .mobile-menu summary {
    display: grid;
    place-items: center;
    min-width: 48px;
    min-height: 48px;
    border: 1px solid var(--line);
    color: var(--ink);
    cursor: pointer;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu-glyph,
  .mobile-menu-glyph::before,
  .mobile-menu-glyph::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    content: "";
  }
  .mobile-menu-glyph { position: relative; }
  .mobile-menu-glyph::before,
  .mobile-menu-glyph::after { position: absolute; left: 0; }
  .mobile-menu-glyph::before { top: -7px; }
  .mobile-menu-glyph::after { top: 7px; }
  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: min(300px, calc(100vw - 36px));
    border: 1px solid var(--line);
    background: var(--black);
    box-shadow: 0 14px 28px rgba(0,0,0,.35);
  }
  .mobile-nav-panel a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    color: var(--ink);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav-panel a:last-child { border-bottom: 0; }
  .mobile-nav-panel .mobile-nav-cta { color: var(--blue); }
  .mobile-shell {
    width: min(100% - 36px, 1180px);
    margin-inline: auto;
  }
  .mobile-hero {
    padding: 62px 0 48px;
  }
  .mobile-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 3.9rem);
    line-height: .98;
    overflow-wrap: anywhere;
  }
  .mobile-hero-copy .breadcrumb {
    flex-wrap: wrap;
    row-gap: 5px;
    margin-bottom: 22px;
  }
  .mobile-hero-copy .hero-intro {
    max-width: 100%;
    margin-top: 28px;
  }
  .mobile-hero-copy .body-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .mobile-action {
    min-height: 48px;
    max-width: 100%;
    padding: 10px 0;
    margin-top: 28px;
    overflow-wrap: anywhere;
  }
  .mobile-hero-art {
    width: min(100%, 300px);
    margin: 26px auto 0;
  }
  .mobile-hero-art img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
  .mobile-content-section {
    padding: 64px 0;
  }
  .mobile-content-section h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .mobile-content-section .body-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .mobile-product-grid,
  .mobile-process-grid,
  .mobile-split-grid,
  .mobile-cross-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .mobile-product-grid { margin-top: 32px; }
  .mobile-product-card {
    display: flex;
    min-height: 188px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
  }
  .mobile-product-card:last-child { border-bottom: 1px solid var(--line); }
  .mobile-product-card strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .mobile-product-card .card-question {
    min-height: 0;
    margin: 0;
    color: var(--muted);
  }
  .mobile-product-card .card-link { margin-top: 4px; }
  .mobile-process-grid {
    gap: 48px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
  }
  .mobile-process-grid li {
    position: relative;
    padding: 0;
  }
  .mobile-process-grid li + li::before {
    position: absolute;
    top: -34px;
    left: 0;
    color: var(--blue);
    content: "↓";
  }
  .mobile-process-grid strong {
    display: block;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobile-process-grid p { max-width: 32rem; }
  .mobile-closing .mobile-action { margin-top: 22px; }
  .mobile-split-grid {
    margin-top: 34px;
    gap: 0;
  }
  .mobile-split-grid > div {
    padding: 22px 0;
    border-top: 1px solid var(--line);
  }
  .mobile-split-grid strong {
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
  }
  .mobile-split-grid p { margin-bottom: 0; }
  .mobile-cross-grid { margin-top: 28px; }
  .mobile-cross-link {
    display: flex;
    min-height: 96px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }
  .mobile-cross-link:last-child { border-bottom: 1px solid var(--line); }
  .mobile-cross-link strong {
    color: var(--blue);
    font-weight: 400;
  }
  .mobile-render .site-footer {
    padding: 38px 0 24px;
  }
  .mobile-render .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .mobile-render .footer-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
  .mobile-render .visually-hidden {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
