@font-face {
  font-family: "Anton";
  src: url("/assets/fonts/anton.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: only light;
  --paper: #fcf5ea;
  --paper-soft: #f7ede0;
  --ink: #232323;
  --orange: #f26323;
  --orange-bright: #fc6209;
  --line: rgba(35, 35, 35, 0.11);
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-ui: "Inter", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 12px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 18px;
  padding: 12px 16px;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-frame {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: calc(100vh - 24px);
  min-height: calc(100svh - 24px);
  overflow: hidden;
  border: 3px solid var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 3vw, 48px);
  border-bottom: 3px solid var(--ink);
  background: rgba(252, 245, 234, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.brand__wordmark {
  width: clamp(128px, 12vw, 172px);
  height: 52px;
  object-fit: contain;
  object-position: left center;
  transition: transform 420ms var(--ease-out);
}

.brand:hover .brand__wordmark,
.brand:focus-visible .brand__wordmark {
  transform: translateY(-2px);
}

.brand:focus-visible,
.hero__cta:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.launch-status__dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 99, 35, 0.13);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  min-height: 0;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 5vh, 72px) clamp(28px, 6vw, 96px);
}

.hero__status {
  margin: 0 0 24px;
  padding-left: 46px;
  color: var(--ink);
  font-size: clamp(0.66rem, 0.8vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__status::before {
  position: absolute;
  width: 32px;
  height: 3px;
  margin-top: 0.42em;
  margin-left: -46px;
  background: var(--orange);
  content: "";
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, min(7vw, 10vh), 8.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero__description {
  max-width: 570px;
  margin: clamp(22px, 2.5vw, 34px) 0 0;
  color: rgba(35, 35, 35, 0.74);
  font-size: clamp(0.98rem, 1.15vw, 1.18rem);
  font-weight: 470;
  line-height: 1.65;
}

.hero__cta {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: clamp(26px, 2.75vw, 38px);
  padding: 0 25px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  isolation: isolate;
}

.hero__cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translateY(102%);
  background: var(--orange);
  content: "";
  transition: transform 360ms var(--ease-out);
}

.hero__cta svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
  transition: transform 320ms var(--ease-out);
}

.hero__cta:hover::before,
.hero__cta:focus-visible::before {
  transform: translateY(0);
}

.hero__cta:hover svg,
.hero__cta:focus-visible svg {
  transform: translateX(4px);
}

.hero__art {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-left: 3px solid var(--ink);
  background: var(--orange);
  isolation: isolate;
}

.hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(35, 35, 35, 0.42) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(35, 35, 35, 0.42) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero__slash {
  position: absolute;
  width: 170%;
  height: 16%;
  transform: rotate(-39deg);
  transform-origin: center;
}

.hero__slash--dark {
  top: 10%;
  left: -38%;
  background: var(--ink);
}

.hero__slash--light {
  right: -72%;
  bottom: 8%;
  background: var(--paper);
}

.hero__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72%, 530px);
  height: auto;
  transform: translate(-50%, -53%) rotate(-4deg);
  filter: drop-shadow(18px 22px 0 rgba(35, 35, 35, 0.18));
  animation: mark-enter 900ms 120ms var(--ease-out) both;
}

.hero__wordmark {
  position: absolute;
  right: 6%;
  bottom: 4%;
  width: min(54%, 380px);
  height: auto;
  padding: 11px 13px;
  border: 3px solid var(--ink);
  background: var(--paper);
  object-fit: contain;
  animation: wordmark-enter 780ms 340ms var(--ease-out) both;
}

.site-footer {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 11px;
  padding: 12px clamp(20px, 3vw, 48px);
  border-top: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer a {
  color: inherit;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@keyframes mark-enter {
  from {
    opacity: 0;
    transform: translate(-44%, -47%) rotate(2deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -53%) rotate(-4deg) scale(1);
  }
}

@keyframes wordmark-enter {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  body {
    padding: 0;
  }

  .site-frame {
    min-height: 100svh;
    border: 0;
  }

  .site-header {
    min-height: 80px;
    padding: 12px 20px;
  }

  .brand__wordmark {
    width: 110px;
    height: 42px;
  }

  .launch-status {
    gap: 8px;
    font-size: 0.61rem;
    letter-spacing: 0.11em;
  }

  .launch-status__dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(242, 99, 35, 0.13);
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(260px, 37vh);
  }

  .hero__copy {
    min-height: 0;
    justify-content: flex-start;
    padding: clamp(42px, 8vh, 78px) 20px 44px;
  }

  .hero__status {
    margin-bottom: 20px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3.65rem, 14vw, 6.6rem);
    line-height: 0.9;
  }

  .hero__description {
    max-width: 540px;
    margin-top: 24px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero__cta {
    min-height: 56px;
    margin-top: 28px;
  }

  .hero__art {
    min-height: 260px;
    border-top: 3px solid var(--ink);
    border-left: 0;
  }

  .hero__mark {
    top: 51%;
    width: min(43%, 290px);
    transform: translate(-50%, -52%) rotate(-4deg);
  }

  .hero__wordmark {
    right: 14px;
    bottom: 14px;
    width: min(38%, 230px);
    padding: 7px 9px;
  }

  .site-footer {
    min-height: 46px;
    padding: 11px 20px;
  }
}

@media (max-width: 560px) {
  .brand__wordmark {
    width: 88px;
  }

  .launch-status span:last-child {
    max-width: 55px;
    line-height: 1.15;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.15rem);
  }

  .hero__cta {
    width: 100%;
    justify-content: space-between;
  }

  .hero__art {
    min-height: 242px;
  }

  .hero__mark {
    width: min(50%, 220px);
  }

  .hero__wordmark {
    width: min(43%, 182px);
  }

  .site-footer {
    flex-wrap: wrap;
    gap: 7px;
  }

  .site-footer span[aria-hidden] {
    display: none;
  }

  .site-footer a {
    width: 100%;
  }
}

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

@media (forced-colors: active) {
  .hero__art,
  .hero__cta,
  .site-footer {
    border: 2px solid CanvasText;
  }
}
