:root {
  --green: #35d66b;
  --ink: #08111f;
  --night: #101a2b;
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7fafc;
  --muted: #aeb9c8;
  --paper: #f5f7f2;
  --paper-ink: #132033;
  --accent: #ffbf47;
  --coral: #ff6f61;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

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

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 17, 31, 0.74);
  backdrop-filter: blur(18px);
}

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

.nav-brand,
.nav-controls {
  display: flex;
  align-items: center;
}

.nav-brand {
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

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

.nav-controls {
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-controls a {
  transition: color 180ms ease;
}

.nav-controls a:hover {
  color: var(--green);
}

.language-selector {
  min-width: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font: 700 0.88rem var(--font-body);
  padding: 9px 12px;
}

.language-selector option {
  background: var(--night);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #091321;
  padding: 112px 0 72px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 100px max(3vw, 20px) 40px 0;
}

.hero-media img {
  width: min(54vw, 690px);
  max-height: 82vh;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.48));
  opacity: 0.94;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.98) 0%, rgba(8, 17, 31, 0.9) 39%, rgba(8, 17, 31, 0.38) 70%, rgba(8, 17, 31, 0.82) 100%),
    linear-gradient(0deg, rgba(8, 17, 31, 1) 0%, rgba(8, 17, 31, 0) 24%);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.pro-copy h2 {
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3.25rem, 8vw, 6.7rem);
  margin-bottom: 24px;
}

.hero-copy {
  color: #d7dee8;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  max-width: 610px;
  margin-bottom: 30px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  padding: 9px 16px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 214, 107, 0.62);
  background: rgba(53, 214, 107, 0.13);
}

.store-badge svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.store-badge span {
  display: grid;
  gap: 1px;
  font-family: var(--font-heading);
  font-size: 1.04rem;
  font-weight: 800;
}

.store-badge small {
  color: var(--muted);
  font: 800 0.64rem var(--font-body);
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 650px);
}

.hero-stats div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
}

.hero-stats dt {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 0.86rem;
}

.section-band {
  padding: 96px 0;
  background: var(--night);
}

.section-band.light {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head h2,
.pro-copy h2 {
  font-size: clamp(2.15rem, 4vw, 4.25rem);
}

.section-head p:not(.eyebrow),
.pro-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 660px;
}

.light .section-head p:not(.eyebrow) {
  color: #526070;
}

.competitions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.comp-card {
  display: grid;
  align-content: space-between;
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.comp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 191, 71, 0.65);
}

.comp-card span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.comp-card strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 270px;
  border: 1px solid #dce2d8;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  color: var(--coral);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 54px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  line-height: 1.12;
  margin-bottom: 12px;
}

.feature-card p {
  color: #526070;
  font-size: 0.95rem;
}

.pro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}

.pro-copy {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: fit-content;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 0 20px;
}

.btn-primary {
  background: var(--green);
  color: #06110d;
}

.btn-secondary {
  min-height: 40px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
}

.btn-secondary:hover {
  border-color: rgba(53, 214, 107, 0.62);
  color: var(--green);
}

.pro-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.pro-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px;
}

.pro-row + .pro-row {
  border-top: 1px solid var(--line);
}

.pro-row > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(53, 214, 107, 0.14);
  color: var(--green);
  font-weight: 900;
}

.pro-row h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.pro-row p {
  color: var(--muted);
  font-size: 0.96rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: #070d17;
  padding: 52px 0 28px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-bottom,
.footer-links a {
  color: var(--muted);
}

.footer-brand p {
  max-width: 420px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  font-size: 0.9rem;
}

.terms-page {
  min-height: 100vh;
  padding: 120px 0 60px;
  background: var(--ink);
}

.terms-content {
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 36px;
}

.terms-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin-bottom: 18px;
}

.terms-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.terms-footnote {
  margin-top: 40px;
  font-size: 0.9rem;
}

.not-found-page {
  min-height: 100vh;
  background: var(--ink);
}

.not-found {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 0 70px;
}

.not-found-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: max(4vw, 20px);
}

.not-found-media img {
  width: min(48vw, 620px);
  opacity: 0.46;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.48));
}

.not-found-content {
  max-width: 680px;
}

.not-found-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 22px;
}

.not-found-content p:not(.eyebrow) {
  color: #d7dee8;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  max-width: 540px;
  margin-bottom: 28px;
}

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

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-media {
    justify-content: center;
    align-items: flex-end;
    padding: 0 0 12px;
  }

  .hero-media img {
    width: min(92vw, 520px);
    opacity: 0.28;
    transform: translateY(12%);
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8, 17, 31, 0.98) 0%, rgba(8, 17, 31, 0.78) 54%, rgba(8, 17, 31, 1) 100%);
  }

  .not-found-media {
    justify-content: center;
    padding: 0;
  }

  .not-found-media img {
    width: min(92vw, 520px);
    opacity: 0.2;
    transform: translateY(12%);
  }

  .competitions-grid,
  .features-grid,
  .pro-layout {
    grid-template-columns: 1fr 1fr;
  }

  .pro-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-inner {
    min-height: 64px;
  }

  .nav-brand span {
    display: none;
  }

  .language-selector {
    min-width: 118px;
  }

  .hero {
    padding-top: 94px;
  }

  .store-badges,
  .hero-stats,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .store-badge,
  .btn {
    width: 100%;
  }

  .competitions-grid,
  .features-grid,
  .pro-layout {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  .section-band {
    padding: 72px 0;
  }
}
