:root {
  --ink: #0a0a0a;
  --muted: #66645f;
  --paper: #f7f5ef;
  --soft: #ebe8dd;
  --line: #d9d3c5;
  --blue: #1a2bff;
  --white: #fffefa;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: color-mix(in srgb, var(--paper) 94%, white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 950;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-link,
.eyebrow,
.tag {
  color: var(--blue);
}

.hero {
  min-height: calc(100svh - 58px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(34px, 5vw, 74px) clamp(18px, 5vw, 70px) 42px;
  border-bottom: 1px solid var(--line);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: clamp(26px, 8vh, 82px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 100%;
  font-size: clamp(76px, 13.5vw, 194px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  gap: .02em;
  align-items: baseline;
  text-transform: none;
}

.hero-title .title-blue {
  color: var(--blue);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 6vw, 82px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 1000;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.lead {
  max-width: 650px;
  color: #363431;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

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

.button.ghost {
  background: var(--white);
}

.deal-pop {
  position: relative;
  overflow: visible;
}

.deal-pop::after {
  content: attr(data-deal);
  position: absolute;
  top: -14px;
  right: -13px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: #ee4d2d;
  border: 2px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(238, 77, 45, .24);
  font-size: 10px;
  font-weight: 1000;
  line-height: 1;
  pointer-events: none;
  transform: rotate(7deg);
  animation: deal-float 2.8s ease-in-out infinite;
}

.deal-pop-b::after {
  top: -12px;
  right: auto;
  left: -12px;
  transform: rotate(-8deg);
  animation-duration: 3.2s;
  animation-delay: .25s;
}

.deal-pop-c::after {
  top: -16px;
  right: -7px;
  transform: rotate(11deg);
  animation-duration: 3.6s;
  animation-delay: .45s;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: clamp(28px, 5vw, 54px) 0 0;
}

.stat-row div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.stat-row dt {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  font-weight: 1000;
}

.stat-row dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
}

.hero-visual img,
.hero-visual .image-link {
  width: 100%;
  height: 100%;
}

.image-link {
  display: block;
}

.hero-visual img {
  object-fit: cover;
  object-position: center top;
}

.hero-product > .image-link > img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 44px);
}

.alpha-swatches {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, 70px);
  gap: 8px;
}

.alpha-swatches img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(10, 10, 10, .08);
  animation: bob 3.2s ease-in-out infinite;
}

.alpha-swatches img:nth-child(2) { animation-delay: .25s; }
.alpha-swatches img:nth-child(3) { animation-delay: .5s; }

.hero-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin: -6px 0 6px;
  padding: calc(11px * .95) 0;
  color: white;
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(26, 43, 255, .12);
  transform: rotate(-1.15deg);
  transform-origin: center;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  white-space: nowrap;
  animation: marquee-left 23s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-size: clamp(20px, 2.8vw, 42px);
  line-height: .9;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 1060px;
}

.manifesto-grid,
.alpha-feature,
.mascot-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
  gap: clamp(20px, 5vw, 60px);
  align-items: center;
}

.manifesto-lines {
  display: grid;
  gap: 8px;
  font-size: clamp(30px, 5vw, 72px);
  line-height: .98;
  font-weight: 350;
}

.manifesto-lines p {
  margin-bottom: 0;
  color: #77746c;
}

.manifesto-lines strong {
  color: var(--ink);
  font-weight: 1000;
}

.manifesto-lines p:last-child strong {
  color: var(--blue);
}

.manifesto-card,
.pillar,
.promise,
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.manifesto-card {
  padding: clamp(22px, 4vw, 42px);
}

.manifesto-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.motion-signature {
  position: relative;
  height: clamp(240px, 27vw, 390px);
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper) 0%, #efeee8 52%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.motion-top {
  height: clamp(70px, 7vw, 104px);
  border-bottom: 0;
}

.motion-mid {
  height: clamp(226px, 25.65vw, 370px);
}

