:root {
  --basalt-950: #070808;
  --basalt-900: #0d0f0f;
  --basalt-850: #121615;
  --basalt-800: #1a1f1d;
  --basalt-700: #29302d;
  --stone-300: #cdd4cc;
  --stone-100: #f4f7f3;
  --white: #ffffff;
  --green: #33cf1e;
  --green-deep: #126f25;
  --green-soft: rgba(51, 207, 30, 0.18);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --container: min(1160px, calc(100vw - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--stone-100);
  font-family: var(--font);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 14px),
    linear-gradient(35deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 24% 18%, rgba(51, 207, 30, 0.055), transparent 28%),
    linear-gradient(180deg, #070808 0%, #111514 38%, #0b0d0d 100%);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(8deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.038), transparent 34%, rgba(0, 0, 0, 0.38) 68%, transparent);
  mix-blend-mode: screen;
  opacity: 0.52;
}

.global-depth-canvas,
.depth-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.global-depth-canvas {
  z-index: 0;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.depth-vignette {
  z-index: 0;
  background:
    radial-gradient(circle at var(--depth-x, 62%) var(--depth-y, 28%), rgba(51, 207, 30, 0.09), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 42%, rgba(0, 0, 0, 0.42));
}

.site-header,
main,
.qr-panel {
  position: relative;
  z-index: 2;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 14px;
  right: max(14px, calc((100vw - 1180px) / 2));
  left: max(14px, calc((100vw - 1180px) / 2));
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: auto;
  min-height: 74px;
  padding: 10px 14px;
  transform: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 10, 8, 0.78);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transition: top 260ms ease, background 260ms ease, border-color 260ms ease;
}

.site-header.scrolled {
  border-color: rgba(51, 207, 30, 0.22);
  background: rgba(5, 7, 5, 0.9);
  top: 10px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 142px;
}

.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(244, 247, 243, 0.82);
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  position: relative;
  padding: 8px 18px 8px 0;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: transparent;
}

.nav-dropdown-trigger::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after,
.nav-dropdown.active .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown.active .nav-dropdown-trigger {
  color: var(--white);
}

.nav-dropdown:hover .nav-dropdown-trigger::before,
.nav-dropdown:focus-within .nav-dropdown-trigger::before,
.nav-dropdown.is-open .nav-dropdown-trigger::before {
  transform: translateY(-35%) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  width: min(310px, 80vw);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  background:
    radial-gradient(circle at 86% 12%, rgba(51, 207, 30, 0.18), transparent 32%),
    rgba(7, 10, 8, 0.96);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px;
  border-radius: 8px;
  color: rgba(244, 247, 243, 0.82);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--white);
  background: rgba(51, 207, 30, 0.11);
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--white);
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-dropdown-menu a::after {
  display: none;
}

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

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.language-switcher a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 30px;
  border-radius: 6px;
  color: var(--stone-100);
  opacity: 0.76;
}

.language-switcher img {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 5px 12px rgba(0, 0, 0, 0.22);
}

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

.language-switcher a.active,
.language-switcher a:hover {
  background: var(--green-soft);
  opacity: 1;
}

.admin-shortcut {
  padding: 10px 14px;
  border: 1px solid rgba(51, 207, 30, 0.28);
  border-radius: 8px;
  color: var(--stone-100);
  font-size: 0.86rem;
  background: rgba(51, 207, 30, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  filter: saturate(0.76) contrast(1.12) brightness(0.58);
  opacity: 0.46;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 6, 5, 0.7) 80%, var(--basalt-950) 100%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stone-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 26%, transparent 100%);
  opacity: 0.24;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.56fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  min-height: calc(100svh - 230px);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

.brand-wordmark {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(8px, 1.15vw, 16px);
  max-width: 900px;
  color: var(--white);
  font-size: clamp(3.05rem, 6.4vw, 5.9rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: none;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.62));
}

.wordmark-logo,
.wordmark-accent {
  position: relative;
  display: inline-block;
}

.wordmark-logo {
  flex: 0 1 clamp(250px, 25vw, 350px);
  width: clamp(250px, 25vw, 350px);
  max-width: 100%;
  line-height: 0;
}

.wordmark-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

.wordmark-accent {
  color: var(--white);
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f4 48%, #cdd4cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  text-shadow: 0 16px 24px rgba(0, 0, 0, 0.36);
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.18;
}

