@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #0b1026;
  --card: #141b3d;
  --text: #e8ecff;
  --muted: #9aa3c7;
  --accent: #c9b896;
  --accent-soft: #e8dcc8;
  --line: #1e2754;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 70% 45% at 50% -15%, rgba(201, 184, 150, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 20%, rgba(30, 39, 84, 0.9), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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(11, 16, 38, 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;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25);
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
  font-size: 0.93rem;
}

.btn:hover {
  text-decoration: none;
  background: var(--line);
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b1026;
}

.btn.primary:hover {
  filter: brightness(1.08);
}

.btn-lg {
  padding: 0.75rem 1.35rem;
  font-size: 1rem;
}

.btn-nav {
  padding: 0.45rem 0.85rem;
}

.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;
}

.lang-btn:hover {
  color: var(--text);
  background: var(--line);
}

.lang-arrow {
  font-size: 0.7rem;
}

.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;
}

.lang-dropdown a {
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--muted);
}

.lang-dropdown a:hover,
.lang-dropdown a[aria-current="page"] {
  background: var(--line);
  color: var(--text);
  text-decoration: none;
}

.hero-minimal {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 36rem;
  margin-inline: auto;
}

.hero-logo {
  width: clamp(72px, 12vw, 120px);
  height: clamp(72px, 12vw, 120px);
  margin: 0 auto 1.25rem;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.kicker {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero-minimal h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.hero-sub {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 2rem 0 2.5rem;
}

.section h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
}

.card h3 {
  font-family: "Source Serif 4", Georgia, serif;
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0 0 0.75rem;
}

.card-link {
  font-weight: 600;
  color: var(--accent);
}

.legal-intro h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.75rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.legal-body h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--accent-soft);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  font-size: 0.95rem;
}

.legal-body ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-body .delete-box {
  background: rgba(201, 184, 150, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.25rem;
  border-left: 4px solid var(--accent);
}

.legal-body .delete-box ol {
  margin-top: 0.75rem;
}

.legal-body .meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.legal-doc-sub {
  font-weight: 700;
  color: var(--accent-soft);
}

.legal-back {
  margin: 0 0 2rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 1.5rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--accent);
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-play {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--accent) !important;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.lang-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
}

.lang-pick a {
  color: var(--accent);
}

@media (max-width: 600px) {
  .hero-minimal {
    padding-top: 1.5rem;
  }
}

/* ——— Rich marketing hub (tablet screenshots) ——— */

.hero-rich {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-rich .kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  background: rgba(201, 184, 150, 0.12);
  border: 1px solid rgba(201, 184, 150, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.hero-rich h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 720px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.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;
  margin-bottom: 0;
}

.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(201, 184, 150, 0.08);
  border: 1px solid rgba(201, 184, 150, 0.22);
  border-radius: 12px;
  padding: 0.85rem 0.55rem;
  text-align: center;
}

.stats-row strong {
  display: block;
  font-size: 1.15rem;
  color: var(--accent-soft);
  line-height: 1.2;
  font-weight: 700;
}

.stats-row span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.tablet-mock {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  padding: 0.55rem;
  background: linear-gradient(160deg, #1a2248, #0b1026);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.tablet-mock img {
  border-radius: 14px;
  width: 100%;
  height: auto;
}

.section h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.55rem);
  font-weight: 700;
}

.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(201, 184, 150, 0.15);
  border: 1px solid rgba(201, 184, 150, 0.35);
  color: var(--accent);
  font-weight: 700;
}

.steps h3 {
  font-family: "Source Serif 4", Georgia, serif;
  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: #080c1c;
  padding: 0.65rem 0.65rem 0;
  display: flex;
  justify-content: center;
}

.shot-frame img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  object-position: top;
  border-radius: 10px 10px 0 0;
}

.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 {
  font-family: "Source Serif 4", Georgia, serif;
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.shot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section-links {
  padding-top: 1rem;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(145deg, rgba(20, 27, 61, 0.95), rgba(11, 16, 38, 0.98));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem;
}

.links-visual {
  display: flex;
  justify-content: center;
}

.links-list {
  grid-template-columns: 1fr !important;
}

.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(201, 184, 150, 0.06);
  border: 1px solid rgba(201, 184, 150, 0.18);
  border-radius: 10px;
  font-size: 0.94rem;
}

.feat-list li::before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.cta-banner {
  margin: 1rem 0 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201, 184, 150, 0.14), rgba(30, 39, 84, 0.5));
  border: 1px solid rgba(201, 184, 150, 0.28);
  padding: 2.25rem 1.5rem;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin-inline: auto;
}

.cta-banner h2 {
  font-family: "Source Serif 4", 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;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 360px;
    margin-inline: auto;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .shots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shots-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}
