:root {
  --bg: #070b16;
  --bg-soft: #0b1020;
  --surface: rgba(18, 24, 46, 0.72);
  --surface-solid: #11172b;
  --surface-hover: #171f38;
  --text: #f7f8ff;
  --muted: #aab4cf;
  --muted-2: #7f8aa6;
  --line: rgba(156, 169, 217, 0.16);
  --line-strong: rgba(169, 178, 229, 0.28);
  --purple: #8b5cf6;
  --purple-2: #a855f7;
  --blue: #22a6ff;
  --cyan: #38d8ff;
  --pink: #ff4fd8;
  --gold: #ffbd3d;
  --success: #58e7a0;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 15% 5%, rgba(138, 92, 246, 0.16), transparent 29rem),
    radial-gradient(circle at 88% 13%, rgba(34, 166, 255, 0.14), transparent 28rem),
    linear-gradient(180deg, #090d1b 0%, var(--bg) 38%, #090d1a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

img { max-width: 100%; display: block; }
a { color: #c9c2ff; text-decoration: none; }
a:hover { color: white; }
strong { color: var(--text); }
p, li { color: var(--muted); }
code {
  padding: .18em .5em;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(5, 8, 19, .64);
  color: #f4f0ff;
  font: inherit;
  font-weight: 750;
  white-space: nowrap;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: #0a0f1e;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(7, 11, 22, .72);
  backdrop-filter: blur(22px) saturate(140%);
}
.nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white;
  font-weight: 850;
  letter-spacing: -.02em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 0 26px rgba(139, 92, 246, .28);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
}
.site-nav a {
  color: #bdc5da;
  font-size: .94rem;
  font-weight: 650;
  transition: color .2s ease;
}
.site-nav a:hover { color: white; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 17px;
  border-radius: 12px;
  color: white;
  font-size: .92rem;
  font-weight: 800;
  border: 1px solid rgba(164, 128, 255, .55);
  background: linear-gradient(135deg, rgba(132, 88, 255, .92), rgba(76, 113, 255, .92));
  box-shadow: 0 10px 32px rgba(101, 80, 255, .22);
}
.nav-cta:hover { color: white; transform: translateY(-1px); }

/* Hero */
.site-main { padding-bottom: 34px; }
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: 52px;
  padding-top: 78px;
  padding-bottom: 74px;
}
.hero-copy { position: relative; z-index: 2; }
.language-pill,
.tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(166, 128, 255, .35);
  border-radius: 999px;
  background: rgba(120, 76, 255, .11);
  color: #d9d5ff;
  font-size: .82rem;
  font-weight: 780;
  box-shadow: inset 0 0 30px rgba(139, 92, 246, .06);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 12px rgba(88, 231, 160, .9);
}
.eyebrow {
  margin: 24px 0 10px;
  color: #9ca8c7;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
}
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.35rem, 6.4vw, 6rem);
  line-height: .96;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 span {
  background: linear-gradient(90deg, #f8f8ff 4%, #c8b7ff 42%, #69ceff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: #b8c2db;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.78;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-weight: 800;
  background: rgba(20, 27, 50, .64);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover {
  color: white;
  transform: translateY(-2px);
  border-color: rgba(198, 188, 255, .5);
  background: rgba(27, 35, 64, .9);
}
.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #8c5dff, #6558ff 48%, #3a93ff);
  box-shadow: 0 16px 40px rgba(104, 86, 255, .3), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn.primary:hover { box-shadow: 0 20px 48px rgba(104, 86, 255, .4), inset 0 1px 0 rgba(255,255,255,.25); }
.btn.secondary { background: rgba(18, 24, 45, .76); }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  margin-top: 24px;
  color: #8f9bb8;
  font-size: .86rem;
  font-weight: 650;
}
.hero-points span::first-letter { color: var(--success); }

.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-card {
  position: relative;
  width: min(100%, 650px);
  border: 1px solid rgba(176, 161, 255, .26);
  border-radius: 28px;
  padding: 8px;
  background: linear-gradient(145deg, rgba(145, 91, 255, .2), rgba(38, 196, 255, .07));
  box-shadow: var(--shadow), 0 0 90px rgba(91, 92, 255, .15);
  transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
}
.hero-banner {
  aspect-ratio: 2.5 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 21px;
}
.banner-shine {
  position: absolute;
  inset: 9px;
  border-radius: 21px;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.09), transparent 26%, transparent 66%, rgba(51, 201, 255, .08));
}
.avatar-float {
  position: absolute;
  right: -12px;
  bottom: 26px;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--pink), #7c4dff, var(--cyan));
  box-shadow: 0 26px 60px rgba(0,0,0,.42), 0 0 45px rgba(107, 83, 255, .22);
}
.avatar-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
}
.glow-one { width: 280px; height: 280px; background: #8b5cf6; left: 8%; top: 8%; }
.glow-two { width: 260px; height: 260px; background: #0284c7; right: 3%; bottom: 10%; }

/* Proof strip */
.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.proof-grid {
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.proof-grid > div {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}
.proof-grid > div:last-child { border-right: 1px solid var(--line); }
.proof-grid strong {
  font-size: .72rem;
  letter-spacing: .15em;
  color: #765fff;
}
.proof-grid span { color: #c2cbe0; font-size: .9rem; font-weight: 720; }

/* Sections */
.section { padding-top: 112px; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading .eyebrow { margin-top: 0; }
h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 4.4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.section-heading p:last-child { margin-top: 17px; font-size: 1.04rem; }
h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "daily competition"
    "language competition"
    "image image";
  gap: 18px;
  align-items: stretch;
}

.feature-card,
.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(97, 83, 255, .09), transparent 40%),
    linear-gradient(145deg, rgba(19, 26, 50, .84), rgba(12, 17, 34, .9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover,
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(172, 159, 255, .28);
  background:
    radial-gradient(circle at 100% 0, rgba(108, 83, 255, .14), transparent 42%),
    linear-gradient(145deg, rgba(22, 30, 57, .92), rgba(13, 18, 37, .96));
}

.daily-card { grid-area: daily; min-height: 330px; }
.language-card { grid-area: language; min-height: 255px; }
.competition-card {
  grid-area: competition;
  min-height: 603px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 189, 61, .10), transparent 38%),
    radial-gradient(circle at 0 100%, rgba(139, 92, 246, .11), transparent 42%),
    linear-gradient(145deg, rgba(22, 29, 55, .94), rgba(12, 17, 34, .94));
}
.image-card {
  grid-area: image;
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: 34px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  font-size: 1.2rem;
  border: 1px solid rgba(160, 146, 255, .18);
  background: linear-gradient(145deg, rgba(113, 82, 255, .17), rgba(30, 159, 255, .08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.feature-kicker {
  margin: 0 0 7px;
  color: #8d99b9;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
}
.feature-card h3 { font-size: 1.28rem; }
.feature-card > p:not(.feature-kicker),
.feature-copy > p:not(.feature-kicker) {
  margin: 12px 0 0;
  line-height: 1.7;
}

.daily-preview {
  margin-top: 20px;
  padding: 15px 16px;
  border: 1px solid rgba(154, 163, 211, .18);
  border-radius: 14px;
  background: rgba(6, 10, 22, .68);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.daily-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #8373ff;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .11em;
}
.daily-preview-points {
  color: #ffca68;
  letter-spacing: 0;
  font-weight: 800;
}
.daily-preview strong {
  display: block;
  font-size: .98rem;
  line-height: 1.25;
}
.daily-preview small {
  display: block;
  margin-top: 7px;
  color: #8f9ab7;
  font-size: .73rem;
}

.competition-card h3 {
  max-width: 430px;
  font-size: 1.72rem;
}
.competition-card > p:not(.feature-kicker) {
  max-width: 520px;
}
.competition-card .feature-icon {
  background: linear-gradient(145deg, rgba(255, 189, 61, .14), rgba(113, 82, 255, .12));
}
.competition-panel {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.competition-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid rgba(172, 158, 255, .14);
  border-radius: 13px;
  background: rgba(7, 11, 25, .4);
}
.competition-symbol {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(115, 87, 255, .11);
}
.competition-row strong,
.competition-row small { display: block; }
.competition-row strong { font-size: .88rem; }
.competition-row small {
  margin-top: 2px;
  color: #8995b1;
  font-size: .72rem;
  line-height: 1.45;
}

.language-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.language-options span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(162, 146, 255, .18);
  border-radius: 11px;
  background: rgba(103, 78, 255, .07);
  color: #c0c9df;
  font-size: .76rem;
  font-weight: 700;
}
.language-options b {
  color: #8f7cff;
  font-size: .68rem;
  letter-spacing: .05em;
}

.image-card .feature-copy { max-width: 460px; }
.image-quiz-preview {
  position: relative;
  height: 210px;
  overflow: hidden;
  border: 1px solid rgba(170, 155, 255, .24);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(0,0,0,.24);
}
.image-quiz-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,13,26,.02), rgba(9,13,26,.12));
}
.image-quiz-preview img { width: 100%; height: 100%; object-fit: cover; }
.image-quiz-preview span {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 10, 22, .76);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1.55rem;
  font-weight: 900;
}

