
:root {
  --gb-bg: #282828;
  --gb-bg-soft: #1d2021;
  --gb-panel: #32302f;
  --gb-panel-2: #3c3836;
  --gb-line: rgba(235, 219, 178, 0.12);
  --gb-text: #ebdbb2;
  --gb-text-muted: #d5c4a1;
  --gb-orange: #fe8019;
  --gb-yellow: #fabd2f;
  --gb-green: #b8bb26;
  --gb-blue: #83a598;
  --gb-purple: #d3869b;
  --gb-red: #fb4934;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.22);
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Fira Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(70vw 60vh at 10% 0%, rgba(254,128,25,0.10), transparent 60%),
    radial-gradient(55vw 50vh at 90% 0%, rgba(184,187,38,0.08), transparent 60%),
    linear-gradient(160deg, var(--gb-bg), var(--gb-bg-soft));
  color: var(--gb-text);
  line-height: 1.6;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 76px 0; }
.section-title { font-size: 2rem; margin: 0 0 18px; letter-spacing: .2px; }
.muted { color: var(--gb-text-muted); }
.center { text-align: center; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--gb-bg) 86%, transparent);
  border-bottom: 1px solid rgba(235,219,178,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 0;
}
.brand { display: flex; gap: 12px; align-items: center; }
.logo {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gb-orange), var(--gb-green));
  color: #1d2021; font-weight: 800; box-shadow: var(--shadow);
}
.brand-text { font-weight: 700; letter-spacing: .25px; }
.nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--gb-text); text-decoration: none; opacity: .88; display: inline-flex; align-items: center; gap: 8px; }
.nav a:hover { opacity: 1; color: var(--gb-yellow); }

.btn {
  appearance: none; text-decoration: none; cursor: pointer; border: 1px solid transparent;
  border-radius: var(--radius-sm); padding: 10px 16px; color: var(--gb-text);
  font-weight: 700; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gb-orange), var(--gb-yellow));
  color: #1d2021; box-shadow: var(--shadow);
}
.btn-accent {
  background: linear-gradient(135deg, var(--gb-green), var(--gb-blue));
  color: #1d2021; box-shadow: var(--shadow);
}
.btn-ghost {
  border: 1px solid rgba(235,219,178,0.22);
  background: rgba(60,56,54,0.48);
}
.btn-lg { padding: 14px 22px; font-size: 1.04rem; }