.hero-lead,
.section-copy p,
.section-heading p,
.atmosphere-panel p,
.contact-card span,
.product-card p,
.plan-card p {
  color: rgba(244, 247, 243, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-actions,
.plan-card .btn {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #051006;
  background: linear-gradient(135deg, var(--green), #99f05b);
  box-shadow: 0 16px 42px rgba(51, 207, 30, 0.24);
}

.btn-ghost,
.btn-card {
  border: 1px solid var(--line);
  color: var(--stone-100);
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(51, 207, 30, 0.14), transparent 48%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.performance-console {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  transform-style: preserve-3d;
}

.performance-console::before,
.performance-console::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.performance-console::before {
  inset: -40%;
  background:
    radial-gradient(circle at 68% 28%, rgba(51, 207, 30, 0.26), transparent 20%),
    conic-gradient(from 140deg, transparent 0 38%, rgba(51, 207, 30, 0.18) 45%, transparent 55% 100%);
  animation: console-spin 12s linear infinite;
}

.performance-console::after {
  inset: 1px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(51, 207, 30, 0.06));
}

.performance-console > * {
  position: relative;
  z-index: 1;
}

.console-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: rgba(244, 247, 243, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.console-topline i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(51, 207, 30, 0.82);
}

.console-wave {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
  height: 74px;
  margin: 18px 0 24px;
}

.console-wave span {
  display: block;
  height: 38%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(51, 207, 30, 0.95), rgba(51, 207, 30, 0.1));
  box-shadow: 0 0 24px rgba(51, 207, 30, 0.22);
  animation: wave-rise 1.8s ease-in-out infinite;
}

.console-wave span:nth-child(2) {
  height: 72%;
  animation-delay: 160ms;
}

.console-wave span:nth-child(3) {
  height: 48%;
  animation-delay: 320ms;
}

.console-wave span:nth-child(4) {
  height: 88%;
  animation-delay: 480ms;
}

.console-wave span:nth-child(5) {
  height: 58%;
  animation-delay: 640ms;
}

.console-logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 178px;
  margin: 2px 0 22px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(51, 207, 30, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(51, 207, 30, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(51, 207, 30, 0.105), rgba(5, 17, 8, 0.14)),
    rgba(5, 7, 5, 0.36);
  box-shadow:
    inset 0 0 44px rgba(51, 207, 30, 0.055),
    inset 0 0 82px rgba(51, 207, 30, 0.085),
    0 20px 50px rgba(0, 0, 0, 0.34);
}

.console-logo-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  border: 1px solid rgba(51, 207, 30, 0.16);
  background:
    linear-gradient(90deg, transparent, rgba(51, 207, 30, 0.12), transparent),
    repeating-linear-gradient(90deg, rgba(51, 207, 30, 0.04) 0 1px, transparent 1px 18px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.console-logo-stage::after {
  content: "";
  position: absolute;
  inset: auto 8% 16px;
  height: 18px;
  border-radius: 999px;
  background: rgba(51, 207, 30, 0.38);
  filter: blur(18px);
  opacity: 0.74;
}

.console-logo-stage img {
  position: relative;
  z-index: 2;
  width: min(360px, 92%);
  max-height: 118px;
  height: auto;
  margin: 0;
  object-fit: contain;
  transform: translateZ(18px);
  filter: none;
}

.logo-orbit {
  position: absolute;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1 / 0.34;
  border: 2px solid rgba(51, 207, 30, 0.34);
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(51, 207, 30, 0.32));
  transform: rotate(-9deg);
}

.logo-orbit-two {
  width: 62%;
  border-color: rgba(51, 207, 30, 0.2);
  transform: rotate(12deg);
  animation: logo-orbit 5.6s ease-in-out infinite;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-grid div {
  min-height: 96px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(6, 8, 6, 0.72);
}

.metric-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.35rem;
}

.metric-grid span {
  color: rgba(244, 247, 243, 0.66);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: clamp(74px, 9vw, 128px) 0;
}

.page-main {
  min-height: 100vh;
  padding-top: 0;
}

.subpage-hero {
  position: relative;
  min-height: 78svh;
  padding: 150px 0 86px;
  overflow: hidden;
  isolation: isolate;
}

.subpage-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.1) brightness(0.6);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 24%, rgba(51, 207, 30, 0.15), transparent 26%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, transparent 0%, rgba(7, 8, 8, 0.88) 100%);
}

.subpage-copy {
  max-width: 760px;
}

.subpage-copy h1 {
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  line-height: 0.96;
}

.subpage-copy p {
  max-width: 680px;
  color: rgba(244, 247, 243, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.home-gateway-section {
  padding-top: clamp(70px, 8vw, 112px);
}

.home-gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gateway-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(9, 12, 11, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gateway-card::after {
  content: "";
  position: absolute;
  right: -32%;
  bottom: -42%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(51, 207, 30, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 207, 30, 0.12), transparent 58%);
}

.gateway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(51, 207, 30, 0.34);
  background:
    linear-gradient(145deg, rgba(51, 207, 30, 0.11), rgba(255, 255, 255, 0.028)),
    rgba(9, 12, 11, 0.86);
}

.gateway-card.featured {
  border-color: rgba(51, 207, 30, 0.42);
}

.gateway-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 900;
}

.gateway-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}

.gateway-card p {
  color: rgba(244, 247, 243, 0.68);
  line-height: 1.65;
}

.about-hero-grid,
.plans-hero-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  min-height: calc(78svh - 220px);
}

.about-signal-card,
.membership-console,
.social-radar {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 22%, rgba(51, 207, 30, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(9, 12, 11, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.about-signal-card > span,
.membership-console > span,
.social-radar > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(244, 247, 243, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-signal-card strong,
.membership-console strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.signal-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.signal-lines i {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(51, 207, 30, 0.95), rgba(51, 207, 30, 0.1));
  box-shadow: 0 0 22px rgba(51, 207, 30, 0.18);
}

.signal-lines i:nth-child(2) {
  width: 72%;
}

.signal-lines i:nth-child(3) {
  width: 88%;
}

.signal-lines i:nth-child(4) {
  width: 54%;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
}

.about-principles {
  max-width: 660px;
}

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

.system-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(9, 12, 11, 0.76);
}

.system-card span {
  color: var(--green);
  font-weight: 900;
}

.system-card h3 {
  margin: 30px 0 12px;
  font-size: 2rem;
}

.system-card p {
  color: rgba(244, 247, 243, 0.68);
  line-height: 1.7;
}

.membership-console {
  min-height: 360px;
  display: grid;
  align-content: end;
}

.membership-rings {
  position: absolute;
  top: 18%;
  right: -18%;
  width: 78%;
  aspect-ratio: 1;
  border: 2px solid rgba(51, 207, 30, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(51, 207, 30, 0.08), 0 0 80px rgba(51, 207, 30, 0.12);
}

.membership-console .btn {
  margin-top: 32px;
  width: fit-content;
}

.plan-grid-page {
  align-items: stretch;
}

.plan-guidance {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(51, 207, 30, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.045);
}

.plan-guidance p {
  color: rgba(244, 247, 243, 0.7);
  line-height: 1.7;
}

.contact-page-hero {
  min-height: auto;
}

.contact-map-bg {
  background:
    radial-gradient(circle at 74% 20%, rgba(51, 207, 30, 0.14), transparent 25%),
    linear-gradient(115deg, rgba(7, 8, 8, 0.96), rgba(13, 15, 15, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 42px);
  filter: none;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.social-radar h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.social-radar p {
  color: rgba(244, 247, 243, 0.72);
  line-height: 1.72;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(51, 207, 30, 0.08), transparent 24%),
    radial-gradient(circle at 88% 40%, rgba(255, 255, 255, 0.035), transparent 22%);
}

.section-tight {
  padding-top: 60px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 86px);
}

.section-copy {
  max-width: 620px;
}

.premium-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.premium-list li {
  position: relative;
  padding: 15px 16px 15px 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 247, 243, 0.86);
}

.premium-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(51, 207, 30, 0.55);
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: grayscale(0.08) contrast(1.06);
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(260px, calc(100% - 44px));
  padding: 16px;
  border: 1px solid rgba(51, 207, 30, 0.28);
  border-radius: 8px;
  background: rgba(8, 11, 8, 0.86);
  backdrop-filter: blur(16px);
}

.floating-note span {
  display: block;
  margin-bottom: 5px;
  color: rgba(244, 247, 243, 0.62);
  font-size: 0.8rem;
}

.floating-note strong {
  color: var(--white);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(9, 11, 9, 0.82);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.plan-card:hover {
  border-color: rgba(51, 207, 30, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36), 0 0 44px rgba(51, 207, 30, 0.08);
}

.plan-card.featured {
  border-color: rgba(51, 207, 30, 0.5);
  background:
    linear-gradient(145deg, rgba(51, 207, 30, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(9, 11, 9, 0.9);
}

.badge,
.product-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #061006;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--green);
}

.price {
  display: block;
  margin: 20px 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.plan-card li {
  color: rgba(244, 247, 243, 0.78);
  line-height: 1.45;
}

.plan-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--green);
}

.plan-card .btn {
  margin-top: auto;
  width: 100%;
}

.atmosphere-section {
  padding-top: 30px;
}

.atmosphere-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 16px),
    rgba(13, 16, 13, 0.86);
  overflow: hidden;
}

