:root {
  --navy-950: #071522;
  --navy-900: #0b2034;
  --navy-850: #102b47;
  --navy-800: #173b60;
  --blue-650: #3e6e9e;
  --bronze-600: #9b7422;
  --bronze-500: #b48a2d;
  --bronze-400: #caa447;
  --bronze-300: #ddbf6c;
  --white: #ffffff;
  --cream: #f7f5ef;
  --slate-50: #f7f9fb;
  --slate-100: #eef2f6;
  --slate-200: #d9e1e8;
  --slate-500: #657483;
  --slate-700: #334350;
  --success: #2f7d4a;
  --shadow-sm: 0 8px 24px rgba(7, 21, 34, 0.08);
  --shadow-lg: 0 28px 70px rgba(3, 14, 24, 0.25);
  --radius-md: 16px;
  --radius-lg: 26px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--navy-950);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--navy-800);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-950);
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 21, 34, 0.96);
  border-bottom: 2px solid var(--bronze-500);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.brand-logo-image {
  width: 76px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
  background: var(--white);
  border-radius: 8px;
  padding: 4px 7px;
}

.brand-text {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  padding: 9px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  color: #edf4fa;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--bronze-400);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 10px 15px;
  border-radius: 9px;
  background: var(--bronze-500);
  color: var(--navy-950) !important;
}

.nav-cta::after {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 79% 32%, rgba(255, 255, 255, 0.17), transparent 25%),
    radial-gradient(circle at 11% 82%, rgba(180, 138, 45, 0.16), transparent 30%),
    linear-gradient(135deg, var(--navy-950) 2%, var(--navy-850) 60%, #2c5c88 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 58px;
  padding: 88px 0 82px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze-300);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 6.15rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 700px;
  margin: 26px 0 0;
  color: #e8f0f7;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bronze-400), var(--bronze-500));
  color: var(--navy-950);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  background: linear-gradient(135deg, var(--bronze-300), var(--bronze-400));
}

.button.secondary {
  border-color: var(--bronze-400);
  background: rgba(255,255,255,0.035);
  color: var(--white);
}

.button.dark {
  background: var(--navy-900);
  color: var(--white);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #dce9f4;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--bronze-300);
}

.hero-logo-panel {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(202, 164, 71, 0.62);
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.95), rgba(246,246,246,0.86) 53%, rgba(255,255,255,0.10) 74%),
    rgba(255,255,255,0.06);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-logo-panel::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 17px;
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,0.22));
}

.benefits-bar {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(202,164,71,0.54);
  border-radius: 20px;
  background: rgba(7, 21, 34, 0.97);
  box-shadow: var(--shadow-lg);
}

.benefit {
  min-height: 185px;
  padding: 28px 24px;
  color: var(--white);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.14);
}

.benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 2px solid var(--bronze-400);
  border-radius: 14px;
  color: var(--bronze-300);
  font-size: 1.2rem;
  font-weight: 900;
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 1.03rem;
}

.benefit p {
  margin: 0;
  color: #d4dee7;
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section.soft {
  background: var(--slate-50);
}

.section.dark {
  color: var(--white);
  background: var(--navy-950);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--bronze-600);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.8rem;
}

.dark .section-kicker {
  color: var(--bronze-300);
}

.section h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.dark h2 {
  color: var(--white);
}

.section-intro {
  margin: 18px 0 0;
  color: var(--slate-500);
  font-size: 1.1rem;
}

.dark .section-intro {
  color: #c7d5e2;
}

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

.feature-card {
  min-height: 255px;
  padding: 26px 21px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
  box-shadow: 0 8px 22px rgba(7,21,34,0.055);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 2px solid var(--blue-650);
  border-radius: 14px;
  color: var(--blue-650);
  font-size: 1rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.94rem;
}

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

.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.screenshot-frame {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(62,110,158,0.19), transparent 48%),
    var(--navy-900);
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-placeholder {
  padding: 25px;
  color: #d7e1e9;
  text-align: center;
  font-size: 0.92rem;
}

