:root {
  --black: #050505;
  --black-soft: #090909;
  --black-raised: #0d0d0d;
  --white: #f4f1ec;
  --muted: #b7b1aa;
  --orange: #ff5a1f;
  --orange-hover: #ff6a31;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shell: 1240px;
  --radius-standard: 8px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    var(--black);
  background-size: 56px 56px;
  font-family: "Archivo", Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .10;
  mix-blend-mode: soft-light;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, .95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .30);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.brand {
  min-width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.brand-tagline {
  margin-top: 4px;
  color: #b7b1aa;
  font-family: "Archivo Narrow", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.nav a {
  position: relative;
  padding-block: 8px;
  color: #ddd8d0;
  font-family: "Archivo Narrow", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--orange);
  transition: right .25s var(--ease);
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  right: 0;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  color: #fff;
  font-family: "Archivo Narrow", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .22s var(--ease), background .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.32);
}

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
}

.button-primary:hover {
  border-color: var(--orange-hover);
  background: var(--orange-hover);
}

.button-secondary {
  background: rgba(255,255,255,.015);
}

.button-arrow,
.download-icon {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.header-cta {
  min-height: 46px;
  padding-inline: 22px;
  border-radius: var(--radius-standard);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 90, 31, .08), transparent 25%),
    linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,.96) 43%, rgba(5,5,5,.66) 69%, rgba(5,5,5,.92) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(430px, 1.02fr);
  align-items: center;
  gap: 42px;
  padding-block: 70px 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: "Archivo Narrow", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  margin-bottom: 24px;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.015em;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(68px, 7.2vw, 112px);
  line-height: 1.05;
}

