@font-face {
  font-family: "Sora";
  src: url("assets/fonts/sora-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/sora-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/sora-extrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #080908;
  --black-soft: #0e0f0e;
  --panel: #131411;
  --panel-high: #1a1b18;
  --line: rgba(244, 239, 230, 0.14);
  --line-strong: rgba(244, 239, 230, 0.3);
  --white: #f4efe6;
  --muted: #96978f;
  --orange: #ff6a13;
  --orange-soft: #ff8a3d;
  --orange-dark: #d94700;
  --display: "Sora", "Space Grotesk", Arial, sans-serif;
  --sans: "Space Grotesk", Arial, sans-serif;
  --page: clamp(1.25rem, 4vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--black-soft);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 0.72rem;
  height: 0.72rem;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
  background: var(--black-soft);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--black-soft);
  background: var(--orange);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-soft);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--black);
  background: var(--orange);
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--black);
  background: var(--orange);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 5.5rem;
  padding-inline: var(--page);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 2.5rem;
  gap: 0.68rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
}

.brand-fish--orange {
  fill: var(--orange);
}

.brand-fish--light {
  fill: var(--white);
}

.brand-six {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  margin-left: 0.05rem;
  color: var(--black);
  background: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0;
  place-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 2.8rem);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 0.55rem;
}

.site-nav a:not(.nav-status)::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.site-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-status {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.8rem !important;
  border: 1px solid var(--line-strong);
}

.status-rail i {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 106, 19, 0.15);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle i {
  position: relative;
  width: 1.35rem;
  height: 0.7rem;
}

.menu-toggle i::before,
.menu-toggle i::after {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transition: top 250ms var(--ease), transform 250ms var(--ease), width 250ms var(--ease);
}

.menu-toggle i::before {
  top: 0.12rem;
}

.menu-toggle i::after {
  top: 0.58rem;
  width: 72%;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(50rem, 100svh);
  padding: 8rem var(--page) 6rem;
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.78) 0%, rgba(8, 9, 8, 0.64) 38%, rgba(8, 9, 8, 0.16) 72%, rgba(8, 9, 8, 0.04) 100%), linear-gradient(180deg, rgba(8, 9, 8, 0.08), rgba(8, 9, 8, 0.24)), url("assets/koiware_hero.png") center / cover no-repeat, var(--black);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 5.5rem;
  right: var(--page);
  left: var(--page);
  height: 1px;
  background: linear-gradient(to right, var(--orange) 0 4.5rem, var(--line) 4.5rem 100%);
  content: "";
}

.hero-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-fire {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 79rem);
  margin-inline: auto;
}

.overline,
.section-index {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.overline span {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.42rem 0.62rem;
  color: var(--black);
  background: var(--orange);
  font-weight: 700;
}

.hero h1,
.product-intro h2,
.intel h2,
.access-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.hero-lockup {
  display: flex;
  width: fit-content;
  align-items: flex-end;
  gap: clamp(1rem, 1.6vw, 1.5rem);
}

.hero h1 {
  max-width: none;
  font-size: clamp(5.5rem, 9.4vw, 9.5rem);
  font-weight: 800;
  line-height: 0.8;
  text-transform: uppercase;
}

.hero-lockup > strong {
  display: grid;
  width: clamp(5rem, 7.25vw, 7.3rem);
  aspect-ratio: 1;
  place-items: center;
  flex: none;
  color: var(--black);
  background: var(--orange);
  font-family: var(--display);
  font-size: clamp(3.5rem, 5.6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.product-intro h2 em,
.intel h2 em,
.access-heading h2 em {
  color: var(--orange);
  font-style: normal;
  font-weight: inherit;
}

.intel h2,
.access-heading h2 {
  font-size: clamp(4.2rem, 7.8vw, 8rem);
}

.hero-lead {
  max-width: 36rem;
  margin: 2rem 0 0;
  color: #bbbcb5;
  font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  font-weight: 500;
  line-height: 1.7;
}


.hero-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.hero-action > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 17rem);
  min-height: 4.3rem;
  padding: 0 1.2rem;
  color: var(--black);
  background: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease;
}

.hero-action > a:hover {
  color: var(--orange);
  background: var(--white);
}

.hero-action svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 300ms var(--ease);
}