.atmosphere-panel .btn {
  justify-self: end;
  white-space: nowrap;
}

.atmosphere-panel::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -60%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(51, 207, 30, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(51, 207, 30, 0.08), 0 0 70px rgba(51, 207, 30, 0.12);
}

.contact-section {
  overflow: hidden;
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: 5%;
  z-index: -1;
  width: min(520px, 44vw);
  aspect-ratio: 1;
  border: 1px solid rgba(51, 207, 30, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 207, 30, 0.12), transparent 62%);
  filter: blur(1px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.contact-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-command {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(51, 207, 30, 0.2), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026)),
    rgba(9, 12, 11, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), inset 0 0 70px rgba(51, 207, 30, 0.05);
  backdrop-filter: blur(18px);
}

.contact-command::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(51, 207, 30, 0.12), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 24px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
  opacity: 0.5;
}

.contact-command > * {
  position: relative;
  z-index: 1;
}

.contact-command-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.contact-command-head span,
.contact-map-panel small,
.contact-method small {
  display: block;
  color: rgba(244, 247, 243, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-command-head h3 {
  margin: 6px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.contact-command-head i {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 28px rgba(51, 207, 30, 0.9);
}

.contact-command p {
  max-width: 620px;
  margin-bottom: 4px;
  color: rgba(244, 247, 243, 0.72);
  line-height: 1.65;
}

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

.contact-method {
  position: relative;
  display: grid;
  min-height: 132px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  border-color: rgba(51, 207, 30, 0.38);
  background: rgba(51, 207, 30, 0.075);
}

.contact-method.primary {
  border-color: rgba(51, 207, 30, 0.42);
  background: linear-gradient(145deg, rgba(51, 207, 30, 0.18), rgba(255, 255, 255, 0.04));
}

.method-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(51, 207, 30, 0.36);
  border-radius: 8px;
  color: #071007;
  font-size: 0.78rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--green), #9cf766);
  box-shadow: 0 12px 24px rgba(51, 207, 30, 0.16);
}

.contact-method strong {
  align-self: end;
  color: var(--white);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.28;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-method strong.email-value {
  font-size: clamp(0.92rem, 1.35vw, 1.03rem);
  letter-spacing: 0;
}

.contact-method strong.email-value span {
  display: block;
}

.contact-map-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 156px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(51, 207, 30, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(51, 207, 30, 0.13), transparent 46%),
    rgba(255, 255, 255, 0.045);
}

.contact-map-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--white);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  line-height: 1.35;
}

.contact-map-panel span {
  display: block;
  color: rgba(244, 247, 243, 0.72);
  line-height: 1.45;
}

.contact-map-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  color: #071007;
  font-weight: 900;
  background: var(--green);
  white-space: nowrap;
}

.map-orbit {
  position: absolute;
  right: -44px;
  top: -50px;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(51, 207, 30, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 46px rgba(51, 207, 30, 0.08), 0 0 50px rgba(51, 207, 30, 0.08);
}

.qr-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  visibility: hidden;
}

.qr-is-open .qr-panel,
.qr-panel.open {
  pointer-events: auto;
  visibility: visible;
}

.qr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  transition: opacity 180ms ease;
}

.qr-is-open .qr-backdrop,
.qr-panel.open .qr-backdrop {
  opacity: 1;
}

.qr-sheet {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: min(560px, calc(100vw - 32px));
  overflow: auto;
  padding: 24px;
  transform: translateX(22px);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--basalt-900);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, opacity 220ms ease;
}

.qr-is-open .qr-sheet,
.qr-panel.open .qr-sheet {
  transform: translateX(0);
  opacity: 1;
}

.qr-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.qr-head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 6vw, 2.55rem);
}

.qr-head span {
  color: rgba(244, 247, 243, 0.66);
  line-height: 1.5;
}

.icon-button {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.qr-tools {
  position: sticky;
  top: -24px;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 0 0 14px;
  background: linear-gradient(180deg, var(--basalt-900) 0%, rgba(9, 11, 9, 0.9) 100%);
}

.qr-tools input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.qr-tools input:focus {
  border-color: rgba(51, 207, 30, 0.62);
}

.category-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-strip button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--stone-100);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.category-strip button.active {
  border-color: transparent;
  color: #061006;
  font-weight: 800;
  background: var(--green);
}

