:root {
  --ink: #f5f7f4;
  --muted: #a8b1ad;
  --dim: #7d8782;
  --paper: #111414;
  --charcoal: #080a0a;
  --panel: #151a19;
  --panel-2: #1b211f;
  --line: rgba(232, 240, 232, 0.14);
  --line-strong: var(--line);
  --green: #a8db3e;
  --green-soft: rgba(168, 219, 62, 0.16);
  --blue: #8db7ff;
  --gold: #d8bc77;
  --radius: 8px;
  --rail-inset: 24px;
  --content-gutter: 48px;
  --mono: "Geist Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: "Instrument Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Iowan Old Style, Baskerville, "Times New Roman", serif;
  --text-caption: 10px;
  --text-meta: 11px;
  --text-small: 13px;
  --text-body: 16px;
  --secondary-nav-height: 64px;
  --secondary-nav-label-width: 154px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--charcoal);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(168, 219, 62, 0.08), transparent 28rem),
    radial-gradient(circle at 18% 26%, rgba(141, 183, 255, 0.08), transparent 25rem),
    var(--charcoal);
  font-family: var(--sans);
  letter-spacing: 0;
  line-height: 1.5;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.28) 1px, transparent 0);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
}

:is(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

button,
input,
select {
  font: inherit;
}

.site-shell {
  overflow-x: clip;
}

.footer p a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.page-rails {
  position: fixed;
  inset: 0 var(--rail-inset);
  z-index: 4;
  max-width: 2108px;
  margin: 0 auto;
  pointer-events: none;
}

.page-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.page-rail-left {
  left: 0;
}

.page-rail-right {
  right: 0;
}

.topbar {
  --topbar-gutter: var(--rail-inset);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 90px;
  padding: 0 var(--content-gutter);
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(8, 10, 10, 0.92), rgba(8, 10, 10, 0.72));
  backdrop-filter: blur(18px);
}

.topbar::before {
  content: "";
  position: absolute;
  left: var(--topbar-gutter);
  right: var(--topbar-gutter);
  bottom: 0;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}

.topbar-lines {
  position: absolute;
  inset: 0 var(--topbar-gutter);
  max-width: 2108px;
  margin: 0 auto;
  pointer-events: none;
}

.topbar-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.topbar-lines span:nth-child(1) {
  left: 0;
}

.topbar-lines span:nth-child(2) {
  left: 18.75%;
}

.topbar-lines span:nth-child(3) {
  left: 75%;
}

.topbar-lines span:nth-child(4) {
  right: 0;
}

