@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@600;700;800&family=IBM+Plex+Mono:wght@500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --carbon: #0b0b0c;
  --carbon-2: #18181a;
  --graphite: #5f6065;
  --steel: #c9cdd1;
  --steel-light: #e3e5e7;
  --paper: #f4f1ea;
  --paper-deep: #eae5dc;
  --white: #fff;
  --laser: #d20a11;
  --laser-dark: #970007;
  --biscuit: #f2c36b;
  --sky: #b9dded;
  --mint: #cbe3d6;
  --success: #17623d;
  --focus: #006eff;
  --display: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shadow-sm: 0 10px 30px rgba(11, 11, 12, 0.08);
  --shadow-lg: 0 28px 80px rgba(11, 11, 12, 0.16);
  --radius: 8px;
  --radius-lg: 18px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--carbon);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

p {
  max-width: 64ch;
}

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

::selection {
  background: var(--laser);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--carbon);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 10vw, 136px);
}

.section--paper {
  background: var(--paper);
}

.section--dark {
  background: var(--carbon);
  color: var(--white);
}

.section--compact {
  padding-block: clamp(48px, 7vw, 84px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--laser-dark);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--laser);
  content: "";
}

.section--dark .eyebrow {
  color: #ff7c80;
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.section-heading h2 {
  max-width: 16ch;
  margin-bottom: 20px;
}

.section-heading p,
.lead {
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.section--dark .section-heading p,
.section--dark .lead {
  color: #c5c5c8;
}

.kicker-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.crosses {
  display: inline-flex;
  gap: 5px;
  color: var(--laser);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 13px 22px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button--primary {
  background: var(--laser);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--carbon);
}

.button--primary:hover {
  background: var(--laser-dark);
  box-shadow: 3px 3px 0 var(--carbon);
}

.section--dark .button--primary {
  box-shadow: 6px 6px 0 var(--white);
}

.button--secondary {
  border-color: var(--carbon);
  background: transparent;
  color: var(--carbon);
}

.button--secondary:hover {
  background: var(--carbon);
  color: var(--white);
}

.section--dark .button--secondary {
  border-color: var(--white);
  color: var(--white);
}

.section--dark .button--secondary:hover {
  background: var(--white);
  color: var(--carbon);
}

.button--text {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--laser-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.button-arrow {
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

.announcement {
  position: relative;
  z-index: 80;
  background: var(--carbon);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.announcement .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.announcement strong {
  color: #ff787d;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(11, 11, 12, 0.14);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(11, 11, 12, 0.08);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-logo {
  width: clamp(196px, 22vw, 278px);
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--laser);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 2px solid var(--carbon);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 21px;
  height: 2px;
  display: block;
  background: var(--carbon);
  content: "";
  transition: transform 0.2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -7px;
}

.nav-toggle span::after {
  position: absolute;
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.brand-hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--carbon);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(11, 11, 12, 0.06) 50%, transparent 50.1%),
    var(--paper);
}

.brand-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 11, 12, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 12, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  padding-block: clamp(46px, 6.5vw, 88px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 10.5ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  text-transform: uppercase;
}

.hero-copy h1 span {
  position: relative;
  display: inline-block;
}

.hero-copy h1 span::after {
  position: absolute;
  right: -0.12em;
  bottom: 0.09em;
  left: -0.07em;
  height: 0.09em;
  background: var(--laser);
  content: "";
  transform: rotate(-1.2deg);
}

.hero-copy .lead {
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 0;
  color: var(--graphite);
  font-family: var(--mono);
  font-size: 0.73rem;
  list-style: none;
}

.hero-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta li::before {
  width: 7px;
  height: 7px;
  background: var(--laser);
  content: "";
  transform: rotate(45deg);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-photo {
  width: min(100%, 520px);
  height: clamp(440px, 56vw, 650px);
  margin-left: auto;
  overflow: hidden;
  border: 2px solid var(--carbon);
  border-radius: 2px;
  background: var(--carbon-2);
  box-shadow: 18px 18px 0 var(--laser);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  left: -24px;
  bottom: 40px;
  width: 156px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--carbon);
  border-radius: 50%;
  background: var(--biscuit);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.laser-line {
  position: absolute;
  top: 52%;
  left: -10vw;
  z-index: 3;
  width: 48vw;
  height: 5px;
  background: var(--laser);
  box-shadow: 0 0 0 1px rgba(210, 10, 17, 0.1);
  transform: rotate(-7deg) scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.has-js .laser-line.is-active {
  animation: laser-draw 1.1s 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes laser-draw {
  to {
    transform: rotate(-7deg) scaleX(1);
  }
}

.trust-line {
  border-block: 2px solid var(--carbon);
  background: var(--white);
}

.trust-line__grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-line__item {
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--steel);
  padding: 18px 22px;
  font-size: 0.86rem;
  font-weight: 600;
}

.trust-line__item:first-child {
  border-left: 1px solid var(--steel);
}

.trust-line__icon {
  color: var(--laser);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 2px solid var(--carbon);
}

.route-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
}

.route-card + .route-card {
  border-left: 2px solid var(--carbon);
}

.route-card__media {
  position: absolute;
  inset: 0;
}

.route-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.94), rgba(11, 11, 12, 0.05) 70%);
  content: "";
}