.ico { width: 18px; height: 18px; display: inline-block; }
.ico-xl { width: 28px; height: 28px; color: #1d2021; }
.card .ico { width: 22px; height: 22px; color: var(--gb-yellow); }

.hero {
  position: relative; overflow: hidden; padding-top: 100px;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none; filter: blur(34px); opacity: .26;
}
.hero::before {
  width: 60vw; height: 60vw; left: -12vw; top: -18vw;
  background: radial-gradient(closest-side, rgba(254,128,25,0.65), transparent 70%);
  animation: blobA 24s ease-in-out infinite alternate;
}
.hero::after {
  width: 55vw; height: 55vw; right: -12vw; top: -12vw;
  background: radial-gradient(closest-side, rgba(184,187,38,0.55), transparent 70%);
  animation: blobB 28s ease-in-out infinite alternate;
}
@keyframes blobA { from { transform: translate(0,0) scale(1); } to { transform: translate(6vw, 5vh) scale(1.1);} }
@keyframes blobB { from { transform: translate(0,0) scale(1);} to { transform: translate(-5vw, 8vh) scale(1.12);} }
.hero > .container { position: relative; z-index: 1; }
.grid-2 { display: grid; grid-template-columns: 1.08fr .92fr; gap: 30px; align-items: start; }
.hero-main h1 { font-size: clamp(2.45rem, 4vw, 4.4rem); line-height: 1.08; margin: 0 0 18px; }
.hero-main p { margin: 0 0 16px; }
.eyebrow {
  display: inline-flex; gap: 10px; align-items: center; padding: 8px 14px; margin-bottom: 16px;
  border-radius: 999px; background: rgba(60,56,54,0.58); border: 1px solid rgba(235,219,178,0.16); color: var(--gb-yellow); font-size: .95rem; font-weight: 700;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 26px;
}
.stat-card {
  background: linear-gradient(180deg, rgba(80,73,69,0.55), rgba(50,48,47,0.75));
  border: 1px solid var(--gb-line); border-radius: var(--radius);
  padding: 16px 14px; box-shadow: var(--shadow);
}
.stat-num { display: block; font-size: 2rem; line-height: 1; font-weight: 800; color: var(--gb-yellow); }
.stat-label { display: block; margin-top: 8px; color: var(--gb-text-muted); font-size: .95rem; }
.hero-visual { display: grid; gap: 18px; }
.hero-card-large {
  background: linear-gradient(180deg, rgba(60,56,54,0.88), rgba(29,32,33,0.92));
  border: 1px solid rgba(235,219,178,0.16); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card-inner.why { padding: 28px 24px 22px; }
.hero-card-inner.why h3 { margin: 0 0 14px; color: var(--gb-yellow); font-size: 1.4rem; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li {
  position: relative; padding: 14px 16px 14px 30px; border-radius: 12px;
  background: rgba(60,56,54,0.54); border: 1px solid rgba(235,219,178,0.14);
}
.checklist li::after {
  content: ''; position: absolute; left: 12px; top: 11px; bottom: 11px; width: 4px; border-radius: 4px;
  background: linear-gradient(180deg, var(--gb-green), var(--gb-blue)); opacity: .85;
}
.signal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.signal-card {
  padding: 16px; border-radius: 14px; border: 1px solid rgba(235,219,178,0.14); box-shadow: var(--shadow);
  display: grid; gap: 4px; min-height: 90px; align-content: center;
}
.signal-card span { font-weight: 800; }
.signal-card small { color: var(--gb-text-muted); }
.signal-card.orange { background: linear-gradient(135deg, rgba(254,128,25,0.16), rgba(60,56,54,0.65)); }
.signal-card.green  { background: linear-gradient(135deg, rgba(184,187,38,0.16), rgba(60,56,54,0.65)); }
.signal-card.blue   { background: linear-gradient(135deg, rgba(131,165,152,0.18), rgba(60,56,54,0.65)); }
.signal-card.purple { background: linear-gradient(135deg, rgba(211,134,155,0.18), rgba(60,56,54,0.65)); }
.home-subsection { margin-top: 52px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, rgba(80,73,69,0.56), rgba(60,56,54,0.66));
  border: 1px solid rgba(235,219,178,0.12); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow);
}
.card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.card h3 { margin: 0 0 8px; color: var(--gb-yellow); font-size: 1.08rem; }
.card p { margin: 0; color: var(--gb-text-muted); }

.spec-squares {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px;
}
.spec-square {
  position: relative; aspect-ratio: 1/1; border-radius: 18px; display: flex; flex-direction: column; gap: 10px;
  align-items: center; justify-content: center; text-align: center; padding: 18px; cursor: pointer;
  border: 1px solid rgba(235,219,178,0.2); box-shadow: var(--shadow);
  color: #1d2021; transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.spec-square:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,0.5); filter: saturate(1.06); }
.spec-square:focus-visible { outline: 2px solid var(--gb-yellow); outline-offset: 2px; }
.spec-square h4 { margin: 0; font-size: .98rem; line-height: 1.26; }
.spec-square:nth-child(12n+1) { background: linear-gradient(135deg, var(--gb-orange), var(--gb-yellow)); }
.spec-square:nth-child(12n+2) { background: linear-gradient(135deg, var(--gb-green), var(--gb-blue)); }
.spec-square:nth-child(12n+3) { background: linear-gradient(135deg, var(--gb-purple), var(--gb-orange)); }
.spec-square:nth-child(12n+4) { background: linear-gradient(135deg, var(--gb-yellow), var(--gb-green)); }
.spec-square:nth-child(12n+5) { background: linear-gradient(135deg, var(--gb-blue), var(--gb-purple)); }
.spec-square:nth-child(12n+6) { background: linear-gradient(135deg, var(--gb-orange), var(--gb-green)); }
.spec-square:nth-child(12n+7) { background: linear-gradient(135deg, #8ec07c, #fabd2f); }
.spec-square:nth-child(12n+8) { background: linear-gradient(135deg, #83a598, #fe8019); }
.spec-square:nth-child(12n+9) { background: linear-gradient(135deg, #d3869b, #b8bb26); }
.spec-square:nth-child(12n+10) { background: linear-gradient(135deg, #fabd2f, #83a598); }
.spec-square:nth-child(12n+11) { background: linear-gradient(135deg, #b8bb26, #d3869b); }
.spec-square:nth-child(12n+12) { background: linear-gradient(135deg, #fe8019, #83a598); }

.faq { display: grid; gap: 10px; }
.faq details {
  background: rgba(60,56,54,0.56); border: 1px solid rgba(235,219,178,0.12);
  border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow);
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--gb-purple); }
.faq p { margin: 10px 0 0; color: var(--gb-text-muted); }

.gallery { --size: 240px; display: grid; grid-template-columns: repeat(auto-fill, minmax(var(--size), 1fr)); gap: 14px; }
.shot { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; perspective: 900px; }
.shot img {
  display: block; width: 100%; height: 190px; object-fit: cover; border-radius: 14px;
  border: 2px solid var(--gb-panel); box-shadow: var(--shadow);
  transform-style: preserve-3d; transform-origin: center; will-change: transform;
  transition: transform .12s ease-out, filter .25s ease, box-shadow .2s ease;
}
.shot img:hover { filter: saturate(1.05); cursor: zoom-in; }
.shot::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(600px 600px at var(--gx,50%) var(--gy,50%), rgba(255,255,255,0.22), rgba(255,255,255,0) 50%);
  opacity: 0; pointer-events: none; mix-blend-mode: screen; transition: opacity .2s ease;
}
.shot:hover::before { opacity: .44; }
.shot::after {
  content: ''; position: absolute; top: -120%; left: -60%; width: 40%; height: 340%; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.06) 60%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%); transition: transform .6s ease; pointer-events: none; mix-blend-mode: screen;
}
.shot:hover::after { transform: translateX(220%); }
.shot:hover img { box-shadow: 0 22px 60px rgba(0,0,0,0.55); }

.launch-wrap { display: grid; gap: 16px; justify-items: center; }
.launch-notes {
  max-width: 940px; width: 100%; text-align: left; display: grid; gap: 10px;
  padding: 24px 22px 24px 28px; background: rgba(60,56,54,0.46); border: 1px solid rgba(235,219,178,0.12); border-radius: var(--radius);
}
.lead { margin: 0; color: var(--gb-text-muted); }

.site-footer {
  border-top: 1px solid rgba(235,219,178,0.08); background: color-mix(in oklab, var(--gb-bg) 90%, transparent);
  padding: 18px 0; color: var(--gb-text-muted);
}
.footer-inner { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.footer-inner .dot { opacity: .6; }

.lightbox { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1200; }
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(2px); }
.lightbox-content {
  position: relative; z-index: 2; display: grid; gap: 10px; justify-items: center;
  background: #1d2021; padding: 14px; border-radius: var(--radius); border: 1px solid rgba(235,219,178,0.18); box-shadow: var(--shadow);
}
.lightbox-viewport { width: min(92vw, 1400px); max-height: 72vh; border-radius: 8px; overflow: hidden; display: grid; place-items: center; }
.lightbox-viewport img { max-width: 100%; max-height: 100%; border-radius: 8px; transform-origin: center center; }
.lightbox-controls { display: flex; gap: 10px; }
.lightbox .btn { background: rgba(60,56,54,0.8); border: 1px solid rgba(235,219,178,0.18); }
.lightbox .btn:hover { background: rgba(80,73,69,0.9); }

.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1100; }
.modal[aria-hidden="false"] { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); }
.modal-content {
  position: relative; z-index: 2; width: min(780px, 92vw); max-height: 76vh; overflow: auto;
  background: #1d2021; border: 1px solid rgba(235,219,178,0.18); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px;
}
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.modal-head .head-left { display: flex; align-items: center; gap: 10px; }
.modal-head h3 { margin: 0; color: var(--gb-yellow); }
.modal-list { margin: 0; padding-left: 18px; color: var(--gb-text-muted); }
.modal-list li { margin: 8px 0; }
.drawer {
  position: fixed; right: 0; top: 0; bottom: 0; height: 100vh; width: min(560px, 95vw); max-height: none;
  border-radius: 16px 0 0 16px; transform: translateX(100%); transition: transform .25s ease;
}
.modal[aria-hidden="false"] .drawer { transform: translateX(0); }

@media (max-width: 1100px) {
  .grid-2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .cards-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .header-inner { align-items: flex-start; }
  .nav { gap: 12px; }
  .stats-row, .signal-grid, .cards-3 { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .hero { padding-top: 84px; }
  .section-title { font-size: 1.65rem; }
}