/* Steps */
.steps-section { padding-top: 125px; }
.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.steps-grid::before {
  content: "";
  position: absolute;
  left: 16.5%;
  right: 16.5%;
  top: 35px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(135, 103, 255, .5), rgba(55, 180, 255, .45), transparent);
}
.step-card {
  position: relative;
  z-index: 1;
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 20, 39, .74);
}
.step-number {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(147, 123, 255, .28);
  border-radius: 14px;
  background: #0a0f20;
  color: #8e76ff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  box-shadow: 0 0 28px rgba(113, 81, 255, .12);
}
.step-card p { margin-bottom: 0; }
.setup-cta {
  margin-top: 18px;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 34px;
  border: 1px solid rgba(158, 143, 255, .24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 22%, rgba(22, 163, 255, .13), transparent 29%),
    radial-gradient(circle at 8% 90%, rgba(141, 82, 246, .14), transparent 31%),
    rgba(16, 22, 43, .76);
}
.setup-cta .eyebrow { margin: 0 0 7px; }
.setup-cta h3 { font-size: 1.75rem; }
.setup-cta p:last-child { margin-bottom: 0; }
.setup-cta .btn { flex: 0 0 auto; }

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 260px;
  margin-top: 112px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(164, 145, 255, .25);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.final-cta-art { position: absolute; inset: 0; }