.topbar-lines span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--dim);
  transform: translate(-50%, 50%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.section-nav-main {
  padding-top: 90px;
}

.section-nav {
  position: sticky;
  top: 90px;
  z-index: 19;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: var(--secondary-nav-height);
  padding: 0 var(--content-gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 10, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.section-nav::before {
  content: "";
  position: absolute;
  inset: 0 var(--rail-inset) -1px;
  z-index: 0;
  max-width: 2108px;
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  pointer-events: none;
}

.section-nav > * {
  position: relative;
  z-index: 1;
}

.section-nav-label {
  display: inline-flex;
  align-items: center;
  min-width: var(--secondary-nav-label-width);
  padding-right: 24px;
  border-right: 1px solid var(--line);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-nav-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(118px, 1fr);
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.section-nav-scroll::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: var(--secondary-nav-height);
  justify-content: center;
  padding: 0 20px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.section-nav a::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.section-nav a:hover,
.section-nav a:focus-visible,
.section-nav a[aria-current="location"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
}

.section-nav a:focus-visible {
  outline: 1px solid rgba(168, 219, 62, 0.72);
  outline-offset: -3px;
}

.section-nav a:hover::after,
.section-nav a:focus-visible::after,
.section-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.section-anchor {
  scroll-margin-top: 164px;
}

.section-nav-main > .section-nav + .hero {
  min-height: calc(100vh - var(--secondary-nav-height));
  padding-top: 96px;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 48px;
}

.topbar .brand {
  height: 100%;
  left: calc(9.375vw - 28.5px);
  transform: translateX(-50%);
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-wordmark em {
  font-style: normal;
  font-weight: 500;
}

.brand-wordmark > span + em {
  margin-left: 0.48em;
}

.brand-tm {
  align-self: flex-start;
  margin: 0.08em 0 0 0.04em;
  color: currentColor;
  font-family: var(--mono);
  font-size: 0.4em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 34px;
  flex: 0 0 40px;
}

.brand-mark-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow: visible;
}

.scramble-label {
  display: inline-block;
  min-inline-size: var(--scramble-label-width, auto);
  white-space: nowrap;
}

.scramble-label.is-scrambling {
  inline-size: var(--scramble-label-width, auto);
  max-inline-size: var(--scramble-label-width, none);
  overflow: hidden;
  font-variant-ligatures: none;
  text-overflow: clip;
}

.subbrand-lockup {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  margin-bottom: 28px;
}

.subbrand-lockup-mark {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.subbrand-lockup-copy {
  display: grid;
  gap: 4px;
}

.subbrand-lockup-copy strong {
  display: flex;
  align-items: baseline;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.subbrand-lockup-copy strong em {
  margin-left: 0.16em;
  font-style: italic;
}

.subbrand-lockup-copy small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}


.nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  overflow: hidden;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-links a.active::before {
  color: var(--green);
  box-shadow: 0 0 18px rgba(168, 219, 62, 0.5);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.topbar-cta {
  position: relative;
  z-index: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(168, 219, 62, 0.5);
  background: rgba(168, 219, 62, 0.12);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu-toggle {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle[aria-expanded="true"] {
  border-color: rgba(168, 219, 62, 0.45);
  background: rgba(168, 219, 62, 0.1);
}

.mobile-menu-label {
  font-size: 13px;
  font-weight: 560;
}

.mobile-menu-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--green);
  transition: transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu-icon::after {
  transform: rotate(90deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon::before {
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 90px 0 0;
  z-index: 19;
  visibility: hidden;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 6%, rgba(168, 219, 62, 0.075), transparent 22rem),
    #080a0a;
  transform: translateY(-12px);
  transition:
    visibility 0s linear 280ms,
    opacity 220ms ease,
    transform 280ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu-inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100%;
  padding: 40px var(--content-gutter) 34px;
}

.mobile-menu-kicker {
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mobile-menu-links {
  align-self: center;
  margin: 28px 0;
}

.mobile-menu-links a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  transition: color 180ms ease, padding 220ms ease;
}

.mobile-menu-links a:last-child {
  border-bottom: 1px solid var(--line);
}

.mobile-menu-links a > span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  transition: color 180ms ease;
}

.mobile-menu-links strong {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.004em;
  line-height: 1;
}

.mobile-menu-links i {
  color: var(--dim);
  font-style: normal;
  transition: color 180ms ease, transform 220ms ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active,
.mobile-menu-links a:focus-visible {
  color: var(--ink);
  background: rgba(168, 219, 62, 0.045);
  box-shadow: inset 2px 0 0 rgba(168, 219, 62, 0.72);
  outline: none;
}

.mobile-menu-links a:hover > span,
.mobile-menu-links a.active > span,
.mobile-menu-links a:focus-visible > span,
.mobile-menu-links a:hover i,
.mobile-menu-links a.active i,
.mobile-menu-links a:focus-visible i {
  color: var(--green);
}

.mobile-menu-links a:hover i,
.mobile-menu-links a.active i,
.mobile-menu-links a:focus-visible i {
  transform: translate(3px, 3px);
}

.mobile-menu-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.mobile-menu-footer p {
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.mobile-menu-footer .button {
  min-width: 180px;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .topbar {
  z-index: 22;
  background: #080a0a;
}

body.menu-open .mobile-menu {
  z-index: 21;
}

body.menu-open .desk-nav,
body.menu-open .section-nav {
  visibility: hidden;
  pointer-events: none;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  padding-left: var(--content-gutter);
  padding-right: var(--content-gutter);
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  grid-column: 2 / span 5;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

p {
  text-wrap: pretty;
}

h1 {
  max-width: 720px;
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.008em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

h2 {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.006em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

h3 {
  font-size: 23px;
  font-weight: 550;
  line-height: 1.12;
}

.hero-lede {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-access-note {
  margin-top: 15px;
  color: rgba(245, 247, 244, 0.5);
  font-family: var(--mono);
  font-size: var(--text-caption);
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #0c100b;
  background: var(--green);
  box-shadow: 0 0 32px rgba(168, 219, 62, 0.2);
}

.cta-with-free {
  position: relative;
  overflow: visible;
}

.cta-free-badge {
  position: absolute;
  top: -10px;
  right: -12px;
  padding: 4px 7px;
  border: 1px solid rgba(168, 219, 62, 0.78);
  border-radius: 999px;
  color: var(--green);
  background: #090c0b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px) scale(0.86);
  transform-origin: bottom left;
  pointer-events: none;
  transition: opacity 180ms ease, transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.cta-with-free:hover .cta-free-badge,
.cta-with-free:focus-visible .cta-free-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  grid-column: 8 / span 5;
  min-height: 400px;
  z-index: 1;
  perspective: 1200px;
}

.hero-product-stage {
  position: absolute;
  inset: 0;
}

.hero-product-stage::before {
  content: "";
  position: absolute;
  inset: 5% -8% 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 219, 62, 0.09), transparent 66%);
  filter: blur(24px);
  pointer-events: none;
}

.member-pass {
  position: absolute;
  top: 24px;
  right: 0;
  z-index: 3;
  width: min(100%, 470px);
  aspect-ratio: 1.68 / 1;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(231, 241, 233, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.075), transparent 34%),
    linear-gradient(148deg, #171c1a, #0b0e0d 68%);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035);
  transform: rotate(-1.6deg) translateZ(28px);
  transform-style: preserve-3d;
}

.member-pass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 32%, rgba(255, 255, 255, 0.075) 47%, transparent 58%);
  opacity: 0.64;
  pointer-events: none;
}

.member-pass::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  background: var(--green);
  box-shadow: -12px 0 40px rgba(168, 219, 62, 0.14);
}

.member-pass > * {
  position: relative;
  z-index: 1;
}

.member-pass-head,
.member-pass-footer {
  display: flex;
  align-items: center;
}

.member-pass-head,
.member-pass-footer {
  justify-content: space-between;
  gap: 18px;
}

.member-pass-lock {
  width: 30px;
  height: 30px;
}

.member-pass-lock img {
  display: block;
  width: 100%;
  height: 100%;
}

.member-pass-wordmark {
  display: flex;
  align-items: baseline;
  margin-top: 48px;
  font-family: var(--serif);
  font-size: 48px;
  letter-spacing: -0.025em;
  line-height: 0.82;
}

.member-pass-wordmark em {
  margin-left: 0.16em;
  font-style: italic;
}

.member-pass-wordmark .brand-tm {
  margin-top: 0.16em;
  color: rgba(245, 247, 244, 0.72);
  font-size: 10px;
}

.member-pass > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.member-pass-footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: rgba(245, 247, 244, 0.58);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.member-pass-footer strong {
  color: rgba(245, 247, 244, 0.82);
  font-weight: 500;
}

.guide-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.guide-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #111513;
}

.guide-card-live {
  border-color: rgba(168, 219, 62, 0.28);
  background:
    linear-gradient(145deg, rgba(168, 219, 62, 0.11), transparent 54%),
    #121713;
}

.guide-card h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.006em;
  line-height: 0.92;
}

.guide-card > p {
  margin-top: 11px;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.45;
}

.guide-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
}

.guide-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(245, 247, 244, 0.68);
  font-size: var(--text-caption);
}

.guide-card-foot {
  margin-top: auto;
  padding-top: 14px;
  color: rgba(245, 247, 244, 0.7);
  min-height: 44px;
  font-size: 12px;
}

.guide-card-foot strong {
  color: var(--green);
  font-weight: 500;
}

.trusted-row {
  position: relative;
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  padding: 24px 0 2px;
  color: var(--muted);
}

.trusted-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
  pointer-events: none;
}

.trusted-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
}

.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: var(--ink);
  opacity: 0.46;
  transition: opacity 180ms ease;
}

.trusted-logo:hover {
  opacity: 0.82;
}

.trusted-logo img {
  display: block;
  width: 100%;
  height: 24px;
  max-width: 92px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.trusted-logo[data-brand="cloudflare"] img { max-width: 94px; }
.trusted-logo[data-brand="coinbase"] img { max-width: 88px; }
.trusted-logo[data-brand="github"] img { max-width: 82px; }
.trusted-logo[data-brand="stripe"] img { max-width: 58px; }
.trusted-logo[data-brand="shopify"] img { max-width: 82px; }
.trusted-logo[data-brand="atlassian"] img { max-width: 86px; }
.trusted-logo[data-brand="anthropic"] img { max-width: 92px; }
.trusted-logo[data-brand="block"] img { max-width: 68px; }

.current-guides {
  align-items: start;
  padding-top: 104px;
  padding-bottom: 110px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 45%, rgba(168, 219, 62, 0.055), transparent 31%),
    var(--charcoal);
}

.current-guides-copy {
  grid-column: 1 / span 4;
  max-width: 430px;
}

.current-guides-copy h2 {
  margin-top: 22px;
  max-width: 420px;
  font-size: 50px;
}

.current-guides-copy > p:last-child {
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.current-guides-grid {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.current-guides .guide-card {
  min-height: 390px;
  padding: 24px;
  border-radius: 12px;
}

.guide-card-brand {
  display: flex;
  align-items: center;
  height: 72px;
  margin-top: 28px;
}

.guide-card-brand img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.guide-card-brand-blackhat img {
  width: 212px;
  height: auto;
  mix-blend-mode: screen;
}

.guide-card-brand-falcon img {
  width: 174px;
  height: 60px;
}

.current-guides .guide-card h3.guide-card-location {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.guide-card-location span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.current-guides .guide-card > p {
  font-size: 12px;
}

.current-guides .guide-card .guide-card-copy {
  margin-top: 22px;
  color: rgba(245, 247, 244, 0.74);
  font-size: 14px;
  line-height: 1.48;
}

.current-guides .guide-card-tags {
  margin-top: 22px;
}

.current-guides .guide-card-tags span {
  padding: 5px 7px;
  font-size: 9px;
}

.current-guides .guide-card-foot {
  margin-inline: -24px;
  padding: 17px 24px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.current-guides .guide-card-foot strong {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(168, 219, 62, 0.36);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.current-guides .guide-card-foot:hover,
.current-guides .guide-card-foot:focus-visible {
  border-color: rgba(168, 219, 62, 0.5);
  color: var(--green);
}

.current-guides .guide-card-foot:hover strong,
.current-guides .guide-card-foot:focus-visible strong {
  color: var(--charcoal);
  background: var(--green);
  transform: translate(2px, -2px);
}

.about-hero {
  min-height: calc(100svh - var(--secondary-nav-height));
  padding-top: 106px;
  padding-bottom: 76px;
}

.about-hero .hero-copy {
  grid-column: 2 / span 5;
}

.about-hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 5.2vw, 82px);
}

.about-system {
  grid-column: 8 / span 4;
  align-self: center;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 78% 18%, rgba(168, 219, 62, 0.11), transparent 15rem),
    rgba(17, 21, 20, 0.78);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  perspective: none;
}

.about-system-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-system-head img {
  display: block;
  width: 38px;
  height: 38px;
}

.about-system-flow {
  display: grid;
  margin: 28px 0;
}

.about-system-flow > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.about-system-flow > div:first-child {
  border-top: 1px solid var(--line);
}

.about-system-flow span {
  grid-row: 1 / span 2;
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
}

.about-system-flow strong {
  font-size: 16px;
  font-weight: 560;
}

.about-system-flow small {
  color: var(--muted);
  font-size: 12px;
}

.about-system-output {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-left: 2px solid var(--green);
  background: rgba(168, 219, 62, 0.06);
}

.about-system-output span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-system-output strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.05;
}

.route-scroll {
  height: 460vh;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: #0b0d0d;
}

.route-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.route-guide {
  display: none;
  position: absolute;
  inset: 90px 24px 0;
  max-width: 2108px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  pointer-events: none;
  z-index: 5;
}

.route-guide::before,
.route-guide::after {
  content: "";
  position: absolute;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--dim);
}

.route-guide::before {
  left: 0;
  transform: translate(-50%, -50%);
}

.route-guide::after {
  right: 0;
  transform: translate(50%, -50%);
}

.route-guide span {
  position: absolute;
  inset-block: 0;
  width: 1px;
  background: var(--line);
}

.route-guide span:nth-child(1) {
  left: 16.666%;
}

.route-guide span:nth-child(2) {
  left: 33.333%;
}

.route-guide span:nth-child(3) {
  left: 50%;
}

.route-guide span:nth-child(4) {
  left: 75%;
}

.route-track {
  display: flex;
  height: 100%;
  width: 300vw;
  will-change: transform;
}

.route-slide {
  flex: 0 0 100vw;
  min-width: 100vw;
  height: 100%;
  padding-top: 90px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(80px, 1fr));
  gap: 0;
  height: calc(100vh - 90px);
  min-height: 630px;
  padding-inline: 48px;
}

.route-marker,
.route-copy-marker {
  min-height: 120px;
  visibility: hidden;
}

.route-marker-a {
  grid-column: 2 / span 4;
  grid-row: 3 / span 2;
}

.route-copy-marker-a {
  grid-column: 7 / span 4;
  grid-row: 3 / span 2;
}

.route-copy-marker-b {
  grid-column: 2 / span 4;
  grid-row: 3 / span 2;
}

.route-marker-b {
  grid-column: 8 / span 3;
  grid-row: 2 / span 3;
}

.route-marker-c {
  grid-column: 4 / span 6;
  grid-row: 2 / span 3;
}

.route-copy-marker-c {
  grid-column: 4 / span 6;
  grid-row: 5 / span 1;
  transform: translateY(44px);
}

.route-float,
.route-copy-float {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 7;
  will-change: left, top, width, height, transform;
}

.route-float {
  pointer-events: none;
  transition:
    left 760ms cubic-bezier(.22, 1, .36, 1),
    top 760ms cubic-bezier(.22, 1, .36, 1),
    width 760ms cubic-bezier(.22, 1, .36, 1),
    height 760ms cubic-bezier(.22, 1, .36, 1);
}

.route-frame {
  height: 100%;
  min-height: 100%;
  overflow: visible;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(17, 21, 20, 0.95);
  background-size: 33.333% 33.333%;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.route-axis {
  position: absolute;
  display: block;
  pointer-events: none;
  background: rgba(232, 240, 232, 0.16);
  z-index: 6;
}

.route-axis-left,
.route-axis-right {
  top: 50%;
  width: 1px;
  height: 220vh;
  transform: translateY(-50%);
}

.route-axis-left {
  left: 0;
}

.route-axis-right {
  right: 0;
}

.route-axis-top,
.route-axis-bottom {
  left: 50%;
  width: 220vw;
  height: 1px;
  transform: translateX(-50%);
}

.route-axis-top {
  top: 0;
}

.route-axis-bottom {
  bottom: 0;
}

.route-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 26px rgba(168, 219, 62, 0.55);
  z-index: 8;
  transition: opacity 180ms ease;
}

.route-float.is-expanded .route-corner {
  opacity: 0.42;
}

.route-corner-tl {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

.route-corner-tr {
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

.route-corner-bl {
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.route-corner-br {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}

.route-frame-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  opacity: 0;
  clip-path: inset(0);
  transition: opacity 480ms cubic-bezier(.22, 1, .36, 1);
  z-index: 2;
}

.route-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.route-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.95) contrast(1.05);
}

.route-media::before {
  content: none;
}

.route-media::after {
  content: none;
}

.route-media > span,
.brief-chart {
  display: none;
}

.ticker-row {
  position: absolute;
  left: -18%;
  right: -18%;
  height: 34px;
  border-top: 1px solid rgba(168, 219, 62, 0.2);
  border-bottom: 1px solid rgba(168, 219, 62, 0.12);
  background:
    linear-gradient(90deg, transparent, rgba(168, 219, 62, 0.2), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 42px);
  animation: tickerMove 7s linear infinite;
}

.ticker-row:nth-of-type(1) {
  top: 22%;
}

.ticker-row:nth-of-type(2) {
  top: 42%;
  animation-duration: 9s;
  animation-direction: reverse;
}

.ticker-row:nth-of-type(3) {
  top: 63%;
  animation-duration: 11s;
}

.market-node,
.room-pin {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 26px rgba(168, 219, 62, 0.52);
  animation: pulseNode 2.6s ease-in-out infinite;
}

.node-one {
  left: 22%;
  top: 24%;
}

.node-two {
  left: 66%;
  top: 45%;
  animation-delay: 0.4s;
}

.node-three {
  left: 46%;
  top: 72%;
  animation-delay: 1s;
}

.route-path {
  position: absolute;
  height: 1px;
  width: 74%;
  left: 12%;
  background: linear-gradient(90deg, transparent, rgba(141, 183, 255, 0.52), transparent);
  transform-origin: left center;
  animation: pathScan 5.8s ease-in-out infinite;
}

.path-one {
  top: 29%;
  transform: rotate(18deg);
}

.path-two {
  top: 52%;
  transform: rotate(-24deg);
  animation-delay: 0.8s;
}

.path-three {
  top: 72%;
  transform: rotate(6deg);
  animation-delay: 1.5s;
}

.pin-one {
  left: 22%;
  top: 30%;
}

.pin-two {
  right: 21%;
  top: 50%;
  animation-delay: 0.5s;
}

.pin-three {
  left: 50%;
  bottom: 21%;
  animation-delay: 1.1s;
}

.brief-line {
  position: absolute;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 188, 119, 0.7), transparent);
  animation: briefSlide 6s ease-in-out infinite;
}

