/* ==========================================================
   home.css — Vanguard Safety Sneakers
   Core-First, Fluid-Responsive, GSAP-ready
   ========================================================== */

/* ──────────────────────────────────────────────────────────
   GLOBAL STRUCTURAL FIXES
   overflow: clip is the definitive fix for double scrollbars
   caused by the shoe scaling beyond its parent bounds.
   Unlike overflow: hidden, clip NEVER creates a scroll context.
   ────────────────────────────────────────────────────────── */

html,
body,
.body {
  overflow-x: hidden;
  cursor: none;
  /* Hide default for custom HUD experience */
}

a,
button,
.button,
input,
select,
textarea {
  cursor: none !important;
  /* Keep it custom even on links */
}

/* =========================================
   CUSTOM TACTICAL HUD CURSOR
   ========================================= */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.cursor_ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--vanguard-yellow);
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor_dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--vanguard-white);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.page-wrapper {
  position: relative;
  overflow: clip !important;
}

.main-wrapper {
  position: relative;
}

/* GLOBAL IMPACT RESET */
h1,
h2,
h3,
h4,
.impact-text,
[style*="font-family: Impact"] {
  font-weight: normal !important;
}

.impact-text {
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

/* FLUID RESPONSIVE UTILITIES */
.max-width-medium {
  width: 100%;
  max-width: clamp(20rem, 60%, 36rem);
  /* Fluid responsive max-width */
}

.padding-fluid-huge {
  padding-top: clamp(2rem, 6vh, 6rem);
  padding-bottom: clamp(2rem, 6vh, 6rem);
}

/* ==========================================================
   SECTION 1: HERO
   ========================================================== */

.section_hero {
  position: relative;
  padding: 2rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--vanguard-bg);
  z-index: 10;
}