.final-cta-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) brightness(.38); }
.final-cta-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,10,22,.96) 0%, rgba(7,10,22,.84) 54%, rgba(7,10,22,.53) 100%);
}
.final-cta-content {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 38px 42px;
}
.final-cta-content > img { width: 86px; height: 86px; border-radius: 50%; box-shadow: 0 0 34px rgba(126, 87, 255, .22); }
.final-cta-content .eyebrow { margin: 0 0 7px; }
.final-cta-content h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.final-cta-content p:last-child { margin: 10px 0 0; }

.attribution {
  padding-top: 26px;
  padding-bottom: 20px;
  text-align: center;
}
.attribution p { margin: 0 auto; max-width: 860px; font-size: .78rem; color: #707b98; }

/* Footer */
.site-footer {
  margin-top: 46px;
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 17, .48);
}
.footer-grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 36px;
}
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 14px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { color: #7985a3; font-size: .78rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: #9ca7c2; font-size: .86rem; }
.footer-operator { grid-column: 1 / -1; margin: -26px 0 0 59px; color: #66718d; font-size: .74rem; }

/* Compatibility styling for existing Privacy / Terms / Support pages */
body:not(.home-page) main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 84px;
}
body:not(.home-page) nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 58px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(10, 15, 31, .84);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
}
body:not(.home-page) nav a {
  padding: 8px 12px;
  border-radius: 10px;
  color: #b6bfd8;
  font-size: .86rem;
  font-weight: 700;
}
body:not(.home-page) nav a:hover { color: white; background: rgba(255,255,255,.05); }
body:not(.home-page) h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.05em;
}
body:not(.home-page) h2 {
  margin: 64px 0 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.16;
  letter-spacing: -.025em;
}
body:not(.home-page) h3 {
  margin: 34px 0 12px;
  font-size: 1.2rem;
}
body:not(.home-page) p,
body:not(.home-page) li {
  color: #b0bad2;
  font-size: .98rem;
}
body:not(.home-page) ul { padding-left: 1.3rem; }
body:not(.home-page) li + li { margin-top: 9px; }
.notice {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid rgba(142, 116, 255, .28);
  border-left: 4px solid var(--purple);
  border-radius: 14px;
  color: #b9c2d9;
  background: rgba(116, 80, 255, .08);
}
body:not(.home-page) .card {
  min-height: unset;
  margin: 24px 0;
}
body:not(.home-page) .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
body:not(.home-page) .lang {
  margin-top: 70px;
  padding-top: 18px;
  border-top: 1px dashed rgba(168, 156, 217, .25);
}
body:not(.home-page) .btn {
  margin: 3px 5px 3px 0;
}
body:not(.home-page) footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #77819c;
  font-size: .82rem;
}
.good { color: var(--success); }
.small { font-size: .88rem !important; }

