:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #111111;
  --panel-strong: #191919;
  --line: #303030;
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --orange: #ff6a00;
  --orange-hot: #ff821c;
  --yellow: #ffd21f;
  --brand: linear-gradient(110deg, #ffd21f 0%, #ff9a12 38%, #ff6a00 100%);
  --page: min(1320px, calc(100vw - 48px));
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
}

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

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

.top-ticker {
  background: var(--brand);
  color: #050505;
  font-size: 0.86rem;
  font-weight: 800;
  height: 42px;
  line-height: 1;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
}

.top-ticker-track {
  animation: mobiltecTicker 30s linear infinite;
  display: flex;
  min-width: max-content;
  width: max-content;
}

.top-ticker-set {
  align-items: center;
  display: flex;
  flex: none;
  height: 42px;
}

.top-ticker-set span {
  align-items: center;
  display: inline-flex;
  gap: 28px;
  min-width: max-content;
  padding-inline: 34px;
}

.top-ticker-set span::after {
  background: #050505;
  border-radius: 999px;
  content: "";
  height: 7px;
  opacity: 0.68;
  width: 7px;
}

@keyframes mobiltecTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-ticker-track {
    animation: none;
  }
}

.site-header {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto auto;
  margin: auto;
  min-height: 96px;
  padding: 16px max(24px, calc((100vw - 1320px) / 2));
  position: sticky;
  top: 0;
  z-index: 4;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  background: var(--brand);
  border-radius: 50%;
  display: grid;
  flex: 0 0 58px;
  height: 58px;
  padding: 4px;
  place-items: center;
  position: relative;
  width: 58px;
}

.brand-mark::after {
  background: var(--bg);
  border-radius: 50%;
  content: "";
  inset: 5px;
  position: absolute;
}

.brand-mark span {
  color: var(--text);
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-style: normal;
  line-height: 1;
}

.brand-copy em {
  color: var(--text);
  font-style: normal;
}

.brand-copy strong:not(em),
.brand-copy strong {
  color: var(--orange);
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2vw, 34px);
}

nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--yellow);
}

.header-action,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
}

.header-action,
.button-primary {
  background: var(--orange);
  color: #050505;
}

.header-action:hover,
.button-primary:hover {
  background: var(--orange-hot);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(460px, 1.06fr);
  margin: auto;
  min-height: min(850px, calc(100vh - 42px));
  overflow: hidden;
  width: var(--page);
}

.hero-copy {
  align-self: center;
  grid-column: 1;
  grid-row: 1;
  max-width: 630px;
  padding: 88px 0 132px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.8rem, 5.4vw, 6.6rem);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 770px;
  text-wrap: balance;
}

.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.6;
  max-width: 570px;
}

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

.button-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.button-ghost:hover {
  border-color: var(--yellow);
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  min-height: 720px;
  position: relative;
}

.hero-shot {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.52);
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.hero-shot img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hero-shot-main {
  aspect-ratio: 0.82;
  border-radius: 8px;
  bottom: 54px;
  right: 8%;
  width: min(37vw, 470px);
}

.hero-shot-light {
  aspect-ratio: 0.9;
  border-radius: 8px;
  right: 53%;
  top: 132px;
  width: min(22vw, 270px);
}

.hero-shot-tripod {
  aspect-ratio: 1;
  border-radius: 8px;
  bottom: 118px;
  right: 46%;
  width: min(19vw, 230px);
}

.trust-strip {
  background: var(--brand);
  color: #050505;
  display: grid;
  font-size: clamp(0.92rem, 1.2vw, 1.2rem);
  font-weight: 950;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: auto;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  width: var(--page);
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.12);
  min-height: 82px;
  padding: 30px 12px;
}

.collection {
  margin: auto;
  padding: 112px 0;
  width: var(--page);
}

.section-heading {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 0.55fr);
  margin-bottom: 42px;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 4.2rem);
  line-height: 1;
  margin-bottom: 0;
  text-wrap: balance;
}

.section-heading > p {
  align-self: end;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.08fr repeat(3, minmax(0, 0.72fr));
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  min-height: 540px;
  overflow: hidden;
}

.product-card img {
  background: #f5f5f5;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.product-card.featured {
  background: var(--panel-strong);
  grid-template-rows: minmax(360px, 1fr) auto;
}

.product-copy {
  min-height: 192px;
  padding: 25px;
}

.product-copy span {
  color: var(--yellow);
  display: block;
  font-size: 0.76rem;
  font-weight: 950;
  margin-bottom: 12px;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.3rem, 1.6vw, 2rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.product-copy p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.approval-band {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 210, 31, 0.14), transparent 35%),
    var(--panel-strong);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 44px;
  grid-template-columns: 1.1fr 0.65fr;
  padding: 96px max(24px, calc((100vw - 1320px) / 2));
}

.approval-points {
  display: grid;
  gap: 12px;
}

.approval-points p {
  background: #050505;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  font-weight: 750;
  line-height: 1.4;
  margin: 0;
  padding: 22px;
}

.location-band {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 0.72fr;
  margin: auto;
  padding: 92px 0;
  width: var(--page);
}

.location-band address {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  font-style: normal;
  gap: 10px;
  padding: 34px;
}

.location-band address strong {
  color: var(--yellow);
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  line-height: 1.15;
}

.location-band address span {
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 800;
}

footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: auto;
  min-height: 110px;
  width: var(--page);
}

footer strong {
  color: var(--text);
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  :root {
    --page: min(100vw - 28px, 760px);
  }

  .site-header {
    gap: 14px;
    grid-template-columns: 1fr auto;
    min-height: 88px;
    padding-inline: 14px;
  }

  nav {
    display: none;
  }

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

  .hero-copy {
    grid-column: 1;
    padding: 52px 0 40px;
  }

  .hero-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 560px;
  }

  .hero-shot-main {
    bottom: 24px;
    right: 0;
    width: min(72vw, 440px);
  }

  .hero-shot-light {
    right: auto;
    top: 22px;
    width: min(40vw, 250px);
  }

  .hero-shot-tripod {
    bottom: 64px;
    right: 55%;
    width: min(33vw, 205px);
  }

  .trust-strip,
  .location-band,
  .section-heading,
  .approval-band {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .brand-mark {
    flex-basis: 48px;
    height: 48px;
    width: 48px;
  }

  .brand-copy strong {
    font-size: 1.28rem;
  }

  .brand-copy small,
  .header-action {
    display: none;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4.35rem);
  }

  .hero-media {
    min-height: 440px;
  }

  .hero-shot-main {
    width: min(76vw, 340px);
  }

  .hero-shot-light {
    width: 42vw;
  }

  .hero-shot-tripod {
    right: 53%;
    width: 34vw;
  }

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

  .trust-strip span {
    min-height: 62px;
    padding: 21px 10px;
  }

  .collection {
    padding: 72px 0;
  }

  .product-card,
  .product-card.featured {
    grid-template-rows: minmax(310px, 1fr) auto;
    min-height: 490px;
  }

  .approval-band {
    gap: 32px;
    padding-block: 72px;
  }

  footer {
    align-items: start;
    flex-direction: column;
    justify-content: center;
  }
}