.hero-kicker {
  margin: 24px 0 0;
  color: var(--white);
  font-family: "Archivo Narrow", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 470px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

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

.hero-actions .button-primary {
  border-radius: var(--radius-standard);
}

.hero-art {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.hero-shoe {
  position: relative;
  z-index: 3;
  width: min(105%, 700px);
  max-width: none;
  margin-left: 34px;
  animation: shoe-float 7s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

.orbit-main {
  width: 530px;
  height: 530px;
  left: 7%;
  top: 3%;
}

.orbit-inner {
  width: 330px;
  height: 330px;
  left: 25%;
  top: 21%;
  border-color: rgba(255,255,255,.06);
}

.target {
  position: absolute;
  z-index: 4;
  left: 9%;
  top: 44%;
  width: 32px;
  height: 32px;
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.target::before,
.target::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.target::before {
  width: 56px;
  height: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.target::after {
  width: 1px;
  height: 56px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.target span {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255,90,31,.58);
  border-radius: 50%;
}

.process-panel {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: -6px;
  width: 138px;
  color: #aaa49e;
  font-family: "Archivo Narrow", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.process-panel p,
.process-panel strong {
  margin: 0;
  display: block;
}

.process-panel strong {
  margin-top: 2px;
  color: #ded9d2;
  font-weight: 600;
}

.process-line {
  width: 100%;
  height: 1px;
  display: block;
  margin: 14px 0 16px;
  background: var(--line-strong);
}

.process-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.metrics {
  border-bottom: 1px solid var(--line);
  background: rgba(5,5,5,.80);
}

.metric-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  min-height: 246px;
  padding: 32px 28px;
  border-left: 1px solid var(--line);
  border-radius: var(--radius-standard);
  overflow: hidden;
  transition: background .25s ease, transform .25s var(--ease);
}

.metric:last-child {
  border-right: 1px solid var(--line);
}

.metric:hover {
  transform: translateY(-3px);
  background: rgba(255,90,31,.025);
}

.metric svg,
.feature svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.metric svg {
  margin-bottom: 26px;
}

.metric strong {
  display: block;
  color: #fff;
  font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 3.2vw, 54px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.metric p {
  margin: 18px 0 0;
  color: #c7c1ba;
  font-family: "Archivo Narrow", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.model-section {
  padding-block: 84px 74px;
  border-bottom: 1px solid var(--line);
  background: var(--black-soft);
}

.section-heading h2 {
  max-width: 860px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: .98;
}

.feature-grid {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.feature {
  min-height: 250px;
  padding: 28px 28px 8px 0;
  border-right: 1px solid var(--line);
  border-radius: var(--radius-standard);
  overflow: hidden;
}

.feature + .feature {
  padding-left: 28px;
}

.feature:last-child {
  border-right: 0;
}

.feature svg {
  margin-bottom: 30px;
}

.feature h3,
.investment h2 {
  margin: 0;
  color: #fff;
  font-family: "Archivo Narrow", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.feature h3 {
  font-size: 25px;
  line-height: 1.04;
}

.feature p {
  max-width: 245px;
  margin: 17px 0 0;
  color: #c7c1ba;
  font-size: 15px;
  line-height: 1.65;
}

.investment {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 48% 50%, rgba(255,90,31,.035), transparent 22%),
    var(--black);
}

.investment-grid {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1.15fr 190px .90fr auto;
  align-items: center;
  gap: 40px;
  padding-block: 28px;
}

.investment h2 {
  font-size: 28px;
  line-height: 1;
}

.investment-badge {
  border-radius: var(--radius-standard);
}

.investment-copy p,
.conversation-copy > p:last-child {
  margin: 16px 0 0;
  color: #c8c2ba;
  font-size: 15px;
  line-height: 1.65;
}

.investment-copy p {
  max-width: 380px;
}

.conversation-copy > p:last-child {
  max-width: 300px;
}

.conversation-copy .eyebrow {
  margin-bottom: 0;
}

.investment-target {
  position: relative;
  width: 138px;
  height: 138px;
  margin-inline: auto;
}

.investment-target::before,
.investment-target::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.12);
}

.investment-target::before {
  width: 1px;
  height: 170px;
  left: 50%;
  top: -16px;
}

.investment-target::after {
  width: 170px;
  height: 1px;
  top: 50%;
  left: -16px;
}

.target-ring,
.target-core {
  position: absolute;
  border-radius: 50%;
}

.target-ring {
  inset: 0;
  border: 1px solid rgba(255,255,255,.18);
}

.target-core {
  inset: 38px;
  border: 1px solid var(--orange);
}

.investment-arrow {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-standard);
  background: var(--orange);
  color: #fff;
  font-size: 38px;
  transition: transform .25s var(--ease), background .2s ease;
}

.investment-arrow:hover {
  transform: translateX(5px);
  background: var(--orange-hover);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .68s var(--ease), transform .68s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shoe-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-art {
    min-height: 520px;
  }

  .hero-shoe {
    width: min(82vw, 680px);
    margin-left: 0;
  }

  .orbit-main {
    left: 50%;
    transform: translateX(-50%);
  }

  .orbit-inner {
    left: 50%;
    transform: translateX(-50%);
  }

  .process-panel {
    right: 20px;
  }

  .metric-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric:nth-child(2),
  .feature:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .metric:nth-child(n+3),
  .feature:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

  .investment-target {
    order: 3;
  }

  .investment-arrow {
    order: 4;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 70px;
    gap: 10px;
  }

  .brand {
    min-width: 46px;
    height: 46px;
  }

  .brand img {
    width: 38px;
  }

  .brand {
    gap: 9px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tagline {
    font-size: 7px;
  }

  .header-cta {
    width: auto;
    min-height: 42px;
    padding-inline: 12px;
  }

  .hero-grid {
    padding-block: 52px 46px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 82px);
  }

  .hero-kicker {
    font-size: 22px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 350px;
  }

  .hero-shoe {
    width: 105%;
    max-width: 560px;
  }

  .orbit-main {
    width: 340px;
    height: 340px;
  }

  .orbit-inner {
    width: 220px;
    height: 220px;
  }

  .target {
    left: 4%;
  }

  .process-panel {
    top: -4px;
    right: 0;
    font-size: 11px;
    width: 104px;
  }

  .metric-grid,
  .feature-grid,
  .investment-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(2),
  .metric:last-child {
    border-right: 1px solid var(--line);
  }

  .metric:not(:first-child) {
    border-top: 1px solid var(--line);
  }

  .model-section {
    padding-block: 70px 60px;
  }

  .section-heading h2 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .feature,
  .feature + .feature {
    min-height: 210px;
    padding: 28px 0;
    border-right: 0 !important;
  }

  .feature:not(:first-child) {
    border-top: 1px solid var(--line);
  }

  .investment-grid {
    gap: 30px;
    padding-block: 42px;
  }

  .investment-target {
    order: 2;
  }

  .conversation-copy {
    order: 3;
  }

  .investment-arrow {
    order: 4;
    width: 100%;
    height: 68px;
  }
}

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

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

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