/* Focus */
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(93, 185, 255, .75);
  outline-offset: 4px;
}

/* Responsive */
@media (max-width: 1040px) {
  .site-nav { gap: 18px; }
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 62px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 430px; margin-top: 10px; }
  .banner-card { width: min(92%, 760px); transform: none; }
  .avatar-float { right: 5%; }
}

@media (max-width: 820px) {
  .nav-shell { grid-template-columns: 1fr auto; min-height: 68px; }
  .site-nav { display: none; }
  .brand img { width: 38px; height: 38px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div { border-bottom: 1px solid var(--line); }
  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "daily"
      "competition"
      "language"
      "image";
  }
  .daily-card,
  .language-card,
  .competition-card { min-height: auto; }
  .image-card { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .setup-cta { align-items: flex-start; flex-direction: column; }
  .final-cta-content { grid-template-columns: auto 1fr; }
  .final-cta-content .btn { grid-column: 1 / -1; width: fit-content; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 26px, var(--shell)); }
  .nav-cta { padding-inline: 12px; font-size: .8rem; }
  .brand span { font-size: .94rem; }
  .hero { min-height: auto; padding-top: 52px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 310px; }
  .banner-card { width: 100%; border-radius: 19px; padding: 5px; }
  .hero-banner, .banner-shine { border-radius: 14px; }
  .avatar-float { width: 100px; height: 100px; bottom: 0; right: 4px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { padding: 12px; gap: 8px; }
  .proof-grid span { font-size: .76rem; }
  .proof-grid strong { font-size: .64rem; }
  .section { padding-top: 84px; }
  .feature-card, .card { padding: 22px; }
  .daily-preview { margin-top: 16px; }
  .image-quiz-preview { height: 190px; }
  .setup-cta { padding: 26px 22px; }
  .final-cta { width: min(100% - 26px, var(--shell)); margin-top: 84px; }
  .final-cta-content { grid-template-columns: 1fr; padding: 30px 22px; }
  .final-cta-content > img { width: 70px; height: 70px; }
  .final-cta-content .btn { grid-column: auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; padding: 28px 0; }
  .footer-links { justify-content: flex-start; }
  .footer-operator { grid-column: auto; margin: 0; }
  body:not(.home-page) main { width: min(100% - 28px, 920px); }
  body:not(.home-page) nav { margin-bottom: 42px; }
}


@media (max-width: 820px) {
  .feature-card h3,
  .feature-copy h3 { font-size: 1.4rem; }
  .feature-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .feature-card,
  .card { border-radius: 22px; }
  .feature-card h3,
  .feature-copy h3 { font-size: 1.28rem; }
  .feature-list,
  .language-tags { grid-template-columns: 1fr; }
  .mini-question { font-size: 1.08rem; }
}


@media (max-width: 820px) {
  .competition-card h3 { font-size: 1.5rem; }
  .image-quiz-preview { height: 190px; }
}

@media (max-width: 620px) {
  .feature-card { padding: 22px; }
  .competition-panel { gap: 8px; }
  .competition-row { grid-template-columns: 34px 1fr; padding: 11px; }
  .competition-symbol { width: 32px; height: 32px; }
  .daily-preview-top { align-items: flex-start; flex-direction: column; gap: 3px; }
  .image-quiz-preview { height: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   GameQuiz site refresh — September 2026
   Keeps the existing visual language while adding sections for
   current public-bot features and real Discord previews.
   ============================================================ */

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.source-pills span {
  padding: 7px 10px;
  border: 1px solid rgba(139, 154, 211, .18);
  border-radius: 999px;
  background: rgba(7, 11, 25, .62);
  color: #aeb8d2;
  font-size: .72rem;
  font-weight: 750;
}

.showcase-section { padding-top: 126px; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.showcase-card {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(90, 111, 255, .08), transparent 42%),
    rgba(14, 20, 39, .76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.showcase-wide { grid-column: 1 / -1; }
.showcase-frame {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(156, 169, 217, .12);
  border-radius: 16px;
  background: #090e1d;
}
.showcase-frame img {
  width: auto;
  max-width: 100%;
  max-height: 410px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
}
.showcase-tall img { max-height: 510px; }
.showcase-card figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 5px 18px;
  padding: 0 5px 3px;
}
.showcase-card figcaption strong { font-size: 1rem; }
.showcase-card figcaption span { color: #8f9bb8; font-size: .82rem; }

.controls-section { padding-top: 126px; }
.control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.control-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(92, 82, 255, .07), transparent 42%),
    rgba(14, 20, 39, .72);
}
.control-card > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(160, 146, 255, .18);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(113, 82, 255, .17), rgba(30, 159, 255, .08));
  font-size: 1.18rem;
}
.control-card h3 { margin: 3px 0 10px; font-size: 1.05rem; }
.control-card p { margin: 0; font-size: .88rem; line-height: 1.65; }

.trust-section { padding-top: 126px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(56, 216, 255, .06), transparent 42%),
    linear-gradient(145deg, rgba(19, 26, 50, .82), rgba(12, 17, 34, .9));
}
.trust-card h3 { margin-bottom: 10px; }
.trust-card p { margin: 0; font-size: .9rem; }
.trust-note {
  max-width: 860px;
  margin: 20px auto 0;
  text-align: center;
  color: #7f8aa6;
  font-size: .82rem;
}