.motion-bottom {
  height: clamp(150px, 17vw, 245px);
  background: linear-gradient(180deg, #f0eee7 0%, var(--paper) 100%);
}

.marquee-band {
  position: absolute;
  left: -16vw;
  width: 132vw;
  padding: calc(11px * .95) 0;
  color: white;
  background: var(--blue);
  box-shadow: 0 18px 40px rgba(26, 43, 255, .14);
  will-change: transform;
}

.marquee-band-one {
  top: 20%;
  transform: rotate(-5deg);
}

.marquee-band-two {
  top: 44%;
  transform: rotate(3.5deg);
  opacity: .92;
  background: var(--blue);
}

.marquee-band-three {
  top: 66%;
  transform: rotate(-2deg);
  opacity: .86;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  white-space: nowrap;
  animation: marquee-left 23s linear infinite;
}

.marquee-band-two .marquee-track {
  animation-name: marquee-right;
  animation-duration: 29s;
}

.marquee-band-three .marquee-track {
  animation-duration: 19s;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-size: clamp(23px, 4.18vw, 68px);
  line-height: .9;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.motion-top .marquee-band-one {
  top: 24%;
  transform: rotate(-1.35deg);
}

.motion-top .marquee-track {
  animation-duration: 21s;
}

.motion-bottom .marquee-band-one {
  top: 27%;
  transform: rotate(4.2deg);
}

.motion-bottom .marquee-band-two {
  top: 43%;
  transform: rotate(-5.1deg);
}

.motion-bottom .marquee-track {
  animation-duration: 24s;
}

.motion-bottom .marquee-band-two .marquee-track {
  animation-duration: 34s;
}

.alpha-feature {
  background: #efeee8;
}

.feature-copy p,
.mascot-copy p,
.closing p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}

.proof-list span {
  padding: 8px 10px;
  color: var(--blue);
  background: white;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-image {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
}

.feature-image .image-link,
.feature-image img {
  width: 100%;
}

.feature-image img {
  max-height: 760px;
  object-fit: cover;
}

.product-grid,
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  overflow: hidden;
}

.product-media {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1px;
  background: var(--line);
}

.product-media a,
.dealer-media a {
  display: block;
  min-height: 0;
  padding: 0;
  color: inherit;
  background: white;
}

.product-media a:hover,
.dealer-media a:hover,
.feature-image .image-link:hover,
.hero-visual .image-link:hover {
  opacity: .92;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  background: white;
}

.product-media a:nth-child(2) img {
  object-fit: contain;
  padding: 12px;
}

.product-card > div:not(.product-media) {
  padding: 18px;
}

.product-card p,
.pillar p,
.promise p {
  color: var(--muted);
}

.product-card > div:not(.product-media) a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pillars-section {
  background: var(--white);
}

.proof-panel,
.pack-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
  padding: 18px 20px;
  background:
    linear-gradient(116deg, rgba(34, 48, 255, .1) 0 16%, transparent 16% 100%),
    var(--paper);
  border: 1px solid var(--line);
}

.proof-panel p,
.pack-note p {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 850;
  line-height: 1.34;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.proof-tags span {
  padding: 7px 9px;
  color: var(--blue);
  background: white;
  border: 1px solid var(--blue);
  font-size: 11px;
  font-weight: 950;
}

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

.pillar,
.promise {
  position: relative;
  min-height: 0;
  padding: 18px;
}

.pillar span,
.promise span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 1000;
}

.pillar h3,
.promise h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.mascot-band {
  background: #efeee8;
}

blockquote {
  margin-bottom: 18px;
  padding-left: 16px;
  color: var(--blue);
  border-left: 4px solid var(--blue);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 900;
}

.mascot-card {
  overflow: hidden;
  max-width: 520px;
  justify-self: end;
  background: var(--white);
  border: 1px solid var(--line);
}

