﻿:root {
  --ink: #071110;
  --panel: #101b18;
  --panel-2: #16231f;
  --line: rgba(231, 219, 172, 0.18);
  --text: #f5f2e7;
  --muted: #b9baa8;
  --gold: #d6b23d;
  --gold-2: #f0d76b;
  --moss: #6d7c43;
  --steel: #6fa6ad;
  --rust: #bc7049;
  --white: #fffdf4;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(7, 17, 16, 0.82), rgba(7, 17, 16, 0.9)),
    url("assets/hero-mountain-sc23-clean.png") center / cover fixed;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(7, 17, 16, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(214, 178, 61, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: rgba(245, 242, 231, 0.82);
  font-size: 12px;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--white);
  border-color: var(--gold);
}

.header-contact {
  position: relative;
}

.contact-toggle {
  cursor: pointer;
}

.contact-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(240, 215, 107, 0.24);
  border-radius: 8px;
  background: rgba(10, 21, 18, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-popover strong,
.contact-popover a {
  display: block;
}

.contact-popover strong {
  margin-bottom: 10px;
  color: var(--gold-2);
}

.contact-popover a {
  padding: 8px;
  border: 1px solid rgba(245, 242, 231, 0.12);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.nav-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-action,
.primary-button {
  color: #11150f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 42px rgba(214, 178, 61, 0.24);
}

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

.button-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.button-icon svg,
.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 54px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 16, 0.92) 0%, rgba(7, 17, 16, 0.72) 42%, rgba(7, 17, 16, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 17, 16, 1) 0%, rgba(7, 17, 16, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(62px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(245, 242, 231, 0.84);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 27, 24, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel img {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  border-radius: 18px;
}

.hero-panel span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 23px;
  line-height: 1.08;
}

.hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.hero-panel li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.ticker-section {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  background: #0b1513;
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.ticker-track {
  width: 100%;
  overflow: hidden;
}

.ticker-row {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 14px 0;
  animation: ticker 34s linear infinite;
}

.ticker-row span,
.command-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  border: 1px solid rgba(214, 178, 61, 0.24);
  border-radius: 8px;
  background: rgba(245, 242, 231, 0.06);
  color: var(--white);
}

.ticker-row span {
  padding: 0 16px;
  font-weight: 800;
}

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

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

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
  margin-left: 0;
}

.section-heading.feature-title {
  display: block;
  max-width: 1120px;
  margin-bottom: 46px;
  text-align: center;
}

.section-heading.feature-title h2 {
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(44px, 6.2vw, 86px);
}

.section-heading.feature-title p:not(.eyebrow) {
  max-width: 980px;
  margin: 22px auto 0;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 1340px;
  margin: 0 auto;
}

.feature-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.main-button-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.main-button-card h3 {
  margin-bottom: 10px;
}

.main-button-card p {
  margin-bottom: 0;
}

.panel-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 9px;
  border: 1px solid rgba(240, 215, 107, 0.22);
  border-radius: 7px;
  color: var(--gold-2);
  background: rgba(240, 215, 107, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  border-radius: 8px;
  color: var(--gold-2);
  background: rgba(214, 178, 61, 0.12);
}

.feature-card p,
.field-card p,
.roadmap p,
.profile-copy p,
.contact-section p {
  color: var(--muted);
}

.image-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.panel-commands {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-content: flex-start;
  margin-top: auto;
  padding-top: 20px;
}

.panel-commands span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(240, 215, 107, 0.24);
  border-radius: 7px;
  background: rgba(7, 17, 16, 0.42);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.18;
  white-space: normal;
}

.panel-commands img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.commands-section {
  background: #101917;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
  margin-top: 34px;
}

.command-chip {
  width: 100%;
  min-height: 82px;
  padding: 15px 16px;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.command-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 215, 107, 0.72);
  background: rgba(214, 178, 61, 0.12);
}

.command-chip span,
.command-chip small {
  display: block;
}

.command-chip span {
  min-width: 58px;
  color: var(--white);
  font-weight: 900;
}

.command-chip small {
  color: var(--muted);
  font-size: 12px;
}

.mini-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--gold-2);
}

.mini-icon::before,
.mini-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.mini-icon.point::before {
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mini-icon.file::before {
  inset: 2px 4px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.mini-icon.grid::before,
.mini-icon.table::before {
  inset: 2px;
  border: 2px solid currentColor;
}

.mini-icon.grid::after,
.mini-icon.table::after {
  inset: 5px 8px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.mini-icon.offset::before {
  left: 3px;
  top: 9px;
  width: 12px;
  border-top: 2px solid currentColor;
  transform: rotate(-28deg);
}

.mini-icon.offset::after {
  left: 6px;
  top: 4px;
  width: 9px;
  border-top: 2px solid currentColor;
  transform: rotate(-28deg);
}

.mini-icon.target::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mini-icon.target::after {
  left: 8px;
  top: 1px;
  height: 16px;
  border-left: 2px solid currentColor;
}

.mini-icon.check::before {
  left: 3px;
  top: 8px;
  width: 10px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.mini-icon.label::before {
  inset: 4px 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.mini-icon.arc::before {
  left: 3px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 50%;
}

.mini-icon.sum::before {
  left: 4px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewX(-18deg);
}

.mini-icon.area::before {
  inset: 3px;
  border: 2px solid currentColor;
}

.mini-icon.level::before {
  left: 2px;
  right: 2px;
  top: 8px;
  border-top: 2px solid currentColor;
}

.mini-icon.level::after {
  left: 7px;
  top: 3px;
  height: 12px;
  border-left: 2px solid currentColor;
}

.mini-icon.line::before {
  left: 2px;
  top: 9px;
  width: 14px;
  border-top: 2px solid currentColor;
  transform: rotate(-18deg);
}

.field-section {
  background:
    linear-gradient(rgba(7, 17, 16, 0.9), rgba(7, 17, 16, 0.96)),
    url("assets/hero-mountain-sc23-clean.png") center / cover fixed;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.field-card {
  min-height: 330px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(245, 242, 231, 0.06), rgba(12, 21, 19, 0.86));
  overflow: hidden;
}

.field-visual {
  min-height: 160px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
}

.instrument {
  position: relative;
  display: block;
  width: 118px;
  height: 118px;
  color: var(--gold-2);
}

.total-station::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 16px;
  width: 58px;
  height: 44px;
  border: 4px solid currentColor;
  border-radius: 8px;
  box-shadow: 0 0 0 999px rgba(214, 178, 61, 0.03);
}

.total-station::after {
  content: "";
  position: absolute;
  left: 56px;
  top: 62px;
  height: 50px;
  border-left: 4px solid currentColor;
  box-shadow: -28px 48px 0 -2px currentColor, 28px 48px 0 -2px currentColor;
  transform: perspective(80px) rotateX(12deg);
}

.nivo::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  width: 82px;
  height: 26px;
  border: 4px solid var(--steel);
  border-radius: 14px;
}

.nivo::after {
  content: "";
  position: absolute;
  left: 55px;
  top: 58px;
  height: 54px;
  border-left: 4px solid var(--gold-2);
  box-shadow: -25px 50px 0 -2px var(--gold-2), 25px 50px 0 -2px var(--gold-2);
}

.gps::before {
  content: "";
  position: absolute;
  left: 43px;
  top: 12px;
  width: 34px;
  height: 78px;
  border: 4px solid var(--gold-2);
  border-radius: 18px;
}

.gps::after {
  content: "";
  position: absolute;
  left: 58px;
  top: 90px;
  height: 22px;
  border-left: 4px solid var(--steel);
  box-shadow: -18px 20px 0 -2px var(--steel), 18px 20px 0 -2px var(--steel);
}

.build::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 38px;
  width: 82px;
  height: 58px;
  border: 4px solid var(--rust);
  clip-path: polygon(0 38%, 50% 0, 100% 38%, 100% 100%, 0 100%);
}

.build::after {
  content: "";
  position: absolute;
  left: 52px;
  top: 70px;
  width: 18px;
  height: 26px;
  background: rgba(245, 242, 231, 0.18);
  border: 2px solid var(--gold-2);
}


.menu-preview-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(240, 215, 107, 0.16), transparent 26%, rgba(80, 154, 160, 0.12) 58%, transparent 78%),
    radial-gradient(circle at 16% 18%, rgba(240, 215, 107, 0.18), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(80, 154, 160, 0.15), transparent 32%),
    linear-gradient(180deg, #101b18 0%, #08110f 100%);
}

.menu-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 215, 107, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 215, 107, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.035) 48% 52%, transparent 54% 100%);
  background-size: 52px 52px, 52px 52px, 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 92%, transparent);
  pointer-events: none;
}

