:root {
  --black: #000;
  --white: #fff;
  --off-white: #ededed;
  --light-gray: #e9e9e9;
  --mid-gray: #b8b8b8;
  --text-dark: #101010;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  overflow-x: clip;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: var(--black);
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 22px 16px 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--off-white);
}

.logo {
  width: 33px;
  height: 23px;
  flex: 0 0 auto;
}

.brand-name {
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.desktop-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(250px, 19vw, 330px);
  right: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 56px);
}

.desktop-nav a {
  text-decoration: none;
  color: var(--off-white);
  font-size: clamp(12px, 0.82vw, 15px);
  letter-spacing: 0;
  line-height: 1;
}

.nav-cta {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  display: flex;
  align-items: center;
}

.nav-cta a {
  text-decoration: none;
  color: var(--off-white);
  font-size: clamp(12px, 0.82vw, 15px);
  letter-spacing: 0;
  line-height: 1;
}

.nav-link {
  position: relative;
  display: inline-block;
}

.nav-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.nav-link:hover .nav-underline {
  transform: scaleX(1);
  transform-origin: left center;
}

.mobile-menu-button {
  display: none;
  position: relative;
  height: 20px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
}

.menu-toggle-text {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 400ms cubic-bezier(0.33, 1, 0.68, 1);
}

.menu-toggle-text span {
  height: 20px;
}

body.menu-open .menu-toggle-text {
  transform: translateY(-50%);
}

