:root {
  --ink: #15131d;
  --ink-soft: #242232;
  --paper: #f7f1e7;
  --paper-strong: #fff8ed;
  --muted: #6d6571;
  --amber: #f2b24d;
  --teal: #19b7a8;
  --ruby: #d94d6a;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.hero {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(21, 19, 29, 0.94) 0%, rgba(21, 19, 29, 0.78) 42%, rgba(21, 19, 29, 0.18) 100%),
    url("lounge-hero.jpg") center / cover no-repeat;
}

[dir="ltr"] .hero {
  background:
    linear-gradient(270deg, rgba(21, 19, 29, 0.94) 0%, rgba(21, 19, 29, 0.78) 42%, rgba(21, 19, 29, 0.18) 100%),
    url("lounge-hero.jpg") center / cover no-repeat;
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  font-size: 18px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 241, 231, 0.82);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a,
.lang-link {
  padding: 10px 12px;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.lang-link {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: auto auto 54px;
  padding: 36px 0 18px;
}

.eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 19, 29, 0.44);
  color: var(--amber);
  font-weight: 800;
  font-size: 14px;
}

h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 0;
  color: rgba(247, 241, 231, 0.88);
  font-size: 21px;
  line-height: 1.9;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--amber);
  color: #221708;
  box-shadow: 0 16px 36px rgba(242, 178, 77, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line);
  color: var(--paper);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
}

.stat {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 19, 29, 0.5);
  backdrop-filter: blur(14px);
}

.stat strong {
  display: block;
  color: var(--teal);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
}

.stat span {
  display: block;
  color: rgba(247, 241, 231, 0.76);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 86px 0;
}

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

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

.section-accent {
  background: #eef7f4;
  color: var(--ink);
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--ruby);
  font-weight: 900;
  font-size: 14px;
}

.section-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-text {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
}

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

.feature {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper-strong);
  border: 1px solid rgba(21, 19, 29, 0.1);
  box-shadow: 0 14px 38px rgba(21, 19, 29, 0.08);
}

.feature-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--amber);
  font-weight: 900;
  margin-bottom: 18px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.visual-shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.visual-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--teal);
  color: #052420;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: rgba(247, 241, 231, 0.75);
  line-height: 1.8;
  font-weight: 600;
}

.download {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.download::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal), var(--ruby), var(--amber));
}

.download h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}

.download p {
  margin: 14px 0 0;
  color: rgba(247, 241, 231, 0.76);
  line-height: 1.9;
  font-weight: 600;
  font-size: 17px;
}

.store-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.store-badge {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, background 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.store-badge small {
  color: var(--teal);
  font-weight: 900;
}

.store-badge strong {
  font-size: 18px;
}

.footer {
  padding: 26px 0;
  background: #0f0e15;
  color: rgba(247, 241, 231, 0.72);
  font-weight: 700;
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--amber);
}

.policy-body {
  background:
    radial-gradient(circle at top, rgba(242, 178, 77, 0.18), transparent 32%),
    linear-gradient(180deg, #120f18 0%, var(--ink) 100%);
}

.policy-wrapper {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.policy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.policy-home {
  font-weight: 900;
  color: var(--amber);
}

.policy-hero,
.policy-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(36, 34, 50, 0.92);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.policy-hero {
  padding: 28px 24px;
  margin-bottom: 16px;
}

.policy-hero h1 {
  margin: 0 0 10px;
  font-size: 42px;
}

.subtitle {
  margin: 0;
  color: rgba(247, 241, 231, 0.74);
  font-size: 15px;
  line-height: 1.8;
}

.policy-panel {
  padding: 22px 20px;
  margin-top: 14px;
}

.policy-panel h2 {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 22px;
}

.policy-panel p,
.policy-panel li {
  font-size: 16px;
  color: var(--paper);
  line-height: 1.9;
}

.policy-panel p {
  margin: 0;
}

.policy-panel ul {
  margin: 0;
  padding-inline-start: 22px;
}

.note {
  margin-top: 14px;
  background: rgba(242, 178, 77, 0.12);
  border: 1px solid rgba(242, 178, 77, 0.22);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: rgba(247, 241, 231, 0.78);
}

.policy-footer {
  margin-top: 22px;
  text-align: center;
  color: rgba(247, 241, 231, 0.72);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-stats,
  .features,
  .story-grid,
  .download {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .hero,
  [dir="ltr"] .hero {
    min-height: 92svh;
    background:
      linear-gradient(180deg, rgba(21, 19, 29, 0.9) 0%, rgba(21, 19, 29, 0.82) 54%, rgba(21, 19, 29, 0.44) 100%),
      url("lounge-hero.jpg") center / cover no-repeat;
  }

  .site-header,
  .hero-content,
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 18px 0;
  }

  .brand span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-content {
    margin-bottom: 28px;
    padding-top: 24px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .hero-copy,
  .section-text {
    font-size: 16px;
  }

  .hero-actions,
  .store-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat {
    min-height: 78px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title,
  .download h2 {
    font-size: 31px;
  }

  .feature {
    min-height: auto;
  }

  .step {
    grid-template-columns: 46px 1fr;
    padding: 16px;
  }

  .step-number {
    width: 38px;
    height: 38px;
  }

  .download {
    padding: 26px 20px;
  }

  .footer-row,
  .policy-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-wrapper {
    width: min(100% - 24px, 920px);
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .policy-hero h1 {
    font-size: 32px;
  }
}