.brief-line:nth-of-type(1) {
  top: 26%;
  width: 62%;
}

.brief-line:nth-of-type(2) {
  top: 40%;
  width: 44%;
  animation-delay: 0.7s;
}

.brief-line:nth-of-type(3) {
  top: 54%;
  width: 70%;
  animation-delay: 1.4s;
}

.brief-chart {
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 34%;
  height: 32%;
  border-left: 1px solid rgba(216, 188, 119, 0.4);
  border-bottom: 1px solid rgba(216, 188, 119, 0.4);
  background:
    linear-gradient(160deg, transparent 47%, rgba(216, 188, 119, 0.7) 48%, transparent 50%),
    repeating-linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.08) 18% 19%, transparent 19% 36%);
  animation: chartGlow 4.5s ease-in-out infinite alternate;
  opacity: 0.22;
}

.route-frame-layer > span {
  display: none;
}

.route-frame-layer > strong {
  display: none;
}

.route-frame-layer.is-current > span,
.route-frame-layer.is-current > strong {
  opacity: 1;
  transform: translateY(0);
}

.route-frame-layer.is-current > strong {
  transition-delay: 80ms;
}

.layer-one {
  background:
    radial-gradient(circle at 20% 12%, rgba(168, 219, 62, 0.28), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent);
}

