/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0a1209;
  --bg2:        #0d1a11;
  --bg3:        #111f16;
  --surface:    rgba(255,255,255,0.05);
  --border:     rgba(255,255,255,0.08);
  --green:      #59D98C;
  --green-dim:  rgba(89,217,140,0.12);
  --blue:       #66A6FF;
  --blue-dim:   rgba(102,166,255,0.10);
  --orange:     #F99917;
  --orange-dim: rgba(249,153,23,0.10);
  --text:       #ffffff;
  --text-2:     rgba(255,255,255,0.55);
  --text-3:     rgba(255,255,255,0.28);
  --radius:     16px;
  --font:       -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,18,9,0.85);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: rgba(89,217,140,0.15); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #0a1209;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: var(--surface); }

.btn-ghost {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid rgba(89,217,140,0.3);
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { background: var(--green-dim); }

/* ── Section Shared ── */
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--badge-color, var(--green));
  background: var(--badge-bg, var(--green-dim));
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 48px;
  line-height: 1.15;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  margin-top: -28px;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ── Glow ── */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.glow-hero-l {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(89,217,140,0.16) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-delay: 0s;
}

.glow-hero-r {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(102,166,255,0.07) 0%, transparent 70%);
  top: 0; right: -100px;
  animation-delay: -3s;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 32px 80px;
  text-align: center;
  width: 100%;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.05s;
}

.hero-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
}

.hero-pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 5px 14px;
  border-radius: 100px;
}

h1 {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.15s;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.25s;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.35s;
}

.hero-note {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 64px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.42s;
}

.hero-visual {
  position: relative;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.55s;
}

/* ── App Window Frame ── */
.app-window {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: #060d08;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 60px 120px rgba(0,0,0,0.85),
    0 0 60px rgba(89,217,140,0.06);
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.app-window-bar {
  height: 38px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* ── Lock Screen (inside window) ── */
.app-window-screen {
  position: relative;
  background: linear-gradient(160deg, #0c1c10 0%, #060d07 55%, #0d1a11 100%);
  aspect-ratio: 16 / 7;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ls-glow {
  position: absolute;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(89,217,140,0.14) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.ls-bar {
  position: absolute;
  top: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  z-index: 2;
}

.ls-unlock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}

.ls-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.ls-clock-icon {
  width: 32px; height: 32px;
  color: rgba(89,217,140,0.7);
  stroke: rgba(89,217,140,0.7);
}

.ls-timer {
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 200;
  letter-spacing: 4px;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.ls-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2px;
  margin-top: 4px;
}

.app-window-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0%, #060d07 70%, #0a1209 100%);
  pointer-events: none;
  z-index: 5;
}

/* ── Concept Section ── */
.concept {
  background: var(--bg2);
  padding: 0 32px;
}

.concept-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-text { text-align: left; }

.concept-h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 20px;
  margin-top: 16px;
}

.concept-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 380px;
}

.concept-img-wrap {
  position: relative;
}
.concept-img-wrap::after {
  content: '';
  position: absolute;
  inset: -16px;
  background: radial-gradient(ellipse, rgba(89,217,140,0.12) 0%, transparent 65%);
  border-radius: 20px;
  pointer-events: none;
}

.concept-img-wrap {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(89,217,140,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.concept-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,18,9,0.35);
  pointer-events: none;
  border-radius: 20px;
}
.concept-img {
  width: auto;
  max-width: 280px;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
  filter: brightness(0.88) saturate(0.7);
}

/* ── How It Works ── */
.how { background: var(--bg); }

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover {
  border-color: rgba(89,217,140,0.3);
  transform: translateY(-3px);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 14px;
}
.step-icon  { font-size: 32px; margin-bottom: 14px; }
.step h3    { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p     { font-size: 14px; color: var(--text-2); line-height: 1.55; }

.step-arrow {
  font-size: 22px;
  color: var(--text-3);
  flex-shrink: 0;
}

/* ── Games ── */
.games { background: var(--bg2); }

.gtabs {
  display: inline-flex;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 36px;
}

.gtab {
  background: none;
  border: none;
  color: var(--text-2);
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 7px;
}
.gtab-icon { font-size: 16px; }
.gtab:hover:not(.active) { color: var(--text); background: rgba(255,255,255,0.06); }
.gtab.active {
  background: rgba(89,217,140,0.18);
  color: var(--green);
}

.gpanels { position: relative; }

.gpanel { display: none; }
.gpanel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.gpanel-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: left;
}

.gpanel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gpanel-games {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gpanel-games li {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.gpanel-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.gpanel-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gthumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.gthumb:hover {
  border-color: rgba(89,217,140,0.3);
  transform: translateY(-2px);
}
.gthumb img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
.gthumb span {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.gthumb.gthumb-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  gap: 8px;
}
.gthumb-icon { font-size: 2rem; }

/* ── Feature Rows ── */
.features-alt {
  background: var(--bg);
  padding: 0 32px;
}

.feat-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.feat-row:last-child { border-bottom: none; }

.feat-row--rev .feat-text { order: 2; }
.feat-row--rev .feat-img  { order: 1; }

.feat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feat-text h3 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.7px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feat-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 380px;
}

.feat-text kbd {
  display: inline-block;
  font-size: 13px;
  font-family: var(--font);
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 2px 8px;
  letter-spacing: 0;
}

.feat-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feat-img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}

.insights-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(89,217,140,0.15);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(89,217,140,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 420px;
  margin: 0 auto;
}
.insights-wrap:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(89,217,140,0.1);
}
.insights-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(10,18,9,0.45) 0%,
    rgba(10,18,9,0.25) 40%,
    rgba(10,18,9,0.5) 100%
  );
  pointer-events: none;
}
.insights-img {
  width: 100%;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
  filter: brightness(0.92) saturate(0.75);
  transition: none;
}
.insights-img:hover { transform: none; }

