:root {
  --bg-base: #08060f;
  --bg-panel: #120e1f;
  --text-main: #ffffff;
  --text-muted: #a79fc2;

  --brand-blue: #12c9ff;
  --brand-yellow: #ffd400;
  --brand-pink: #ff2ea8;
  --brand-purple: #a855f7;
  --brand-lime: #ccff00;

  --ink: #08060f;

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.18);

  --shadow-glow: 0 0 40px rgba(18, 201, 255, 0.35);
  --shadow-glow-yellow: 0 0 50px rgba(255, 212, 0, 0.3);
  --shadow-glow-pink: 0 0 50px rgba(255, 46, 168, 0.35);

  --hard: 6px 6px 0 var(--ink);
  --hard-lg: 10px 10px 0 var(--ink);

  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-base);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* grain texture overlay for a less "flat AI" feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

h1, h2, h3, .brand-font {
  font-family: "Unbounded", "Manrope", sans-serif;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* === AMBIENT BACKGROUND === */
.ambient-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-base);
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
  animation: floatOrb 18s infinite ease-in-out alternate;
}
.orb-yellow {
  width: 42vw; height: 42vw;
  background: var(--brand-yellow);
  top: -12%; left: -12%;
}
.orb-blue {
  width: 50vw; height: 50vw;
  background: var(--brand-blue);
  bottom: -18%; right: -12%;
  animation-delay: -5s;
}
.orb-accent {
  width: 34vw; height: 34vw;
  background: var(--brand-pink);
  top: 38%; left: 28%;
  opacity: 0.28;
  animation-delay: -9s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, 12%) scale(1.15); }
}

/* === GLASSMORPHISM (kept for footer/nav) === */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
}