.product-grid {
  display: grid;
  gap: 12px;
}

.product-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  min-height: 132px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.product-card p {
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-card strong {
  color: var(--white);
  font-size: 1.18rem;
}

.product-tag {
  margin-bottom: 9px;
  padding: 5px 8px;
  font-size: 0.72rem;
}

.reveal {
  transform: translateY(26px);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes reveal-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes console-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes wave-rise {
  0%,
  100% {
    transform: scaleY(0.62);
    opacity: 0.68;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes logo-orbit {
  0%,
  100% {
    transform: rotate(12deg) scaleX(1);
    opacity: 0.48;
  }
  50% {
    transform: rotate(18deg) scaleX(1.08);
    opacity: 0.82;
  }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  width: 30px;
  height: 48px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 5px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--green);
  animation: scroll-cue 1.65s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 18px);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 10, 8, 0.95);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown-trigger {
    width: 100%;
    min-height: 48px;
    padding: 14px 38px 14px 14px;
    text-align: left;
  }

  .nav-dropdown-trigger::before {
    right: 16px;
  }

  .nav-dropdown-trigger::after {
    right: 38px;
    left: 14px;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin: 0 0 6px;
    padding: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content,
  .split-layout,
  .contact-grid,
  .atmosphere-panel,
  .home-gateway-grid,
  .about-hero-grid,
  .plans-hero-grid,
  .contact-page-grid,
  .about-story-grid,
  .system-grid,
  .plan-guidance,
  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .atmosphere-panel .btn,
  .membership-console .btn {
    justify-self: start;
  }

  .hero-content {
    min-height: auto;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(1160px, calc(100vw - 28px));
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    padding: 8px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 116px;
  }

  .language-switcher {
    position: fixed;
    right: 8px;
    bottom: 10px;
    z-index: 60;
    background: rgba(8, 10, 8, 0.9);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
  }

  .admin-shortcut {
    display: none;
  }

  .hero-section {
    padding-top: 124px;
  }

  .subpage-hero {
    min-height: auto;
    padding: 126px 0 62px;
  }

  .subpage-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .brand-wordmark {
    display: block;
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.2rem);
    line-height: 0.94;
  }

  .wordmark-logo {
    display: block;
    width: min(82vw, 330px);
    margin-bottom: 8px;
  }

  .wordmark-accent {
    display: block;
    margin-top: 0;
  }

  .console-logo-stage {
    min-height: 142px;
    padding: 18px;
  }

  .console-logo-stage img {
    width: min(270px, 82vw);
  }

  .hero-copy,
  .hero-lead,
  .performance-console {
    max-width: 100%;
  }

  .subpage-copy,
  .contact-command {
    width: min(100%, 342px);
    max-width: min(100%, 342px);
    min-width: 0;
  }

  .contact-page-grid,
  .contact-detail-grid {
    min-width: 0;
    justify-items: start;
  }

  .contact-page-grid > *,
  .contact-detail-grid > * {
    width: min(100%, 342px);
    max-width: min(100%, 342px);
  }

  .subpage-copy p,
  .contact-command p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .contact-primary-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 342px;
  }

  .contact-primary-actions .btn,
  .contact-map-panel a,
  .plan-guidance .btn,
  .membership-console .btn {
    width: 100%;
  }

  .contact-method-grid,
  .contact-map-panel {
    grid-template-columns: 1fr;
  }

  .contact-command {
    padding: 18px;
  }

  .contact-method {
    min-height: 118px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .image-stack img {
    aspect-ratio: 1 / 1;
  }

  .qr-sheet {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 92svh;
    border-radius: 8px 8px 0 0;
  }

  .product-card {
    grid-template-columns: 88px 1fr;
  }

  .product-card img {
    width: 88px;
    height: 88px;
  }
}

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

/* Corporate footer and mobile stability layer */
.hero-content > *,
.about-hero-grid > *,
.plans-hero-grid > *,
.contact-page-grid > *,
.about-story-grid > *,
.contact-detail-grid > *,
.metric-grid > *,
.contact-method-grid > * {
  min-width: 0;
}

.hero-panel,
.performance-console,
.membership-console,
.contact-command,
.contact-map-panel,
.social-radar,
.console-logo-stage,
.metric-grid,
.console-wave {
  width: 100%;
  max-width: 100%;
}

.console-logo-stage,
.console-wave,
.metric-grid div {
  min-width: 0;
  overflow: hidden;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7vw, 78px) 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(51, 207, 30, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.2), rgba(5, 6, 5, 0.94));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(180px, 0.45fr) minmax(240px, 0.6fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.footer-brand img {
  width: 158px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 247, 243, 0.68);
  line-height: 1.72;
}