.layer-two {
  background:
    radial-gradient(circle at 70% 18%, rgba(141, 183, 255, 0.24), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent);
}

.layer-three {
  background:
    radial-gradient(circle at 52% 34%, rgba(216, 188, 119, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent);
}

.route-copy-float {
  z-index: 8;
  pointer-events: none;
  will-change: auto;
}

.route-copy-panel {
  position: absolute;
  inset: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  visibility: visible;
  opacity: 0;
  transform: none;
  transition: opacity 480ms cubic-bezier(.22, 1, .36, 1);
}

.route-copy-panel.is-active {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity 480ms cubic-bezier(.22, 1, .36, 1);
}

.route-copy-panel.is-leaving {
  visibility: visible;
  opacity: 0;
  transform: none;
  transition: opacity 480ms cubic-bezier(.22, 1, .36, 1);
}

.route-copy-panel h2 {
  max-width: 620px;
  font-size: 40px;
  letter-spacing: -0.018em;
}

.copy-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.copy-line > span {
  display: block;
  opacity: 1;
  transform: none;
  transition: none;
}

.route-copy-panel.is-active .copy-line > span {
  opacity: 1;
  transform: none;
}

.route-copy-panel.is-leaving .copy-line > span {
  opacity: 1;
  transform: none;
}

.masked-copy {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

@keyframes tickerMove {
  0% {
    transform: translateX(-8%);
  }

  100% {
    transform: translateX(8%);
  }
}


@keyframes mediaSweep {
  0% {
    transform: translate(-16%, -8%) scale(1);
  }

  100% {
    transform: translate(16%, 8%) scale(1.08);
  }
}

@keyframes pulseNode {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes pathScan {
  0%,
  100% {
    opacity: 0.28;
    filter: blur(0);
  }

  50% {
    opacity: 1;
    filter: blur(0.3px);
  }
}

@keyframes briefSlide {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-12%);
  }

  50% {
    opacity: 1;
    transform: translateX(8%);
  }
}

@keyframes chartGlow {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

@keyframes holoSweep {
  0% {
    transform: translate3d(-8%, -4%, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate3d(8%, 4%, 0) rotate(18deg) scale(1.08);
  }
}

.desks,
.briefs {
  padding: 104px var(--content-gutter);
  border-bottom: 1px solid var(--line);
}

.about-products {
  padding: 104px var(--content-gutter);
  border-bottom: 1px solid var(--line);
}

.about-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-product-grid article {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.about-product-grid article:first-child {
  background:
    radial-gradient(circle at 22% 18%, rgba(168, 219, 62, 0.12), transparent 16rem),
    rgba(255, 255, 255, 0.026);
}

.about-product-grid span {
  display: block;
  margin-bottom: 72px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-product-grid h3 {
  max-width: 330px;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.about-product-grid p {
  max-width: 380px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.about-principles .partner-item span {
  margin-bottom: 18px;
}

.about-close {
  align-items: end;
  padding-top: 96px;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 12%, rgba(168, 219, 62, 0.09), transparent 24rem),
    #0b0d0d;
}

.about-close > div:first-child {
  grid-column: 2 / span 5;
}

.about-close-action {
  grid-column: 8 / span 4;
  display: grid;
  justify-items: start;
  gap: 24px;
}

.about-close-action p {
  max-width: 440px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 48px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 80px;
  max-width: none;
}

.section-heading.split p:last-child {
  align-self: end;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.desk-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.desk-card {
  min-height: 292px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.desk-card.primary-card {
  grid-row: span 2;
  min-height: 584px;
  background:
    radial-gradient(circle at 24% 22%, rgba(168, 219, 62, 0.16), transparent 17rem),
    rgba(255, 255, 255, 0.035);
}

.desk-card span,
.brief-card span,
.partner-item span {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.desk-card h3 {
  max-width: 340px;
  margin-bottom: 18px;
}

.desk-card p,
.brief-card p,
.partner-item p,
.partner-copy p,
.planner-intro p {
  color: var(--muted);
  line-height: 1.55;
}

.primary-card h3 {
  font-size: 36px;
}

.primary-card p {
  max-width: 410px;
  font-size: 18px;
}

.planner {
  min-height: 780px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 48%, rgba(168, 219, 62, 0.09), transparent 29rem),
    rgba(13, 15, 15, 0.84);
}

.planner-intro {
  grid-column: 2 / span 4;
}

.planner-intro p:last-child {
  margin-top: 25px;
  font-size: 18px;
}

.planner-console {
  grid-column: 7 / span 5;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8, 10, 10, 0.74);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.console-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-height: 64px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.active,
.tab-button:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.console-output {
  min-height: 410px;
  padding: 44px;
}

.console-label {
  display: block;
  margin-bottom: 64px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.console-output h3 {
  max-width: 520px;
  font-size: 38px;
}

.console-output p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.output-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.output-steps span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.brief-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brief-card {
  min-height: 360px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--charcoal);
}

.brief-card h3 {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: 29px;
}

.partner-section {
  padding-top: 104px;
  padding-bottom: 104px;
  border-bottom: 1px solid var(--line);
}

.partner-copy {
  grid-column: 2 / span 4;
}

.partner-copy p:last-child {
  margin-top: 26px;
  font-size: 18px;
}

.partner-stack {
  grid-column: 7 / span 5;
  display: grid;
  gap: 14px;
}

.partner-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.partner-item span {
  margin-bottom: 28px;
}

.partner-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 550;
}

.apply {
  padding: 118px var(--content-gutter);
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 219, 62, 0.12), transparent 33rem),
    #f2f5ef;
  color: #0b0e0d;
}

.apply-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 80px;
  max-width: 1220px;
  margin: 0 auto;
}

.apply .eyebrow {
  color: #526900;
}

.apply h2 {
  max-width: 560px;
}

.apply-inner > p {
  grid-column: 1;
  max-width: 600px;
  margin-top: 24px;
  color: #4b514d;
  font-size: 19px;
  line-height: 1.55;
}

.access-form {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(10, 14, 13, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 34px 90px rgba(19, 28, 24, 0.11);
}

.auth-card-intro {
  display: grid;
  gap: 9px;
}

.auth-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #68706c;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card-meta span:last-child {
  color: #526900;
}

.auth-card-intro h3 {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.006em;
  line-height: 1.05;
}

.auth-card-intro > p {
  color: #68706c;
  font-size: 13px;
  line-height: 1.45;
}

.auth-provider-stack {
  display: grid;
  gap: 10px;
}

.auth-provider:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.auth-provider:disabled:hover {
  border-color: var(--line-strong);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.auth-provider {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  border: 1px solid rgba(10, 14, 13, 0.14);
  border-radius: 9px;
  color: #0b0e0d;
  text-align: left;
  background: #fff;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.auth-provider:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 14, 13, 0.28);
  box-shadow: 0 12px 30px rgba(19, 28, 24, 0.09);
}

.auth-linkedin {
  border-color: #0a66c2;
  color: #fff;
  background: #0a66c2;
  box-shadow: 0 12px 30px rgba(10, 102, 194, 0.16);
}

.auth-linkedin:hover {
  border-color: #074f98;
  box-shadow: 0 15px 34px rgba(10, 102, 194, 0.22);
}

.provider-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
}

.provider-linkedin {
  border-radius: 4px;
  color: #0a66c2;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.provider-sso {
  grid-template-columns: repeat(2, 6px);
  grid-template-rows: repeat(2, 6px);
  align-content: center;
  justify-content: center;
  gap: 3px;
  border-radius: 5px;
  background: #111614;
}

.provider-sso span {
  width: 6px;
  height: 6px;
  background: var(--green);
}

.provider-copy {
  display: grid;
  gap: 4px;
}

.provider-copy strong {
  font-size: 14px;
  font-weight: 650;
}

.provider-copy small {
  color: #6a716e;
  font-size: 11px;
  line-height: 1.35;
}

.auth-linkedin .provider-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.auth-provider > i {
  color: currentColor;
  font-style: normal;
  opacity: 0.65;
  transition: transform 180ms ease;
}

.auth-provider:hover > i {
  transform: translate(2px, -2px);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7b827e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(10, 14, 13, 0.13);
}

.email-access-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.email-access-form label {
  display: grid;
  gap: 7px;
  color: #4b514d;
  font-size: 12px;
  font-weight: 620;
}

.email-access-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(10, 14, 13, 0.14);
  border-radius: var(--radius);
  color: #0b0e0d;
  background: #fff;
}

.email-access-form input:focus {
  outline: 2px solid rgba(168, 219, 62, 0.45);
  outline-offset: 1px;
}

.email-access-form .button-primary {
  min-height: 52px;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 18px;
  color: #65706a;
  font-size: 12px;
  line-height: 1.4;
}

.auth-existing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 14, 13, 0.12);
  color: #68706c;
  font-size: 12px;
}

.auth-existing button {
  padding: 0;
  border: 0;
  color: #263410;
  background: transparent;
  font: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(82, 105, 0, 0.45);
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px var(--content-gutter);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--charcoal);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
}

