:root {
  --gold: #c99127;
  --gold-bright: #f2c85f;
  --gold-pale: #ffe59e;
  --black: #070707;
  --surface: #10100f;
  --surface-raised: #171612;
  --white: #f8f6f0;
  --muted: #aaa69b;
  --border: rgba(240, 198, 106, 0.24);
  --border-soft: rgba(255, 255, 255, 0.11);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
  --radius-large: 24px;
  --radius-medium: 16px;
  --display: "Arial Narrow", "Bahnschrift Condensed", "Roboto Condensed", Impact, sans-serif;
  --body: "Segoe UI", Inter, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -5%, rgba(201, 145, 39, 0.2), transparent 27rem),
    linear-gradient(180deg, #0b0b0a 0%, var(--black) 34%, #090806 100%);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button, a {
  font: inherit;
}

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

img, svg {
  display: block;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.page-shell {
  width: min(calc(100% - 32px), 920px);
  margin-inline: auto;
  padding: 28px 0 38px;
}

.hub {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 34%),
    rgba(7, 7, 7, 0.96);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hub::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 500px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), var(--black)),
    repeating-linear-gradient(118deg, transparent 0 34px, rgba(255, 255, 255, 0.012) 35px 36px);
  content: "";
  pointer-events: none;
}

.language-switcher {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.8);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.language-button {
  min-width: 62px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.language-button.is-active {
  color: #15110a;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  box-shadow: 0 5px 18px rgba(201, 145, 39, 0.24);
}

.language-divider {
  width: 1px;
  height: 20px;
  background: var(--border-soft);
}

.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 82px clamp(24px, 7vw, 70px) 46px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 5%;
  left: 50%;
  width: min(90vw, 820px);
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(201, 145, 39, 0.18), transparent 66%);
  filter: blur(10px);
  pointer-events: none;
}

.brand-logo {
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 16px 35px rgba(0, 0, 0, 0.52));
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1, h2, h3 {
  font-family: var(--display);
  font-stretch: condensed;
}

h1 {
  max-width: 590px;
  margin: 0 auto;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1::first-line {
  color: var(--white);
}

.intro {
  max-width: 560px;
  margin: 17px auto 0;
  color: #c2beb4;
  font-size: clamp(0.92rem, 1.7vw, 1.05rem);
  line-height: 1.62;
  text-wrap: balance;
}

.featured,
.link-section {
  padding: 44px clamp(20px, 4.5vw, 44px);
  border-top: 1px solid var(--border);
}

.featured {
  background: linear-gradient(180deg, rgba(201, 145, 39, 0.04), transparent 36%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
  text-align: center;
}

.heading-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.heading-rule:last-child {
  transform: scaleX(-1);
}

.section-heading h2,
.link-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: linear-gradient(180deg, var(--surface-raised), var(--surface));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 200, 95, 0.52);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #211d14, #0d0d0c 68%);
}

.product-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
  content: "";
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 220ms ease;
}

.product-card:first-child .product-image img {
  object-position: 50% 54%;
}

.product-card:nth-child(2) .product-image img {
  object-position: 50% 48%;
}

.product-card:nth-child(3) .product-image img {
  object-position: 50% 37%;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}

.product-image.is-missing::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  content: "V-LINIX";
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.product-image.is-missing img {
  visibility: hidden;
}

.product-copy {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.product-copy h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.product-copy p {
  margin: 13px 0 22px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.product-cta {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 0 17px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.product-cta:hover {
  color: #171109;
  background: var(--gold-bright);
}

.product-cta svg,
.link-arrow {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.link-section {
  background: rgba(255, 255, 255, 0.012);
}

.link-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 25px;
  text-align: center;
}

.link-heading p {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.link-list {
  max-width: 720px;
  display: grid;
  gap: 11px;
  margin-inline: auto;
}

.link-button {
  min-height: 78px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-medium);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-button:hover {
  transform: translateX(4px);
  border-color: rgba(242, 200, 95, 0.55);
  background: linear-gradient(100deg, rgba(201, 145, 39, 0.1), rgba(255, 255, 255, 0.025));
}

.link-button-primary {
  color: #171109;
  border-color: var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  box-shadow: 0 14px 35px rgba(201, 145, 39, 0.14);
}

.link-button-primary:hover {
  border-color: var(--gold-pale);
  background: linear-gradient(135deg, #fff0ba, var(--gold-bright));
}

.link-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold-bright);
  opacity: 0.94;
}

.link-button-primary .link-icon {
  color: #171109;
}

.link-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.link-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.link-copy {
  min-width: 0;
}

.link-copy strong,
.link-copy small {
  display: block;
}

.link-copy strong {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.link-copy small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-button-primary .link-copy small {
  color: rgba(23, 17, 9, 0.68);
}

.link-arrow {
  color: var(--gold-bright);
  transition: transform 180ms ease;
}

.link-button-primary .link-arrow {
  color: #171109;
}

.link-button:hover .link-arrow {
  transform: translateX(3px);
}

footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

footer span:last-child {
  color: var(--gold);
}

@media (max-width: 840px) {
  .hero {
    min-height: 420px;
  }

  .product-copy {
    min-height: 255px;
    padding: 18px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: 100%;
    padding: 0;
  }

  .hub {
    border-inline: 0;
    border-radius: 0;
  }

  .language-switcher {
    top: 13px;
    right: 13px;
  }

  .language-button {
    min-width: 57px;
  }

  .hero {
    min-height: 0;
    padding: 78px 22px 38px;
  }

  .brand-logo {
    width: min(100%, 300px);
    margin-bottom: 24px;
  }

  h1 {
    max-width: 310px;
    font-size: clamp(1.45rem, 7vw, 1.75rem);
  }

  .featured,
  .link-section {
    padding: 36px 18px;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading h2,
  .link-heading h2 {
    font-size: clamp(1.3rem, 6.2vw, 1.7rem);
  }

  .product-strip {
    display: flex;
    gap: 13px;
    margin-inline: -18px;
    padding: 0 18px 14px;
    overflow-x: auto;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--gold) transparent;
    scrollbar-width: thin;
  }

  .product-card {
    flex: 0 0 min(68vw, 255px);
    scroll-snap-align: start;
  }

  .product-copy {
    min-height: 180px;
    padding: 14px;
  }

  .product-copy h3 {
    font-size: 1rem;
  }

  .product-copy p {
    margin: 8px 0 14px;
    font-size: 0.81rem;
  }

  .link-button {
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 12px;
    padding-inline: 13px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 370px) {
  .language-switcher {
    right: 8px;
  }

  .language-button {
    min-width: 52px;
    padding-inline: 7px;
  }

  .hero {
    padding-inline: 16px;
  }

  .link-copy small {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