.hero-action > a:hover svg {
  transform: translateX(0.3rem);
}

.hero-action p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: #b5b4ad;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.hero-meta {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 4.5rem;
  padding-inline: var(--page);
  border-top: 1px solid var(--line);
  background: rgba(8, 9, 8, 0.78);
  backdrop-filter: blur(12px);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-right: 1rem;
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta span:nth-child(n + 2) {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.hero-meta strong {
  color: var(--white);
  font-weight: 600;
}
.status-rail {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.status-rail p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 4.2rem;
  margin: 0;
  padding-inline: var(--page);
  border-right: 1px solid var(--line);
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status-rail p:last-child {
  border-right: 0;
}

.status-rail span {
  color: var(--muted);
}

.product {
  padding-top: clamp(5.5rem, 7vw, 7rem);
  overflow: hidden;
  background: var(--black-soft);
}

.product-intro {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) minmax(19rem, 24rem);
  align-items: end;
  gap: 2rem;
  padding: 0 var(--page) clamp(2.75rem, 4vw, 4rem);
}

.product-intro h2 {
  grid-column: 2;
  font-size: clamp(4.2rem, 6.2vw, 7rem);
  font-weight: 800;
  line-height: 0.86;
}

.product-intro > p:last-child {
  grid-column: 3;
  margin: 0 0 0.35rem;
  color: #b1b2ab;
  font-size: 0.94rem;
  line-height: 1.7;
}

.feature-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, 36vw) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: clamp(29rem, 37vw, 34rem);
  gap: 1rem 2rem;
  padding: 2rem var(--page) 2.5rem;
  overflow: hidden;
  background: #0a0b0a;
}

.product-art {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(45vw, 42rem);
  aspect-ratio: 1;
  background: var(--orange);
  opacity: 0.28;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-5deg);
  -webkit-mask: url("assets/koi-pistol-art.svg") center / contain no-repeat;
  mask: url("assets/koi-pistol-art.svg") center / contain no-repeat;
}

.feature-stage article {
  width: min(100%, 25rem);
  align-self: center;
}

.feature-stage article:nth-of-type(2),
.feature-stage article:nth-of-type(4) {
  grid-column: 3;
  justify-self: end;
}

.feature-stage article:nth-of-type(3),
.feature-stage article:nth-of-type(4) {
  grid-row: 2;
}

.feature-label {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-label span {
  display: inline-block;
  margin-right: 0.75rem;
  color: var(--orange);
  font-weight: 700;
}

.feature-stage h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.2vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.feature-stage article > p:last-child {
  max-width: 25rem;
  margin: 0.9rem 0 0;
  color: #b7b8b1;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}

.intel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(7rem, 11vw, 11rem) var(--page);
  background: var(--black);
}

.intel-koi {
  position: absolute;
  z-index: 0;
  top: 8rem;
  right: 0.5rem;
  width: min(34vw, 34rem);
  aspect-ratio: 1;
  background: linear-gradient(
    100deg,
    rgba(255, 106, 19, 0) 2%,
    rgba(255, 106, 19, 0.72) 46%,
    rgb(255, 126, 50) 100%
  );
  filter: drop-shadow(0 0 0.65rem rgba(255, 106, 19, 0.1));
  opacity: 0.7;
  pointer-events: none;
  transform: rotate(7deg);
  -webkit-mask: url("assets/koi-line-art.svg") center / contain no-repeat;
  mask: url("assets/koi-line-art.svg") center / contain no-repeat;
}

.intel-heading,
.intel-board,
.quote-carousel {
  position: relative;
  z-index: 1;
}

.intel-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) 1.58fr;
  gap: 3rem;
  margin-bottom: clamp(5rem, 8vw, 8rem);
}