.footer-nav,
.footer-contact,
.footer-socials {
  display: grid;
  gap: 12px;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(244, 247, 243, 0.78);
  line-height: 1.45;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-socials {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(51, 207, 30, 0.24);
  border-radius: 8px;
  color: var(--stone-100);
  font-weight: 850;
  background: rgba(51, 207, 30, 0.07);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 247, 243, 0.54);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero-panel {
    padding: 18px;
  }

  .performance-console {
    min-height: auto;
  }

  .console-logo-stage {
    min-height: 132px;
    margin-bottom: 18px;
  }

  .metric-grid div {
    min-height: 84px;
  }

  .footer-grid,
  .footer-socials {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

/* 3D UI upgrade layer */
.hero-panel,
.gateway-card,
.proof-item,
.plan-card,
.about-signal-card,
.membership-console,
.social-radar,
.contact-command,
.contact-method,
.contact-map-panel,
.product-card,
.brand-standard-panel,
.plan-compare {
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-panel,
.about-signal-card,
.membership-console,
.social-radar,
.contact-command,
.contact-map-panel,
.brand-standard-panel,
.plan-compare {
  transform: perspective(1200px) rotateX(var(--ui-tilt-y, 0deg)) rotateY(var(--ui-tilt-x, 0deg)) translateZ(0);
}

.gateway-card,
.proof-item,
.contact-method,
.product-card {
  transform: perspective(900px) rotateX(var(--ui-tilt-y, 0deg)) rotateY(var(--ui-tilt-x, 0deg)) translateZ(0);
}

.plan-card {
  transform: perspective(1000px) rotateX(var(--tilt-y, var(--ui-tilt-y, 0deg))) rotateY(var(--tilt-x, var(--ui-tilt-x, 0deg))) translateZ(0);
}

.hero-panel::after,
.about-signal-card::after,
.membership-console::after,
.social-radar::after,
.contact-command::after,
.contact-map-panel::after,
.brand-standard-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(51, 207, 30, 0.13);
  border-radius: 8px;
  transform: translateZ(34px);
}

.gateway-card > *,
.proof-item > *,
.plan-card > *,
.contact-method > *,
.product-card > *,
.brand-standard-panel > *,
.plan-compare > * {
  position: relative;
  z-index: 1;
  transform: translateZ(18px);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 18% 7% auto auto;
  z-index: -1;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(51, 207, 30, 0.24);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-18deg);
  box-shadow:
    0 0 34px rgba(51, 207, 30, 0.18),
    inset 0 0 46px rgba(51, 207, 30, 0.08);
}

.section {
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 48%, rgba(51, 207, 30, 0.035) 49%, transparent 51% 100%);
  opacity: 0.55;
}

@media (max-width: 760px) {
  .global-depth-canvas {
    opacity: 0.42;
  }

  .subpage-hero::after {
    width: 86vw;
    inset: 32% -32% auto auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions {
    display: contents;
  }

  .language-switcher {
    position: static;
    grid-column: 2;
    justify-self: center;
    transform: none;
  }

  .nav-toggle {
    position: fixed;
    top: 28px;
    right: auto;
    left: min(344px, calc(100vw - 46px));
    z-index: 120;
    display: block !important;
    transform: none;
    border-color: rgba(51, 207, 30, 0.38);
    background: rgba(6, 12, 7, 0.9);
  }
}

/* Premium upgrade layer */
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 4vw 42px;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(51, 207, 30, 0.72), rgba(255, 255, 255, 0.18), transparent);
  box-shadow: 0 0 38px rgba(51, 207, 30, 0.22);
}

.wordmark-accent {
  color: var(--white);
  background: linear-gradient(180deg, #ffffff 0%, #f8faf7 45%, #c9d0c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.46);
}

.proof-strip-section {
  padding-top: 18px;
  padding-bottom: 36px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-item,
.brand-standard-panel,
.plan-compare {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(7, 9, 8, 0.82);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.proof-item {
  min-height: 178px;
  padding: 22px;
}

.proof-item span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 900;
}

.proof-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.02rem;
}

.proof-item p {
  margin: 0;
  color: rgba(244, 247, 243, 0.68);
  line-height: 1.6;
}

.brand-standard-section,
.plan-compare-section {
  padding-top: 38px;
}

.brand-standard-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: clamp(18px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  background:
    radial-gradient(circle at 80% 20%, rgba(51, 207, 30, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 9, 8, 0.86);
}

.brand-standard-panel p {
  max-width: 640px;
  color: rgba(244, 247, 243, 0.72);
  line-height: 1.7;
}

.standard-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.standard-matrix span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 1px solid rgba(51, 207, 30, 0.18);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: rgba(6, 8, 7, 0.74);
}

.plan-compare {
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) repeat(var(--plan-count, 3), minmax(140px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.compare-row > * {
  padding: 16px;
  background: rgba(7, 9, 8, 0.9);
}

.compare-head > * {
  color: var(--white);
  font-weight: 900;
  background: rgba(51, 207, 30, 0.12);
}

.compare-row span {
  color: rgba(244, 247, 243, 0.78);
}

.compare-row i {
  color: var(--green);
  font-style: normal;
  font-weight: 850;
}

.product-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(51, 207, 30, 0.32);
  background: rgba(10, 16, 10, 0.94);
}

.gateway-card:hover {
  transform: perspective(900px) rotateX(var(--ui-tilt-y, 0deg)) rotateY(var(--ui-tilt-x, 0deg)) translateY(-4px) translateZ(0);
}

.contact-method:hover,
.product-card:hover {
  transform: perspective(900px) rotateX(var(--ui-tilt-y, 0deg)) rotateY(var(--ui-tilt-x, 0deg)) translateY(-3px) translateZ(0);
}

.product-card > div {
  min-width: 0;
}

  .product-card p,
  .product-card h3 {
    overflow-wrap: anywhere;
  }

@media (max-width: 980px) {
  .qr-sheet {
    width: min(390px, 100vw);
  }
}

@media (max-width: 980px) {
  .site-header {
    right: 8px;
    left: 8px;
    width: auto;
    transform: none;
  }

  .language-switcher {
    position: fixed;
    right: auto;
    bottom: 10px;
    left: 50%;
    z-index: 80;
    transform: translateX(-50%);
    background: rgba(8, 10, 8, 0.9);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
  }

  .hero-copy,
  .hero-lead {
    max-width: min(620px, calc(100vw - 28px));
  }

  .proof-strip,
  .brand-standard-panel {
    grid-template-columns: 1fr 1fr;
  }

  .plan-compare {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 720px;
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 4px;
  }

  .site-header {
    right: 8px;
    left: 8px;
    width: auto;
    transform: none;
  }

  .language-switcher {
    position: fixed;
    right: auto;
    bottom: 10px;
    left: 50%;
    z-index: 80;
    transform: translateX(-50%);
    gap: 2px;
    padding: 3px;
    background: rgba(8, 10, 8, 0.9);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
  }

  .language-switcher a {
    width: 19px;
    height: 26px;
  }

  .language-switcher img {
    width: 16px;
    height: 12px;
  }

  .nav-toggle {
    position: fixed;
    top: 28px;
    right: auto;
    left: min(344px, calc(100vw - 46px));
    z-index: 120;
    display: block !important;
    width: 28px;
    height: 34px;
    transform: none;
    border-color: rgba(51, 207, 30, 0.36);
    background: rgba(51, 207, 30, 0.12);
  }

  .hero-copy,
  .hero-lead,
  .performance-console {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .proof-strip,
  .brand-standard-panel,
  .standard-matrix {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
  }

  .brand-wordmark {
    display: block;
  }

  .brand img {
    width: 86px;
  }

  .hero-copy,
  .hero-lead {
    width: min(360px, calc(100vw - 28px));
    max-width: min(360px, calc(100vw - 28px));
  }

  .wordmark-logo {
    width: min(82vw, 330px);
  }
}

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

@media (max-width: 640px) {
  .hero-content {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    overflow: hidden;
  }

  .hero-panel,
  .performance-console {
    width: 100%;
    max-width: 100%;
    transform: none !important;
  }

  .performance-console {
    justify-self: start;
    width: calc(100vw - 42px);
    max-width: calc(100vw - 42px);
    margin-inline: 0;
  }

  .hero-panel::after,
  .performance-console::after {
    inset: 8px;
    transform: none !important;
  }

  .console-logo-stage img {
    max-width: 100%;
  }
}

/* Immersive social, SVG and AI assistant layer */
.svg-icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  flex: 0 0 auto;
}

.btn-icon,
.footer-contact-link,
.footer-socials a,
.ai-chat-actions a,
.ai-chat-actions button {
  gap: 9px;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(5, 7, 6, 0.98), rgba(13, 16, 15, 0.94)),
    repeating-linear-gradient(90deg, rgba(51, 207, 30, 0.06) 0 1px, transparent 1px 18px);
  opacity: 1;
  transition: opacity 460ms ease, visibility 460ms ease;
}

.page-transition span,
.page-transition i {
  position: absolute;
  border: 1px solid rgba(51, 207, 30, 0.34);
  transform-style: preserve-3d;
}

.page-transition span {
  width: min(58vw, 520px);
  aspect-ratio: 1 / 0.38;
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-18deg);
  animation: transition-ring 1.15s ease-in-out infinite;
}