.hero_layout {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero_top {
  align-self: flex-start;
  z-index: 2;
}

.hero_bottom {
  align-self: flex-end;
  z-index: 4;
}

/* ── Layer 1: Ghost Text ── */
.hero_ghost-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(var(--core-fluid-font-size) * 35.29);
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: #1C1C1C;
  opacity: 0.4;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

/* ── Layer 2: Main Content ── */
.hero_content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero_heading {
  font-size: calc(var(--core-fluid-font-size) * 11.29);
  color: var(--vanguard-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: normal;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero_subheading {
  font-size: calc(var(--core-fluid-font-size) * 3.3);
  color: var(--vanguard-gray);
  line-height: 1;
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: normal;
}

.hero_button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background-color: var(--vanguard-yellow);
  color: #000;
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: normal;
  font-size: calc(var(--core-fluid-font-size) * 1.17);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--vanguard-yellow);
  border-radius: 4px;
  /* More modern than 10px */
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.hero_button:hover {
  background-color: #1a1a1a;
  color: var(--vanguard-yellow);
  border-color: var(--vanguard-yellow);
  letter-spacing: 0.15em;
  box-shadow: 0 0 30px rgba(255, 192, 0, 0.2);
}

.hero_button:hover::before {
  left: 100%;
}

/* ── Layer 3: Floating Product (GSAP animated) ── */
.hero_product-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(20rem, calc(var(--core-fluid-font-size) * 60), 60rem);
  display: flex;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}

.hero_product-image {
  width: 100%;
  height: auto;
  transform: rotate(-40deg);
  object-fit: contain;
  display: block;
}

/* ── Layer 4: Bottom Text + Icons ── */
.hero_floating-text-wrapper {
  position: relative;
  margin-right: -5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero_bottom-text {
  font-size: calc(var(--core-fluid-font-size) * 9.4);
  color: var(--vanguard-yellow);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero_icons-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero_icon {
  height: 3.5rem;
  width: auto;
  max-width: 3.5rem;
}

/* ── Hero Responsive ── */

@media screen and (max-width: 1850px) {
  .hero_floating-text-wrapper {
    margin-right: 0;
  }
}

@media screen and (max-width: 991px) {

  /* HIDE CUSTOM HUD CURSOR ON TOUCH DEVICES */
  .custom-cursor {
    display: none !important;
  }

  html,
  body,
  .body,
  a,
  button,
  .button,
  input,
  select,
  textarea {
    cursor: auto !important;
  }

  .hero_layout {
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero_top,
  .hero_bottom {
    align-self: center;
  }

  .hero_content {
    max-width: 100%;
    align-items: center;
    text-align: center;
    z-index: 4;
  }

  .hero_heading {
    font-size: calc(var(--core-fluid-font-size) * 8.5);
  }

  .hero_subheading {
    max-width: 100%;
  }

  .hero_product-wrapper {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 10;
    width: 90%;
    max-width: 45rem;
    height: auto;
    margin: 2rem auto -5rem auto;
    display: flex;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hero_product-image {
    transform: rotate(-40deg);
  }

  .hero_floating-text-wrapper {
    align-items: center;
    margin-top: 5rem;
    margin-right: 0;
    text-align: center;
  }

  .hero_icons-wrapper {
    margin-right: 0;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .hero_heading {
    font-size: calc(var(--core-fluid-font-size) * 7);
  }

  .hero_subheading {
    font-size: calc(var(--core-fluid-font-size) * 2.6);
  }

  .hero_product-wrapper {
    width: 85%;
    max-width: 36rem;
    margin-bottom: -3rem;
  }
}

@media screen and (max-width: 479px) {
  .hero_heading {
    font-size: calc(var(--core-fluid-font-size) * 6);
  }

  .hero_bottom-text {
    font-size: calc(var(--core-fluid-font-size) * 4);
    white-space: normal;
    text-align: center;
  }

  .hero_ghost-text {
    font-size: clamp(8rem, 25vw, 15rem);
    max-width: 90vw;
    overflow: hidden;
  }

  .hero_product-wrapper {
    width: 90%;
    max-width: 30rem;
  }
}

/* ==========================================================
   SECTION 2: FEATURES
   ========================================================== */

.section_features {
  position: relative;
  background-color: var(--vanguard-bg);
  color: var(--vanguard-white);
  overflow: hidden;
}

.features_layout {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: auto;
}

/* ── Left Column: Visual + Landing Zone ── */
.features_visual-column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45%;
  padding-right: 4rem;
  z-index: 2;
}

.features_ghost-text {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: calc(var(--core-fluid-font-size) * 25);
  color: #1C1C1C;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}

/* GSAP Landing Zone — shoe animates to center of this div */
.features_shoe-landing {
  position: relative;
  width: 100%;
  height: 20rem;
  margin-left: 5rem;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Right Column: Specs ── */
.features_specs-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 45%;
  z-index: 2;
}

.features_spec-block {
  border-left: 2px solid var(--vanguard-yellow);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Features Typography ── */
.features_h2,
.features_h3 {
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: normal;
  font-size: calc(var(--core-fluid-font-size) * 4.7);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: break-word;
  margin: 0;
}

.features_h2 {
  color: var(--vanguard-yellow);
}

.features_h3 {
  color: var(--vanguard-white);
}

.features_h3-small {
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: normal;
  font-size: calc(var(--core-fluid-font-size) * 3);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--vanguard-white);
  margin: 0;
}

.features_label-small,
.features_spec-label {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: calc(var(--core-fluid-font-size) * 0.75);
  color: var(--vanguard-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.features_label-large,
.features_spec-subheading {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: calc(var(--core-fluid-font-size) * 1.17);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features_label-large {
  color: var(--vanguard-white);
}

.features_spec-subheading {
  color: var(--vanguard-yellow);
}

.features_spec-body {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: calc(var(--core-fluid-font-size) * 1.17);
  color: var(--vanguard-gray);
  line-height: 1.5;
  max-width: 100%;
  margin: 0;
}

.features_certs-wrapper {
  display: flex;
  align-items: center;
}

.features_cert-icon {
  height: 2.5rem;
  width: auto;
}

.features_cert-text {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: calc(var(--core-fluid-font-size) * 1);
  color: var(--vanguard-gray);
}

/* ── Features Responsive ── */

@media screen and (max-width: 991px) {
  .features_layout {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
  }

  .features_visual-column,
  .features_specs-column {
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .features_visual-column {
    padding-right: 0;
    margin-bottom: 4rem;
  }

  .features_shoe-landing {
    height: 30vh;
    margin-left: 0;
    margin-bottom: 2rem;
  }

  .features_spec-block {
    align-items: center;
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 192, 0, 0.25);
    padding-bottom: 2rem;
  }

  .features_spec-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .features_spec-body {
    max-width: 100%;
  }

  .features_ghost-text {
    font-size: clamp(8rem, 20vw, 15rem);
    left: 50%;
  }
}

@media screen and (max-width: 767px) {

  .features_h2,
  .features_h3 {
    font-size: calc(var(--core-fluid-font-size) * 3.5);
  }

  .features_shoe-landing {
    height: 25vh;
  }
}

@media screen and (max-width: 479px) {

  .features_h2,
  .features_h3 {
    font-size: calc(var(--core-fluid-font-size) * 3);
  }

  .features_shoe-landing {
    height: 20vh;
    margin-bottom: 1rem;
  }
}

/* ==========================================================
   SECTION 3: ARMOR DEEP DIVE
   ========================================================== */

.section_armor {
  position: relative;
  background-color: var(--vanguard-bg);
  color: var(--vanguard-white);
  padding-bottom: 10rem;
  /* Extra bottom padding houses the magnified shoe without triggering a scrollbar.
     overflow: clip on .page-wrapper handles all content clipping. */
}

.armor_layout {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: auto;
  overflow: hidden;
}

/* ── Left Column: Text Content ── */
.armor_content-column {
  width: 50%;
  position: relative;
  z-index: 2;
}

/* ── Right Column: Visual / Landing Zone ── */
.armor_visual-column {
  width: 45%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.armor_ghost-text {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: calc(var(--core-fluid-font-size) * 35);
  color: #1C1C1C;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}

/* GSAP Landing Zone — shoe magnifies and locks here */
.armor_shoe-landing {
  position: relative;
  width: 100%;
  height: 45rem;
  margin-right: -25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Armor Spec Rows ── */
.armor_spec-row {
  display: flex;
  align-items: flex-end;
  border-left: 2px solid var(--vanguard-yellow);
  padding-left: 2rem;
}

.armor_spec-label-group {
  flex: 0 0 auto;
  min-width: auto;
  padding-bottom: 0.5rem;
  /* Optical shift: aligns Impact baseline with Sora body text */
}

.armor_spec-desc {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 2rem;
}

/* ── Armor Responsive ── */

@media screen and (max-width: 991px) {
  .armor_layout {
    flex-direction: column;
    gap: 2rem;
  }

  .armor_visual-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .armor_content-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .armor_max-width-tablet {
    width: 100%;
    max-width: clamp(20rem, 60%, 36rem) !important;
    margin-left: auto;
    margin-right: auto;
  }

  /* Centering Paragraph & Max-Width elements on Tablet */
  .armor_content-column .max-width-medium {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .armor_content-column .features_heading-group {
    align-items: center;
  }

  .armor_spec-row {
    flex-direction: column;
    align-items: center;
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 192, 0, 0.25);
    padding-bottom: 2rem;
  }

  .armor_spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .armor_spec-label-group {
    min-width: auto;
    margin-bottom: 0.5rem;
    align-items: center;
    padding-bottom: 0;
    text-align: center;
  }

  .armor_spec-desc {
    align-items: center;
    padding-left: 0;
    text-align: center;
  }

  /* Force Armor button to center on mobile */
  .armor_content-column .button-group.is-left {
    align-items: center !important;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: clamp(20rem, 60%, 36rem);
  }

  .armor_shoe-landing {
    height: 20rem;
    margin-right: 0;
  }

  .armor_ghost-text {
    font-size: clamp(10rem, 25vw, 18rem);
    left: 50%;
  }
}

@media screen and (max-width: 767px) {
  .section_armor {
    padding-bottom: 6rem;
  }

  .armor_shoe-landing {
    height: 16rem;
  }

  .features_h3-small {
    font-size: calc(var(--core-fluid-font-size) * 2.2);
  }
}

@media screen and (max-width: 479px) {
  .section_armor {
    padding-bottom: 4rem;
  }

  .armor_shoe-landing {
    height: 12rem;
  }
}

/* =========================================
   SECTION 4: FIELD TESTS
   ========================================= */

.section_field-tests {
  position: relative;
  background-color: var(--vanguard-bg);
  color: var(--vanguard-white);
  min-height: auto;
}

.field-tests_header-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.field-tests_header-group .features_labels {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.field-tests_overflow-title {
  position: relative;
  width: 100%;
  margin-right: -2rem;
  text-align: right;
  z-index: 2;
}

.field-tests_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: start;
  margin-top: 0;
}

.field-tests_image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 192, 0, 0.3);
}

.field-tests_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.field-tests_footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 4rem;
  /* Tighten the button to the text */
  text-align: left;
  width: 100%;
}

.field-tests_footer h4 {
  width: auto;
  /* Ensure it doesn't take 100% width or fixed max-width, only what's needed for the text */
}

/* =========================================
   SECTION 5: SPECIFICATIONS
   ========================================= */

.section_specs {
  position: relative;
  background-color: var(--vanguard-bg);
  color: var(--vanguard-white);
  min-height: auto;
  overflow: hidden;
  z-index: 10;
  padding-top: 15rem;
  /* Increased spacing from section 4 on desktop */
}

.specs_header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Pin entire header group to the right */
  position: relative;
  z-index: 2;
}

.specs_header-group {
  border-left: 2px solid var(--vanguard-yellow);
  padding-left: 2rem;
  text-align: left;
  /* Keep text content left-aligned within the right-aligned wrapper */
}

.specs_layout {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 6rem;
  z-index: 2;
}

.specs_ghost-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: calc(var(--core-fluid-font-size) * 30);
  color: #1C1C1C;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

/* ── Left Column: Visuals ── */
.specs_visual-column {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
}

.specs_logo {
  width: clamp(10rem, 15vw, 15rem);
  height: auto;
}

.specs_visual-main {
  width: 100%;
  padding: 4rem 0;
}

.specs_shoe-sketch {
  width: 80%;
  /* Scaled down to 0.8 */
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.9;
  /* Filter removed as requested */
}

/* ── Right Column: Table ── */
.specs_data-column {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.specs_table {
  width: 100%;
}

.specs_row {
  display: flex;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Gray lines only */
  gap: 2rem;
  align-items: baseline;
}

.specs_row:last-child {
  border-bottom: none;
}

.header-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.header-row .specs_col {
  color: var(--vanguard-yellow);
  /* Yellow Impact text */
  font-size: calc(var(--core-fluid-font-size) * 1.5);
  letter-spacing: 0.05em;
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: normal !important;
}

.specs_col.label {
  flex: 0 0 45%;
  /* Col ratio 45% */
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  /* Regular weight */
  font-size: calc(var(--core-fluid-font-size) * 1);
  color: var(--vanguard-gray);
  /* Gray as requested */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.specs_col.value {
  flex: 0 0 55%;
  /* Col ratio 55% */
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: calc(var(--core-fluid-font-size) * 1);
  color: var(--vanguard-gray);
  line-height: 1.4;
}

/* Ensure header cells win on Impact font and color */
.header-row .specs_col {
  color: var(--vanguard-yellow) !important;
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-weight: normal !important;
  font-size: calc(var(--core-fluid-font-size) * 1.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

/* ── Specs Responsive ── */

@media screen and (max-width: 991px) {
  .section_specs {
    padding-top: 3rem;
    /* Reduced spacing in tablet/mobile */
  }

  .specs_header-wrapper {
    align-items: center;
    /* Center headers on tablet */
    text-align: center;
  }

  .specs_header-group {
    border-left: none;
    /* Remove side-line on tablet */
    padding-left: 0;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .specs_layout {
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    justify-content: center;
  }

  .specs_max-width-tablet {
    width: 100%;
    max-width: clamp(20rem, 80%, 36rem) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .specs_visual-column,
  .specs_data-column {
    width: 100%;
    min-height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .specs_visual-main {
    padding: 2rem 0;
  }

  .specs_shoe-sketch {
    width: 90%;
  }

  .specs_row {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .specs_col {
    text-align: center;
    width: 100%;
  }

  .specs_col.label,
  .specs_col.value {
    flex: 0 0 auto;
    text-align: center;
  }

  .specs_col.label {
    color: var(--vanguard-yellow);
  }

  .header-row {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .specs_logo {
    width: 12rem;
  }

  .specs_ghost-text {
    font-size: clamp(8rem, 20vw, 12rem);
  }
}

/* =========================================
   SECTION 6: LAUNCH CTA
   ========================================= */

.section_cta {
  position: relative;
  background-color: var(--vanguard-bg);
  color: var(--vanguard-white);
  text-align: center;
  overflow: hidden;
  z-index: 10;
}

.cta_ghost-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Impact, Anton, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: calc(var(--core-fluid-font-size) * 25);
  color: #1C1C1C;
  opacity: 0.3;
  z-index: 1;
  /* Behind other content but on top of bg */
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.cta_content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cta_content-wrapper>*:not(.cta_ghost-text) {
  position: relative;
  z-index: 2;
  /* Content on top of ghost text */
}

.cta_gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  z-index: 2;
  position: relative;
}

/* =========================================
   FOOTER
   ========================================= */

.section_footer {
  position: relative;
  background-color: var(--vanguard-bg);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  /* Very subtle top separator */
}

.footer_layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer_logo {
  width: clamp(20rem, 30vw, 40rem);
  height: auto;
  opacity: 0.95;
}

.footer_links-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.footer_link {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: calc(var(--core-fluid-font-size) * 1);
  color: var(--vanguard-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: none;
  letter-spacing: 0.05em;
}

.footer_link:hover {
  color: var(--vanguard-yellow);
}

.footer_link-white {
  color: var(--vanguard-white);
}

.footer_legal-text {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: calc(var(--core-fluid-font-size) * 1.17);
  color: var(--vanguard-gray);
  opacity: 0.7;
}

/* ── Footer Responsive ── */

@media screen and (max-width: 991px) {
  .footer_links-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer_logo {
    width: 20rem;
  }
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.button-group.is-left {
  align-items: flex-start;
  text-align: left;
}

.text-size-small {
  font-size: calc(var(--core-fluid-font-size) * 0.85);
  opacity: 0.8;
}

.link-underscore {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

/* =========================================
   COOKIE BANNER (MODERN FLOATING POD)
   ========================================= */

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: auto;
  max-width: 38rem;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  z-index: 99999;
  transform: translateY(110%);
  pointer-events: auto !important;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  cursor: auto !important;
  /* Restore standard mouse visibility */
}

.cookie-banner *,
.cookie-banner a,
.cookie-banner button {
  cursor: auto !important;
  /* Force browser cursor over these elements */
}

.cookie-banner.is-active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  justify-content: end;
  /* Centered as requested */
  gap: 3rem;
  width: 100%;
}

.cookie-banner .button.small {
  padding: 0.5rem 1.25rem;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  /* Upgraded size */
  box-shadow: none !important;
  min-width: 8rem;
}

.cookie-banner .footer_link {
  font-family: inherit;
  font-size: calc(var(--core-fluid-font-size) * 0.85);
  /* Specific 1rem size */
  padding: 0;
  transition: opacity 0.3s;
  background: none;
  border: none;
  display: inline;
}

.cookie-banner .footer_link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 2rem 1.5rem;
  }
}

.cta_image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 192, 0, 0.2);
}

.cta_lifestyle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta_image-wrapper:hover .cta_lifestyle-image {
  transform: scale(1.05);
}

@media screen and (max-width: 991px) {
  .cta_gallery-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta_max-width-tablet {
    width: 100%;
    max-width: clamp(20rem, 80%, 36rem) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .cta_ghost-text {
    font-size: clamp(8rem, 20vw, 12rem);
  }
}

@media screen and (max-width: 991px) {
  .field-tests_header-group {
    align-items: center;
    text-align: center;
  }

  .field-tests_header-group .features_labels {
    align-items: center;
    text-align: center;
  }

  .field-tests_overflow-title {
    margin-right: 0;
    text-align: center;
  }

  .field-tests_grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
  }

  .grid_max-width-tablet {
    width: 100%;
    max-width: clamp(20rem, 80%, 36rem) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .field-tests_block {
    text-align: center;
  }

  .field-tests_footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}