.intel-board {
  display: grid;
  grid-template-columns: 1fr 0.65fr 1.35fr;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.intel-board > div {
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
}

.intel-board > div:last-child {
  border-right: 0;
}

.intel-state,
.intel-release {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intel-state p,
.intel-release > span {
  margin: 0;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intel-state strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(3.3rem, 5.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}


.intel-state > span {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.intel-release strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.intel-release p {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.7;
}

.intel-timeline {
  display: grid;
  align-content: center;
}

.intel-timeline div {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intel-timeline div:last-child {
  border-bottom: 0;
}

.intel-timeline time {
  color: var(--orange-soft);
}

.intel-timeline span {
  color: var(--muted);
}

.intel-timeline b {
  font-weight: 500;
}

.quote-carousel {
  position: relative;
  margin-top: clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}

.quote-slide {
  margin: 0;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.quote-slide p {
  max-width: 20ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.3vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.quote-controls {
  display: none;
}

.quote-carousel.is-enhanced .quote-track {
  display: grid;
  min-height: clamp(18rem, 29vw, 27rem);
}

.quote-carousel.is-enhanced .quote-slide {
  grid-area: 1 / 1;
  align-self: center;
  padding: 0;
  border: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(7%, 0, 0);
  transition: opacity 360ms ease 220ms, transform 620ms var(--ease) 220ms, visibility 0s;
}

.quote-carousel.is-enhanced[data-direction="prev"] .quote-slide {
  transform: translate3d(-7%, 0, 0);
}

.quote-carousel.is-enhanced .quote-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-delay: 220ms, 220ms, 0s;
}

.quote-carousel.is-enhanced .quote-slide.is-exiting {
  opacity: 0;
  visibility: visible;
  transform: translate3d(-7%, 0, 0);
  transition: opacity 220ms ease, transform 440ms var(--ease), visibility 0s;
}

.quote-carousel.is-enhanced[data-direction="prev"] .quote-slide.is-exiting {
  transform: translate3d(7%, 0, 0);
}

.quote-carousel.is-enhanced .quote-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  border-top: 1px solid var(--line);
}

.quote-controls > span {
  color: var(--orange-soft);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.quote-controls > div {
  display: flex;
  align-self: stretch;
}

.quote-controls button {
  display: grid;
  width: 4.4rem;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition: color 220ms ease, background 220ms ease;
}

.quote-controls button:hover {
  color: var(--orange);
  background: rgba(255, 106, 19, 0.06);
}

.quote-controls svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.quote-controls .play-mark {
  display: none;
}

.quote-controls [data-quote-pause].is-paused .pause-bars {
  display: none;
}

.quote-controls [data-quote-pause].is-paused .play-mark {
  display: block;
}

.access {
  padding: clamp(7rem, 11vw, 11rem) var(--page);
  color: var(--black);
  background: var(--orange);
}

.access-heading {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1.35fr) minmax(23rem, 0.75fr);
  align-items: stretch;
  gap: 2rem;
}

.access-heading .section-index {
  align-self: start;
  margin-top: 0.8rem;
  color: rgba(8, 9, 8, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.access-heading h2 {
  grid-column: 2;
  font-size: clamp(5rem, 9.5vw, 11rem);
  font-weight: 800;
  line-height: 0.82;
}

.access-heading h2 em {
  color: var(--black);
  font-style: normal;
}

.access-side {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 0.65rem;
}

.access-intro {
  margin: 0;
  color: rgba(8, 9, 8, 0.86);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.7;
}

.access-intro strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--black);
  font-weight: 700;
}

.access-license {
  margin: 0;
}

.access-license span,
.access-license strong,
.access-license small {
  display: block;
}

.access-license span {
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-license strong {
  margin-top: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 5.8vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.access-license small {
  margin-top: 0.95rem;
  color: rgba(8, 9, 8, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.access-portal {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(30rem, 42vw, 43rem);
  margin-top: clamp(3.5rem, 5vw, 5rem);
  padding: clamp(3rem, 5vw, 5.5rem);
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: var(--black);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 5rem) 0, 100% 5rem, 100% 100%, 5rem 100%, 0 calc(100% - 5rem));
}

.access-portal:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: -0.75rem;
}

.access-portal-meta {
  position: absolute;
  z-index: 2;
  top: clamp(2.5rem, 4vw, 4rem);
  left: clamp(3rem, 5vw, 5.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #b9b9b2;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.access-portal-meta span:last-child {
  color: var(--orange-soft);
}

.access-portal-meta span:last-child::before {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.7rem;
  background: var(--orange);
  content: "";
  transform: rotate(45deg);
}

.access-portal-koi {
  position: absolute;
  z-index: 0;
  top: 49%;
  right: -4%;
  width: min(49vw, 48rem);
  aspect-ratio: 1;
  background: var(--orange);
  opacity: 0.2;
  transform: translateY(-50%) rotate(-12deg);
  transition: opacity 500ms ease, transform 900ms var(--ease);
  -webkit-mask: url("assets/koi-access-art.svg") center / contain no-repeat;
  mask: url("assets/koi-access-art.svg") center / contain no-repeat;
}

.access-portal-title {
  position: absolute;
  z-index: 1;
  bottom: clamp(4.8rem, 6vw, 6.5rem);
  left: clamp(4rem, 6vw, 6.5rem);
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(6.5rem, 14vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.73;
  text-transform: uppercase;
}

.access-portal-title > span:last-child {
  color: var(--orange);
  transition: color 350ms ease;
}

.access-portal-arrow {
  position: absolute;
  z-index: 2;
  top: clamp(4.5rem, 6vw, 6.5rem);
  right: clamp(3rem, 5vw, 5.5rem);
  color: var(--orange);
}

.access-portal-arrow svg {
  display: block;
  width: clamp(3rem, 5vw, 5rem);
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
  transition: transform 500ms var(--ease);
}

.access-portal:hover .access-portal-koi {
  opacity: 0.42;
  transform: translateY(-50%) rotate(-4deg) scale(1.04);
}

.access-portal:hover .access-portal-title > span:last-child {
  color: var(--white);
}

.access-portal:hover .access-portal-arrow svg {
  transform: translate(0.45rem, -0.45rem);
}

.access-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.75fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-top: 2.75rem;
}

.access-ledger ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-ledger li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.access-ledger li:not(:last-child)::after {
  width: 0.35rem;
  height: 0.35rem;
  margin: 0 1rem;
  background: rgba(8, 9, 8, 0.62);
  content: "";
  transform: rotate(45deg);
}

.access-ledger > p {
  margin: 0;
  color: rgba(8, 9, 8, 0.84);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.65;
}

body:has(.access-dialog[open]) {
  overflow: hidden;
}

.access-dialog {
  width: min(calc(100% - 2rem), 44rem);
  max-width: none;
  margin: auto;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 106, 19, 0.72);
  background: var(--black);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.62), 0.7rem 0.7rem 0 var(--orange);
  overflow: visible;
}

.access-dialog[open] {
  animation: access-dialog-in 360ms var(--ease) both;
}

.access-dialog::backdrop {
  background: rgba(4, 5, 4, 0.82);
  backdrop-filter: blur(8px);
  animation: access-backdrop-in 260ms ease both;
}

.access-dialog-panel {
  position: relative;
  padding: clamp(2rem, 6vw, 4.5rem);
}

.access-dialog-panel > p {
  margin: 0 0 1.4rem;
  color: var(--orange);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.access-dialog h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.access-dialog-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 3.8rem;
  aspect-ratio: 1;
  padding: 0;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition: color 220ms ease, background 220ms ease;
}

.access-dialog-close:hover {
  color: var(--black);
  background: var(--orange);
}

.access-dialog-close svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.access-dialog-dismiss {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: 0 1rem;
  color: var(--black);
  border: 0;
  background: var(--orange);
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.access-dialog-dismiss:hover {
  color: var(--orange);
  background: var(--white);
}

@keyframes access-dialog-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.98);
  }
}

@keyframes access-backdrop-in {
  from {
    opacity: 0;
  }
}


.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 4rem var(--page) 2rem;
  background: var(--black);
}

.site-footer > p {
  grid-row: 2;
  max-width: 14ch;
  margin: 5rem 0 7rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.site-footer nav {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  min-width: 10rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.footer-base {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: #71726b;
  font-size: 0.53rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {

  .product-intro {
    grid-template-columns: 5.5rem minmax(0, 1fr) minmax(17rem, 19rem);
    gap: 1.5rem;
  }

  .intel-board {
    grid-template-columns: 1fr 0.7fr;
  }

  .intel-timeline {
    grid-column: 1 / -1;
    min-height: 0 !important;
    border-top: 1px solid var(--line);
  }

  .intel-board > .intel-release {
    border-right: 0;
  }

  .access-heading {
    grid-template-columns: 5.5rem minmax(0, 1.35fr) minmax(19rem, 0.75fr);
    column-gap: 1.5rem;
  }

  .access-ledger {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 4.75rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
  }

  .site-header > .brand {
    position: relative;
    z-index: 3;
  }

  .menu-open .menu-toggle i::before {
    top: 0.36rem;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle i::after {
    top: 0.36rem;
    width: 100%;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    padding: 6rem var(--page);
    background: var(--black);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: visibility 0s 350ms, opacity 280ms ease, transform 350ms var(--ease);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(3.5rem, 13vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: none;
  }

  .site-nav .nav-status {
    position: absolute;
    bottom: 2rem;
    left: var(--page);
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-open .site-header {
    position: fixed;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 280ms ease, transform 350ms var(--ease);
  }

  .hero {
    min-height: max(46rem, 100svh);
    padding-top: 7.5rem;
    padding-bottom: 6rem;
    background-position: center, center, 70% center;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 11vw, 6.5rem);
  }

  .status-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-rail p:nth-child(2) {
    border-right: 0;
  }

  .status-rail p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-intro,
  .intel-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-intro .section-index,
  .product-intro h2,
  .product-intro > p:last-child {
    grid-column: 1;
  }

  .product-intro > p:last-child {
    max-width: 34rem;
    margin-top: 1.5rem;
  }

  .intel-koi {
    top: 10rem;
    right: -7rem;
    width: min(80vw, 24rem);
    opacity: 0.42;
  }

  .feature-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 34rem;
    gap: 1.5rem 3rem;
  }

  .product-art {
    width: min(82vw, 36rem);
    opacity: 0.16;
  }

  .feature-stage article:nth-of-type(n) {
    grid-row: auto;
    grid-column: auto;
    justify-self: start;
  }

  .feature-stage article:nth-of-type(even) {
    justify-self: end;
  }

  .intel-board {
    grid-template-columns: 1fr;
  }

  .intel-board > div {
    min-height: 17rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intel-board > div:last-child {
    border-bottom: 0;
  }

  .intel-timeline {
    grid-column: auto;
  }


  .access-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .access-heading .section-index,
  .access-heading h2,
  .access-side {
    grid-column: 1;
  }

  .access-heading .section-index {
    margin-top: 0;
  }

  .access-side {
    max-width: 34rem;
    margin-top: 2.5rem;
    padding-top: 0;
  }

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

  .access-ledger > p {
    grid-column: 1;
    max-width: 34rem;
  }

  .access-portal {
    min-height: 31rem;
  }

  .access-portal-koi {
    right: -8%;
    width: min(62vw, 34rem);
  }

}

@media (max-width: 560px) {
  :root {
    --page: 1rem;
  }

  .brand-word {
    letter-spacing: 0.14em;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .hero {
    padding-top: 6.8rem;
  }

  .overline span {
    display: table;
    margin: 0 0 0.65rem;
  }

  .hero-lockup {
    gap: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 15vw, 4.5rem);
    letter-spacing: -0.075em;
  }

  .hero-lockup > strong {
    width: 3.4rem;
    font-size: 2.6rem;
  }

  .hero-lead {
    width: 100%;
  }


  .hero-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-action > a {
    width: 100%;
  }


  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    min-height: 4.2rem;
  }

  .hero-meta span {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    padding-right: 0.5rem;
    font-size: 0.43rem;
  }

  .hero-meta span:nth-child(n + 2) {
    padding-left: 0.5rem;
  }

  .status-rail p {
    min-height: 3.8rem;
    padding-inline: 0.75rem;
    font-size: 0.5rem;
  }

  .status-rail p {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .product-intro h2,
  .intel h2,
  .access-heading h2 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
    line-height: 0.9;
  }

  .intel-koi {
    display: none;
  }

  .product {
    padding-top: 4.5rem;
  }

  .product-intro {
    padding-bottom: 2.75rem;
  }

  .feature-stage {
    min-height: 35rem;
    gap: 2rem 1rem;
    padding: 2.5rem 1rem 3rem;
  }

  .product-art {
    width: 34rem;
    opacity: 0.12;
  }

  .feature-label {
    font-size: 0.57rem;
  }

  .feature-stage h3 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .feature-stage article > p:last-child {
    margin-top: 0.75rem;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .intel-state strong {
    font-size: clamp(2.5rem, 13vw, 3.15rem);
  }

  .quote-carousel {
    margin-top: 4rem;
  }

  .quote-carousel.is-enhanced .quote-track {
    min-height: 23rem;
  }

  .quote-slide p {
    font-size: clamp(3rem, 13.5vw, 3.4rem);
  }

  .quote-controls button {
    width: 3.6rem;
  }

  .intel-timeline div {
    grid-template-columns: 3rem 1fr auto;
    gap: 0.5rem;
    font-size: 0.53rem;
  }

  .access {
    padding-block: 6rem;
  }

  .access-heading h2 {
    font-size: clamp(3.8rem, 18vw, 4.8rem);
  }

  .access-portal {
    width: calc(100% + (var(--page) * 2));
    min-height: 31rem;
    margin-left: calc(var(--page) * -1);
    clip-path: polygon(0 0, calc(100% - 2rem) 0, 100% 2rem, 100% 100%, 2rem 100%, 0 calc(100% - 2rem));
  }

  .access-portal-meta {
    top: 1.7rem;
    left: 1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .access-portal-meta span:last-child::before {
    margin-right: 0.55rem;
  }

  .access-portal-koi {
    right: -13rem;
    width: 30rem;
    opacity: 0.24;
  }

  .access-portal-title {
    bottom: 3.5rem;
    left: 1rem;
    font-size: clamp(4.1rem, 22vw, 6rem);
    line-height: 0.77;
  }

  .access-portal-arrow {
    top: 2rem;
    right: 1rem;
  }

  .access-portal-arrow svg {
    width: 2.6rem;
  }

  .access-ledger {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  .access-ledger ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .access-ledger li::before {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.75rem;
    background: rgba(8, 9, 8, 0.68);
    content: "";
    transform: rotate(45deg);
  }

  .access-ledger li:not(:last-child)::after {
    display: none;
  }

  .access-ledger > p {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > p {
    margin: 4rem 0;
  }

  .site-footer nav {
    grid-row: 3;
    grid-column: 1;
    align-items: flex-start;
    margin-bottom: 5rem;
  }

  .footer-base {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
