@font-face {
  font-family: "Opague";
  src: url("assets/Opague-Regular-Desktop.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Suisse Intl";
  src: url("assets/SuisseIntl-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #050505;
  --panel: #12110F;
  --paper: #f4f1e8;
  --paper-2: #e9e5da;
  --lime: #c8ff3d;
  --coral: #ff6448;
  --muted: #9c9b92;
  --line: rgba(17, 17, 15, .17);
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: #FFFFFF;
  background: #050505;
  font-family: "Suisse Intl", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

h1, h2, h3,
.matrix-heading h2 {
  font-family: "Opague", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 26px max(32px, calc((100vw - var(--max)) / 2)) 10px;
  background: #050505;
}
.site-logo {
  display: block;
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}
.site-logo-link { display: block; border-radius: 4px; }
.site-logo-link:focus-visible { outline: 2px solid var(--lime); outline-offset: 5px; }
.theme-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #FFFFFF;
  background: #12110F;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  font: inherit;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.theme-toggle:hover { transform: rotate(18deg); border-color: rgba(255,255,255,.6); }
.theme-toggle:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.topbar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(calc(100% - 64px), var(--max));
  transform: translateX(-50%);
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-size: 12px; font-weight: 700; line-height: 1.05; text-transform: uppercase; letter-spacing: .05em; }
.brand-mark { width: 37px; height: 37px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 18px; }
.topbar nav { display: flex; gap: 34px; }
.topbar nav a { color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; transition: color .2s; }
.topbar nav a:hover { color: white; }
.top-cta { display: flex; align-items: center; gap: 24px; padding: 11px 11px 11px 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 99px; text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.top-cta span { width: 28px; height: 28px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 16px; }

.hero {
  position: relative;
  min-height: 790px;
  padding: 166px max(32px, calc((100vw - var(--max)) / 2)) 42px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}
.hero-copy { position: relative; z-index: 2; width: 57%; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 31px; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.eyebrow.dark span { background: var(--ink); }
h1 { margin: 0; font-size: clamp(57px, 6.4vw, 96px); line-height: .92; letter-spacing: -.065em; font-weight: 750; }
h1 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 530px; margin: 38px 0 29px; color: rgba(255,255,255,.61); font-size: 17px; line-height: 1.55; }
.hero-button { display: inline-flex; align-items: center; gap: 30px; padding: 8px 8px 8px 22px; color: var(--ink); background: var(--lime); border-radius: 99px; text-decoration: none; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.hero-button span { width: 36px; height: 36px; display: grid; place-items: center; background: var(--ink); color: var(--lime); border-radius: 50%; font-size: 17px; }
.hero-visual { position: absolute; z-index: 1; right: -55px; top: 137px; width: min(48vw, 670px); aspect-ratio: 1; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(200,255,61,.42); border-radius: 50%; }
.orbit-one { inset: 7%; }
.orbit-two { inset: 21%; border-style: dashed; animation: spin 30s linear infinite; }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 18px var(--lime); }
.orbit::before { left: 14%; top: 13%; }
.orbit::after { right: 9%; bottom: 21%; }
.core { position: relative; width: 36%; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink); background: var(--lime); border-radius: 50%; box-shadow: 0 0 80px rgba(200,255,61,.18); }
.core span { font-size: clamp(62px, 7vw, 105px); line-height: .8; letter-spacing: -.08em; font-weight: 800; }
.core small { margin-top: 12px; font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.axis-label { position: absolute; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .16em; }
.axis-x { right: 3%; top: 49%; }
.axis-y { left: 6%; top: 47%; transform: rotate(-90deg); }
.hero-foot { position: absolute; z-index: 2; left: max(32px, calc((100vw - var(--max)) / 2)); right: max(32px, calc((100vw - var(--max)) / 2)); bottom: 36px; display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.4); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.hero-foot span:nth-child(2) { text-align: center; }
.hero-foot span:last-child { text-align: right; }
@keyframes spin { to { transform: rotate(360deg); } }

.navigator { max-width: var(--max); margin: auto; padding: 120px 32px 130px; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; margin-bottom: 60px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 27px; }
.section-heading h2, .matrix-heading h2 { margin: 0; font-size: clamp(52px, 6vw, 84px); line-height: .92; letter-spacing: -.06em; }
.section-heading > p:last-child { max-width: 430px; align-self: end; margin: 0; color: #66665f; font-size: 16px; line-height: 1.55; }
.selector-card { position: relative; display: grid; grid-template-columns: 1fr 1fr; background: white; border: 1px solid var(--line); }
.selector-step { display: grid; grid-template-columns: 72px 1fr; min-height: 275px; padding: 34px; }
.selector-step:first-child { border-right: 1px solid var(--line); }
.step-number { width: 43px; height: 43px; display: grid; place-items: center; background: var(--lime); border-radius: 50%; font-size: 12px; font-weight: 800; }
.step-number.coral { color: white; background: var(--coral); }
.selector-content label { display: block; margin: 5px 0 9px; font-size: 19px; font-weight: 750; letter-spacing: -.02em; }
.selector-content p { min-height: 42px; max-width: 400px; margin: 0 0 28px; color: #77776f; font-size: 13px; line-height: 1.5; }
.select-wrap { position: relative; border-bottom: 2px solid var(--ink); }
.select-wrap select { width: 100%; padding: 14px 40px 14px 0; border: 0; outline: none; background: transparent; appearance: none; font: inherit; font-size: 16px; font-weight: 700; cursor: pointer; }
.select-wrap span { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 20px; pointer-events: none; }
.select-wrap:focus-within { border-color: #7eb400; }
.select-wrap.coral-focus:focus-within { border-color: var(--coral); }
.selector-content small { display: block; margin-top: 9px; color: #aaa9a1; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.cross-mark { position: absolute; z-index: 2; left: 50%; top: 50%; width: 50px; height: 50px; display: grid; place-items: center; transform: translate(-50%, -50%); color: white; background: var(--ink); border: 6px solid white; border-radius: 50%; font-size: 22px; }

.result-card { position: relative; margin-top: 16px; padding: 32px 36px 36px; color: white; background: var(--ink); overflow: hidden; }
.result-card::after { content: ""; position: absolute; right: -60px; top: -130px; width: 360px; height: 360px; border: 1px solid rgba(200,255,61,.18); border-radius: 50%; }
.result-label { display: flex; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.46); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.result-label span { color: var(--lime); }
.result-main { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 31px 0 12px; }
.result-main p { margin: 0 0 15px; color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.techniques { display: flex; flex-wrap: wrap; gap: 10px; min-height: 66px; }
.technique { width: 62px; height: 62px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 28px; font-weight: 800; letter-spacing: -.05em; }
.technique:nth-child(2) { background: #eeffb9; }
.technique:nth-child(3) { background: white; }
.technique:nth-child(4) { color: white; background: var(--coral); }
.no-techniques { align-self: center; color: rgba(255,255,255,.7); font-size: 18px; }
.result-description { display: flex; flex-direction: column; justify-content: center; font-size: 19px; font-weight: 700; line-height: 1.25; }
.result-description i { margin: 8px 0; color: rgba(255,255,255,.38); font-family: Georgia, serif; font-weight: 400; }
.show-cell { position: relative; z-index: 1; display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; color: var(--lime); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

.matrix-section { padding: 64px max(32px, calc((100vw - var(--max)) / 2)) 105px; color: white; background: #050505; }
.matrix-heading { display: block; margin-bottom: 45px; }
.matrix-heading h2 { max-width: 1100px; color: var(--paper); font-size: clamp(38px, 4.5vw, 62px); line-height: .98; word-spacing: .18em; }
.matrix-heading > p { max-width: 390px; margin: 0; color: rgba(255,255,255,.5); line-height: 1.55; }
.matrix-legend { display: flex; gap: 28px; align-items: center; margin-bottom: 18px; color: rgba(255,255,255,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.matrix-legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend-line { width: 20px; height: 7px; background: rgba(200,255,61,.2); }
.legend-cell { width: 9px; height: 9px; background: var(--lime); }
.matrix-legend .matrix-position { margin-left: auto; color: var(--lime); font-weight: 800; }
.matrix-shell { max-height: 590px; overflow: auto; border: 1px solid rgba(255,255,255,.18); outline: none; background: #12110F; scrollbar-color: var(--lime) #242421; scroll-snap-type: both mandatory; scroll-padding-top: 126px; scroll-padding-left: 230px; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; touch-action: pan-x pan-y; }
.matrix-shell:focus-visible { box-shadow: 0 0 0 3px rgba(200,255,61,.35); }
#matrix-table { width: max-content; border-collapse: separate; border-spacing: 0; font-size: 14px; }
#matrix-table thead { position: sticky; z-index: 8; top: 0; background: #12110F; }
#matrix-table thead tr { background: #12110F; }
#matrix-table th, #matrix-table td { height: 62px; min-width: 130px; padding: 8px; border-right: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); text-align: center; transition: background .16s, color .16s; }
#matrix-table thead th { position: sticky; z-index: 9; top: 0; height: 126px; padding: 16px 12px; overflow: hidden; isolation: isolate; opacity: 1; color: #F2F1ED; background: #12110F; background-clip: border-box; vertical-align: middle; cursor: pointer; }
#matrix-table thead th:not(.corner) { scroll-snap-align: none start; }
#matrix-table thead th:last-child { scroll-snap-align: none end; }
#matrix-table .corner { z-index: 12; left: 0; min-width: 230px; padding: 0; color: transparent; background: #12110F; cursor: default; }
#matrix-table tbody th { position: sticky; z-index: 6; left: 0; width: 230px; min-width: 230px; padding: 12px 18px; opacity: 1; color: #F2F1ED; background: #12110F; background-clip: border-box; text-align: left; font-size: 14px; font-weight: 400; line-height: 1.28; cursor: pointer; }
#matrix-table tbody td:first-of-type { scroll-snap-align: start none; }
#matrix-table td { color: rgba(255,255,255,.52); background: #12110F; font-size: 14px; font-weight: 400; line-height: 1.3; cursor: pointer; }
#matrix-table th.selected-axis, #matrix-table td.selected-row, #matrix-table td.selected-col { color: white; background: rgba(200,255,61,.13); }
#matrix-table tbody th.selected-axis { color: var(--lime); background: #34451A; box-shadow: inset -3px 0 0 var(--lime); }
#matrix-table td.selected-cell { color: var(--ink); background: var(--lime); box-shadow: inset 0 0 0 2px var(--lime); font-size: 15px; font-weight: 800; }
#matrix-table thead th.selected-axis { color: var(--lime); background: #34451a; box-shadow: inset 0 -3px 0 var(--lime); }
.header-name { position: relative; z-index: 1; display: block; width: 112px; margin: 0 auto; white-space: normal; font-size: 14px; font-weight: 400; line-height: 1.28; overflow-wrap: anywhere; }
.matrix-tip { margin: 15px 0 0; color: rgba(255,255,255,.28); text-align: center; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }

footer { display: flex; justify-content: flex-end; align-items: center; min-height: 94px; padding: 28px max(32px, calc((100vw - var(--max)) / 2)); color: white; background: #050505; }
footer p { max-width: 430px; margin: 0; color: rgba(255,255,255,.4); font-size: 11px; line-height: 1.6; }
footer > a { color: var(--lime); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; }

body[data-theme="light"] {
  color: #050505;
  background: #FFFFFF;
}
body[data-theme="light"] .site-header,
body[data-theme="light"] .matrix-section,
body[data-theme="light"] footer {
  color: #050505;
  background: #FFFFFF;
}
body[data-theme="light"] .site-logo { filter: brightness(0); }
body[data-theme="light"] .theme-toggle {
  color: #050505;
  background: #FFFFFF;
  border-color: rgba(5,5,5,.28);
}
body[data-theme="light"] .theme-toggle:hover { border-color: rgba(5,5,5,.7); }
body[data-theme="light"] .matrix-heading h2 { color: #050505; }
body[data-theme="light"] .matrix-shell,
body[data-theme="light"] #matrix-table thead,
body[data-theme="light"] #matrix-table thead tr,
body[data-theme="light"] #matrix-table thead th,
body[data-theme="light"] #matrix-table tbody th,
body[data-theme="light"] #matrix-table td {
  color: rgba(5,5,5,.72);
  background: #FFFFFF;
}
body[data-theme="light"] .matrix-shell { border-color: rgba(5,5,5,.25); scrollbar-color: #050505 #EAEAEA; }
body[data-theme="light"] #matrix-table th,
body[data-theme="light"] #matrix-table td { border-color: rgba(5,5,5,.14); }
body[data-theme="light"] #matrix-table th.selected-axis,
body[data-theme="light"] #matrix-table td.selected-row,
body[data-theme="light"] #matrix-table td.selected-col { color: #050505; background: rgba(125,165,24,.18); }
body[data-theme="light"] #matrix-table tbody th.selected-axis { color: #050505; background: var(--lime); box-shadow: inset -3px 0 0 #050505; }
body[data-theme="light"] #matrix-table thead th.selected-axis { color: #050505; background: var(--lime); }
body[data-theme="light"] #matrix-table td.selected-cell { color: #050505; background: var(--lime); }
body[data-theme="light"] .matrix-tip { color: rgba(5,5,5,.45); }
body[data-theme="light"] footer > a { color: #050505; }

@media (max-width: 900px) {
  .topbar { width: calc(100% - 40px); }
  .topbar nav { display: none; }
  .hero { min-height: 830px; padding-left: 24px; padding-right: 24px; }
  .hero-copy { width: 100%; }
  .hero-lead { max-width: 470px; }
  .hero-visual { right: -165px; top: 350px; width: 590px; opacity: .6; }
  .section-heading, .matrix-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 25px; }
  .selector-card { grid-template-columns: 1fr; }
  .selector-step:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .cross-mark { top: 50%; }
  .result-main { grid-template-columns: 1fr; gap: 25px; }
  .matrix-heading { gap: 25px; }
  .matrix-section { padding-right: 24px; padding-left: 24px; }
}

@media (max-width: 600px) {
  .site-header { min-height: 70px; padding: 16px 16px 6px; }
  .site-logo { width: 104px; }
  .theme-toggle { width: 40px; height: 40px; font-size: 22px; }
  .topbar { height: 75px; }
  .top-cta { padding-left: 11px; font-size: 0; }
  .top-cta span { font-size: 16px; }
  .hero { min-height: 760px; padding-top: 135px; }
  h1 { font-size: 53px; }
  .hero-visual { width: 450px; top: 390px; right: -160px; }
  .hero-foot { left: 24px; right: 24px; grid-template-columns: 1fr; gap: 5px; }
  .hero-foot span:nth-child(2), .hero-foot span:last-child { display: none; }
  .navigator { padding: 80px 20px; }
  .section-heading h2 { font-size: 49px; }
  .matrix-heading { display: none; }
  .selector-step { grid-template-columns: 1fr; gap: 20px; padding: 25px 22px 30px; }
  .selector-content p { min-height: auto; }
  .result-card { padding: 25px 22px 30px; }
  .result-label { gap: 12px; }
  .technique { width: 55px; height: 55px; font-size: 24px; }
  .matrix-section { padding: 30px 0 52px; }
  .matrix-legend { flex-wrap: wrap; gap: 12px; }
  .matrix-legend .matrix-position { width: 100%; margin-left: 0; }
  .matrix-shell { width: 100%; height: clamp(430px, 68svh, 620px); max-height: none; border-right: 0; border-left: 0; scroll-snap-type: both proximity; scroll-padding-top: 96px; scroll-padding-right: 0; scroll-padding-left: 132px; scrollbar-width: none; }
  .matrix-shell::-webkit-scrollbar { width: 0; height: 0; }
  #matrix-table th, #matrix-table td { height: 58px; min-width: 104px; padding: 6px; }
  #matrix-table thead th { height: 96px; padding: 8px 6px; }
  #matrix-table .corner, #matrix-table tbody th { width: 132px; min-width: 132px; max-width: 132px; }
  #matrix-table tbody th { padding: 7px 10px; overflow-wrap: anywhere; font-size: 12px; line-height: 1.15; }
  #matrix-table td { font-size: 13px; line-height: 1.2; }
  #matrix-table td.selected-cell { font-size: 15px; }
  .header-name { width: 90px; font-size: 12px; line-height: 1.18; }
  .matrix-tip { margin-top: 13px; padding: 0 16px; font-size: 10px; line-height: 1.45; }
  footer { min-height: 72px; padding: 22px 16px; }
}

@media (max-width: 380px) {
  .matrix-shell { scroll-padding-left: 120px; }
  #matrix-table th, #matrix-table td { min-width: 98px; }
  #matrix-table .corner, #matrix-table tbody th { width: 120px; min-width: 120px; max-width: 120px; }
  #matrix-table tbody th { padding-right: 8px; padding-left: 8px; font-size: 11px; }
  .header-name { width: 84px; font-size: 11.5px; }
}

@media (max-width: 900px) and (orientation: landscape) {
  .site-header { min-height: 58px; padding-top: 10px; }
  .site-logo { width: 96px; }
  .theme-toggle { width: 36px; height: 36px; font-size: 20px; }
  .matrix-section { padding-top: 18px; padding-bottom: 28px; }
  .matrix-heading { margin-bottom: 16px; }
  .matrix-heading h2 { max-width: 760px; font-size: 30px; }
  .matrix-shell { height: max(300px, calc(100svh - 154px)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit-two { animation: none; }
}
