:root {
  --paper: #f2efe6;
  --paper-deep: #e6e1d5;
  --ink: #10100f;
  --ink-soft: #5a5953;
  --blue: #3155e7;
  --blue-dark: #2341bd;
  --orange: #ff5b28;
  --line: rgba(16, 16, 15, 0.22);
  --pad: clamp(1.25rem, 3.4vw, 4rem);
  --sans: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #d8d3c8;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(16, 16, 15, 0.08) 50%, transparent 50.1%),
    var(--paper-deep);
  content: "";
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(100%, 100rem);
  margin: 0 auto;
  overflow: hidden;
  border-inline: 1px solid var(--ink);
  background: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border: 2px solid var(--ink);
  background: var(--paper);
  font-weight: 800;
}

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

.site-header {
  min-height: 5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem var(--pad);
  border-bottom: 1px solid var(--ink);
}

.wordmark {
  width: max-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
}

.wordmark-mark {
  margin-right: 0.18rem;
  padding: 0.25rem 0.28rem 0.24rem;
  background: var(--ink);
  color: var(--paper);
  letter-spacing: -0.08em;
}

.wordmark-dot {
  color: var(--blue);
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.availability-dot {
  position: relative;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #2cb567;
  box-shadow: 0 0 0 0 rgba(44, 181, 103, 0.45);
  animation: status-pulse 2.4s ease-out infinite;
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.83rem;
  font-weight: 750;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 1px;
}

.header-contact span {
  color: var(--blue);
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.header-contact:hover span {
  transform: translate(0.15rem, -0.15rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(24rem, 0.75fr);
  min-height: calc(100svh - 5rem);
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.25rem, 6vw, 7rem) var(--pad);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 clamp(2rem, 4vw, 4.5rem);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.6rem;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7.15vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.headline-accent {
  position: relative;
  z-index: 0;
  margin-top: 0.12em;
  padding: 0.1em 0.13em 0.13em 0.08em;
  transform: rotate(-1deg);
  background: var(--blue);
  color: #fff;
  font-size: 0.81em;
  letter-spacing: -0.065em;
}

.headline-accent::after {
  position: absolute;
  z-index: -1;
  right: -0.16em;
  bottom: -0.15em;
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-intro {
  width: min(100%, 40rem);
  margin: clamp(2.25rem, 4vw, 4.25rem) 0 0;
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button-primary {
  min-width: 14.5rem;
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  min-width: 10.5rem;
  background: transparent;
  color: var(--ink);
}

.button:hover {
  transform: translate(-0.2rem, -0.2rem);
  box-shadow: 0.28rem 0.28rem 0 var(--orange);
}

.button-primary:hover {
  background: var(--blue);
}

.button-secondary:hover {
  background: var(--paper-deep);
}

.button:focus-visible,
.offer-link:focus-visible,
.header-contact:focus-visible,
.wordmark:focus-visible,
.contact-note a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.contact-note {
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.contact-note a {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 0.2rem;
}

.offer-card {
  position: relative;
  isolation: isolate;
  min-height: 44rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin: clamp(1.25rem, 2.2vw, 2.4rem);
  padding: clamp(1.4rem, 2.5vw, 2.6rem);
  background: var(--ink);
  color: var(--paper);
}

.offer-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 70%);
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.offer-card::before {
  position: absolute;
  z-index: -1;
  top: 15%;
  right: -35%;
  width: 28rem;
  aspect-ratio: 1;
  border: clamp(3rem, 6vw, 6rem) solid var(--blue);
  border-radius: 50%;
  content: "";
  animation: orbit-drift 8s ease-in-out infinite alternate;
}

.offer-card::after {
  position: absolute;
  z-index: -1;
  top: 46%;
  right: 17%;
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.offer-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(242, 239, 230, 0.4);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-monogram {
  position: relative;
  min-height: 17rem;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.offer-x,
.offer-four {
  position: absolute;
  font-size: clamp(10rem, 21vw, 21rem);
}

.offer-x {
  top: 0;
  left: -0.08em;
}

.offer-four {
  top: 0.16em;
  left: 0.47em;
  color: var(--paper);
  -webkit-text-stroke: 2px var(--paper);
  -webkit-text-fill-color: transparent;
}

.offer-host {
  position: absolute;
  bottom: -0.35rem;
  left: 0.15rem;
  padding: 0.5rem 0.65rem;
  transform: rotate(-3deg);
  background: var(--orange);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2.8vw, 2.2rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.offer-price {
  display: grid;
  margin-top: auto;
}

.offer-label,
.offer-terms {
  color: rgba(242, 239, 230, 0.66);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-price data {
  margin-block: 0.22rem 0.6rem;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1;
}

.offer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(242, 239, 230, 0.4);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.offer-link span {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.offer-link:hover span {
  transform: translateX(0.35rem);
}

.signal-band {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  padding: 1.25rem var(--pad);
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-band span[aria-hidden="true"] {
  font-size: 0.38rem;
}

.section-pad {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.rationale {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  border-bottom: 1px solid var(--ink);
}

.section-heading h2,
.use-cases h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.2vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading .section-kicker {
  margin-bottom: 2.5rem;
}

.rationale-list {
  border-top: 1px solid var(--ink);
}

.rationale-item {
  display: grid;
  grid-template-columns: 3rem minmax(6rem, 0.45fr) minmax(12rem, 1fr);
  align-items: start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--ink);
  transition:
    padding 180ms ease,
    background-color 180ms ease;
}

.rationale-item:hover {
  padding-inline: 1rem;
  background: var(--paper-deep);
}

.item-number,
.step-number {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.rationale-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.rationale-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.55;
}

.use-cases {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: var(--ink);
  color: var(--paper);
}

.section-kicker-light {
  color: rgba(242, 239, 230, 0.68);
}

.use-cases-intro > p:last-child {
  width: min(100%, 33rem);
  margin: 2rem 0 0;
  color: rgba(242, 239, 230, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}

.use-case-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(242, 239, 230, 0.36);
  list-style: none;
}

.use-case-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.7rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(242, 239, 230, 0.36);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.use-case-list li::before {
  width: 0;
  height: 0.28rem;
  flex: 0 0 auto;
  background: var(--orange);
  content: "";
  transition: width 220ms ease;
}

.use-case-list li:hover::before {
  width: 2.25rem;
}

.use-case-list li > span:last-child {
  margin-left: auto;
  color: rgba(242, 239, 230, 0.42);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.acquisition {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  border-bottom: 1px solid var(--ink);
}

.acquisition-heading > p:last-child {
  width: min(100%, 35rem);
  margin: 2.2rem 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--ink);
}

.steps h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 41rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad);
  background: var(--blue);
  color: #fff;
}

.final-cta .section-kicker {
  margin-bottom: 0;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  width: min(100%, 75rem);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.82;
}

.cta-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -5rem;
  width: min(54vw, 42rem);
  aspect-ratio: 1;
  display: grid;
  transform: translateY(-50%);
  place-items: center;
  border: clamp(2.5rem, 6vw, 6rem) solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.cta-orbit span {
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.1em;
}

.cta-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.cta-bottom p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1;
}

.button-light {
  min-width: min(100%, 18rem);
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}

.button-light:hover {
  background: var(--orange);
  color: var(--ink);
}

.site-footer {
  min-height: 6.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem var(--pad);
  background: var(--ink);
  color: var(--paper);
}

.footer-wordmark {
  color: var(--paper);
}

.footer-wordmark .wordmark-mark {
  background: var(--paper);
  color: var(--ink);
}

.footer-wordmark .wordmark-dot {
  color: var(--orange);
}

.site-footer p {
  margin: 0;
  color: rgba(242, 239, 230, 0.58);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p:last-child {
  justify-self: end;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes status-pulse {
  70% {
    box-shadow: 0 0 0 0.45rem rgba(44, 181, 103, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(44, 181, 103, 0);
  }
}

@keyframes orbit-drift {
  from {
    transform: translate(0, -0.6rem) rotate(-4deg);
  }
  to {
    transform: translate(-1rem, 0.8rem) rotate(5deg);
  }
}

@media (max-width: 72rem) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 6.8vw, 5.7rem);
  }

  .offer-card {
    min-height: 39rem;
  }

  .offer-monogram {
    min-height: 15rem;
  }

  .rationale,
  .use-cases,
  .acquisition {
    gap: 4rem;
  }
}

@media (max-width: 52rem) {
  .page-shell {
    border-inline: 0;
  }

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

  .header-contact {
    display: none;
  }

  .availability {
    justify-self: end;
  }

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

  .hero-copy {
    min-height: calc(100svh - 5rem);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 6.3rem);
  }

  .offer-card {
    min-height: min(48rem, 90svh);
    margin-top: 0;
  }

  .offer-monogram {
    min-height: 19rem;
  }

  .offer-x,
  .offer-four {
    font-size: clamp(12rem, 38vw, 20rem);
  }

  .rationale,
  .use-cases,
  .acquisition {
    grid-template-columns: 1fr;
  }

  .rationale .section-heading h2,
  .acquisition .section-heading h2 {
    width: min(100%, 42rem);
  }

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

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 36rem) {
  .site-header {
    min-height: 4.5rem;
    gap: 0.75rem;
  }

  .wordmark {
    font-size: 0.9rem;
  }

  .availability {
    gap: 0.42rem;
    font-size: 0.58rem;
    letter-spacing: 0.07em;
  }

  .availability-dot {
    width: 0.48rem;
    height: 0.48rem;
  }

  .hero-copy {
    min-height: auto;
    padding-block: 4rem;
  }

  .section-kicker {
    margin-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 4.7rem);
  }

  .headline-accent {
    padding-right: 0.09em;
  }

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

  .offer-card {
    min-height: 38rem;
    margin-inline: 0.8rem;
  }

  .offer-card::before {
    right: -70%;
  }

  .offer-monogram {
    min-height: 14rem;
  }

  .offer-x,
  .offer-four {
    font-size: clamp(9rem, 42vw, 14rem);
  }

  .offer-price data {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .signal-band {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .signal-band::-webkit-scrollbar {
    display: none;
  }

  .rationale-item {
    grid-template-columns: 2rem 0.5fr 1fr;
    gap: 0.8rem;
  }

  .rationale-item p {
    font-size: 0.8rem;
  }

  .use-case-list li {
    font-size: clamp(1.35rem, 7vw, 2.2rem);
  }

  .final-cta {
    min-height: 37rem;
  }

  .final-cta h2 {
    font-size: clamp(3.5rem, 18vw, 6.5rem);
  }

  .cta-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-bottom .button {
    width: 100%;
  }

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

  .site-footer p:last-child {
    justify-self: start;
  }
}

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

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