.mascot-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pack-note {
  grid-template-columns: 1fr;
  background:
    linear-gradient(90deg, var(--blue) 0 6px, transparent 6px 100%),
    var(--paper);
}

.dealer-section {
  background: var(--white);
}

.dealer-layout {
  display: grid;
  grid-template-columns: minmax(0, .54fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: start;
}

.dealer-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.dealer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dealer-card {
  background: var(--paper);
  border: 1px solid var(--line);
}

.dealer-media {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 1px;
  background: var(--line);
}

.dealer-media img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  background: white;
}

.dealer-media a:nth-child(2) img {
  object-fit: contain;
  padding: 12px;
}

.dealer-card h3 {
  margin: 0;
  padding: 14px;
  color: var(--blue);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.closing {
  padding: clamp(58px, 9vw, 110px) 18px;
  color: white;
  text-align: center;
  background: var(--blue);
}

.closing h2 {
  max-width: 900px;
  margin-inline: auto;
}

.closing .eyebrow,
.closing p {
  color: white;
  margin-inline: auto;
}

.closing .button.primary {
  color: var(--blue);
  background: white;
  border-color: white;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(180px, .48fr) minmax(320px, .95fr);
  gap: clamp(16px, 4vw, 42px);
  padding: clamp(26px, 4.5vw, 52px) clamp(18px, 5vw, 70px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 300px;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: .98;
}

.contact-card {
  display: grid;
  gap: 1px;
  align-self: start;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 13px 16px;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
}

.contact-form label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form textarea {
  width: 100%;
  min-height: 78px;
  resize: vertical;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 0;
}

.contact-form button {
  justify-self: start;
  min-height: 38px;
  padding: 0 15px;
  color: white;
  background: var(--blue);
  border: 1px solid var(--blue);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.contact-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a,
.contact-card address {
  color: var(--ink);
  font-size: clamp(16px, 1.7vw, 22px);
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}

.contact-card .compact-address {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  line-height: 1.45;
}

.contact-card a {
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--blue);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 70px);
  color: #efeee8;
  background: #171717;
  font-size: 12px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-120px); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes deal-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 1100px) {
  .pillar-grid,
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  nav a:not(.shop-link) {
    display: none;
  }

  .hero,
  .manifesto-grid,
  .alpha-feature,
  .mascot-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-meta {
    margin-bottom: 32px;
  }

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

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

  .dealer-layout {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .mascot-card {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .product-grid,
  .pillar-grid,
  .promise-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

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

  .motion-signature {
    height: 230px;
  }

  .motion-top {
    height: 86px;
  }

  .motion-bottom {
    height: 158px;
  }

  .ticker {
    transform: rotate(-1.6deg);
  }

  .marquee-band {
    left: -24vw;
    width: 148vw;
    padding: calc(9px * .95) 0;
  }

  .alpha-swatches {
    grid-template-columns: repeat(3, 56px);
  }

  .alpha-swatches img {
    width: 56px;
    height: 56px;
  }

  h1 {
    font-size: clamp(76px, 26vw, 118px);
  }

  .deal-pop::after {
    top: -11px;
    right: -8px;
    width: 31px;
    height: 31px;
    border-width: 1.5px;
    font-size: 9px;
  }

  .deal-pop-b::after {
    left: -7px;
  }

  .section {
    padding-inline: 14px;
  }

  .proof-panel,
  .pack-note {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .proof-tags {
    justify-content: flex-start;
  }

  .pillar,
  .promise {
    padding: 16px;
  }

  .pillar span,
  .promise span {
    margin-bottom: 12px;
    font-size: 26px;
  }

  .contact-card > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-media {
    grid-template-columns: 1fr;
  }

  .product-media img {
    aspect-ratio: 1 / 1;
  }

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

  .dealer-media {
    grid-template-columns: 1fr;
  }

  .dealer-media img {
    aspect-ratio: 1 / 1;
  }
}