body:not(.home-page) .support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}
body:not(.home-page) .support-grid .card {
  margin: 0;
  padding: 24px;
}
body:not(.home-page) .support-grid .card h2 {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  font-size: 1.28rem;
}
body:not(.home-page) .support-grid .card p:last-child { margin-bottom: 0; }
body:not(.home-page) .support-install-card { grid-column: 1 / -1; }

@media (max-width: 1040px) {
  .control-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .showcase-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .showcase-wide { grid-column: auto; }
  .showcase-frame { min-height: 220px; }
  .control-grid { grid-template-columns: 1fr; }
  .control-card { min-height: auto; }
  body:not(.home-page) .support-grid { grid-template-columns: 1fr; }
  body:not(.home-page) .support-install-card { grid-column: auto; }
}

@media (max-width: 620px) {
  .showcase-section,
  .controls-section,
  .trust-section { padding-top: 92px; }
  .showcase-card { padding: 10px; border-radius: 18px; }
  .showcase-frame { min-height: 170px; padding: 10px; }
  .showcase-frame img { max-height: 300px; }
  .showcase-tall img { max-height: 390px; }
  .control-card { grid-template-columns: 40px 1fr; padding: 20px; }
  .control-card > span { width: 40px; height: 40px; border-radius: 12px; }
  .trust-card { padding: 22px; }
}