.menu-showcase-shell {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
}

.glass-copy-panel {
  max-width: 100%;
  padding: clamp(24px, 4vw, 42px) clamp(22px, 5vw, 56px);
  border: 1px solid rgba(240, 215, 107, 0.24);
  border-radius: 8px;
  background: rgba(8, 17, 15, 0.56);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}


.menu-showcase-copy::after {
  content: "";
  display: block;
  width: min(220px, 38vw);
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}
.menu-showcase-copy h2 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
}

.menu-showcase-copy p:not(.eyebrow) {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.menu-glass-stage {
  margin-top: 22px;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(240, 215, 107, 0.24);
  border-radius: 8px;
  background: rgba(8, 17, 15, 0.56);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}



.menu-ribbon-frame {
  margin: 0 0 14px;
  border: 1px solid rgba(240, 215, 107, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 17, 15, 0.38);
}

.menu-ribbon-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.menu-glass-marquee {
  margin-top: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}


.menu-glass-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: menuMarquee 34s linear infinite;
}

.menu-glass-marquee:hover .menu-glass-track {
  animation-play-state: paused;
}

.menu-glass-track .menu-glass-card {
  width: clamp(132px, 12vw, 178px);
  flex: 0 0 auto;
}

@keyframes menuMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 5px)); }
}
.menu-glass-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(260px, 1fr) auto;
  min-height: 420px;
  padding: 8px;
  border: 1px solid rgba(240, 215, 107, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 17, 15, 0.44);
  backdrop-filter: blur(18px);
}


.menu-glass-card.hero-card {
  min-height: 420px;
}

.menu-glass-card.slim-card {
  min-height: 420px;
}

.menu-window-bar {
  display: flex;
  gap: 6px;
  padding: 2px 2px 10px;
}

.menu-window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(240, 215, 107, 0.72);
}

.menu-window-bar span:nth-child(2) {
  background: rgba(80, 154, 160, 0.72);
}

.menu-window-bar span:nth-child(3) {
  background: rgba(245, 242, 231, 0.44);
}

.menu-glass-card img {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.menu-glass-card.hero-card img {
  max-height: 330px;
}


.menu-card-copy {
  margin-top: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(8, 17, 15, 0.58);
}

.menu-card-copy strong {
  display: block;
  color: var(--gold-2);
  font-size: 16px;
}

.menu-card-copy span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .menu-glass-marquee {
  margin-top: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
}

@media (max-width: 620px) {
  .menu-glass-marquee {
  margin-top: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

  .menu-glass-card,
  .menu-glass-card.hero-card,
  .menu-glass-card.slim-card {
    min-height: auto;
  }

  .menu-glass-card img,
  .menu-glass-card.hero-card img {
    max-height: 360px;
  }
}
.profile-section {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.profile-photo-window {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(240, 215, 107, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(10, 21, 18, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.profile-photo-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 17, 16, 0.28), transparent 48%);
  pointer-events: none;
}

.profile-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.profile-slide.active {
  transform: translateX(0);
}

.profile-slide.leaving {
  transform: translateX(-100%);
}

.profile-title {
  margin-top: 10px;
  color: var(--gold-2) !important;
  font-weight: 800;
}

.profile-copy p:last-child {
  max-width: 680px;
  font-size: 16px;
}

.profile-stats {
  display: grid;
  gap: 10px;
}

.profile-stats div,
.roadmap-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 15, 0.44);
}

.profile-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 30px;
}

.profile-stats span {
  color: var(--muted);
}

.seo-section {
  background: linear-gradient(180deg, #0f1917, #0c1513);
}

.roadmap-section {
  background: #0c1513;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin-top: 34px;
}

.roadmap-card {
  display: block;
  min-height: 210px;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.roadmap-card.active:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 215, 107, 0.72);
  background: rgba(214, 178, 61, 0.12);
}

.roadmap span {
  display: block;
  margin-bottom: 40px;
  color: var(--gold-2);
  font-weight: 900;
}

.roadmap strong {
  display: block;
  font-size: 16px;
}

.download-note {
  display: block;
  margin-top: 8px;
  padding-right: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.download-note::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 14px rgba(214, 178, 61, 0.5);
  vertical-align: 1px;
}