.screenshot-caption {
  padding: 18px 20px 20px;
  text-align: center;
}

.screenshot-caption h3 {
  margin: 0 0 5px;
}

.screenshot-caption p {
  margin: 0;
  color: var(--slate-500);
}

.edition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.edition-card {
  position: relative;
  overflow: hidden;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(202,164,71,0.52);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
}

.edition-label {
  align-self: flex-start;
  margin-bottom: 17px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(202,164,71,0.16);
  color: var(--bronze-300);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.edition-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 2rem;
  letter-spacing: -0.025em;
}

.edition-card p {
  color: #c9d6e0;
}

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

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

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bronze-300);
  font-weight: 900;
}

.edition-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 17px 20px;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
}

.compare-table thead th {
  background: var(--navy-900);
  color: var(--white);
}

.compare-table th:nth-child(n+2),
.compare-table td:nth-child(n+2) {
  text-align: center;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.yes {
  color: var(--success);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq {
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  padding: 19px 21px;
  color: var(--navy-950);
  font-weight: 900;
}

.faq p {
  margin: 0;
  padding: 0 21px 20px;
  color: var(--slate-500);
}

.store-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px 42px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bronze-400), var(--bronze-500));
  color: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.store-panel h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.store-panel p {
  max-width: 720px;
  color: #2a2a25;
}

.store-badge-placeholder {
  min-width: 240px;
  padding: 18px 22px;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.site-footer {
  padding: 58px 0 25px;
  background: #06111c;
  color: #d1dce5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: 150px;
  max-height: 110px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 10px;
  background: var(--white);
}

.site-footer h3 {
  margin-top: 0;
  color: var(--bronze-300);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #d1dce5;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--bronze-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #9babb8;
  font-size: 0.9rem;
}

.legal-hero {
  padding: 70px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-content {
  max-width: 900px;
  padding: 60px 0 90px;
}

.notice {
  padding: 18px 20px;
  border-left: 5px solid var(--bronze-500);
  border-radius: 8px;
  background: #fff8e3;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 18px 24px;
    background: var(--navy-950);
    border-bottom: 2px solid var(--bronze-500);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 4px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

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

  .hero-logo-panel {
    min-height: 390px;
  }

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

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 760px) {
  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

  .site-nav {
    inset: 68px 0 auto;
  }

  .brand-logo-image {
    width: 54px;
    height: 42px;
    padding: 3px 5px;
  }

  .brand-text {
    font-size: 0.86rem;
  }

  .nav-toggle {
    padding: 8px 10px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.8fr);
    align-items: start;
    gap: 14px;
    padding: 54px 0 62px;
  }

  .hero-grid > div:first-child {
    min-width: 0;
  }

  .eyebrow {
    grid-column: 1 / -1;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    margin-bottom: 11px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.8vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero-copy {
    grid-column: 1 / -1;
    font-size: 0.99rem;
    margin-top: 20px;
  }

  .button-row,
  .hero-points {
    grid-column: 1 / -1;
  }

  .hero-logo-panel {
    min-height: 0;
    align-self: start;
    padding: 10px;
    border-radius: 16px;
    background:
      radial-gradient(circle at center, rgba(255,255,255,0.97), rgba(246,246,246,0.90) 60%, rgba(255,255,255,0.12) 78%),
      rgba(255,255,255,0.05);
  }

  .hero-logo-panel::after {
    inset: 7px;
    border-radius: 11px;
  }

  .hero-logo {
    width: 100%;
    max-height: 175px;
  }

  .benefits-bar {
    margin-top: -20px;
  }

  .benefits-grid,
  .feature-grid,
  .screenshot-grid,
  .edition-grid,
  .footer-grid,
  .store-panel {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .edition-card {
    min-height: auto;
    padding: 28px;
  }

  .store-badge-placeholder {
    min-width: 0;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(105px, 0.65fr);
    gap: 10px;
    padding-top: 46px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-logo {
    max-height: 145px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }
}
