@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Source+Sans+3:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  --bg: #12101c;
  --card: #1a1828;
  --text: #e8e4ef;
  --muted: #9a94a8;
  --accent: #d4af37;
  --accent-soft: #f0d98a;
  --accent2: #4a90e2;
  --line: #2e2940;
  --max: 1120px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}
a {
  color: var(--accent-soft);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

header {
  background: rgba(18, 16, 28, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.nav-links {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--muted);
  padding: 0.35rem 0.6rem;
  border-radius: 7px;
  font-size: 0.93rem;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--line);
  text-decoration: none;
}
.lang-selector {
  position: relative;
  display: inline-block;
}
.lang-btn {
  color: var(--muted);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-size: 0.93rem;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.15s, color 0.15s;
}
.lang-btn:hover {
  color: var(--text);
  background: var(--line);
}
.lang-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.lang-btn[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 10rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 200;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}
.lang-dropdown[hidden] {
  display: none !important;
}
.lang-dropdown a {
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  font-size: 0.88rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.lang-dropdown a:hover {
  background: var(--line);
  color: var(--text);
}
.lang-dropdown a[aria-current="page"] {
  background: var(--line);
  color: var(--accent-soft);
  font-weight: 600;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
}
.logo img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
}
.logo span {
  color: var(--accent);
}

.hero {
  padding: 3.5rem 0 2rem;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-logo {
  width: clamp(72px, 12vw, 96px);
  height: clamp(72px, 12vw, 96px);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.35);
}
.hero .kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-soft);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  max-width: 720px;
}
.hero p {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.02rem;
  margin: 0;
}
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #171524;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.btn:hover {
  background: var(--card);
  text-decoration: none;
}
.btn.primary {
  background: linear-gradient(135deg, #d4af37, #9a7420);
  border: 0;
  color: #12101c;
}
.btn.primary:hover {
  opacity: 0.92;
}
.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}
.btn-nav {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
}

.hero-rich {
  padding: 3rem 0 2.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-grid-single {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.hero-copy .hero-lead {
  color: var(--text);
  max-width: none;
  font-size: 1.08rem;
  margin-bottom: 0.75rem;
}
.hero-copy .hero-sub {
  color: var(--muted);
  max-width: none;
  font-size: 0.98rem;
}
.stats-row {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.stats-row li {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  padding: 0.85rem 0.65rem;
  text-align: center;
}
.stats-row strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
  color: var(--accent-soft);
  line-height: 1.2;
}
.stats-row span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.3;
}
.phone-mock {
  position: relative;
  max-width: 320px;
  margin-inline: auto;
  padding: 0.65rem;
  background: linear-gradient(160deg, #2a2640, #12101c);
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.15);
}
.phone-mock img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}
.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 0.95rem;
}
.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-shots {
  padding-top: 2rem;
}
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.shot-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.shot-frame {
  background: #0e0c16;
  padding: 0.75rem 0.75rem 0;
  display: flex;
  justify-content: center;
}
.shot-frame img {
  width: auto;
  max-height: 340px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}
.shot-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
}
.shot-index {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.shot-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}
.shot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.feat-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feat-list li {
  position: relative;
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  background: rgba(74, 144, 226, 0.06);
  border: 1px solid rgba(74, 144, 226, 0.18);
  border-radius: 10px;
  font-size: 0.94rem;
  color: var(--text);
}
.feat-list li::before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  color: var(--accent2);
  font-weight: 700;
}

.cta-banner {
  margin: 1rem 0 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(74, 144, 226, 0.12));
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 2.25rem 1.5rem;
  text-align: center;
}
.cta-inner {
  max-width: 640px;
  margin-inline: auto;
}
.cta-banner h2 {
  font-family: "Cinzel", Georgia, serif;
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.cta-banner p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 1rem;
}

.footer-play {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--accent-soft) !important;
  font-weight: 600;
  font-size: 0.82rem !important;
}
.footer-play:hover {
  background: rgba(212, 175, 55, 0.2);
  text-decoration: none;
}

.section {
  padding: 1.5rem 0 2.5rem;
}
.section h2 {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.45rem;
  margin: 0 0 0.35rem;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: linear-gradient(180deg, #1f1c2e, #151222);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card h3 {
  margin: 0;
  font-size: 1.05rem;
}
.card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}
.card-link {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.lang-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.lang-pick a {
  font-size: 0.88rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.lang-pick a:hover {
  color: var(--text);
  background: var(--line);
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.footer-col h4 {
  color: var(--text);
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
}
.footer-col a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}
.footer-brand h4 {
  font-size: 0.85rem;
}
.footer-brand p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}
.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.legal-intro {
  padding-bottom: 0;
}
.legal-intro h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.legal-body {
  max-width: 800px;
  color: var(--muted);
}
.legal-body h2 {
  color: var(--text);
  font-size: 1.05rem;
  margin-top: 1.75rem;
}
.legal-body h2:first-of-type {
  margin-top: 0.5rem;
}
.legal-body p {
  margin: 0 0 1rem;
}
.legal-body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-body li {
  margin: 0.35rem 0;
}
.legal-body .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.legal-back {
  margin-top: 2rem;
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .phone-mock {
    max-width: 260px;
  }
  .shots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .hero {
    padding-top: 2.5rem;
  }
  .shots-grid {
    grid-template-columns: 1fr;
  }
  .shot-frame img {
    max-height: 420px;
  }
}