.page-transition i {
  width: min(34vw, 310px);
  aspect-ratio: 1 / 0.38;
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(14deg);
  animation: transition-ring 1.15s ease-in-out infinite reverse;
}

.page-transition.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.page-transition.is-leaving {
  visibility: visible;
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 160;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--green), #7ee6ff, #f6d36d);
  box-shadow: 0 0 24px rgba(51, 207, 30, 0.5);
}

.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 320px;
  height: 320px;
  transform: translate(calc(var(--cursor-x, -400px) - 50%), calc(var(--cursor-y, -400px) - 50%));
  border: 1px solid rgba(126, 230, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(51, 207, 30, 0.12), transparent 58%),
    conic-gradient(from 120deg, rgba(126, 230, 255, 0.12), transparent, rgba(246, 211, 109, 0.1), transparent);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.72;
  transition: transform 80ms linear;
}

.social-wall-section {
  overflow: hidden;
}

.social-wall-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.social-wall-copy {
  max-width: 650px;
}

.social-wall-copy h2 {
  max-width: 760px;
}

.social-wall-copy p {
  color: rgba(244, 247, 243, 0.72);
  line-height: 1.75;
}

.social-wall-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-wall-stage {
  position: relative;
  min-height: 560px;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 20px),
    rgba(7, 10, 9, 0.86);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  transform: perspective(1300px) rotateX(var(--ui-tilt-y, 0deg)) rotateY(var(--ui-tilt-x, 0deg));
  transform-style: preserve-3d;
}

.social-wall-stage::before,
.social-wall-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.social-wall-stage::before {
  inset: 16px;
  border: 1px solid rgba(51, 207, 30, 0.16);
  border-radius: 8px;
  transform: translateZ(34px);
}

.social-wall-stage::after {
  right: -18%;
  bottom: -22%;
  width: 68%;
  aspect-ratio: 1 / 0.42;
  border: 1px solid rgba(126, 230, 255, 0.22);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-18deg);
  box-shadow: 0 0 52px rgba(126, 230, 255, 0.1);
}

.feed-command {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 7, 6, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateZ(44px);
}

.feed-command div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--white);
  font-weight: 900;
}

.feed-command svg {
  color: #ff6da7;
}

.feed-command span {
  overflow-wrap: anywhere;
}

.feed-command i {
  padding: 7px 10px;
  border-radius: 999px;
  color: #061006;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  background: linear-gradient(135deg, var(--green), #f6d36d);
  box-shadow: 0 0 24px rgba(51, 207, 30, 0.28);
}

.social-feed-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 62px);
  gap: 12px;
  margin-top: 16px;
  transform-style: preserve-3d;
}

.social-card {
  position: relative;
  display: grid;
  align-content: end;
  min-width: 0;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
  transform: perspective(1000px) rotateX(var(--ui-tilt-y, 0deg)) rotateY(var(--ui-tilt-x, 0deg)) translateZ(22px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.social-card:hover {
  border-color: rgba(51, 207, 30, 0.38);
  transform: perspective(1000px) rotateX(var(--ui-tilt-y, 0deg)) rotateY(var(--ui-tilt-x, 0deg)) translateY(-5px) translateZ(22px);
}

.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.82));
  z-index: 1;
}

.social-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.1) brightness(0.7);
  transition: transform 500ms ease;
}

.social-card:hover img {
  transform: scale(1.05);
}

.social-card span,
.social-card strong,
.social-card small {
  position: relative;
  z-index: 2;
}

.social-card span {
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  background: rgba(0, 0, 0, 0.38);
}

