@font-face {
  font-family: 'HC Display';
  src: url('/assets/fonts/Kamikaze.9a4bf010b7be.ttf') format('truetype');
  font-display: swap;
}

:root {
  color-scheme: light;
  --cream: #f3f0e6;
  --ink: #0a0a0a;
  --blue: #2e86ff;
  --deep-sky: #0b2545;
  --paper: #fffdf6;
  --muted: #5a574f;
  --mono:
    ui-monospace, 'SFMono-Regular', 'Cascadia Code', 'Roboto Mono', Menlo, Consolas, monospace;
  --display: 'HC Display', Impact, Haettenschweiler, sans-serif;
  --pad: clamp(1rem, 4vw, 4.5rem);
  --content: 90rem;
  --shadow: 6px 6px 0 var(--ink);
  --motion: 180ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  background: var(--cream);
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--cream);
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.1rem);
  line-height: 1.65;
}
::selection {
  background: var(--blue);
  color: #fff;
}
* {
  accent-color: var(--blue);
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-underline-offset: 0.22em;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
code {
  padding: 0.08em 0.25em;
  background: rgb(10 10 10 / 8%);
  font-family: inherit;
  font-size: 0.93em;
}
h1,
h2,
h3 {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.display-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.prose a,
.site-footer a {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-180%);
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem var(--pad);
  background: rgb(243 240 230 / 96%);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(10px);
}
.home .site-header {
  position: absolute;
  width: 100%;
  background: rgb(10 10 10 / 48%);
  border-color: rgb(243 240 230 / 55%);
  color: var(--cream);
  backdrop-filter: none;
}
.brand,
.footer-brand {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  text-shadow: 2px 2px 0 var(--blue);
  white-space: nowrap;
}
.wide-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1.4vw, 1.5rem);
}
.wide-nav a,
.menu a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
}
.wide-nav a::after,
.menu a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  content: '';
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion);
}
.wide-nav a:hover::after,
.wide-nav a:focus-visible::after,
.wide-nav a[aria-current]::after,
.menu a:hover::after,
.menu a[aria-current]::after {
  transform: scaleX(1);
}
.menu {
  display: none;
}
.menu summary {
  min-height: 44px;
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  border: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}
.menu summary::-webkit-details-marker {
  display: none;
}
.menu nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  padding: 1rem var(--pad) 1.25rem;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep-sky);
  color: var(--cream);
}
.hero-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--deep-sky) center / cover no-repeat;
  background-image: image-set(
    url('/assets/images/sky-hero-1440.207d539d1c18.webp') type('image/webp') 1x,
    url('/assets/images/sky-hero-2880.55ff868bae25.webp') type('image/webp') 2x,
    url('/assets/images/sky-hero-1440.1bb78b240eb7.jpg') type('image/jpeg') 1x,
    url('/assets/images/sky-hero-2880.ae6c2bb3dbac.jpg') type('image/jpeg') 2x
  );
  transform: scale(1.001);
}
.hero-copy {
  position: absolute;
  right: var(--pad);
  bottom: clamp(2rem, 8vh, 5.5rem);
  left: var(--pad);
  max-width: 74rem;
}
.hero .display-title {
  position: absolute;
  top: clamp(6rem, 15vh, 10rem);
  left: var(--pad);
  font-size: clamp(3.25rem, 14.5vw, 16rem);
  text-shadow: 6px 6px 0 var(--ink);
  white-space: nowrap;
}

/* Preview notice: fixed on every page until a public build exists. */
.preview-note {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  max-width: 21rem;
  gap: 0.2rem 0.75rem;
  grid-template-columns: auto 1fr;
  padding: 0.7rem 0.9rem;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--cream);
  box-shadow: 5px 5px 0 var(--blue);
  font-size: 0.74rem;
  line-height: 1.35;
  transform: rotate(-1.5deg);
  transition: transform var(--motion);
}
.preview-note:hover,
.preview-note:focus-within {
  transform: rotate(0);
}
.preview-note strong {
  grid-row: span 2;
  align-self: center;
  padding: 0.3rem 0.45rem;
  color: var(--ink);
  background: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.preview-note a {
  width: fit-content;
  color: var(--cream);
  font-weight: 800;
}
.hero-line {
  width: fit-content;
  max-width: 48rem;
  margin: 2rem 0 1rem;
  padding: 0.75rem 1rem;
  transform: rotate(-1deg);
  background: var(--cream);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
}
.hero-status {
  width: fit-content;
  margin: 0 0 1.5rem 1.5rem;
  padding: 0.55rem 0.8rem;
  transform: rotate(1deg);
  background: var(--blue);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    box-shadow var(--motion),
    transform var(--motion),
    background-color var(--motion),
    color var(--motion);
}
.button:hover,
.button:focus-visible {
  box-shadow: 8px 8px 0 var(--ink);
  transform: translate(-2px, -2px);
}
.button:active {
  box-shadow: 0 0 0 var(--ink);
  transform: translate(5px, 5px);
}
.button--cream {
  background: var(--cream);
}
.button--dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 5px 5px 0 rgb(243 240 230 / 55%);
}
.button--dark:hover,
.button--dark:focus-visible {
  box-shadow: 8px 8px 0 rgb(243 240 230 / 70%);
}
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 900;
}