.mobile-menu {
  position: fixed;
  inset: 74px 0 auto;
  z-index: 55;
  background: rgba(5, 5, 5, 0.98);
  height: calc(100vh - 74px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.mobile-menu nav {
  height: 100%;
  padding: 150px 18px 42px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu a {
  font-size: 48px;
  line-height: 1;
  text-decoration: none;
  color: var(--off-white);
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

main {
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  place-items: center;
  padding: 102px 12px 0;
  text-align: center;
}

.hero-copy {
  width: min(100%, 900px);
  transform: translateY(-1vh);
}

.hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(38px, 3.95vw, 80px);
  line-height: 0.85;
  letter-spacing: -0.034em;
}

.hero h1 span {
  display: block;
}

.hero-subline {
  margin: 24px 0 0;
  font-size: clamp(12px, 0.76vw, 15px);
  line-height: 1.2;
}

.hero-subline a {
  text-decoration: underline;
}

.feature-video {
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 4vh 12px 0;
}

.feature-video video {
  width: min(31vw, 500px);
  min-width: 320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hq-video {
  position: relative;
  height: 90vh;
  min-height: 720px;
}

.hq-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.hq-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 26px 18px 22px;
  text-align: center;
}

.hq-overlay p {
  margin: 0;
  font-size: clamp(14px, 1vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

.hq-overlay h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(52px, 6vw, 142px);
  line-height: 0.86;
  letter-spacing: -0.035em;
}

.growth {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 100px 18px 98px;
}

.growth h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(54px, 5vw, 136px);
  line-height: 0.83;
  letter-spacing: -0.035em;
}

.growth p {
  margin: 72px auto 0;
  max-width: 1020px;
  font-size: clamp(22px, 1.9vw, 52px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.growth p + p {
  margin-top: 62px;
}

.role-chips {
  margin: 66px auto 0;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.role-chips button {
  border: 0;
  border-radius: 22px;
  background: #dfdfdf;
  color: #101010;
  padding: 18px 28px;
  font-size: clamp(16px, 1.45vw, 30px);
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
}

.media-wall {
  background: var(--light-gray);
  padding: 58px 0 40px;
  display: grid;
  gap: 40px;
  overflow: hidden;
}

.media-row {
  overflow: hidden;
}

.media-track {
  width: max-content;
  display: flex;
  gap: 100px;
  padding: 0 24px;
  animation-duration: 54s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.media-track img {
  width: 194px;
  height: 194px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
}

.marquee-left .media-track {
  animation-name: marqueeLeft;
}

.marquee-right .media-track {
  animation-name: marqueeRight;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 0 40px 40px;
}

.footer-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: start;
  padding-top: 40px;
}

.footer-brand {
  grid-column: span 6;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
}

.footer-wordmark {
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.05;
  font-weight: 500;
}

.footer-address {
  grid-column: span 3;
  margin: 0;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}

.footer-address p {
  margin: 0;
}

.footer-nav {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  position: relative;
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: end;
}

.footer-credit {
  grid-column: span 6;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-box {
  grid-column: span 6;
}

.subscribe-box h3 {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 32px);
  font-weight: 400;
  line-height: 1.1;
}

.subscribe-row {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.subscribe-box label {
  flex: 1;
}

.subscribe-box input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--white);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1;
}

.subscribe-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-box button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: color 200ms ease;
}

.subscribe-box button:hover {
  color: var(--white);
}

.subscribe-rule {
  margin-top: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

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

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-35%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .site-header {
    height: 66px;
  }

  .nav-bar {
    height: 66px;
    padding-top: 16px;
  }

  .brand-name {
    display: none;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: 83vh;
    padding-top: 92px;
    place-items: center;
    text-align: center;
    padding-left: 6%;
    padding-right: 4%;
  }

  .hero-copy {
    width: 88%;
    max-width: 520px;
    transform: translateY(-2vh);
  }

  .hero h1 {
    font-size: clamp(36px, 7.2vw, 50px);
    letter-spacing: -0.045em;
    line-height: 0.88;
  }

  .hero-subline {
    margin-top: 18px;
    font-size: clamp(12px, 3.2vw, 16px);
  }

  .feature-video {
    min-height: 70vh;
    padding: 16px 16px 0;
  }

  .feature-video video {
    width: min(72vw, 390px);
    min-width: 260px;
  }

  .hq-video {
    height: 94vh;
    min-height: 600px;
  }

  .hq-overlay {
    padding: 28px 14px 18px;
  }

  .hq-overlay h2 {
    font-size: clamp(34px, 12vw, 76px);
  }

  .growth {
    padding: 58px 18px 62px;
  }

  .growth h2 {
    font-size: clamp(44px, 10.8vw, 64px);
    line-height: 0.88;
  }

  .growth p {
    margin-top: 42px;
    max-width: 470px;
    font-size: clamp(22px, 6.1vw, 32px);
    line-height: 1.02;
  }

  .growth p + p {
    margin-top: 38px;
  }

  .role-chips {
    margin-top: 42px;
    max-width: 96%;
    gap: 8px;
  }

  .role-chips button {
    padding: 10px 15px;
    font-size: clamp(12px, 2.6vw, 14px);
    border-radius: 99px;
    font-weight: 500;
  }

  .media-wall {
    gap: 20px;
    padding: 24px 0 20px;
  }

  .media-track {
    gap: 20px;
    padding-inline: 12px;
    animation-duration: 38s;
  }

  .media-track img {
    width: 148px;
    height: 148px;
    border-radius: 8px;
  }

  .site-footer {
    padding: 0 18px 32px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 28px;
  }

  .footer-brand,
  .footer-address,
  .footer-nav,
  .footer-credit,
  .subscribe-box {
    grid-column: span 2;
  }

  .footer-wordmark {
    font-size: 20px;
  }

  .footer-bottom {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
    align-items: start;
  }

  .footer-credit {
    order: 2;
    margin-top: 28px;
  }

  .subscribe-box h3 {
    font-size: clamp(18px, 5.0vw, 24px);
    line-height: 1.08;
  }

  .subscribe-row {
    margin-top: 28px;
    align-items: flex-end;
    gap: 10px;
  }

  .subscribe-box input {
    font-size: clamp(14px, 3.8vw, 18px);
  }

  .subscribe-box button {
    font-size: clamp(12px, 3.2vw, 15px);
  }
}

@media (min-width: 1500px) {
  .hero-copy {
    max-width: 920px;
  }

  .desktop-nav {
    left: clamp(280px, 20vw, 360px);
  }

  .hero h1 {
    font-size: 73px;
    line-height: 0.85;
    letter-spacing: -0.033em;
  }

  .hero-subline {
    font-size: 14px;
    margin-top: 22px;
  }
}

@media (min-width: 1280px) and (max-width: 1499px) {
  .brand-name,
  .desktop-nav a {
    font-size: 14px;
  }

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

  .hero h1 {
    font-size: 66px;
  }

  .hero-subline {
    font-size: 14px;
    margin-top: 20px;
  }
}

/* ============================================================
   STATEMENT / TEXT SECTION
   ============================================================ */
.statement-section {
  background: var(--black);
  color: var(--white);
  padding: 62px 48px 100px;
}

.statement-label {
  margin: 0 0 90px;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 24px;
  line-height: 1.4;
}

.section-roman {
  display: inline-flex;
  width: 20px;
  flex-shrink: 0;
}

.statement-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.statement-heading {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.statement-text {
  max-width: 560px;
}

.statement-text p {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1.6;
  opacity: 0.9;
}

.statement-text p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   PRODUCT GRID SECTION
   ============================================================ */
.product-grid {
  background: var(--black);
  color: var(--white);
  padding: 0 40px 80px;
}

.product-grid-header {
  position: relative;
  padding-top: 24px;
}

.product-grid-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.product-grid-label {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 96px;
}

.product-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-cell {
  display: block;
  text-decoration: none;
  color: var(--white);
  transition: opacity 300ms ease;
}

.product-cell:hover {
  opacity: 0.8;
}

.product-cell-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-index {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.product-arrow {
  font-size: 28px;
  line-height: 1;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.product-cell:hover .product-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.product-name {
  margin-top: 20px;
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.4;
  font-weight: 400;
}

.product-cell-img {
  position: relative;
  margin-top: 14px;
  aspect-ratio: 327 / 404;
  overflow: hidden;
  background: #111;
}

.product-cell-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   NEWS REEL SECTION
   ============================================================ */
.news-reel {
  background: var(--white);
  color: var(--text-dark);
  padding: 48px 40px 80px;
}

.news-reel-title {
  margin: 0 0 30px;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.news-reel-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.news-reel-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  display: block;
}

.news-reel-link:hover .news-reel-underline {
  transform: scaleX(1);
  transform-origin: left center;
}

.news-reel-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -40px;
  padding: 0 40px;
}

.news-reel-scroll::-webkit-scrollbar {
  display: none;
}

.news-reel-track {
  display: flex;
  gap: 20px;
  min-width: max-content;
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: clamp(260px, 21vw, 327px);
  text-decoration: none;
  color: var(--text-dark);
  padding-left: 10px;
}

.news-card-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.news-card-top-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.news-date {
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
  font-weight: 400;
}

.news-arrow {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 28px;
  line-height: 1;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 300ms ease, transform 300ms ease;
  color: var(--text-dark);
}

.news-card:hover .news-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.news-card-heading {
  margin: 220px 0 0;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1.08;
}

.news-card-bottom {
  margin-top: auto;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-card-category {
  font-size: 12px;
  line-height: 1.08;
  color: rgba(0, 0, 0, 0.5);
}

.news-card-thumb {
  position: relative;
  aspect-ratio: 445 / 350;
  width: 100%;
  overflow: hidden;
  background: #e0e0e0;
}

.news-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS (≤ 1024 px)
   ============================================================ */
@media (max-width: 1024px) {
  .statement-section {
    padding: 44px 18px 64px;
  }

  .statement-label {
    margin-bottom: 52px;
    font-size: 13px;
    gap: 16px;
  }

  .statement-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .statement-heading {
    font-size: clamp(28px, 6.5vw, 42px);
  }

  .statement-text p {
    font-size: clamp(14px, 3.6vw, 17px);
    margin-bottom: 20px;
  }

  /* Product grid → 2 columns on tablet */
  .product-grid {
    padding: 0 18px 52px;
  }

  .product-grid-label {
    font-size: 13px;
    gap: 16px;
    margin-bottom: 52px;
  }

  .product-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* News reel */
  .news-reel {
    padding: 36px 18px 52px;
  }

  .news-reel-title {
    font-size: clamp(20px, 4vw, 26px);
  }

  .news-reel-scroll {
    margin: 0 -18px;
    padding: 0 18px;
  }

  .news-card {
    width: 260px;
  }

  .news-card-heading {
    margin-top: 160px;
    font-size: clamp(16px, 4vw, 20px);
  }

  .news-card-bottom {
    padding-top: 40px;
  }
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS (≤ 480 px)
   ============================================================ */
@media (max-width: 480px) {
  /* Product grid → single column on mobile */
  .product-grid-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-card {
    width: 240px;
  }

  .news-card-heading {
    margin-top: 120px;
    font-size: clamp(15px, 5vw, 18px);
  }
}