.social-card strong {
  color: var(--white);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.social-card small {
  margin-top: 6px;
  color: rgba(244, 247, 243, 0.66);
}

.social-card-1 {
  grid-column: 1 / 5;
  grid-row: 1 / 4;
}

.social-card-2 {
  grid-column: 3 / 7;
  grid-row: 4 / 7;
}

.social-card-3 {
  grid-column: 1 / 3;
  grid-row: 4 / 7;
}

.reel-device {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(28vw, 150px);
  min-width: 112px;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(145deg, rgba(51, 207, 30, 0.16), rgba(126, 230, 255, 0.1)),
    rgba(4, 5, 5, 0.78);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.4);
  transform: translateZ(68px) rotateZ(4deg);
}

.reel-device span {
  position: absolute;
  top: 12px;
  width: 34%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.reel-device strong {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.reel-device i {
  position: absolute;
  bottom: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(51, 207, 30, 0.52);
  border-radius: 50%;
  background: rgba(51, 207, 30, 0.12);
}

.ai-chat-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 230;
  width: min(420px, calc(100vw - 28px));
  pointer-events: none;
}

.ai-chat-launcher {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(51, 207, 30, 0.44);
  border-radius: 999px;
  color: #061006;
  font-weight: 950;
  cursor: pointer;
  pointer-events: auto;
  background: linear-gradient(135deg, var(--green), #7ee6ff 52%, #f6d36d);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38), 0 0 30px rgba(51, 207, 30, 0.22);
  transform: perspective(900px) rotateX(var(--ui-tilt-y, 0deg)) rotateY(var(--ui-tilt-x, 0deg));
}

.ai-chat-launcher i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #061006;
  box-shadow: 0 0 16px rgba(6, 16, 6, 0.62);
}

.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: flex;
  flex-direction: column;
  width: min(420px, calc(100vw - 28px));
  max-height: min(720px, calc(100svh - 112px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
    rgba(7, 10, 9, 0.96);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.ai-chat-widget.is-open .ai-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-chat-widget.is-open .ai-chat-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
}

.ai-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-chat-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-chat-head span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(51, 207, 30, 0.82);
}

.ai-chat-head h2 {
  margin: 6px 0 0;
  font-size: 1.2rem;
}

.ai-chat-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.055);
}

.ai-chat-messages {
  display: grid;
  flex: 1 1 210px;
  align-content: start;
  gap: 10px;
  min-height: 118px;
  max-height: 260px;
  overflow-y: auto;
  padding: 16px 18px;
  scrollbar-width: thin;
}

.ai-message {
  max-width: 86%;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(244, 247, 243, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.05);
}

.ai-message-user {
  justify-self: end;
  color: #061006;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), #b8f277);
}

.ai-message-bot {
  justify-self: start;
}

.ai-chat-form {
  display: grid;
  flex: 0 1 auto;
  gap: 10px;
  min-height: 0;
  max-height: min(430px, 58svh);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
}

.ai-lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ai-chat-form input,
.ai-chat-form textarea,
.ai-chat-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--stone-100);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.ai-chat-form input,
.ai-chat-form select {
  min-height: 40px;
  padding: 0 10px;
}

.ai-chat-form select {
  color: rgba(244, 247, 243, 0.78);
  background-color: #101411;
}

.ai-chat-form textarea {
  min-height: 76px;
  max-height: 150px;
  padding: 10px;
  resize: vertical;
}

.ai-chat-form input:focus,
.ai-chat-form textarea:focus,
.ai-chat-form select:focus {
  border-color: rgba(51, 207, 30, 0.62);
}

.ai-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  color: rgba(244, 247, 243, 0.66);
  font-size: 0.78rem;
  line-height: 1.45;
}

.ai-consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
}

.ai-honeypot {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.ai-chat-actions {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding-top: 8px;
  background: linear-gradient(180deg, rgba(7, 10, 9, 0), rgba(7, 10, 9, 0.97) 32%);
}

.ai-chat-actions a,
.ai-chat-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 8px;
  font-weight: 900;
}

.ai-chat-actions a {
  border: 1px solid rgba(51, 207, 30, 0.3);
  color: var(--stone-100);
  background: rgba(51, 207, 30, 0.08);
}

.ai-chat-actions button {
  border: 0;
  color: #061006;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green), #9cf766);
}

.ai-chat-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.ai-chat-widget.is-loading .ai-chat-launcher i {
  animation: chat-pulse 700ms ease-in-out infinite;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
}

.footer-contact-link svg,
.footer-socials svg {
  color: var(--green);
}

.footer-socials a {
  display: inline-flex;
}

.method-icon svg {
  width: 20px;
  height: 20px;
}

@keyframes transition-ring {
  0%,
  100% {
    opacity: 0.38;
    transform: rotateX(68deg) rotateZ(-18deg) scale(0.94);
  }
  50% {
    opacity: 0.9;
    transform: rotateX(68deg) rotateZ(14deg) scale(1.04);
  }
}

@keyframes chat-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

@media (max-width: 980px) {
  .social-wall-shell {
    grid-template-columns: 1fr;
  }

  .social-wall-stage {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .cursor-aura {
    display: none;
  }

  .social-wall-actions,
  .social-wall-actions .btn {
    width: 100%;
  }

  .social-wall-stage {
    min-height: auto;
    padding: 14px;
  }

  .social-feed-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .social-card,
  .social-card-1,
  .social-card-2,
  .social-card-3 {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }

  .reel-device {
    position: relative;
    right: auto;
    bottom: auto;
    width: 124px;
    margin: 14px 0 0 auto;
    transform: none;
  }

  .ai-chat-widget {
    right: 14px;
    bottom: 72px;
    width: min(390px, calc(100vw - 28px));
  }

  .ai-chat-panel {
    bottom: 68px;
    width: min(390px, calc(100vw - 28px));
    max-height: calc(100svh - 132px);
  }

  .ai-chat-head {
    padding: 14px;
  }

  .ai-chat-messages {
    flex-basis: 124px;
    min-height: 88px;
    max-height: 24svh;
    padding: 12px 14px;
  }

  .ai-chat-form {
    max-height: none;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  }

  .ai-lead-grid,
  .ai-chat-actions {
    grid-template-columns: 1fr;
  }

  .ai-chat-launcher {
    min-height: 50px;
    padding: 0 14px;
  }
}

@media (hover: none) {
  .cursor-aura {
    display: none;
  }
}

/* QR menu order experience */
.qr-panel {
  z-index: 320;
}

.qr-backdrop {
  background:
    radial-gradient(circle at 16% 12%, rgba(51, 207, 30, 0.14), transparent 32%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.qr-sheet {
  left: 50%;
  right: auto;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  transform: translate(-50%, 18px) scale(0.985);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 86% 4%, rgba(51, 207, 30, 0.14), transparent 34%),
    rgba(7, 10, 9, 0.98);
}

.qr-is-open .qr-sheet,
.qr-panel.open .qr-sheet {
  transform: translate(-50%, 0) scale(1);
}

.qr-head strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(51, 207, 30, 0.34);
  border-radius: 8px;
  color: #caffbe;
  font-size: 0.78rem;
  background: rgba(51, 207, 30, 0.09);
}

.qr-menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 16px;
  align-items: start;
}

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