.page-intro {
  min-height: 34rem;
  padding: clamp(7.5rem, 13vw, 12rem) var(--pad) clamp(4rem, 8vw, 7rem);
  background: var(--blue);
  border-bottom: 1px solid var(--ink);
}
.page-intro .display-title {
  max-width: 100%;
  font-size: clamp(4rem, 9vw, 8rem);
  text-shadow: 4px 4px 0 var(--cream);
}
.page-intro .lede {
  max-width: 65ch;
  margin: 2rem 0;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 700;
}
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section {
  max-width: var(--content);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
}
.section + .section {
  border-top: 1px solid var(--ink);
}
.section--ink,
.section--blue {
  max-width: none;
  margin: 0;
}
.section--ink {
  background: var(--ink);
  color: var(--cream);
}
.section--blue {
  background: var(--blue);
}
.section--compact {
  padding-block: clamp(3rem, 5vw, 5rem);
}
.section--compact .section-heading {
  margin-bottom: 0;
}
.section-heading {
  max-width: 68rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section-heading .display-title,
.licence-band .display-title {
  font-size: clamp(3.25rem, 6.5vw, 6rem);
  text-shadow: 4px 4px 0 var(--blue);
}
.section--blue .display-title {
  text-shadow: 4px 4px 0 var(--cream);
}
.section-heading > p:last-child {
  max-width: 67ch;
  font-size: 1.15em;
}
.section-lede {
  max-width: 28ch;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.split h2,
.prose h2,
.evidence-note h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.1;
}
.split > * > :first-child {
  margin-top: 0;
}
.plain-list,
.prose ul {
  padding-left: 1.25rem;
}
.plain-list li,
.prose li {
  margin-bottom: 0.6rem;
}
.prose {
  max-width: 76ch;
}
.prose h2 {
  margin-top: 3.5rem;
}
.prose address {
  font-style: normal;
}

.card-grid,
.feature-columns,
.readiness-grid,
.action-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.card,
.readiness-grid article,
.download-card {
  min-height: 22rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition:
    transform var(--motion),
    box-shadow var(--motion);
}
.card:hover,
.card:focus-within,
.readiness-grid article:hover,
.download-card:hover {
  box-shadow: 8px 8px 0 var(--ink);
  transform: translate(-2px, -2px);
}
.card--blue {
  background: var(--blue);
}
.product-mark {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin-top: 1.75rem;
  place-items: center;
  background: var(--ink);
  border-radius: 22%;
}
.product-mark img {
  width: 80%;
  height: 80%;
}
.product-mark + h2,
.product-mark + h3 {
  margin-top: 1rem;
}
.product-mark--large {
  width: clamp(5rem, 9vw, 7rem);
  height: clamp(5rem, 9vw, 7rem);
  margin: 0 0 1.5rem;
}
.product-mark--small {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  flex: none;
}
.product-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.card h3 {
  margin: 2rem 0 1rem;
  font-size: 1.35rem;
  line-height: 1.15;
}
.product-grid .display-title {
  font-size: clamp(2.25rem, 3vw, 3.25rem);
  white-space: nowrap;
}
.status {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}
.status--works {
  background: var(--ink);
  color: var(--cream);
}
.status--active {
  background: var(--blue);
  color: var(--ink);
}
.status--planned {
  background: var(--cream);
  color: var(--ink);
}
.card .status--active,
.page-intro .status--active {
  background: var(--ink);
  color: var(--cream);
}
.licence-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5vw;
}
.licence-facts {
  max-width: 68ch;
}
.action-grid article {
  padding: 2rem;
  border-left: 1px solid var(--ink);
}
.action-grid article:first-child {
  border-left: 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.media-grid:empty {
  display: none;
  margin: 0;
}
.media-frame {
  margin: 2rem 0 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.media-frame picture,
.media-frame video {
  display: block;
  overflow: hidden;
}
.media-frame img {
  width: 100%;
  transition: transform var(--motion);
}
.media-frame:hover img {
  transform: scale(1.02);
}
.media-frame figcaption {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.82rem;
}
.feature-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.feature-columns article {
  min-height: 15rem;
  padding: 2rem;
  border: 1px solid currentColor;
}
.feature-columns h3 {
  font-size: 1.35rem;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--ink);
}
.number-grid div {
  padding: 2rem;
  border-right: 1px solid var(--ink);
}
.number-grid div:last-child {
  border: 0;
}
.number-grid dt {
  font-weight: 900;
  text-transform: uppercase;
}
.number-grid dd {
  margin: 0.5rem 0 0;
  font-family: var(--mono);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}
.readiness-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.readiness-grid article {
  min-height: 19rem;
}
.callout {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 2px solid currentColor;
  box-shadow: 5px 5px 0 currentColor;
}
.callout .button {
  margin: 0.5rem 0 0 1rem;
}
.evidence-note {
  max-width: 76rem;
}

.roadmap-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}
.roadmap-list li {
  position: relative;
  padding: 3rem 0 3rem clamp(4rem, 10vw, 10rem);
  border-bottom: 2px solid var(--ink);
}
.roadmap-list li::before {
  position: absolute;
  top: 3rem;
  left: 0;
  width: clamp(2.8rem, 7vw, 6rem);
  height: clamp(2.8rem, 7vw, 6rem);
  content: '';
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-3deg);
  transition: transform var(--motion);
}
.roadmap-list li:hover::before {
  transform: rotate(0);
}
.roadmap-list article {
  max-width: 66rem;
}
.roadmap-list h2 {
  margin: 0.5rem 0;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  line-height: 1;
}
.stage {
  margin: 1.5rem 0 0;
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.price-card {
  padding: clamp(2rem, 5vw, 4rem);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}
.price-card--free {
  background: var(--blue);
}
.price-card--dark {
  background: var(--ink);
  color: var(--cream);
}
.price-label {
  font-weight: 900;
  text-transform: uppercase;
}
.price {
  margin: 0.4rem 0 1rem;
  font-family: var(--mono);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}
.price--small {
  font-size: clamp(2.1rem, 5vw, 4.5rem);
}
.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.download-card {
  min-height: 0;
}
.download-card--release {
  grid-column: 1 / -1;
}
.table-scroll {
  max-width: 100%;
  margin: 2rem 0;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 0.75rem;
  border: 1px solid currentColor;
  text-align: left;
  vertical-align: top;
}
th {
  background: var(--ink);
  color: var(--cream);
}
.detected-os {
  background: rgb(46 134 255 / 16%);
}
.copy {
  min-height: 44px;
  padding: 0.5rem;
  background: var(--cream);
  border: 1px solid var(--ink);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem var(--pad);
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--cream);
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-footer h2 {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.site-footer nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  font-size: 0.85rem;
}
.footer-brand {
  font-size: 2.5rem;
}

@media (max-width: 72rem) {
  .wide-nav {
    display: none;
  }
  .menu {
    display: block;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 60rem) {
  body {
    padding-bottom: 3.5rem;
  }
  .hero-copy {
    bottom: calc(clamp(2rem, 8vh, 5.5rem) + 3rem);
  }
  .preview-note {
    right: 0;
    bottom: 0;
    left: 0;
    max-width: none;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0.55rem 0.8rem;
    border-width: 2px 0 0;
    box-shadow: none;
    transform: none;
  }
  .preview-note:hover,
  .preview-note:focus-within {
    transform: none;
  }
  .preview-note strong {
    grid-row: auto;
  }
}

@media (max-width: 48rem) {
  .hero-copy {
    bottom: 4.6rem;
  }
  .hero .display-title {
    top: 6rem;
    font-size: clamp(3rem, 14vw, 6rem);
  }
  .hero-line {
    margin-top: 1.2rem;
  }
  .hero-status {
    margin-left: 0.4rem;
  }
  .page-intro {
    min-height: 29rem;
  }
  .page-intro .display-title {
    font-size: clamp(2.75rem, 13vw, 5.5rem);
  }
  .section-heading .display-title,
  .licence-band .display-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .split,
  .licence-band,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .feature-columns,
  .readiness-grid,
  .action-grid,
  .download-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 17rem;
  }
  .action-grid article {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }
  .action-grid article:first-child {
    border-top: 0;
  }
  .number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .number-grid div:nth-child(2) {
    border-right: 0;
  }
  .number-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }
  .callout .button {
    margin-left: 0;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .preview-note,
  .hero-art,
  .hero-actions,
  .site-footer,
  .button {
    display: none !important;
  }
  body,
  .page-intro,
  .section--ink,
  .section--blue {
    background: #fff !important;
    color: #000 !important;
  }
  .page-intro {
    min-height: 0;
    padding-block: 2rem;
  }
  a[href^='http']::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
  }
  .card,
  .media-frame,
  .price-card,
  .download-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