.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--ink);
}

.site-footer > p {
  justify-self: end;
  max-width: 360px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.footer .brand {
  color: var(--ink);
}

.footer .brand-wordmark {
  font-size: 15px;
}

.footer p a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 45%, transparent);
  text-underline-offset: 3px;
}

.footer p a:hover {
  color: var(--accent);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sheen {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  :root {
    --rail-inset: 16px;
    --content-gutter: 32px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 0 var(--content-gutter);
  }

  .topbar .brand {
    left: auto;
    transform: none;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .topbar-lines span:nth-child(2),
  .topbar-lines span:nth-child(3) {
    display: none;
  }

  .section-grid {
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
  }

  .hero-copy {
    grid-column: 1 / span 6;
  }

  .hero-visual {
    grid-column: 8 / span 5;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  .trusted-row {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .trusted-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 20px;
  }

  .desks,
  .briefs,
  .apply {
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
  }

  .desk-grid {
    grid-template-columns: 1fr 1fr;
  }

  .desk-card.primary-card {
    grid-row: auto;
    grid-column: span 2;
    min-height: 340px;
  }

}

@media (max-width: 820px) {
  :root {
    --secondary-nav-height: 60px;
  }

  .section-nav-main {
    padding-top: 72px;
  }

  .section-nav {
    top: 72px;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: var(--secondary-nav-height);
    padding-right: var(--rail-inset);
    padding-left: var(--rail-inset);
  }

  .section-nav-label {
    min-width: calc(var(--secondary-nav-label-width) + 16px);
    padding-right: 20px;
    padding-left: 16px;
  }

  .section-nav a {
    min-height: var(--secondary-nav-height);
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-nav a::after {
    right: 16px;
    left: 16px;
  }

  .section-anchor {
    scroll-margin-top: 140px;
  }

  .section-nav-main > .section-nav + .hero {
    min-height: calc(100svh - var(--secondary-nav-height));
    padding-top: 76px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 72px;
  }

  .mobile-menu {
    inset: 72px 0 0;
  }

  .mobile-menu-inner {
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .mobile-menu-kicker {
    font-size: 9px;
  }

  .mobile-menu-links {
    align-self: center;
    margin: 20px 0 24px;
  }

  .mobile-menu-links a {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 0 12px;
    border-color: var(--line);
  }

  .mobile-menu-links strong {
    font-size: 30px;
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a.active,
  .mobile-menu-links a:focus-visible {
    padding-left: 12px;
  }

  .mobile-menu-footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu-footer p {
    max-width: none;
    font-size: 12px;
  }

  .mobile-menu-footer .button {
    width: 100%;
    min-width: 0;
  }

  .section-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .topbar-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-copy,
  .hero-visual,
  .current-guides-copy,
  .current-guides-grid,
  .planner-intro,
  .planner-console,
  .partner-copy,
  .partner-stack {
    grid-column: 1 / -1;
  }

  .about-hero {
    padding-top: 80px;
    padding-bottom: 76px;
  }

  .about-hero .hero-copy,
  .about-system,
  .about-close > div:first-child,
  .about-close-action {
    grid-column: 1 / -1;
  }

  .about-system {
    min-height: 420px;
    margin-top: 58px;
  }

  .about-product-grid {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--line);
  }

  .about-product-grid article {
    min-height: 250px;
    border-right: 0;
  }

  .about-product-grid span {
    margin-bottom: 44px;
  }

  .about-close {
    gap: 40px;
  }

  .route-scroll {
    height: 340svh;
  }

  .route-pin {
    position: sticky;
    top: 72px;
    display: grid;
    grid-template-rows: minmax(210px, 43svh) minmax(0, 1fr);
    gap: 28px;
    height: calc(100svh - 72px);
    min-height: 0;
    padding: 18px var(--content-gutter) 28px;
  }

  .route-guide,
  .route-track {
    display: none;
  }

  .route-float,
  .route-copy-float {
    position: relative;
    left: auto !important;
    top: auto !important;
  }

  .route-float {
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    margin: 0;
  }

  .route-frame-layer {
    opacity: 0;
    clip-path: inset(0) !important;
    transition: opacity 480ms cubic-bezier(.22, 1, .36, 1);
  }

  .route-frame {
    height: 100%;
    min-height: 0;
  }

  .route-axis-left,
  .route-axis-right {
    top: 0;
    height: 100%;
    transform: none;
  }

  .route-axis-top,
  .route-axis-bottom {
    width: 220vw;
  }

  .route-copy-float {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 300% !important;
    height: auto !important;
    min-height: 0;
    will-change: transform;
    transition: transform 680ms cubic-bezier(.22, 1, .36, 1);
  }

  .route-copy-panel {
    position: relative;
    flex: 0 0 33.3333%;
    inset: auto !important;
    left: auto !important;
    top: auto !important;
    width: 33.3333% !important;
    height: auto !important;
    padding-right: clamp(28px, 8vw, 54px);
    justify-content: flex-start;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none;
  }

  .route-copy-panel:last-child {
    padding-right: 0;
  }

  .route-copy-panel h2 {
    font-size: 34px;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 54px;
  }

  .member-pass {
    left: 50%;
    right: auto;
    width: min(100%, 500px);
    transform: translateX(-50%) rotate(-1.2deg);
  }
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .trusted-row {
    display: block;
    margin-top: 38px;
  }

  .trusted-label {
    display: block;
    margin-bottom: 20px;
  }

  .trusted-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }

  .current-guides {
    gap: 0;
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .current-guides-copy {
    max-width: 560px;
  }

  .current-guides-grid {
    margin-top: 44px;
  }

  .desk-grid,
  .brief-row,
  .section-heading.split,
  .apply-inner {
    grid-template-columns: 1fr;
  }

  .desk-card.primary-card,
  .access-form {
    grid-column: auto;
    grid-row: auto;
  }

  .desk-card,
  .desk-card.primary-card,
  .brief-card {
    min-height: auto;
  }

  .planner-console {
    margin-top: 36px;
  }

  .console-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .brief-row,
  .desk-grid {
    border-right: 1px solid var(--line);
  }

  .section-heading.split {
    gap: 24px;
  }

  .apply-inner {
    gap: 28px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer > p {
    justify-self: start;
    max-width: 520px;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .section-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-nav-label {
    display: none;
  }

  .section-nav-scroll {
    grid-auto-columns: minmax(104px, 1fr);
  }
}

@media (max-width: 560px) {
  :root {
    --rail-inset: 10px;
    --content-gutter: 24px;
  }

  .brand-wordmark {
    font-size: 15px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 32px;
    flex-basis: 36px;
  }

  .subbrand-lockup {
    gap: 10px;
    margin-bottom: 24px;
  }

  .subbrand-lockup-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .subbrand-lockup-copy strong {
    font-size: 24px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .about-hero h1 {
    font-size: 48px;
  }

  .about-system {
    min-height: 380px;
    padding: 22px;
  }

  .about-system-output {
    padding: 18px;
  }

  .about-products,
  .about-close {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .member-pass {
    top: 0;
    height: 235px;
    aspect-ratio: auto;
    padding: 18px;
  }

  .member-pass-wordmark {
    margin-top: 30px;
    font-size: 34px;
  }

  .member-pass-footer {
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 8px;
  }

  .current-guides-copy h2 {
    font-size: 38px;
  }

  .current-guides-grid {
    grid-template-columns: 1fr;
  }

  .current-guides .guide-card {
    min-height: 370px;
    padding: 21px;
  }

  .current-guides .guide-card h3.guide-card-location {
    margin-top: 14px;
    font-size: 21px;
  }

  .current-guides .guide-card-foot {
    margin-inline: -21px;
    padding-inline: 21px;
  }

  .mobile-menu-toggle {
    min-height: 40px;
    padding: 0 13px;
  }

  .mobile-menu-inner {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .mobile-menu-links {
    margin: 22px 0;
  }

  .mobile-menu-links a {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    min-height: 72px;
  }

  .mobile-menu-links strong {
    font-size: 36px;
  }

  .mobile-menu-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .access-form {
    padding: 19px;
  }

  .auth-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .auth-provider {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    min-height: 74px;
    padding: 11px 12px;
  }

  .email-access-form {
    grid-template-columns: 1fr;
  }

  .auth-existing {
    flex-wrap: wrap;
  }

  .section-grid,
  .desks,
  .briefs,
  .apply,
  .footer {
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .button {
    width: 100%;
  }

  .console-output {
    min-height: auto;
    padding: 28px;
  }

  .console-label {
    margin-bottom: 42px;
  }

  .console-output h3 {
    font-size: 29px;
  }

}

@media (hover: none) {
  .cta-free-badge {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
/* Shared directional-link motion */
a.has-diagonal-arrow .diagonal-link-label {
  transition: color 180ms ease;
}

a.has-diagonal-arrow .diagonal-arrow {
  display: inline-block;
  margin-left: 0.34em;
  color: currentColor;
  line-height: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transform-origin: 50% 50%;
  transition: color 180ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

a.has-diagonal-arrow:hover .diagonal-link-label,
a.has-diagonal-arrow:focus-visible .diagonal-link-label {
  color: var(--green) !important;
}

a.has-diagonal-arrow:hover .diagonal-arrow,
a.has-diagonal-arrow:focus-visible .diagonal-arrow {
  color: var(--green);
  transform: translate3d(2px, -2px, 0) rotate(9deg);
}

a.has-diagonal-arrow .diagonal-arrow[data-direction="↘"] {
  transform-origin: 50% 50%;
}

a.has-diagonal-arrow:hover .diagonal-arrow[data-direction="↘"],
a.has-diagonal-arrow:focus-visible .diagonal-arrow[data-direction="↘"] {
  transform: translate3d(2px, 2px, 0) rotate(-9deg);
}

@media (prefers-reduced-motion: reduce) {
  a.has-diagonal-arrow .diagonal-arrow {
    transition: color 120ms ease;
  }

  a.has-diagonal-arrow:hover .diagonal-arrow,
  a.has-diagonal-arrow:focus-visible .diagonal-arrow {
    transform: none;
  }
}
