:root {
  color-scheme: dark;
  --black: #020302;
  --ink: #0b0705;
  --white: #fff8ef;
  --soft: #d8c8bd;
  --muted: #a58d7e;
  --acid: #f08a46;
  --red: #ff6a3f;
  --warm-muted: #d9a077;
  --amber: #ffb238;
  --line: rgba(255, 255, 255, 0.12);
  --rust-line: rgba(228, 123, 61, 0.28);
  --radius: 8px;
  --shadow: 0 36px 110px rgba(0, 0, 0, 0.62);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(228, 123, 61, 0.12), transparent 270px),
    radial-gradient(circle at 88% 32%, rgba(255, 106, 63, 0.08), transparent 320px),
    linear-gradient(180deg, #020302 0%, #0b0705 42%, #020302 100%);
  color: var(--white);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(228, 123, 61, 0.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 178, 56, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, black 0%, transparent 78%);
}

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

h1,
h2,
p,
dl,
dd,
figure {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 3, 2, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.product-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 46px;
  margin: -7px -2px -7px -8px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.12) contrast(1.08)
    drop-shadow(0 0 14px rgba(228, 123, 61, 0.38));
}

.nav-links {
  gap: 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--acid);
}

.scan-alert {
  position: relative;
  z-index: 4;
  width: fit-content;
  max-width: calc(100% - 36px);
  margin: 18px auto -2px;
  padding: 9px 15px;
  border: 1px solid rgba(228, 123, 61, 0.36);
  border-radius: 999px;
  background: rgba(7, 3, 2, 0.82);
  color: #e47b3d;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    0 0 26px rgba(228, 123, 61, 0.18),
    inset 0 0 18px rgba(228, 123, 61, 0.06);
  animation: detectedBlink 1.65s ease-in-out infinite;
}

@keyframes detectedBlink {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(228, 123, 61, 0.54);
  }

  50% {
    opacity: 0.36;
    text-shadow: 0 0 4px rgba(228, 123, 61, 0.18);
  }
}

.hero {
  padding: 10px 12px 28px;
}