.product-card {
  position: relative;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 154px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
}

.product-card.is-featured {
  border-color: rgba(51, 207, 30, 0.32);
  box-shadow: 0 18px 50px rgba(51, 207, 30, 0.08);
}

.product-card.is-out-of-stock {
  opacity: 0.68;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  min-height: 130px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    #111711;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 16px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(18px);
}

.product-visual span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px 18px 12px 12px;
  color: #061006;
  font-size: 1.1rem;
  font-weight: 950;
  background: linear-gradient(160deg, #f7fff4, #8ff17e);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.product-visual i {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

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

.product-visual-energy {
  background: linear-gradient(145deg, rgba(89, 255, 112, 0.24), rgba(12, 17, 14, 0.98));
}

.product-visual-cold,
.product-visual-soda,
.product-visual-water {
  background: linear-gradient(145deg, rgba(126, 230, 255, 0.24), rgba(12, 17, 20, 0.98));
}

.product-visual-coffee {
  background: linear-gradient(145deg, rgba(246, 211, 109, 0.26), rgba(18, 12, 8, 0.98));
}

.product-visual-special {
  background: linear-gradient(145deg, rgba(255, 118, 166, 0.24), rgba(16, 10, 13, 0.98));
}

.product-visual-protein {
  background: linear-gradient(145deg, rgba(51, 207, 30, 0.28), rgba(9, 20, 12, 0.98));
}

.product-info {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.product-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.product-featured,
.product-stock {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.product-featured {
  color: #061006;
  background: var(--green);
}

.product-stock.is-available {
  color: #bcffb6;
  background: rgba(51, 207, 30, 0.12);
}

.product-stock.is-passive {
  color: #ffd0d0;
  background: rgba(255, 86, 86, 0.14);
}

.product-price-row {
  display: grid;
  gap: 3px;
}

.product-price-row strong {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.product-price-row del {
  color: rgba(244, 247, 243, 0.44);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-price-row small {
  color: #caffbe;
  font-size: 0.76rem;
  font-weight: 850;
}

.product-add,
.qr-order-button,
.qr-cart-head button,
.qr-cart-stepper button {
  cursor: pointer;
}

.product-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #061006;
  font-weight: 950;
  background: linear-gradient(135deg, var(--green), #9cf766);
}

.product-add:disabled {
  cursor: not-allowed;
  color: rgba(244, 247, 243, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.qr-cart {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 9, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.qr-cart-head,
.qr-cart-total,
.qr-cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.qr-cart-head {
  align-items: flex-start;
}

.qr-cart-head span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.qr-cart-head h3 {
  margin: 4px 0 0;
  font-size: 1.18rem;
}

.qr-cart-head button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(244, 247, 243, 0.8);
  background: rgba(255, 255, 255, 0.055);
}

.qr-cart-items {
  display: grid;
  gap: 10px;
}

.qr-cart-items p {
  margin: 0;
  color: rgba(244, 247, 243, 0.62);
}

.qr-cart-item {
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.qr-cart-item strong,
.qr-cart-item span {
  display: block;
}

.qr-cart-item strong {
  font-size: 0.92rem;
}

.qr-cart-item span {
  margin-top: 3px;
  color: rgba(244, 247, 243, 0.62);
  font-size: 0.78rem;
}

.qr-cart-stepper {
  display: inline-grid;
  grid-template-columns: 32px 30px 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.qr-cart-stepper button {
  width: 32px;
  height: 32px;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.qr-cart-stepper em {
  text-align: center;
  font-style: normal;
  font-weight: 900;
}

.qr-cart-total {
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.qr-cart-total span {
  color: rgba(244, 247, 243, 0.66);
}

.qr-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 8px;
  color: #061006;
  font-weight: 950;
  background: linear-gradient(135deg, var(--green), #7ee6ff);
}

.qr-order-button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.54;
  filter: grayscale(0.4);
}

@media (max-width: 980px) {
  .qr-sheet {
    inset: 0;
    width: 100%;
    max-height: none;
    border-radius: 0;
    padding: 16px;
  }

  .qr-is-open .qr-sheet,
  .qr-panel.open .qr-sheet {
    transform: translateY(0) scale(1);
  }

  .qr-head {
    gap: 12px;
    margin-bottom: 16px;
  }

  .qr-menu-layout,
  .qr-menu-layout .product-grid {
    grid-template-columns: 1fr;
  }

  .qr-cart {
    position: sticky;
    bottom: -16px;
    top: auto;
    z-index: 4;
    margin: 8px -6px 0;
    border-radius: 8px 8px 0 0;
  }
}

@media (max-width: 560px) {
  .product-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 11px;
    min-height: 138px;
  }

  .product-visual {
    width: 84px;
    min-height: 112px;
  }

  .product-visual span {
    width: 48px;
    height: 64px;
    font-size: 0.92rem;
  }

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

  .product-card p {
    font-size: 0.84rem;
  }
}
