:root {
  --bg: #061126;
  --bg-2: #0b1d43;
  --panel: rgba(13, 31, 72, 0.84);
  --panel-strong: #111d45;
  --gold: #f6bd32;
  --gold-2: #ffe17a;
  --blue: #1684ff;
  --cyan: #55d7ff;
  --green: #44e36f;
  --red: #ff3c2f;
  --purple: #a84dff;
  --text: #f8fbff;
  --muted: #bed0eb;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(38, 132, 255, 0.32), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(246, 189, 50, 0.18), transparent 28rem),
    linear-gradient(180deg, #071431 0%, #061126 46%, #030814 100%);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Trebuchet MS", system-ui, sans-serif;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.028) 0 2px, transparent 2px 8px),
    linear-gradient(90deg, rgba(255,255,255,0.03), transparent 22%, transparent 76%, rgba(255,255,255,0.03));
  mix-blend-mode: screen;
  opacity: 0.65;
  z-index: -1;
}

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

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

p {
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

h1, h2, h3 {
  margin: 0;
  text-shadow: 0 4px 0 rgba(0,0,0,0.35);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.88;
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.55rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(9, 20, 48, 0.96), rgba(9, 20, 48, 0.72)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 4px);
  border-bottom: 2px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  color: white;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 0 0 2px rgba(255, 220, 90, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--muted);
  font-weight: 800;
}

.nav a:hover {
  color: var(--gold-2);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 76px);
  padding-top: 58px;
}

.eyebrow {
  font-family: "Trebuchet MS", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 8%, #ffe787 9% 22%, #f6bd32 23% 60%, #9c5b04 61% 100%);
  box-shadow: 0 0 20px rgba(246, 189, 50, 0.5);
}

.lead {
  font-size: 1.12rem;
  max-width: 58ch;
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  color: #1c1504;
  border: 3px solid #5b3304;
  box-shadow:
    inset 0 4px 0 rgba(255,255,255,0.36),
    inset 0 -5px 0 rgba(126,68,3,0.34),
    0 12px 24px rgba(0,0,0,0.28);
  transform: translateY(0);
  transition: transform .18s ease, filter .18s ease;
}

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

.btn-primary {
  background: linear-gradient(#ffe67d, #f6b72b 52%, #e28c09);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(#2b62c7, #112f78);
  border-color: #07183f;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  max-width: 620px;
}

.hero-stats div {
  padding: 18px;
  background: rgba(8, 22, 58, 0.76);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.7rem;
}

.hero-stats span {
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--muted);
  font-weight: 700;
}

.hero-art {
  position: relative;
  display: grid;
  justify-items: center;
}

.phone-frame {
  width: min(430px, 86vw);
  padding: 12px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)),
    linear-gradient(180deg, #18214d, #060b1d);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
}

.phone-frame img,
.panel-shot img,
.tactic-preview img,
.showcase img {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.17);
}

.floating-card {
  position: absolute;
  background: rgba(4, 10, 25, 0.86);
  border: 2px solid rgba(255, 216, 76, 0.78);
  box-shadow: 0 18px 42px rgba(0,0,0,0.45);
}

.floating-card-left {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  left: 4%;
  top: 8%;
  overflow: hidden;
  transform: rotate(-8deg);
}

.floating-card-right {
  right: 0;
  bottom: 16%;
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 4px;
  min-width: 190px;
  transform: rotate(4deg);
}

.floating-card-right strong {
  font-size: 1.35rem;
}

.floating-card-right small {
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--muted);
}

.mini-badge {
  display: inline-flex;
  width: max-content;
  color: #fff;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 900;
  background: #c30f0f;
  padding: 4px 8px;
  border-radius: 999px;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 22px;
}

.strip-item,
.feature-card,
.identity-grid article,
.download,
.showcase {
  background:
    linear-gradient(180deg, rgba(21, 44, 100, 0.82), rgba(5, 15, 40, 0.88)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.26);
}

.strip-item {
  padding: 24px;
}

.icon-dot {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 3px solid rgba(255,255,255,0.75);
  box-shadow: inset 0 3px 0 rgba(255,255,255,0.45), 0 0 22px currentColor;
}

.icon-dot.red { background: var(--red); color: var(--red); }
.icon-dot.gold { background: var(--gold); color: var(--gold); }
.icon-dot.blue { background: var(--blue); color: var(--blue); }
.icon-dot.green { background: var(--green); color: var(--green); }

.two-column,
.arena {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 52px;
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.feature-card {
  padding: 24px;
}

.feature-card h3,
.identity-grid h3 {
  color: #fff;
  margin-bottom: 10px;
}

.panel-shot,
.tactic-preview {
  padding: 12px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.arena {
  width: 100%;
  max-width: none;
  padding: 96px max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(rgba(6, 17, 38, 0.72), rgba(6, 17, 38, 0.88)),
    radial-gradient(circle at 50% 10%, rgba(85,215,255,0.16), transparent 36rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.arena-copy {
  max-width: 600px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--muted);
  font-weight: 800;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -4px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #061126;
  background: var(--green);
  font-family: Impact, sans-serif;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title p:last-child {
  margin-top: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.shot {
  border: 0;
  color: white;
  cursor: pointer;
  text-align: left;
  background: rgba(14, 29, 73, 0.92);
  border-radius: 18px;
  padding: 10px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 28px rgba(0,0,0,0.24);
  transition: transform .18s ease, border-color .18s ease;
}

.shot:hover,
.shot.active {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.shot img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}

.shot span {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
}

.showcase {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
}

.showcase img {
  width: min(560px, 100%);
  max-height: 640px;
  object-fit: contain;
  justify-self: center;
  background: #02050d;
}

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

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

.identity-grid article {
  padding: 28px;
  min-height: 180px;
}

.download {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  margin-bottom: 56px;
  border-color: rgba(246, 189, 50, 0.45);
  background:
    linear-gradient(135deg, rgba(246, 189, 50, 0.18), rgba(22, 132, 255, 0.12)),
    linear-gradient(180deg, rgba(21, 44, 100, 0.92), rgba(5, 15, 40, 0.94));
}

.notify-form {
  font-family: "Trebuchet MS", Arial, sans-serif;
  display: grid;
  gap: 10px;
}

.notify-form label {
  font-weight: 900;
  color: var(--gold-2);
}

.notify-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.notify-form input {
  min-height: 54px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(2, 7, 20, 0.7);
  color: white;
  padding: 0 16px;
  font-size: 1rem;
}

.notify-form small {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px max(18px, calc((100vw - 1180px) / 2));
  background: #030814;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--gold-2);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero,
  .two-column,
  .arena,
  .showcase,
  .download {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 40px;
  }

  h1 {
    max-width: 12ch;
  }

  .strip,
  .gallery,
  .identity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .arena {
    padding-left: 16px;
    padding-right: 16px;
  }

  .shot img {
    height: 190px;
  }

  .notify-form div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 22px, 1180px);
    padding: 62px 0;
  }

  .site-header {
    min-height: 66px;
  }

  .brand span {
    font-size: 1.05rem;
  }

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

  .strip,
  .gallery,
  .identity-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .floating-card-left,
  .floating-card-right {
    display: none;
  }

  .shot {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
  }

  .shot img {
    height: 92px;
  }

  .download {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
