@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Nunito:wght@400;600;700;800&display=swap");

:root {
  --bg: #120e0c;
  --card: #1c1612;
  --text: #e9dcc8;
  --muted: #b7a790;
  --accent: #c9a36a;
  --accent-soft: #e8c872;
  --accent2: #7dcfb6;
  --line: #3a2a1c;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", "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, 14, 12, 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;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.3px;
  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, 163, 106, 0.35);
}

.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: 11rem;
  max-height: 18rem;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

.lang-dropdown[hidden] {
  display: none !important;
}

.lang-dropdown a {
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  text-decoration: none;
}

.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;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-rich {
  padding: 3.25rem 0 2.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.25rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.hero-shot-cap {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  max-width: 16.5rem;
  line-height: 1.4;
}

.kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-soft);
  background: rgba(201, 163, 106, 0.12);
  border: 1px solid rgba(201, 163, 106, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 600;
}

.hero-lead {
  color: var(--text);
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

.hero-sub {
  color: var(--muted);
  margin: 0;
}

.play-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.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: var(--card);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn:hover {
  background: #251e18;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(90deg, #c9a36a, #8c7048);
  border: 0;
  color: #120e0c;
}

.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;
}

.video-wrap {
  position: relative;
  width: min(100%, 280px);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-center {
  display: flex;
  justify-content: center;
}

.video-center .video-wrap {
  width: min(100%, 320px);
}

.section-video {
  padding-top: 0;
}

.device {
  width: min(100%, 260px);
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.55));
}

.device-bezel {
  position: relative;
  padding: 11px 10px 14px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(165deg, #4a3c2c 0%, #1c1612 42%, #0c0a08 100%);
  box-shadow:
    0 0 0 1px rgba(201, 163, 106, 0.5),
    inset 0 1px 0 rgba(255, 230, 180, 0.2);
}

.device-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 76px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0806;
  z-index: 2;
}

.device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  aspect-ratio: 9 / 19.5;
}

.device-screen img,
.device-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: top center;
}

.device-bar {
  display: block;
  width: 84px;
  height: 4px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: rgba(233, 220, 200, 0.28);
}

.device-hero {
  width: min(100%, 276px);
}

.device-shot {
  width: min(100%, 268px);
  flex-shrink: 0;
}

.device-tile {
  width: min(100%, 210px);
  margin-inline: auto;
}

.device-teaser {
  width: min(100%, 420px);
}

.device-teaser .device-screen {
  aspect-ratio: 9 / 16;
}

.section-teaser {
  padding-top: 0.25rem;
}

.teaser-stage {
  text-align: center;
  padding: 2.35rem 1.25rem 2.85rem;
  border-radius: 28px;
  border: 1px solid rgba(201, 163, 106, 0.3);
  background:
    radial-gradient(ellipse 55% 60% at 50% 40%, rgba(201, 163, 106, 0.18), transparent 68%),
    linear-gradient(180deg, #1c1612 0%, #120e0c 100%);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
}

.teaser-stage h2 {
  margin-bottom: 0.4rem;
}

.teaser-stage .section-sub {
  max-width: 34rem;
  margin-inline: auto;
}

.teaser-phone {
  display: flex;
  justify-content: center;
  margin-top: 0.35rem;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  margin-bottom: 2.75rem;
}

.showcase {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.35rem 1.35rem 1.35rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(201, 163, 106, 0.22);
  background: linear-gradient(120deg, rgba(28, 22, 18, 0.92), rgba(18, 14, 12, 0.55));
}

.showcase:nth-child(even) {
  flex-direction: row-reverse;
}

.showcase .device {
  transition: transform 0.35s ease;
}

.showcase:hover .device {
  transform: translateY(-6px);
}

.showcase-copy {
  flex: 1;
  min-width: 0;
}

.showcase-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.55rem;
}

.showcase-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.shots-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.35rem;
}

.shot-tile {
  margin: 0;
  flex: 1 1 240px;
  max-width: 320px;
  padding: 1.15rem 1rem 1.25rem;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(201, 163, 106, 0.22);
  border-radius: 22px;
}

.shot-tile h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0 0.45rem;
}

.shot-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section {
  padding: 2.5rem 0;
}

.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-size: 0.93rem;
}

.card-link {
  font-weight: 700;
  font-size: 0.93rem;
}

.features-grid .feature-card {
  position: relative;
  padding-top: 2.5rem;
}

.feature-icon {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 1.35rem;
  line-height: 1;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.shot-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.shot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
}

.shot-card figcaption {
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
  border-top: 1px solid var(--line);
}

.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.lang-pill:hover {
  color: var(--text);
  background: #251e18;
  text-decoration: none;
}

.lang-pill.active {
  border-color: rgba(201, 163, 106, 0.55);
  color: var(--accent-soft);
  background: rgba(201, 163, 106, 0.1);
}

.cta-band {
  padding: 0 0 2.5rem;
}

.cta-inner {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(201, 163, 106, 0.35);
  background: linear-gradient(160deg, rgba(201, 163, 106, 0.12), rgba(28, 22, 18, 0.9));
}

.cta-inner h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.cta-inner p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.lang-pick-wrap {
  gap: 0.65rem 1rem !important;
}

.legal-intro h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin: 0;
}

.legal-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
}

.legal-body h2 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--accent-soft);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 0.93rem;
}

.legal-body ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc-sub {
  font-weight: 700;
  color: var(--text) !important;
}

.meta {
  font-size: 0.88rem !important;
  font-style: italic;
}

.legal-back {
  margin: 1.5rem 0 2rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.5rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-col h4 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.footer-col p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-play {
  font-weight: 700;
  color: var(--accent-soft) !important;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.lang-pick {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

[dir="rtl"] .nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .feature-icon {
  left: auto;
  right: 1.25rem;
}

[dir="rtl"] .showcase:nth-child(odd) {
  flex-direction: row-reverse;
}

[dir="rtl"] .showcase:nth-child(even) {
  flex-direction: row;
}

@media (max-width: 900px) {
  .shots-more {
    max-width: 26rem;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .video-wrap {
    max-width: 220px;
  }

  .section-video .video-center {
    display: none;
  }

  .device-hero,
  .device-shot,
  .device-teaser {
    width: min(100%, 300px);
  }

  .showcase,
  .showcase:nth-child(even),
  [dir="rtl"] .showcase:nth-child(odd),
  [dir="rtl"] .showcase:nth-child(even) {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem 1.4rem;
  }

  .showcase-kicker {
    margin-inline: auto;
  }

  .teaser-stage {
    padding: 1.75rem 0.85rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .shots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