/* === TOPBAR === */
.topbar {
  position: sticky;
  top: 0; z-index: 50;
  border-bottom: 2px solid var(--glass-border);
  border-radius: 0 0 24px 24px;
}
.topbar__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand__logo { height: 42px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.nav { display: flex; gap: 32px; font-weight: 700; color: var(--text-muted); font-size: 0.95rem; }
.nav a { position: relative; transition: color 0.3s ease; }
.nav a:hover { color: var(--text-main); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0%; height: 3px;
  background: var(--brand-yellow); transition: width 0.3s ease; border-radius: 2px;
}
.nav a:hover::after { width: 100%; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 800; color: var(--ink);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  cursor: pointer;
  border: 2px solid var(--ink);
}
.btn--small { min-height: 46px; padding: 0 24px; font-size: 0.95rem; }
.btn--glow {
  background: linear-gradient(135deg, var(--brand-yellow), #ffb800);
  box-shadow: var(--hard);
}
.btn--glow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn--glow:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

/* === MARQUEE TICKER === */
.marquee {
  background: var(--brand-yellow);
  color: var(--ink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative;
  z-index: 5;
  margin: 48px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.marquee__item span.dot { font-size: 1.2rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === HERO === */
.hero { padding: 110px 0 60px; text-align: center; position: relative; }
.hero__grid { display: flex; flex-direction: column; align-items: center; }

.eyebrow-wrapper {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand-pink);
  border: 2px solid var(--ink);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 28px;
  box-shadow: var(--hard);
  transform: rotate(-2deg);
}
.pulse-dot {
  width: 9px; height: 9px; background: var(--ink);
  border-radius: 50%;
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot { 0% { opacity: 0.3; } 50% { opacity: 1; } 100% { opacity: 0.3; } }
.eyebrow { margin: 0; color: var(--ink); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; font-family: "Unbounded", sans-serif; }

.text-glow {
  margin: 0; font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
  color: #fff;
}

.hero-title-accent {
  display: block;
  margin-top: 6px;
  background: linear-gradient(100deg, var(--brand-yellow) 0%, var(--brand-pink) 50%, var(--brand-blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 212, 0, 0.25));
}

.hero-usp {
  margin: 28px auto 0;
  display: inline-block;
  background: var(--bg-panel);
  border: 2px solid var(--brand-blue);
  box-shadow: 0 0 30px rgba(18, 201, 255, 0.25);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
}

.hero__lead { margin: 24px auto 0; max-width: 60ch; font-size: 1.2rem; color: var(--text-muted); }
.highlight-text { color: #fff; font-weight: 700; }

.store-buttons { display: flex; gap: 18px; margin-top: 44px; justify-content: center; align-items: center; flex-wrap: wrap; }
.store-link img { height: 56px; border-radius: 14px; transition: transform 0.25s ease, box-shadow 0.25s ease; border: 2px solid var(--ink); }
.store-link:not(.disabled) img { box-shadow: var(--hard); }
.store-link:not(.disabled):hover img {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}
.store-link.disabled { opacity: 0.35; filter: grayscale(100%); cursor: not-allowed; }

/* === UNIQUE HOOK === */
.unique-hook { padding: 20px 0 40px; }
.hook-card {
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  border: 2px solid var(--glass-border);
}
.hook-card h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 20px; font-weight: 700; }
.hook-card p { max-width: 68ch; margin: 0 auto; color: var(--text-muted); font-size: 1.1rem; }

.hook-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 44px;
}
.hook-grid > div {
  background: var(--bg-panel);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 28px 16px;
  font-size: 2.4rem;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: var(--hard);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hook-grid > div:nth-child(1) { border-color: var(--brand-blue); }
.hook-grid > div:nth-child(2) { border-color: var(--brand-yellow); }
.hook-grid > div:nth-child(3) { border-color: var(--brand-pink); }
.hook-grid > div:hover { transform: translate(-4px, -4px) rotate(-1deg); }
.hook-grid strong { font-size: 1rem; font-weight: 800; font-family: "Unbounded", sans-serif; }

/* === SECTIONS === */
.section { padding: 90px 0; position: relative; }
.section__heading { margin-bottom: 50px; }
.section__heading h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin: 0; font-weight: 700; letter-spacing: -0.02em; }
.section__heading p { color: var(--text-muted); font-size: 1.1rem; margin-top: 12px; }

/* === CARDS (neo-brutalist) === */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: var(--bg-panel);
  padding: 32px 26px; border-radius: var(--radius-xl);
  border: 2px solid var(--ink);
  box-shadow: var(--hard);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
}
.card:hover { transform: translate(-5px, -5px); box-shadow: 11px 11px 0 var(--ink); }

.card__icon-wrapper {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--brand-blue); border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.card__num { color: var(--ink); font-weight: 800; font-size: 1.2rem; font-family: "Unbounded", sans-serif; }

.card--premium {
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.12), var(--bg-panel) 60%);
  border-color: var(--ink); box-shadow: 6px 6px 0 var(--brand-yellow);
}
.card--premium:hover { box-shadow: 11px 11px 0 var(--brand-yellow); }
.card--premium .card__icon-wrapper { background: var(--brand-yellow); }
.glow-text { color: var(--ink); }

.card h3 { margin: 0 0 12px; font-size: 1.3rem; font-weight: 700; }
.card p { margin: 0; color: var(--text-muted); font-size: 1.02rem; }

/* === TENSION SECTION === */
.tension-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tension-text h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 0 0 16px; font-weight: 700; }
.tension-text .lead-text { color: var(--ink); background: var(--brand-lime); display: inline-block; padding: 6px 16px; border-radius: 8px; font-size: 1.3rem; font-weight: 800; margin-bottom: 32px; transform: rotate(-1.5deg); font-family: "Unbounded", sans-serif; }
.tension-list { list-style: none; padding: 0; margin: 0; font-size: 1.15rem; line-height: 2.3; color: #d9d4ea; }
.tension-list li { position: relative; padding-left: 34px; font-weight: 600; }
.tension-list li::before {
  content: "→"; position: absolute; left: 0; top: 0; color: var(--brand-blue);
  font-weight: 800; font-size: 1.2rem;
}

.tension-visual {
  border-radius: var(--radius-xl); padding: 50px; text-align: center;
  position: relative; border: 2px solid var(--ink); background: var(--bg-panel);
  box-shadow: var(--hard-lg);
}
.eyes-box { font-size: 2.5rem; line-height: 1.2; letter-spacing: 4px; color: #2a2440; }
.eyes-emoji-wrapper { position: relative; display: inline-block; padding: 20px 0; }
.eyes-emoji { font-size: 5rem; filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); animation: pulseEye 2.5s infinite alternate; }

.scanner-line {
  position: absolute; left: -20px; right: -20px; height: 3px;
  background: var(--brand-yellow); box-shadow: 0 0 15px var(--brand-yellow);
  animation: scan 3s infinite linear; opacity: 0.9;
}
@keyframes scan { 0% { top: 10%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 90%; opacity: 0; } }
@keyframes pulseEye { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.eyes-caption { margin-top: 30px; color: var(--brand-blue); font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }

/* === GAMEPLAY WIDE IMAGE & LIGHTBOX === */
.wide-image {
  border-radius: var(--radius-xl); padding: 14px;
  background: var(--bg-panel);
  border: 2px solid var(--ink);
  box-shadow: var(--hard-lg);
  position: relative;
}
.wide-image img { border-radius: 20px; }
.zoomable-image { cursor: zoom-in; transition: transform 0.3s ease; }
.zoomable-image:hover { transform: scale(1.015); }

.zoom-hint {
  position: absolute; bottom: 30px; right: 30px;
  background: var(--brand-yellow); color: var(--ink); padding: 10px 20px;
  border-radius: 999px; font-size: 0.9rem; font-weight: 800;
  pointer-events: none; border: 2px solid var(--ink);
  box-shadow: var(--hard);
}

.modal {
  display: none; position: fixed; z-index: 1000; left: 0; top: 0;
  width: 100%; height: 100%; background-color: rgba(4, 3, 8, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 0.3s ease;
  align-items: center; justify-content: center;
}
.modal.show { opacity: 1; }
.modal__content {
  max-width: 95vw; max-height: 90vh; border-radius: 12px;
  object-fit: contain; transform: scale(0.95); transition: transform 0.3s ease;
  border: 3px solid var(--ink);
}
.modal.show .modal__content { transform: scale(1); }
.modal__close {
  position: absolute; top: 20px; right: 30px; color: #fff;
  font-size: 45px; font-weight: 300; line-height: 1; cursor: pointer;
  z-index: 1001; padding: 10px; transition: color 0.2s;
}
.modal__close:hover { color: var(--brand-yellow); }

/* === FAQ === */
.faq-container { max-width: 780px; }
.faq { display: grid; gap: 16px; }
.faq__item {
  border-radius: 18px; transition: all 0.25s ease;
  background: var(--bg-panel); border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.faq__item:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.faq__item summary {
  padding: 22px 24px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; color: var(--ink); background: var(--brand-yellow); border: 2px solid var(--ink);
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; flex-shrink: 0; margin-left: 16px; transition: transform 0.3s ease;
}
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__content { padding: 0 24px 24px; color: var(--text-muted); font-size: 1.02rem; }

/* === FOOTER === */
.footer {
  padding: 40px 0; border-top: 2px solid var(--glass-border);
  border-radius: 32px 32px 0 0; margin-top: 40px;
}
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 30px; }
.footer-logo { filter: grayscale(100%) opacity(0.6); transition: filter 0.3s ease; }
.footer-logo:hover { filter: grayscale(0%) opacity(1); }
.footer-copy { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; }
.footer__center { display: flex; gap: 32px; font-weight: 700; color: var(--text-muted); }
.footer__center a:hover { color: var(--text-main); }
.email-btn {
  display: inline-flex; align-items: center; height: 46px; padding: 0 24px;
  border-radius: 999px; background: var(--bg-panel); border: 2px solid var(--ink);
  color: var(--text-main); font-weight: 700; transition: all 0.25s ease;
  box-shadow: var(--hard);
}
.email-btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--brand-blue); }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(30px) scale(0.98); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* === MOBILE === */
@media (max-width: 960px) {
  .nav { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tension-grid { grid-template-columns: 1fr; gap: 40px; }
  .tension-text { text-align: center; }
  .tension-list { display: inline-block; text-align: left; }
  .footer__inner { flex-direction: column; text-align: center; }
  .hook-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-top: 70px; }
  .text-glow { font-size: 2.4rem; }
  .steps { grid-template-columns: 1fr; }
  .store-buttons img { height: 50px; }
  .section { padding: 56px 0; }
  .orb-yellow, .orb-blue { width: 80vw; height: 80vw; filter: blur(70px); }
  .zoom-hint { bottom: 16px; right: 16px; font-size: 0.8rem; padding: 8px 16px; }
  .modal__close { top: 10px; right: 15px; }
  .marquee { transform: rotate(-1.5deg) scale(1.06); margin: 32px 0; }
  .marquee__item { font-size: 0.85rem; padding: 10px 18px; }
}
/* ======================================================
   SEO ARTICLE
====================================================== */

.seo-content {
  padding: 100px 0;
}

.seo-article {
  max-width: 960px;
  margin: auto;
  padding: 56px;
  border-radius: 28px;
  background: var(--bg-panel);
  border: 2px solid var(--ink);
  box-shadow: var(--hard-lg);
}

.seo-article h3 {
  margin-top: 46px;
  margin-bottom: 18px;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-yellow);
}

.seo-article p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #cdc7de;
}

.seo-content .section__heading {
  margin-bottom: 56px;
}

@media (max-width: 640px) {
  .seo-article { padding: 32px 22px; }
}
