:root {
  color-scheme: dark;
  --bg: #050b14;
  --bg-elevated: #0b1524;
  --panel: #101d31;
  --panel-strong: #14253d;
  --panel-soft: #0e1829;
  --text: #eef4fb;
  --muted: #9aa9bf;
  --line: rgba(160, 186, 219, 0.18);
  --line-strong: rgba(160, 186, 219, 0.32);
  --accent: #63d7ff;
  --accent-soft: rgba(99, 215, 255, 0.16);
  --primary: #f2c94c;
  --primary-strong: #ffde73;
  --primary-ink: #151007;
  --success: #8fd8b8;
  --danger: #f08a92;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --page-width: 1120px;
  --page-narrow-width: 840px;
  --gold: #ffd66b;
  --blue: #58b7ff;
  --green: #62f0b8;
  --red: #ff6e84;
  --cyan: #63d8ff;

}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #07101b 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: rgba(242, 201, 76, 0.28);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--primary-strong);
  outline-offset: 3px;
}

.page {
  width: min(var(--page-width), calc(100% - 40px));
  margin: 0 auto;
}

.notice {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(255, 214, 107, 0.24);
  border-radius: var(--radius);
  background: rgb(225 178 56 / 7%)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 11, 20, 0.88);
  border-bottom: 1px solid rgba(160, 186, 219, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.brand img,
.brand-mark {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 8px;
  object-fit: cover;
  /* background: linear-gradient(135deg, rgba(99, 215, 255, 0.2), rgba(242, 201, 76, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.08); */
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.nav-actions a,
.nav-actions button {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  align-content: center;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-actions a:hover,
.nav-actions a:focus-visible,
.nav-actions button:hover,
.nav-actions button:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.language-toggle button,
.language-toggle a {
  min-width: 44px;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.language-toggle [aria-pressed="true"] {
  background: rgba(242, 201, 76, 0.18);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(180deg, var(--primary-strong) 0%, var(--primary) 100%);
  color: var(--primary-ink);
}

.button-primary.disable{
  pointer-events: none; /* Impede cliques */
  cursor: not-allowed; /* Mostra que não é clicável */
  color: #ccc; /* Cor de texto cinza */
  border-color: rgba(99, 215, 255, 0.28);
  background: rgba(99, 215, 255, 0.08);
  text-decoration: none; /* Remove o sublinhado */
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #ffe48a 0%, #f4cf5b 100%);
}

.button-secondary {
  border-color: rgba(99, 215, 255, 0.28);
  background: rgba(99, 215, 255, 0.08);
  color: #dff8ff;
}

.button[aria-disabled="true"] {
  opacity: 0.7;
  cursor: not-allowed;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  padding: 56px 0 32px;
  min-height: calc(100vh - 88px);
}

.page-hero {
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.tag.coming{
  min-height: 28px;
  padding: 0 10px;
  color: var(--gold);
  background: rgba(255, 214, 107, 0.08);
  font-size: 12px;
}

.kickernone,
.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 760;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  color: var(--blue);
  background: rgba(88, 183, 255, 0.09);
  font-size: 13px;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.kicker.availablenow{
  margin-block-start: 0;
  margin-block-end: 0;
}

.tag.gold{
  color: var(--gold);
}

.kicker::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.kicker.green::before {
  background: var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 64ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.status-note,
.release-meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
}

.section {
  /* padding: 32px 0; */
  padding: 76px 0;
  border-top: 1px solid rgba(167, 195, 218, 0.11);
}

.section-narrow {
  width: min(var(--page-narrow-width), 100%);
}

.section-head-coming,
.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-head-coming{
  margin-top: 32px;
}

.section-head-coming p,
.section-head p,
.card p,
.faq-item p,
.legal-card p,
.release-panel p,
.founder p,
.proof-band p,
.split-section p,
.fact-list,
.check-list,
.release-row,
footer {
  color: var(--muted);
}

.alert-grid,
.product-grid,
.faq-grid,
.release-grid,
.legal-grid,
.gallery,
.gallery-stack {
  display: grid;
  gap: 16px;
}

.alert-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.faq-grid,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.release-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.gallery-stack {
  grid-template-columns: 1fr;
}

.card,
.alert-card,
.faq-item,
.release-panel,
.legal-card,
.founder {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(19, 34, 56, 0.96), rgba(11, 21, 36, 0.96));
  box-shadow: var(--shadow);
}

.alert-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}

.alert-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.58;
}

.alert-card h3::before {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--blue);
    content: "";
}


.alert-card.gold h3::before {
  background: var(--gold);
}

.alert-card.green h3::before {
  background: var(--green);
}

.alert-card.red h3::before {
  background: var(--red);
}

.alert-header{
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.54fr);
  gap: 32px;
  align-items: baseline;
  margin-bottom: 26px;
}

.founder-header{
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(100px, 0.2fr);
  gap: 32px;
  /* align-items: baseline; */
  /* margin-bottom: 26px; */
}

.founder-img,
.founder-img img{
  width: 100%;
  height: fit-content;
}



.card-featured,
.release-panel-featured {
  border-color: rgba(242, 201, 76, 0.36);
  background: linear-gradient(180deg, rgba(37, 32, 16, 0.98), rgba(19, 27, 41, 0.98));
}

.release-panel {
  align-content: start;
}

.release-meta {
  display: grid;
  gap: 8px;
}

.release-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(160, 186, 219, 0.12);
}

.release-row strong,
.fact-list strong,
.check-list strong,
.card strong,
.faq-item strong,
.legal-card strong {
  color: var(--text);
}

.legal-card h1 {
  font-size: clamp(2.3rem, 5vw, 3.2rem);
}

.legal-card h2 {
  margin-top: 16px;
  font-size: clamp(1.32rem, 2.4vw, 1.7rem);
  line-height: 1.2;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.68;
}

.legal-card li + li {
  margin-top: 8px;
}

.proof-band,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 25, 42, 0.98), rgba(8, 16, 28, 0.98));
}

.fact-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0 10;
  padding: 0;
  list-style: none;
}

.fact-list li,
.check-list li {
  font-size: 15px;
  padding-left: 18px;
  position: relative;
}

.fact-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.check-list li::before {
  background: var(--primary);
}

.founder {
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
}

.founder-logo {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
  /* border: 1px solid var(--line); */
}

.lang-panel[hidden] {
  display: none !important;
}

footer {
  margin-top: 40px;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(160, 186, 219, 0.12);
  font-size: 0.92rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
    gap: 26px;
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(160, 186, 219, 0.18);
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: rgba(242, 201, 76, 0.56);
  background: rgba(242, 201, 76, 0.1);
  color: var(--primary);
}

.riot-disclaimer {
  max-width: 820px;
  margin: 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .proof-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .alert-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-grid,
  .release-grid,
  .faq-grid,
  .legal-grid,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    min-height: auto;
    padding: 20px 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(var(--page-width), calc(100% - 24px));
  }

  .nav,
  .nav-links,
  .nav-actions,
  .founder {
    grid-template-columns: 1fr;
  }

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

  .nav-links,
  .nav-actions,
  .actions {
    width: 100%;
  }

  .nav-links,
  .nav-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .button {
    width: 100%;
  }

  .alert-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-grid,
  .release-grid,
  .faq-grid,
  .legal-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .card,
  .faq-item,
  .release-panel,
  .legal-card,
  .proof-band,
  .split-section,
  .founder {
    padding: 18px;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

}