.roadmap em {
  display: inline-flex;
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: var(--gold-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.download-security {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 28px;
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 24px;
  border: 1px solid rgba(240, 215, 107, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(214, 178, 61, 0.12), rgba(255, 255, 255, 0.04));
}

.download-security h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.download-security p {
  margin: 0;
  color: var(--muted);
}

.download-security dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.download-security dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(7, 17, 16, 0.42);
}

.download-security dt {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-security dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.download-security .hash-row dd {
  overflow-wrap: anywhere;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.35;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: clamp(46px, 7vw, 76px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, rgba(214, 178, 61, 0.16), rgba(111, 166, 173, 0.08));
  border-block: 1px solid var(--line);
}

.contact-section div {
  max-width: 780px;
}

.contact-section h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.site-footer {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: linear-gradient(180deg, #071110, #050c0b);
}

.hero-section {
  min-height: 92vh;
  align-items: center;
  padding-top: 138px;
  background:
    radial-gradient(circle at 50% 12%, rgba(214, 178, 61, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(7, 17, 16, 0.32) 0%, rgba(16, 32, 28, 0.16) 46%, rgba(7, 13, 12, 0.5) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 215, 107, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 215, 107, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
}

.hero-media,
.hero-overlay {
  display: none;
}

.hero-content {
  width: min(1320px, 100%);
  grid-template-columns: minmax(350px, 0.88fr) minmax(520px, 1.42fr) minmax(320px, 380px);
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  margin: 0 auto;
}

.glass-panel,
.hero-panel {
  border: 1px solid rgba(240, 215, 107, 0.2);
  background: rgba(10, 21, 18, 0.64);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.hero-panel {
  min-width: 310px;
}

.glass-panel {
  max-width: none;
  padding: clamp(28px, 3.2vw, 42px);
  border-radius: 8px;
}

.glass-panel h1 {
  font-size: clamp(52px, 5.4vw, 84px);
  line-height: 0.96;
}

.glass-panel .lead {
  font-size: clamp(18px, 1.55vw, 22px);
  max-width: 580px;
}

.hero-photo {
  position: relative;
  margin: 0;
  min-height: clamp(390px, 54vw, 660px);
  border: 1px solid rgba(240, 215, 107, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 17, 15, 0.58);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 16, 0.22), transparent 26%, transparent 74%, rgba(7, 17, 16, 0.24)),
    linear-gradient(0deg, rgba(7, 17, 16, 0.38), transparent 42%);
  pointer-events: none;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: translateX(100%);
  transition: transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-photo img.active {
  transform: translateX(0);
}

.hero-photo img.leaving {
  transform: translateX(-100%);
}

.ticker-section {
  position: fixed;
  z-index: 28;
  top: 73px;
  left: 0;
  right: 0;
  margin-top: 0;
  background: rgba(10, 21, 18, 0.72);
  backdrop-filter: blur(16px);
}

.ticker-row {
  padding: 9px 0;
}

.ticker-row span {
  min-height: 36px;
  padding: 0 14px;
  background: rgba(245, 242, 231, 0.075);
}

.ticker-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.commands-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(111, 166, 173, 0.13), transparent 34%),
    rgba(16, 25, 23, 0.84);
  backdrop-filter: blur(2px);
}

.ribbon-shell {
  max-width: 1320px;
  margin-top: 34px;
  border: 1px solid rgba(240, 215, 107, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(245, 242, 231, 0.1), rgba(245, 242, 231, 0.035));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ribbon-tab {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  color: #11150f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 12px;
  font-weight: 900;
}

.ribbon-panels {
  display: flex;
  gap: 10px;
  padding: 14px;
  overflow-x: auto;
}

.ribbon-panel {
  flex: 0 0 auto;
  min-width: 240px;
  padding: 10px 10px 8px;
  border: 1px solid rgba(240, 215, 107, 0.24);
  border-radius: 8px;
  background: rgba(7, 17, 16, 0.54);
}

.ribbon-panel:nth-child(2) {
  min-width: 570px;
}

.ribbon-panel.slim {
  min-width: 430px;
}

.ribbon-panel.slim:nth-child(3) {
  min-width: 470px;
}

.ribbon-panel h3 {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(240, 215, 107, 0.14);
  color: var(--gold-2);
  font-size: 12px;
  text-align: center;
}

.ribbon-tools {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.ribbon-split {
  position: relative;
  flex: 0 0 auto;
}

.ribbon-button {
  border: 1px solid rgba(245, 242, 231, 0.14);
  border-radius: 8px;
  color: var(--text);
  background: rgba(245, 242, 231, 0.075);
  cursor: pointer;
}

.ribbon-button.large {
  display: grid;
  place-items: center;
  gap: 8px;
  width: 88px;
  min-height: 114px;
  padding: 10px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.ribbon-panel.slim .ribbon-button.large {
  width: 104px;
  padding-inline: 10px;
  font-size: 12px;
  line-height: 1.18;
}

.ribbon-button img,
.ribbon-menu img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ribbon-button.large img {
  width: 38px;
  height: 38px;
}

.ribbon-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  gap: 5px;
  margin-top: 8px;
}

.ribbon-split.wide .ribbon-menu {
  grid-template-columns: repeat(2, minmax(116px, 1fr));
}

.ribbon-menu span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 7px;
  border: 1px solid rgba(245, 242, 231, 0.1);
  border-radius: 6px;
  background: rgba(8, 17, 15, 0.44);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.ribbon-menu img {
  width: 20px;
  height: 20px;
}

.field-section {
  background: rgba(7, 17, 16, 0.76);
  backdrop-filter: blur(2px);
}

.field-card {
  min-height: 220px;
  padding: 24px;
  background: rgba(10, 21, 18, 0.66);
  backdrop-filter: blur(14px);
}

.field-visual {
  min-height: 190px;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
}

.field-visual img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.field-card h3,
.field-card p {
  padding-inline: 0;
}

.field-card p {
  padding-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  background: linear-gradient(135deg, rgba(214, 178, 61, 0.2), rgba(7, 17, 16, 0.84));
  backdrop-filter: blur(8px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.seo-keyword-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--max-width);
  margin: 24px auto 0;
}

.seo-keyword-grid article,
.faq-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(245, 242, 231, 0.12);
  border-radius: 8px;
  background: rgba(10, 21, 18, 0.66);
  backdrop-filter: blur(12px);
}

.seo-keyword-grid h3,
.faq-grid h3 {
  margin: 0 0 10px;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.25;
}

.seo-keyword-grid p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-section {
  background: rgba(7, 17, 16, 0.76);
}


.footer-linkedin {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 18px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(10, 102, 194, 0.35);
  border-radius: 8px;
  color: #0a66c2;
  background: rgba(255, 255, 255, 0.96);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-linkedin:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 102, 194, 0.72);
  background: #ffffff;
  color: #0a66c2;
}

.footer-linkedin svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer span {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
}@media (max-width: 980px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-content,
  .section-heading,
  .profile-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .profile-photo-window {
    max-width: 360px;
  }

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

  .hero-panel {
    min-width: 0;
    max-width: 420px;
  }

  .hero-photo {
    order: -1;
    width: 100%;
    min-height: 330px;
  }

  .ticker-section {
    position: sticky;
    top: 0;
  }

  .feature-grid,
  .field-grid,
  .command-grid,
  .roadmap,
  .download-security,
  .seo-keyword-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-action {
    width: 100%;
  }

  .hero-section {
    padding-top: 48px;
    padding-inline: 14px;
  }

  h1 {
    font-size: 56px;
  }

  .glass-panel,
  .hero-panel {
    width: 100%;
  }

  .hero-photo {
    min-height: 260px;
  }

  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .feature-grid,
  .field-grid,
  .command-grid,
  .roadmap,
  .download-security,
  .seo-keyword-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .download-security dl div {
    grid-template-columns: 1fr;
  }

  .command-chip {
    min-height: 72px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .menu-glass-track {
    animation: none;
  }
}
/* Unified SC23 page background */
body {
  background:
    radial-gradient(circle at 14% 10%, rgba(240, 215, 107, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(111, 166, 173, 0.13), transparent 30%),
    linear-gradient(rgba(240, 215, 107, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 215, 107, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #101b18 0%, #08110f 48%, #071110 100%);
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
  background-attachment: fixed;
}

.ticker-section,
.commands-section,
.field-section,
.menu-preview-section,
.seo-section,
.roadmap-section,
.faq-section,
.contact-section {
  background: transparent !important;
}

.menu-preview-section::before {
  display: none;
}

.site-footer {
  background: rgba(5, 12, 11, 0.82) !important;
}

/* Premium hero direction */
.hero-section {
  min-height: min(850px, 92vh);
  align-items: center;
  padding: 126px clamp(18px, 5vw, 72px) 66px;
  background:
    radial-gradient(circle at 14% 20%, rgba(240, 215, 107, 0.2), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(87, 144, 137, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(14, 28, 24, 0.92), rgba(5, 14, 13, 0.98));
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 215, 107, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 215, 107, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 74%, transparent);
  pointer-events: none;
}

.hero-gallery-layout {
  width: min(1400px, 100%);
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.05fr) minmax(260px, 0.62fr);
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  margin: 0 auto;
}

.hero-profile-gallery {
  position: relative;
  min-height: clamp(430px, 48vw, 640px);
  border: 1px solid rgba(240, 215, 107, 0.22);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 17, 15, 0.62);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-profile-gallery::before {
  content: "SAHA / OLCUM / CAD";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: rgba(235, 236, 226, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, rgba(240, 215, 107, 0.18), rgba(255, 255, 255, 0.04));
  border-bottom: 1px solid rgba(240, 215, 107, 0.16);
}

.hero-profile-gallery .hero-slide {
  inset: 42px 0 0;
  height: calc(100% - 42px);
  object-fit: cover;
  object-position: center;
}

.hero-profile-gallery::after {
  background:
    linear-gradient(90deg, rgba(7, 17, 16, 0.18), transparent 28%, transparent 70%, rgba(7, 17, 16, 0.24)),
    linear-gradient(0deg, rgba(7, 17, 16, 0.34), transparent 50%);
}

.hero-brand-block {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-title-stack {
  display: grid;
  gap: 18px;
}

.hero-brand-block h1 {
  font-size: clamp(58px, 7vw, 110px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.hero-version-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(240, 215, 107, 0.34);
  background: rgba(240, 215, 107, 0.12);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-brand-block .lead {
  max-width: 650px;
  margin-top: 26px;
  font-size: clamp(18px, 1.45vw, 23px);
  color: rgba(235, 236, 226, 0.78);
}

.hero-brand-block .hero-actions {
  margin-top: 34px;
}

.hero-brand-block .secondary-button {
  border-color: rgba(240, 215, 107, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-map-panel {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
  background: rgba(8, 17, 15, 0.58);
  border-color: rgba(240, 215, 107, 0.2);
}

.hero-map-panel img {
  width: 66px;
  height: 66px;
}

.hero-map-panel strong {
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.04;
}

.hero-map-panel ul {
  gap: 12px;
}

.hero-map-panel li {
  color: rgba(235, 236, 226, 0.76);
}

.profile-section {
  display: none;
}

.footer-linkedin {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 0;
  background: #0a66c2 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(10, 102, 194, 0.28);
}

.footer-linkedin .linkedin-mark {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

@media (max-width: 1180px) {
  .hero-gallery-layout {
    grid-template-columns: 1fr;
  }

  .hero-profile-gallery {
    order: -1;
    min-height: 380px;
  }

  .hero-map-panel {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .hero-section {
    padding-top: 70px;
  }

  .hero-brand-block h1 {
    font-size: 54px;
  }

  .hero-profile-gallery {
    min-height: 340px;
  }
}

/* Single hero panel refinement */
.hero-gallery-layout {
  grid-template-columns: minmax(300px, 0.82fr) minmax(480px, 1.18fr);
  max-width: 1240px;
}

.hero-logo-title {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
}

.hero-logo-title img {
  width: clamp(58px, 6vw, 86px);
  height: clamp(58px, 6vw, 86px);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.hero-version-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-license-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(87, 144, 137, 0.38);
  background: rgba(87, 144, 137, 0.14);
  color: rgba(235, 236, 226, 0.86);
  font-weight: 850;
  letter-spacing: 0;
}

.hero-map-panel {
  display: none !important;
}

@media (max-width: 1180px) {
  .hero-gallery-layout {
    grid-template-columns: 1fr;
    max-width: 900px;
  }
}

@media (max-width: 620px) {
  .hero-logo-title {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Clean hero photo frame */
.hero-profile-gallery::before { display: none !important; }
.hero-profile-gallery .hero-slide { inset: 0 !important; height: 100% !important; }


/* Premium immersive hero rebuild */
.hero-premium-stage {
  min-height: min(900px, 94vh) !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  padding: 124px clamp(18px, 5vw, 76px) 74px !important;
  background: #071110 !important;
  isolation: isolate;
}

.hero-premium-stage::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(4, 12, 11, 0.95) 0%, rgba(4, 12, 11, 0.78) 34%, rgba(4, 12, 11, 0.34) 63%, rgba(4, 12, 11, 0.82) 100%),
    linear-gradient(0deg, rgba(4, 12, 11, 0.95) 0%, transparent 30%, rgba(4, 12, 11, 0.22) 100%),
    radial-gradient(circle at 22% 28%, rgba(240, 215, 107, 0.24), transparent 34%);
  mask-image: none !important;
}

.hero-premium-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(240, 215, 107, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 215, 107, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.62;
}

.hero-background-gallery {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #071110 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-background-gallery::before,
.hero-background-gallery::after {
  display: none !important;
}

.hero-background-gallery .hero-slide {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(0.95) contrast(1.04) brightness(0.78);
}

.hero-immersive-content {
  position: relative !important;
  z-index: 2 !important;
  width: min(1420px, 100%) !important;
  display: grid !important;
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1fr) !important;
  align-items: end !important;
  gap: clamp(28px, 4vw, 68px) !important;
  margin: 0 auto !important;
}

.hero-immersive-content .hero-brand-block {
  max-width: 760px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-logo-title {
  display: flex !important;
  align-items: center !important;
  gap: clamp(14px, 2vw, 22px) !important;
}

.hero-logo-title img {
  width: clamp(62px, 6vw, 92px) !important;
  height: clamp(62px, 6vw, 92px) !important;
  border-radius: 16px !important;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.46) !important;
}

.hero-brand-block h1 {
  font-size: clamp(66px, 8.4vw, 132px) !important;
  line-height: 0.84 !important;
  letter-spacing: 0 !important;
  color: #f5f2e8 !important;
  text-shadow: 0 26px 80px rgba(0, 0, 0, 0.56) !important;
}

.hero-version-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
  margin-top: 18px !important;
}

.hero-version-badge,
.hero-license-badge {
  min-height: 40px !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  backdrop-filter: blur(12px);
}

.hero-version-badge {
  border: 1px solid rgba(240, 215, 107, 0.44) !important;
  background: rgba(240, 215, 107, 0.16) !important;
  color: var(--gold) !important;
}

.hero-license-badge {
  border: 1px solid rgba(235, 236, 226, 0.22) !important;
  background: rgba(235, 236, 226, 0.08) !important;
  color: rgba(245, 242, 232, 0.88) !important;
}

.hero-brand-block .lead {
  max-width: 640px !important;
  margin-top: 28px !important;
  font-size: clamp(19px, 1.5vw, 24px) !important;
  line-height: 1.55 !important;
  color: rgba(245, 242, 232, 0.82) !important;
}

.hero-brand-block .hero-actions {
  margin-top: 34px !important;
}

.hero-ribbon-float {
  align-self: end;
  justify-self: end;
  width: min(720px, 100%);
  margin: 0;
  transform: translateY(12px);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.48));
}

.hero-ribbon-float img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.94;
}

@media (max-width: 1180px) {
  .hero-immersive-content {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .hero-ribbon-float {
    justify-self: start;
    width: min(680px, 100%);
    transform: none;
  }
}

@media (max-width: 620px) {
  .hero-premium-stage {
    min-height: 92vh !important;
    padding: 92px 16px 52px !important;
  }

  .hero-logo-title {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .hero-brand-block h1 {
    font-size: 58px !important;
  }

  .hero-brand-block .lead {
    font-size: 18px !important;
  }
}

/* Hero image text preview */
.hero-immersive-content {
  grid-template-columns: minmax(420px, 780px) !important;
  justify-content: start !important;
}

.hero-ribbon-float {
  display: none !important;
}

.hero-background-gallery .hero-slide {
  object-position: center center !important;
  filter: saturate(0.98) contrast(1.03) brightness(0.82) !important;
}

.hero-premium-stage::before {
  background:
    linear-gradient(90deg, rgba(4, 12, 11, 0.9) 0%, rgba(4, 12, 11, 0.72) 34%, rgba(4, 12, 11, 0.2) 68%, rgba(4, 12, 11, 0.45) 100%),
    linear-gradient(0deg, rgba(4, 12, 11, 0.88) 0%, transparent 34%, rgba(4, 12, 11, 0.12) 100%) !important;
}

/* Footer refinement */
.site-footer {
  padding-block: 18px !important;
  min-height: 58px;
}

.footer-linkedin {
  width: 34px !important;
  height: 34px !important;
  border-radius: 7px !important;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.22) !important;
}

.footer-linkedin .linkedin-mark {
  font-size: 20px !important;
}

.site-footer span {
  font-size: 14px;
}

/* Hero compact product card */
.hero-product-card {
  width: fit-content;
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(240, 215, 107, 0.24);
  background: rgba(5, 14, 13, 0.48);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}



.hero-product-card img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  flex: 0 0 auto;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hero-product-copy {
  display: grid;
  gap: 5px;
}

.hero-product-copy h1,
.hero-product-copy strong {
  color: #f5f2e8;
  font-size: clamp(24px, 2.7vw, 40px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-product-copy span {
  width: fit-content;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.hero-product-copy small {
  color: rgba(245, 242, 232, 0.74);
  font-size: 13px;
  font-weight: 750;
}

.hero-brand-block h1 {
  display: none !important;
}

@media (max-width: 620px) {
  .hero-product-card {
    align-items: flex-start;
    width: 100%;
  }
}

/* Profile return under menu previews */
.profile-return-section {
  display: grid !important;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) minmax(240px, 320px) !important;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  padding-top: clamp(56px, 7vw, 92px) !important;
  padding-bottom: clamp(56px, 7vw, 92px) !important;
}

.profile-return-section .profile-photo-window {
  max-width: 340px;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.profile-return-section .profile-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  white-space: nowrap;
}

.profile-return-section .profile-title {
  color: var(--gold);
  font-weight: 900;
}

.profile-return-section .profile-stats div {
  background: rgba(9, 21, 18, 0.56);
  backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
  .profile-return-section {
    grid-template-columns: 1fr !important;
  }
}

/* Force Salih section visible directly under menu preview */
.profile-section.profile-return-section {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Unified program card */
.unified-program-grid {
  grid-template-columns: 1fr !important;
}

.unified-program-card {
  min-height: 0 !important;
  padding: clamp(22px, 3vw, 34px) !important;
}

.unified-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.unified-card-head .feature-icon {
  margin: 0;
}

.unified-card-head h3 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 42px);
}

.unified-card-head p {
  max-width: 920px;
}

.unified-command-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.unified-command-groups > div {
  padding: 16px;
  border: 1px solid rgba(240, 215, 107, 0.14);
  border-radius: 8px;
  background: rgba(8, 17, 15, 0.44);
}

.unified-command-groups strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 760px) {
  .unified-card-head,
  .unified-command-groups {
    grid-template-columns: 1fr;
  }
}

/* Hero lead compact glass card */
.hero-brand-block .lead {
  width: min(100%, 420px) !important;
  margin-top: 12px !important;
  padding: 13px 15px !important;
  border: 1px solid rgba(240, 215, 107, 0.16) !important;
  border-radius: 10px !important;
  background: rgba(5, 14, 13, 0.34) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  color: rgba(245, 242, 232, 0.8) !important;
  font-size: clamp(15px, 1.05vw, 17px) !important;
  line-height: 1.48 !important;
}

.hero-product-card {
  width: min(100%, 420px) !important;
}

.hero-brand-block .hero-actions {
  margin-top: 18px !important;
}

/* Hero long copy fit */
.hero-brand-block .lead {
  width: min(100%, 520px) !important;
  padding: 15px 17px !important;
  font-size: clamp(14px, 0.92vw, 15.5px) !important;
  line-height: 1.54 !important;
}

.hero-product-card {
  width: min(100%, 520px) !important;
}

/* Mobile stability pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 14px !important;
  }

  .hero-premium-stage {
    min-height: 88vh !important;
    padding: 88px 14px 44px !important;
  }

  .hero-immersive-content {
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .hero-product-card,
  .hero-brand-block .lead {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-product-card {
    padding: 12px !important;
    gap: 12px !important;
  }

  

.hero-product-card img {
    width: 50px !important;
    height: 50px !important;
  }

  .hero-product-copy h1,
  .hero-product-copy strong {
    font-size: 26px !important;
  }

  .hero-brand-block .lead {
    font-size: 14px !important;
    line-height: 1.46 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100% !important;
    justify-content: center !important;
  }

  .menu-showcase-shell,
  .menu-glass-stage,
  .profile-return-section,
  .faq-grid,
  .roadmap {
    width: 100% !important;
    max-width: 100% !important;
  }

  .menu-ribbon-frame {
    overflow-x: auto;
  }

  .profile-return-section {
    grid-template-columns: 1fr !important;
    padding-inline: 14px !important;
  }

  .profile-return-section .profile-photo-window {
    width: min(100%, 340px) !important;
    justify-self: center;
  }

  .profile-return-section .profile-copy h2 {
    font-size: clamp(32px, 9vw, 38px) !important;
    white-space: nowrap;
  }

  .profile-stats {
    grid-template-columns: 1fr !important;
  }

  .site-footer {
    padding: 16px 14px !important;
    gap: 8px !important;
  }

  .footer-linkedin {
    position: static !important;
  }
}
/* Hero image visibility fix */
.hero-background-gallery .hero-slide {
  filter: saturate(1.04) contrast(1.02) brightness(0.96) !important;
}

.hero-premium-stage::before {
  background:
    linear-gradient(90deg, rgba(4, 12, 11, 0.58) 0%, rgba(4, 12, 11, 0.38) 38%, rgba(4, 12, 11, 0.08) 72%, rgba(4, 12, 11, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 12, 11, 0.58) 0%, transparent 38%, rgba(4, 12, 11, 0.06) 100%) !important;
}

.hero-premium-stage::after {
  background: linear-gradient(180deg, rgba(4, 12, 11, 0.18), rgba(4, 12, 11, 0.12)) !important;
}

.hero-product-card,
.hero-brand-block .lead {
  background: rgba(6, 18, 17, 0.54) !important;
  backdrop-filter: blur(5px) !important;
}

@media (max-width: 760px) {
  .hero-background-gallery .hero-slide {
    object-position: center top !important;
    filter: saturate(1.05) contrast(1.02) brightness(1) !important;
  }

  .hero-premium-stage::before {
    background:
      linear-gradient(180deg, rgba(4, 12, 11, 0.28) 0%, rgba(4, 12, 11, 0.18) 42%, rgba(4, 12, 11, 0.46) 100%),
      linear-gradient(90deg, rgba(4, 12, 11, 0.34) 0%, rgba(4, 12, 11, 0.12) 62%, rgba(4, 12, 11, 0.2) 100%) !important;
  }

  .hero-premium-stage::after {
    background: transparent !important;
  }

  .hero-product-card,
  .hero-brand-block .lead {
    background: rgba(6, 18, 17, 0.48) !important;
    backdrop-filter: blur(6px) !important;
  }
}
/* Footer mobile alignment fix */
.site-footer {
  justify-content: flex-start !important;
  align-items: center !important;
  padding-left: clamp(14px, 4vw, 72px) !important;
  padding-right: clamp(58px, 8vw, 92px) !important;
}

.site-footer > span {
  justify-content: flex-start !important;
  width: auto !important;
  max-width: calc(100% - 46px) !important;
  text-align: left !important;
}

.footer-linkedin {
  position: absolute !important;
  right: clamp(14px, 4vw, 32px) !important;
  bottom: 50% !important;
  width: 33px !important;
  height: 33px !important;
  border-radius: 6px !important;
  transform: translateY(50%) !important;
}

.footer-linkedin:hover {
  transform: translateY(calc(50% - 2px)) !important;
}

.footer-linkedin .linkedin-mark {
  font-size: 18px !important;
}

@media (max-width: 760px) {
  .site-footer {
    flex-direction: row !important;
    min-height: 54px !important;
    padding: 14px 56px 14px 14px !important;
  }

  .site-footer > span {
    font-size: 12.5px !important;
    line-height: 1.35 !important;
  }

  .footer-linkedin {
    position: absolute !important;
    right: 14px !important;
    bottom: 50% !important;
    width: 28px !important;
    height: 28px !important;
  }

  .footer-linkedin .linkedin-mark {
    font-size: 16px !important;
  }
}
/* Footer mobile final placement */
@media (max-width: 760px) {
  .site-footer {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: 46px !important;
    padding: 10px 48px 10px 12px !important;
  }

  .site-footer > span {
    width: auto !important;
    max-width: calc(100% - 42px) !important;
    justify-content: flex-start !important;
    text-align: left !important;
    font-size: 11.5px !important;
    line-height: 1.3 !important;
  }

  .footer-linkedin {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    bottom: auto !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 5px !important;
    transform: translateY(-50%) !important;
  }

  .footer-linkedin:hover {
    transform: translateY(calc(-50% - 1px)) !important;
  }

  .footer-linkedin .linkedin-mark {
    font-size: 14px !important;
    line-height: 1 !important;
  }
}
/* Mobile bottom section cleanup */
@media (max-width: 760px) {
  .roadmap-section {
    padding: 42px 14px 28px !important;
  }

  .roadmap-section .section-heading.compact h2 {
    font-size: clamp(34px, 9vw, 42px) !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .roadmap {
    margin-top: 24px !important;
    gap: 14px !important;
  }

  .roadmap-card {
    min-height: 0 !important;
    padding: 18px 16px 54px !important;
  }

  .roadmap span {
    margin-bottom: 22px !important;
    font-size: 18px !important;
  }

  .roadmap strong {
    font-size: 18px !important;
    line-height: 1.25 !important;
  }

  .roadmap p,
  .download-note {
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .roadmap em {
    left: 16px !important;
    bottom: 16px !important;
    font-size: 14px !important;
  }

  .site-footer {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: 64px !important;
    padding: 18px 56px calc(18px + env(safe-area-inset-bottom)) 16px !important;
  }

  .site-footer > span {
    width: auto !important;
    max-width: calc(100% - 46px) !important;
    justify-content: flex-start !important;
    text-align: left !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .footer-linkedin {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    bottom: auto !important;
    width: 33px !important;
    height: 33px !important;
    border-radius: 7px !important;
    transform: translateY(-50%) !important;
  }

  .footer-linkedin:hover {
    transform: translateY(calc(-50% - 1px)) !important;
  }

  .footer-linkedin .linkedin-mark {
    font-size: 17px !important;
    line-height: 1 !important;
  }
}
/* Mobile hero: compact top, long copy below */
@media (max-width: 760px) {
  .hero-premium-stage {
    min-height: auto !important;
    display: grid !important;
    align-items: start !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #07110f !important;
  }

  .hero-background-gallery {
    position: absolute !important;
    inset: 0 0 auto 0 !important;
    width: 100% !important;
    height: 56vh !important;
    min-height: 390px !important;
  }

  .hero-background-gallery .hero-slide {
    object-position: 78% top !important;
    filter: saturate(1.05) contrast(1.03) brightness(1) !important;
  }

  .hero-premium-stage::before {
    height: 56vh !important;
    min-height: 390px !important;
    background:
      linear-gradient(90deg, rgba(4, 12, 11, 0.24) 0%, rgba(4, 12, 11, 0.08) 56%, rgba(4, 12, 11, 0.16) 100%),
      linear-gradient(180deg, rgba(4, 12, 11, 0.08) 0%, rgba(4, 12, 11, 0.14) 46%, rgba(4, 12, 11, 0.52) 100%) !important;
  }

  .hero-premium-stage::after {
    display: none !important;
  }

  .hero-immersive-content {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    width: 100% !important;
    padding: 82px 14px 18px !important;
  }

  .hero-immersive-content .hero-brand-block {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hero-brand-block .eyebrow {
    display: none !important;
  }

  .hero-product-card {
    width: min(100%, 318px) !important;
    padding: 10px 11px !important;
    gap: 10px !important;
    background: rgba(6, 18, 17, 0.46) !important;
    border-radius: 9px !important;
    backdrop-filter: blur(5px) !important;
  }

  

.hero-product-card img {
    width: 42px !important;
    height: 42px !important;
    border-radius: 9px !important;
  }

  .hero-product-copy h1,
  .hero-product-copy strong {
    font-size: 27px !important;
    line-height: 1 !important;
  }

  .hero-product-copy span {
    font-size: 14px !important;
  }

  .hero-product-copy small {
    font-size: 11.5px !important;
  }

  .hero-brand-block .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: min(100%, 318px) !important;
    margin-top: 9px !important;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100% !important;
    min-height: 36px !important;
    padding: 8px 9px !important;
    justify-content: center !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }

  .hero-actions .button-icon {
    width: 15px !important;
    height: 15px !important;
  }

  .hero-brand-block .lead {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: calc(56vh - 214px) 0 0 !important;
    padding: 14px 15px !important;
    background: rgba(6, 18, 17, 0.82) !important;
    border-radius: 9px !important;
    backdrop-filter: blur(6px) !important;
    font-size: 13.5px !important;
    line-height: 1.48 !important;
  }
}
/* Mobile hero final tuning */
@media (max-width: 760px) {
  .hero-background-gallery {
    height: 62vh !important;
    min-height: 440px !important;
  }

  .hero-background-gallery .hero-slide {
    object-position: 92% top !important;
  }

  .hero-premium-stage::before {
    height: 62vh !important;
    min-height: 440px !important;
    background:
      linear-gradient(90deg, rgba(4, 12, 11, 0.12) 0%, rgba(4, 12, 11, 0.02) 58%, rgba(4, 12, 11, 0.08) 100%),
      linear-gradient(180deg, rgba(4, 12, 11, 0.04) 0%, rgba(4, 12, 11, 0.08) 48%, rgba(4, 12, 11, 0.32) 100%) !important;
  }

  .hero-immersive-content {
    padding-top: 70px !important;
  }

  .hero-product-card {
    background: rgba(7, 18, 16, 0.28) !important;
    border-color: rgba(240, 215, 107, 0.18) !important;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(9px) saturate(1.08) !important;
  }

  .hero-brand-block .hero-actions {
    margin-top: 14px !important;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    min-height: 40px !important;
  }

  .hero-brand-block .lead {
    margin-top: calc(62vh - 218px) !important;
  }
}
/* Mobile header and hero exact placement */
@media (max-width: 760px) {
  .site-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 12px 10px !important;
  }

  .brand {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .brand img {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
  }

  .brand strong {
    font-size: 14px !important;
    line-height: 1.05 !important;
  }

  .brand small {
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  .nav-actions {
    flex: 0 0 auto !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
  }

  .nav-action {
    flex: 0 0 auto !important;
    width: auto !important;
    min-height: 28px !important;
    padding: 6px 7px !important;
    border-radius: 7px !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
    box-shadow: 0 10px 24px rgba(214, 178, 61, 0.18) !important;
  }

  .hero-background-gallery {
    height: 64vh !important;
    min-height: 470px !important;
  }

  .hero-background-gallery .hero-slide {
    object-position: 100% top !important;
    filter: saturate(1.06) contrast(1.03) brightness(1) !important;
  }

  .hero-premium-stage::before {
    height: 64vh !important;
    min-height: 470px !important;
    background:
      linear-gradient(90deg, rgba(4, 12, 11, 0.10) 0%, rgba(4, 12, 11, 0.02) 58%, rgba(4, 12, 11, 0.06) 100%),
      linear-gradient(180deg, rgba(4, 12, 11, 0.04) 0%, rgba(4, 12, 11, 0.06) 52%, rgba(4, 12, 11, 0.26) 100%) !important;
  }

  .hero-immersive-content {
    padding: 22px 14px 18px !important;
  }

  .hero-product-card {
    width: min(100%, 305px) !important;
    padding: 9px 10px !important;
    gap: 9px !important;
    background: rgba(7, 18, 16, 0.24) !important;
    border-color: rgba(240, 215, 107, 0.16) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16) !important;
    backdrop-filter: blur(10px) saturate(1.08) !important;
  }

  

.hero-product-card img {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-product-copy h1,
  .hero-product-copy strong {
    font-size: 25px !important;
  }

  .hero-product-copy span {
    font-size: 14px !important;
  }

  .hero-product-copy small {
    font-size: 11px !important;
  }

  .hero-brand-block .hero-actions {
    width: min(100%, 305px) !important;
    margin-top: 10px !important;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    min-height: 36px !important;
    padding: 8px 8px !important;
    font-size: 12.5px !important;
  }

  .hero-brand-block .lead {
    margin-top: calc(64vh - 126px) !important;
    background: rgba(6, 18, 17, 0.86) !important;
  }
}
/* Mobile hero button and copy spacing */
@media (max-width: 760px) {
  .hero-product-card {
    background: rgba(7, 18, 16, 0.18) !important;
    border-color: rgba(240, 215, 107, 0.12) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: blur(11px) saturate(1.06) !important;
  }

  .hero-brand-block .lead {
    margin-top: calc(64vh - 98px) !important;
  }

  .hero-brand-block .hero-actions {
    width: min(100%, 305px) !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(92px, 0.65fr) !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .hero-actions .primary-button {
    min-height: 38px !important;
    font-size: 14px !important;
  }

  .hero-actions .secondary-button {
    min-height: 38px !important;
    padding-inline: 10px !important;
    font-size: 12.5px !important;
    background: rgba(7, 18, 16, 0.18) !important;
    border-color: rgba(240, 215, 107, 0.26) !important;
    color: rgba(245, 242, 232, 0.9) !important;
    backdrop-filter: blur(5px) !important;
  }
}
/* Mobile hero product glass final polish */
@media (max-width: 760px) {
  .hero-product-card {
    width: min(100%, 276px) !important;
    padding: 8px 9px !important;
    gap: 8px !important;
    background: rgba(238, 244, 239, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10) !important;
    backdrop-filter: blur(7px) saturate(1.05) !important;
  }

  

.hero-product-card img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
  }

  .hero-product-copy h1,
  .hero-product-copy strong {
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .hero-product-copy span {
    font-size: 12.5px !important;
  }

  .hero-product-copy small {
    font-size: 10.8px !important;
  }

  .hero-brand-block .hero-actions {
    width: min(100%, 276px) !important;
  }
}
/* Mobile hero photo crop final */
@media (max-width: 760px) {
  .hero-background-gallery .hero-slide {
    object-position: 96% top !important;
  }
}
/* Screen reader only utility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}






/* Profile detail page name sizing */
.profile-detail-page .profile-copy h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .profile-detail-page .profile-copy h1 {
    font-size: 30px !important;
    line-height: 1.05 !important;
  }
}

/* Mobile profile detail page layout */
@media (max-width: 760px) {
  .profile-detail-page {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-height: auto !important;
    padding: 92px 14px 34px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .profile-detail-page .profile-photo-window {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    aspect-ratio: 4 / 5 !important;
  }

  .profile-detail-page .profile-copy {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  .profile-detail-page .profile-copy h1 {
    font-size: 28px !important;
    line-height: 1.08 !important;
    white-space: nowrap !important;
  }

  .profile-detail-page .profile-title {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .profile-detail-page .profile-copy p:not(.profile-title) {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .profile-detail-page .profile-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .profile-detail-page .profile-stats div {
    min-height: 72px !important;
    padding: 14px !important;
  }

  .profile-detail-page .profile-stats strong {
    font-size: 26px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }
}
/* Mobile header final: keep top buttons on one row */
@media (max-width: 760px) {
  .site-header {
    display: grid !important;
    grid-template-columns: minmax(100px, 1fr) max-content !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 11px 10px !important;
  }

  .brand {
    min-width: 0 !important;
    gap: 6px !important;
  }

  .brand img {
    width: 33px !important;
    height: 33px !important;
  }

  .brand strong {
    font-size: 14px !important;
  }

  .brand small {
    display: none !important;
  }

  .nav-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 3px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100vw - 124px) !important;
  }

  .nav-action {
    display: inline-flex !important;
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 28px !important;
    padding: 6px 7px !important;
    border-radius: 6px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}
/* Hero product release windows */
.hero-product-window-stack {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.hero-product-window-stack .hero-product-card {
  border-color: rgba(255, 255, 255, 0.09) !important;
  background: rgba(5, 14, 13, 0.10) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(5px) !important;
}

.hero-product-copy .release-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px !important;
  min-height: 34px;
  padding: 4px 5px;
  border: 1px solid rgba(126, 205, 222, 0.16);
  border-radius: 7px;
  color: #e7fbff !important;
  background: rgba(126, 205, 222, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
}

.hero-earth-card {
  border-color: rgba(101, 204, 172, 0.13) !important;
  background: rgba(6, 18, 17, 0.11) !important;
}

.hero-earth-card .release-pill {
  border-color: rgba(101, 204, 172, 0.17);
  color: #edfff8 !important;
  background: rgba(101, 204, 172, 0.06);
}

@media (max-width: 760px) {
  .hero-product-copy .release-pill {
    width: 42px !important;
    min-height: 30px !important;
    padding: 3px 4px !important;
    font-size: 8.5px !important;
    border-radius: 6px !important;
  }
}
/* Hero product compact final */
.hero-product-window-stack {
  width: max-content !important;
  max-width: none !important;
  gap: 8px !important;
}

.hero-product-window-stack .hero-product-card {
  width: max-content !important;
  max-width: max-content !important;
  min-width: 0 !important;
  padding: 10px 12px !important;
  gap: 10px !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  background: rgba(5, 14, 13, 0.055) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
  backdrop-filter: blur(3px) !important;
}

.hero-product-window-stack .hero-product-card img {
  width: 52px !important;
  height: 52px !important;
}

.hero-product-window-stack .hero-product-copy {
  width: max-content !important;
  min-width: 0 !important;
  gap: 4px !important;
}

.hero-product-window-stack .hero-product-copy .release-pill {
  width: 52px !important;
  min-height: 24px !important;
  padding: 3px 5px !important;
  border-color: rgba(126, 205, 222, 0.12) !important;
  background: rgba(126, 205, 222, 0.035) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.hero-product-window-stack .hero-product-copy small {
  font-size: 11px !important;
  line-height: 1.1 !important;
  color: rgba(245, 242, 232, 0.58) !important;
}

.hero-product-window-stack .hero-earth-card {
  border-color: rgba(101, 204, 172, 0.09) !important;
  background: rgba(6, 18, 17, 0.06) !important;
}

.hero-product-window-stack .hero-earth-card .release-pill {
  border-color: rgba(101, 204, 172, 0.13) !important;
  background: rgba(101, 204, 172, 0.04) !important;
}

@media (max-width: 760px) {
  .hero-product-window-stack {
    width: max-content !important;
    max-width: calc(100vw - 28px) !important;
  }

  .hero-product-window-stack .hero-product-card {
    width: max-content !important;
    max-width: calc(100vw - 28px) !important;
    padding: 8px 9px !important;
    gap: 8px !important;
  }

  .hero-product-window-stack .hero-product-card img {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-product-window-stack .hero-product-copy .release-pill {
    width: 42px !important;
    min-height: 22px !important;
    font-size: 8.5px !important;
  }

  .hero-product-window-stack .hero-product-copy small {
    font-size: 9.5px !important;
  }
}
/* Desktop hero compact transparent cards */
@media (min-width: 761px) {
  .hero-product-window-stack {
    width: fit-content !important;
    max-width: 360px !important;
    gap: 8px !important;
  }

  .hero-product-window-stack .hero-product-card {
    width: fit-content !important;
    max-width: 360px !important;
    padding: 10px 12px !important;
    gap: 11px !important;
    border-color: rgba(255, 255, 255, 0.055) !important;
    background: rgba(5, 14, 13, 0.045) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(2.5px) !important;
  }

  .hero-product-window-stack .hero-product-card img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 9px !important;
  }

  .hero-product-window-stack .hero-product-copy {
    display: grid !important;
    grid-template-columns: repeat(2, auto) !important;
    align-items: center !important;
    gap: 5px 6px !important;
    width: fit-content !important;
  }

  .hero-product-window-stack .hero-product-copy h1,
  .hero-product-window-stack .hero-product-copy small {
    grid-column: 1 / -1 !important;
  }

  .hero-product-window-stack .hero-product-copy h1 {
    font-size: 21px !important;
    line-height: 1 !important;
  }

  .hero-product-window-stack .hero-product-copy .release-pill {
    width: auto !important;
    min-width: 46px !important;
    min-height: 21px !important;
    padding: 3px 7px !important;
    border-color: rgba(126, 205, 222, 0.10) !important;
    background: rgba(126, 205, 222, 0.028) !important;
    font-size: 9.5px !important;
  }

  .hero-product-window-stack .hero-product-copy small {
    font-size: 10px !important;
    color: rgba(245, 242, 232, 0.48) !important;
  }

  .hero-product-window-stack .hero-earth-card {
    background: rgba(6, 18, 17, 0.045) !important;
    border-color: rgba(101, 204, 172, 0.075) !important;
  }
}
/* Roadmap release cards */
.release-card {
  min-height: 230px;
}

.roadmap .roadmap-index {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-weight: 900;
}

.release-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.release-options.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.release-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.release-option img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
}

.release-option b,
.release-option small {
  display: block;
}

.release-option b {
  color: var(--white);
  font-size: 17px;
  line-height: 1;
}

.release-option small {
  margin-top: 3px;
  color: rgba(245, 242, 232, 0.62);
  font-size: 11px;
  font-weight: 800;
}

.release-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 7px;
  color: #10140f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 12px;
  font-weight: 900;
}

.release-download.pending {
  color: rgba(245, 242, 232, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.earth-release-card .release-option {
  border-color: rgba(101, 204, 172, 0.14);
  background: rgba(101, 204, 172, 0.045);
}

@media (max-width: 760px) {
  .release-options.two-up {
    grid-template-columns: 1fr;
  }

  .release-card {
    min-height: auto;
  }

  .release-option {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 9px;
  }

  .release-option img {
    width: 38px;
    height: 38px;
  }
}
/* Hide profile summary windows */
.profile-return-section .profile-stats {
  display: none !important;
}
/* Mobile hero lead lift only */
@media (max-width: 760px) {
  .hero-brand-block .lead {
    margin-top: calc(64vh - 145px) !important;
  }

  .hero-brand-block .hero-actions {
    margin-top: 8px !important;
  }
}

@media (max-width: 380px) {
  .hero-brand-block .lead {
    margin-top: calc(64vh - 158px) !important;
  }
}
/* Force Earth release download button gold */
.earth-release-card .release-download {
  color: #10140f !important;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)) !important;
  border: 1px solid transparent !important;
  box-shadow: 0 12px 28px rgba(214, 178, 61, 0.18) !important;
}
/* SC23 Harita Kot release cards */
.hero-product-window-stack .hero-kot-card {
  border-color: rgba(214, 178, 61, 0.08) !important;
  background: rgba(18, 16, 7, 0.045) !important;
}

.hero-product-window-stack .hero-kot-card .release-pill {
  border-color: rgba(214, 178, 61, 0.14) !important;
  background: rgba(214, 178, 61, 0.04) !important;
  color: #fff8df !important;
}

.kot-release-option {
  border-color: rgba(214, 178, 61, 0.18) !important;
  background: rgba(214, 178, 61, 0.045) !important;
}

.kot-release-option .release-download {
  color: #10140f !important;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)) !important;
  border: 1px solid transparent !important;
}
/* Mobile hero final fit after Kot card */
@media (max-width: 760px) {
  .hero-product-window-stack {
    gap: 5px !important;
  }

  .hero-product-window-stack .hero-product-card,
  .hero-product-card {
    width: min(100%, 292px) !important;
    padding: 6px 8px !important;
    gap: 7px !important;
  }

  .hero-product-window-stack .hero-product-card img,
  .hero-product-card img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 7px !important;
  }

  .hero-product-window-stack .hero-product-copy h1,
  .hero-product-copy h1,
  .hero-product-copy strong {
    font-size: 19px !important;
    line-height: 1 !important;
  }

  .hero-product-window-stack .hero-product-copy .release-pill {
    min-width: 39px !important;
    min-height: 18px !important;
    padding: 2px 5px !important;
    font-size: 8px !important;
  }

  .hero-product-window-stack .hero-product-copy small,
  .hero-product-copy small {
    font-size: 8.8px !important;
    line-height: 1.05 !important;
  }

  .hero-brand-block .lead {
    margin-top: calc(64vh - 215px) !important;
    padding: 12px 13px !important;
    font-size: 13px !important;
    line-height: 1.42 !important;
  }

  .hero-brand-block .hero-actions {
    width: min(100%, 292px) !important;
    margin-top: 8px !important;
  }
}

@media (max-width: 380px) {
  .hero-brand-block .lead {
    margin-top: calc(64vh - 230px) !important;
  }
}
/* Sharper Kot icon display */
.hero-product-window-stack .hero-kot-card img,
.kot-release-option img {
  image-rendering: auto !important;
  transform: translateZ(0) !important;
}

@media (max-width: 760px) {
  .hero-product-window-stack .hero-kot-card img {
    width: 42px !important;
    height: 42px !important;
  }

  .kot-release-option img {
    width: 42px !important;
    height: 42px !important;
  }
}