.hero-card {
  --hero-accent: #c86532;
  --hero-accent-hot: #f08a46;
  --hero-accent-soft: rgba(200, 101, 50, 0.32);
  --hero-accent-faint: rgba(200, 101, 50, 0.09);
  position: relative;
  isolation: isolate;
  min-height: 630px;
  width: min(100%, 1480px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #050403;
  box-shadow: var(--shadow);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: brightness(0.9) contrast(1.1) saturate(1.04);
}

.hero-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(ellipse at 74% 54%, rgba(228, 123, 61, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(2, 3, 2, 0.96) 0%, rgba(2, 3, 2, 0.86) 34%, rgba(2, 3, 2, 0.3) 68%, rgba(2, 3, 2, 0.74) 100%),
    linear-gradient(180deg, rgba(2, 3, 2, 0.6) 0%, rgba(2, 3, 2, 0.3) 44%, rgba(2, 3, 2, 0.88) 100%);
}

.hero-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(var(--hero-accent-faint) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 101, 50, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 58%, rgba(228, 123, 61, 0.18) 58% 58.1%, transparent 58.1%);
  background-size: 44px 44px, 44px 44px, auto;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

.hero-content {
  display: flex;
  min-height: 630px;
  max-width: 700px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 20px 126px;
  text-align: left;
}

.eyebrow {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-copy .eyebrow,
.cta-section .eyebrow {
  margin-bottom: 12px;
}

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h1 {
  max-width: 760px;
  font-size: 2.12rem;
  font-weight: 950;
}

h2 {
  max-width: 760px;
  font-size: 2rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-copy p {
  max-width: 620px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero-intro {
  max-width: 570px;
  margin-top: 18px;
  color: var(--warm-muted);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.45;
}

.hero-points {
  display: grid;
  max-width: 590px;
  gap: 9px;
  margin-top: 18px;
}

.hero-points span {
  position: relative;
  display: block;
  padding-left: 16px;
  border-left: 2px solid rgba(240, 138, 70, 0.74);
  color: rgba(255, 248, 239, 0.94);
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
  font-weight: 950;
  line-height: 1.22;
  text-shadow: 0 0 24px rgba(240, 138, 70, 0.14);
}

.hero-points span:last-child {
  color: #ffd9bd;
  border-left-color: var(--acid);
}

.hero-actions,
.product-actions {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.08;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.btn-primary {
  background: var(--acid);
  color: #170704;
  box-shadow: 0 0 38px rgba(228, 123, 61, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-card .btn-primary {
  background: var(--hero-accent-hot);
  color: #170704;
  box-shadow: 0 0 38px var(--hero-accent-soft);
}

.hero-card .btn-secondary {
  border-color: rgba(228, 123, 61, 0.36);
  background: rgba(60, 26, 12, 0.34);
}

.apparel-status span,
.spread-stats dt,
.spread-label {
  color: var(--muted);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apparel-status strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 1.2rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.landing-section {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  scroll-margin-top: 86px;
}

.landing-section::before,
.landing-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.landing-section::before {
  z-index: -2;
}

.landing-section::after {
  z-index: -1;
}

.section-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 64px 20px 34px;
}

.why-section {
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 178, 56, 0.22), transparent 360px),
    radial-gradient(circle at 78% 58%, rgba(228, 123, 61, 0.24), transparent 430px),
    linear-gradient(135deg, #1c0d06 0%, #2a1208 46%, #110704 100%);
}

.why-section::before {
  background:
    linear-gradient(rgba(255, 178, 56, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 178, 56, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.56;
}

.why-section::after {
  background:
    linear-gradient(90deg, rgba(19, 7, 3, 0.68), rgba(68, 28, 10, 0.2), rgba(15, 6, 3, 0.78)),
    linear-gradient(145deg, transparent 0 54%, rgba(255, 178, 56, 0.18) 54% 54.14%, transparent 54.14%);
}

.why-copy {
  display: grid;
  max-width: 560px;
  gap: 12px;
  color: #ffc18f !important;
  font-size: 1.04rem;
  font-weight: 720;
  line-height: 1.45;
}

.why-copy span {
  display: block;
  padding-left: 16px;
  border-left: 2px solid rgba(240, 138, 70, 0.58);
}

.why-copy span:first-child {
  color: #fff3e4;
  font-weight: 900;
}

.shirt-stage {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 0 20px 54px;
}

.shirt-stage::before {
  position: absolute;
  inset: 10% 0 6%;
  z-index: -1;
  display: block;
  content: "";
  background:
    radial-gradient(ellipse at 52% 52%, rgba(255, 178, 56, 0.18), transparent 62%),
    radial-gradient(ellipse at 50% 72%, rgba(228, 123, 61, 0.18), transparent 52%);
  filter: blur(2px);
}

.shirt-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(30, 12, 5, 0.9), transparent 18%, transparent 82%, rgba(18, 7, 3, 0.92)),
    linear-gradient(180deg, rgba(31, 12, 5, 0.78), transparent 22%, transparent 72%, rgba(15, 6, 3, 0.86));
}

.shirt-stage img {
  position: relative;
  z-index: 0;
  width: min(100%, 780px);
  margin: 0 auto;
  opacity: 0.9;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at 52% 54%, #000 0 58%, transparent 82%);
  mask-image: radial-gradient(ellipse at 52% 54%, #000 0 58%, transparent 82%);
  filter: sepia(0.18) saturate(1.18) brightness(0.92) contrast(1.1)
    drop-shadow(0 36px 70px rgba(0, 0, 0, 0.6));
}

.spread-section {
  background: #060403;
}

.spread-section::before {
  background:
    radial-gradient(circle at 72% 48%, rgba(200, 101, 50, 0.18), transparent 340px),
    radial-gradient(circle at 36% 78%, rgba(255, 178, 56, 0.1), transparent 280px),
    linear-gradient(rgba(200, 101, 50, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 101, 50, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.spread-section::after {
  background:
    linear-gradient(90deg, rgba(2, 3, 2, 0.95), rgba(2, 3, 2, 0.28), rgba(2, 3, 2, 0.75)),
    linear-gradient(32deg, transparent 0 64%, rgba(228, 123, 61, 0.1) 64% 64.16%, transparent 64.16%);
}

.region-note {
  color: #d9a077 !important;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spread-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 10px;
}

.spread-stats div {
  flex: 1 1 86px;
  min-width: 84px;
  max-width: 128px;
  padding-left: 12px;
  border-left: 1px solid rgba(228, 123, 61, 0.32);
}

.spread-stats dt {
  display: block;
  min-height: 2.25em;
  line-height: 1.12;
  letter-spacing: 0.08em;
}

.spread-stats dd {
  color: #f08a46;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

#branchStat {
  color: #ff4d42;
  text-shadow: 0 0 18px rgba(255, 77, 66, 0.32);
}

.spread-field {
  position: relative;
  min-height: 430px;
  margin: 0 20px 54px;
  overflow: hidden;
  border: 1px solid rgba(228, 123, 61, 0.2);
  border-radius: var(--radius);
  background: #090604;
  cursor: grab;
  touch-action: none;
  user-select: none;
  box-shadow:
    inset 0 0 52px rgba(0, 0, 0, 0.52),
    0 28px 88px rgba(0, 0, 0, 0.38);
}

.spread-field:active {
  cursor: grabbing;
}

.map-instructions {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(228, 123, 61, 0.24);
  border-radius: 7px;
  background: rgba(3, 2, 1, 0.72);
  backdrop-filter: blur(14px);
}

.map-instructions span,
.map-instructions strong {
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.map-instructions span {
  color: var(--muted);
}

.map-instructions strong {
  color: #f08a46;
}

.map-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 108%;
  height: 108%;
  transform: translate3d(
    calc(-50% + var(--map-x, 0px)),
    calc(-50% + var(--map-y, 0px)),
    0
  );
  transition: filter 180ms ease;
  will-change: transform;
}

.spread-field.is-dragging .map-canvas {
  filter: brightness(1.08);
}

.map-canvas img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  pointer-events: none;
  filter: saturate(1.02) contrast(1.04);
}

.map-canvas::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(0, 0, 0, 0.24) 82%),
    linear-gradient(rgba(228, 123, 61, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228, 123, 61, 0.022) 1px, transparent 1px);
  background-size: auto, 68px 68px, 68px 68px;
}

.map-node {
  position: absolute;
  display: block;
}

.map-node {
  z-index: 3;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #f08a46;
  box-shadow:
    0 0 14px rgba(240, 138, 70, 0.9),
    0 0 34px rgba(240, 138, 70, 0.38);
  transform: translate(-50%, -50%);
}

.map-node::before {
  position: absolute;
  inset: -18px;
  content: "";
  border: 1px solid rgba(240, 138, 70, 0.6);
  border-radius: 999px;
  animation: mapPulse 2.4s ease-out infinite;
}

.map-node span {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255, 245, 230, 0.42);
  border-radius: inherit;
  animation: nodeBlink 1.3s ease-in-out infinite;
}

.map-node-origin {
  top: 56%;
  left: 38%;
  width: 22px;
  height: 22px;
  background: #fff2dd;
  box-shadow:
    0 0 16px rgba(255, 242, 221, 0.9),
    0 0 48px rgba(240, 138, 70, 0.62);
}

.map-node-la {
  top: 62%;
  left: 27%;
}

.map-node-chicago {
  top: 51%;
  left: 52%;
}

.map-node-newyork {
  top: 51%;
  left: 65%;
}

.map-node-atlanta {
  top: 63%;
  left: 56%;
}

@keyframes mapPulse {
  from {
    opacity: 0.75;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(2.6);
  }
}

@keyframes nodeBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.34;
  }
}

.spread-label {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 4;
  color: #f08a46;
  pointer-events: none;
}

.product-section {
  background: #050302;
}

.product-section::before {
  background-image:
    linear-gradient(90deg, rgba(228, 123, 61, 0.1), transparent 44%),
    url("/assets/landing-images/infected-back-spine-detail-v6-canva.png");
  background-position: center;
  background-size: cover;
  opacity: 0.18;
  filter: brightness(0.92) contrast(1.08);
}

.product-section::after {
  background:
    linear-gradient(90deg, rgba(2, 3, 2, 0.92), rgba(2, 3, 2, 0.4), rgba(2, 3, 2, 0.96)),
    linear-gradient(135deg, transparent 0 52%, rgba(228, 123, 61, 0.12) 52% 52.16%, transparent 52.16%);
}

.product-stage {
  min-height: 430px;
  overflow: hidden;
}

.product-stage img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  filter: brightness(0.94) contrast(1.08);
}

.apparel-status {
  display: grid;
  width: min(100%, 320px);
  gap: 4px;
  margin-top: 8px;
  padding-top: 15px;
  border-top: 1px solid var(--rust-line);
}

.cta-section {
  display: grid;
  min-height: 480px;
  place-items: center;
  padding: 68px 20px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(228, 123, 61, 0.16), transparent 300px),
    linear-gradient(180deg, #070403, #010201);
}

.cta-section img {
  width: min(210px, 52vw);
  margin-bottom: 12px;
  opacity: 0.88;
  filter: brightness(1.08) contrast(1.08)
    drop-shadow(0 0 34px rgba(228, 123, 61, 0.34));
  mix-blend-mode: screen;
}

.cta-section h2 {
  margin-bottom: 24px;
}

.site-footer {
  min-height: 80px;
  padding: 24px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer span {
  width: 100%;
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    font-size: 0.78rem;
    text-align: center;
  }

  .nav-links a:first-child {
    text-align: left;
  }

  .nav-links a:last-child {
    text-align: right;
  }

  .hero-actions,
  .product-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .btn,
  .product-actions .btn {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-content {
    max-width: 318px;
    padding-top: 42px;
  }

  h1,
  .hero-intro,
  .hero-points {
    max-width: 306px;
  }

  h1 {
    font-size: 1.78rem;
    line-height: 1.02;
  }

  .hero-intro {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .hero-points {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-points span {
    padding-left: 12px;
    font-size: 0.96rem;
    line-height: 1.18;
  }

  h2 {
    font-size: 1.72rem;
    line-height: 1.04;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .section-copy p {
    max-width: 318px;
  }

  .cta-section h2 {
    max-width: 280px;
    font-size: 1.58rem;
  }
}

@media (min-width: 640px) {
  .site-header,
  .site-footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero {
    padding: 12px 20px 34px;
  }

  .hero-content {
    padding: 62px 44px 120px;
  }

  h1 {
    max-width: 540px;
    font-size: 3.18rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .section-copy {
    padding-right: 44px;
    padding-left: 44px;
  }
}

@media (min-width: 860px) {
  .site-header,
  .site-footer {
    padding-right: 52px;
    padding-left: 52px;
  }

  .hero {
    padding: 26px 36px 46px;
  }

  .hero-card,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    padding: 72px 64px;
  }

  h1 {
    max-width: 540px;
    font-size: 3.28rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .why-section h2 {
    max-width: 430px;
    font-size: 2.72rem;
    line-height: 1.04;
  }

  .landing-section {
    min-height: 700px;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    align-items: center;
  }

  .product-section {
    grid-template-columns: minmax(460px, 1fr) minmax(0, 0.72fr);
  }

  .section-copy {
    padding: 88px 64px;
  }

  .shirt-stage,
  .spread-field,
  .product-stage {
    min-height: 700px;
    margin: 0;
    padding: 0;
  }

  .shirt-stage {
    align-items: center;
    padding-right: 48px;
  }

  .shirt-stage img {
    width: min(100%, 840px);
  }

  .spread-field {
    height: 100%;
  }

  .product-stage {
    height: 100%;
  }

  .product-stage img {
    min-height: 700px;
  }

  .site-footer span {
    width: auto;
    margin-right: auto;
  }
}

@media (min-width: 1180px) {
  h1 {
    max-width: 540px;
    font-size: 3.42rem;
  }

  h2 {
    font-size: 3.8rem;
  }

  .why-section h2 {
    max-width: 520px;
    font-size: 3.24rem;
  }

  .hero-content {
    max-width: 760px;
  }
}

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