/* ── Features Grid ── */
.features-grid { background: var(--bg2); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(89,217,140,0.25);
  transform: translateY(-3px);
}
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* ── Pricing ── */
.pricing { background: var(--bg); }

.price-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--surface);
  border: 1px solid rgba(89,217,140,0.22);
  border-radius: 20px;
  padding: 48px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 0 80px rgba(89,217,140,0.07);
}

.price-left   { flex: 1; }
.price-name   { font-size: 22px; font-weight: 800; margin-bottom: 20px; }

.price-features { display: flex; flex-direction: column; gap: 10px; }
.price-feature  { font-size: 14px; color: var(--text-2); }
.price-feature::first-letter { color: var(--green); }

.price-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.price-trial {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 4px 12px;
  border-radius: 100px;
}

.price-amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.price-once {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
}

.price-buy-link {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
  transition: color 0.2s;
}
.price-buy-link:hover { color: var(--text-2); }

/* ── FAQ ── */
.faq { background: var(--bg2); }

.faq-list {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(89,217,140,0.25); }

.faq-item summary {
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-3);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--green);
}

.faq-item p {
  font-size: 14px;
  color: var(--text-2);
  padding: 0 20px 20px;
  line-height: 1.7;
}

/* ── Legal Page ── */
.legal-page {
  min-height: 100vh;
  padding-top: 100px;
}

.legal-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

.legal-h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 56px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-section ul li::before {
  content: '— ';
  color: var(--green);
}

.legal-section a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-2); }

.footer-copy { font-size: 13px; color: var(--text-3); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .concept-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .concept-body { max-width: 100%; }
  .concept-img-wrap::after { display: none; }

  .feat-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
  .feat-row--rev .feat-text { order: 0; }
  .feat-row--rev .feat-img  { order: 0; }

  .feat-text h3 { margin-bottom: 12px; }
  .feat-text p  { max-width: 100%; }

  .gpanel-split {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    text-align: center;
  }
  .gpanel-thumbs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links    { display: none; }
  .step-arrow   { display: none; }
  .price-card   { flex-direction: column; text-align: center; padding: 32px 24px; }
  .price-right  { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  h1 { letter-spacing: -1.5px; }
  .hero-brand { flex-direction: column; gap: 10px; }
  .gtabs { flex-direction: column; width: 100%; }
  .gpanel-thumbs { grid-template-columns: 1fr; }
}