.route-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.route-card:hover .route-card__media img {
  transform: scale(1.04);
}

.route-card__content {
  position: relative;
  z-index: 2;
}

.route-card__content h3 {
  max-width: 12ch;
  margin-bottom: 15px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  text-transform: uppercase;
}

.route-card__content p {
  max-width: 45ch;
  color: #e2e2e4;
}

.route-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--laser);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--carbon);
  border-left: 2px solid var(--carbon);
}

.spec-card {
  min-height: 260px;
  border-right: 2px solid var(--carbon);
  border-bottom: 2px solid var(--carbon);
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
}

.spec-card__no {
  display: block;
  margin-bottom: 42px;
  color: var(--laser-dark);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.spec-card h3 {
  margin-bottom: 12px;
}

.spec-card p {
  margin-bottom: 0;
  color: var(--graphite);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid #333337;
  background: #333337;
}

.process-step {
  min-height: 300px;
  padding: 34px;
  background: var(--carbon);
}

.process-step__no {
  color: #ff777c;
  font-family: var(--mono);
  font-size: 0.76rem;
}

.process-step h3 {
  margin: 80px 0 16px;
}

.process-step p {
  margin-bottom: 0;
  color: #b7b7ba;
  font-size: 0.92rem;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.split-panel__image {
  min-height: 500px;
  overflow: hidden;
  border: 2px solid var(--carbon);
  box-shadow: 15px 15px 0 var(--laser);
}

.split-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--steel);
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--steel);
  padding: 15px 0;
}

.feature-list li::before {
  color: var(--laser);
  font-family: var(--display);
  font-weight: 800;
  content: "×";
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--carbon);
  padding: clamp(36px, 8vw, 86px);
  background: var(--biscuit);
}

.cta-panel::after {
  position: absolute;
  right: -55px;
  bottom: -100px;
  width: 260px;
  aspect-ratio: 1;
  border: 34px solid rgba(11, 11, 12, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  max-width: 12ch;
  margin-bottom: 20px;
}

.cta-panel p {
  font-size: 1.1rem;
}

.site-footer {
  border-top: 5px solid var(--laser);
  background: var(--carbon);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: clamp(30px, 7vw, 90px);
  padding-block: 72px 48px;
}

.footer-logo {
  width: min(320px, 100%);
  margin-bottom: 22px;
  filter: invert(1) grayscale(1) brightness(4);
  mix-blend-mode: screen;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: #bfc0c3;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #333337;
  padding-block: 22px;
  color: #85868a;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    border-bottom: 2px solid var(--carbon);
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a:not(.button) {
    border-bottom: 1px solid var(--steel-light);
    padding: 15px 8px;
  }

  .site-nav .button {
    margin-top: 14px;
  }

  .hero-grid,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .brand-hero {
    min-height: auto;
  }

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

  .hero-photo {
    height: 500px;
    margin-inline: auto;
  }

  .hero-stamp {
    left: 2vw;
  }

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

  .trust-line__item:nth-child(3) {
    border-left: 1px solid var(--steel);
  }

  .trust-line__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--steel);
  }

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

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .announcement .container {
    min-height: 38px;
  }

  .announcement span:nth-child(2) {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-logo {
    width: 194px;
  }

  .site-nav {
    inset-block-start: 68px;
  }

  .brand-hero {
    background: var(--paper);
  }

  .hero-grid {
    gap: 46px;
    padding-block: 68px 84px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-photo {
    height: 420px;
    box-shadow: 10px 10px 0 var(--laser);
  }

  .hero-stamp {
    width: 124px;
    left: -3px;
    bottom: 24px;
    font-size: 0.62rem;
  }

  .laser-line {
    width: 76vw;
  }

  .trust-line__grid {
    grid-template-columns: 1fr;
  }

  .trust-line__item,
  .trust-line__item:nth-child(3) {
    min-height: 62px;
    border-right: 1px solid var(--steel);
    border-bottom: 1px solid var(--steel);
    border-left: 1px solid var(--steel);
  }

  .trust-line__item:last-child {
    border-bottom: 0;
  }

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

  .route-card {
    min-height: 440px;
  }

  .route-card + .route-card {
    border-top: 2px solid var(--carbon);
    border-left: 0;
  }

  .spec-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 230px;
  }

  .process-step h3 {
    margin-top: 48px;
  }

  .split-panel__image {
    min-height: 390px;
    box-shadow: 9px 9px 0 var(--laser);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-block: 56px 36px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    border: 2px solid var(--carbon);
    border-radius: 7px;
    background: var(--white);
    padding: 10px 10px 10px 16px;
    box-shadow: 0 16px 45px rgba(11, 11, 12, 0.22);
  }

  .mobile-cta strong {
    display: block;
    font-family: var(--display);
    font-size: 1.1rem;
    line-height: 1.1;
  }

  .mobile-cta small {
    color: var(--graphite);
    font-size: 0.72rem;
  }

  .mobile-cta .button {
    min-height: 46px;
    padding: 10px 15px;
    box-shadow: none;
  }

  .has-mobile-cta {
    padding-bottom: 92px;
  }
}

@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;
  }

  .laser-line {
    transform: rotate(-7deg) scaleX(1);
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
