:root {
  color-scheme: dark;
  --bg: #08090c;
  --panel: #111318;
  --panel-soft: #171a21;
  --text: #f6f7fb;
  --muted: #aeb4c2;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ffffff;
  --accent-text: #090a0d;
  --warm: #e2b76f;
  --danger: #ff5f5f;
  --radius: 8px;
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 10%, rgba(226, 183, 111, 0.18), transparent 32rem),
    linear-gradient(180deg, #050609 0%, var(--bg) 42%, #0c0e12 100%);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #000;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.language-switch select {
  height: 32px;
  max-width: 168px;
  padding: 0 30px 0 10px;
  border: 0;
  border-radius: 6px;
  color: var(--accent-text);
  background: var(--accent);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

[dir="rtl"] .language-switch {
  padding: 4px 10px 4px 4px;
}

[dir="rtl"] .language-switch select {
  padding: 0 10px 0 30px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100svh - 74px);
  margin: 0 auto;
  padding: 42px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  text-wrap: balance;
}

.button.primary {
  background: var(--accent);
  color: var(--accent-text);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button.full {
  width: 100%;
}

.age-note {
  max-width: 620px;
  color: #8c93a1;
  font-size: 13px;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 0.49;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: linear-gradient(180deg, #2a2d35, #08090c);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.phone-top {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 19px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: #050609;
}

.screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #f7f7f8;
}

.concept-screen {
  display: grid;
  grid-template-rows: 27% 1fr 60px;
  background: #f8f8fa;
}

.concept-hero {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px 18px 16px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74)),
    radial-gradient(circle at 22% 22%, rgba(226, 183, 111, 0.48), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(120, 128, 148, 0.42), transparent 30%),
    linear-gradient(135deg, #2b2f3a, #07080c 66%);
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 900;
}

.concept-hero strong {
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.05;
}

.concept-hero em {
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.phone-play {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #090a0d;
  font-size: 12px;
  font-weight: 900;
}

.concept-body {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 0;
  padding: 13px 12px 8px;
  color: #1c1f26;
}

.concept-body h4 {
  margin: 0;
  font-size: 12px;
  line-height: 1.1;
}

.concept-recommend {
  display: grid;
  gap: 10px;
}

.concept-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 9px;
  border: 1px solid #eceef3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 23, 30, 0.05);
}

.concept-thumb,
.concept-poster {
  display: block;
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(0, 0, 0, 0.14)),
    linear-gradient(135deg, #b8becb, #596071);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.concept-thumb {
  height: 54px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 72% 38%, #e2b76f, transparent 30%),
    linear-gradient(135deg, #5f6675, #171a21);
}

.concept-copy {
  display: grid;
  gap: 9px;
}

.concept-copy strong {
  font-size: 12px;
}

.concept-copy strong::after {
  display: block;
  width: 72%;
  height: 4px;
  margin-top: 7px;
  content: "";
  border-radius: 999px;
  background: #e8ebf1;
}

.concept-copy em {
  color: #a0a6b2;
  font-size: 10px;
  font-style: normal;
}

.concept-row {
  display: grid;
  gap: 8px;
}

.concept-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.concept-row-head span {
  color: #a0a6b2;
  font-size: 10px;
  font-weight: 700;
}

.concept-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.concept-poster {
  aspect-ratio: 0.74;
}

.poster-a,
.poster-d {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at 28% 24%, #b7c6dd, transparent 34%),
    linear-gradient(145deg, #d49a91, #5f6675);
}

.poster-b,
.poster-e {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(0, 0, 0, 0.13)),
    radial-gradient(circle at 70% 20%, #d6d9e1, transparent 28%),
    linear-gradient(145deg, #8c93a1, #4c5260);
}

.poster-c,
.poster-f {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at 68% 22%, #e2b76f, transparent 30%),
    linear-gradient(145deg, #c8cdd6, #6a7080);
}

.concept-tabbar {
  z-index: 2;
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  align-items: center;
  gap: 10px;
  height: 54px;
  margin: 0 14px 12px;
  padding: 7px 8px;
  border-radius: 999px;
  background: #050609;
  box-shadow:
    0 -10px 28px rgba(255, 255, 255, 0.82),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.concept-tabbar span {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 38px;
  border-radius: 999px;
  color: #fff;
  font-size: 0;
}

.concept-tabbar span::before {
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 999px;
  background: currentColor;
  opacity: 0.96;
}

.concept-tabbar .active {
  grid-auto-flow: column;
  gap: 7px;
  background: #fff;
  color: #050609;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.concept-tabbar .active::before {
  width: 15px;
  height: 15px;
  clip-path: polygon(50% 0, 100% 42%, 88% 100%, 12% 100%, 0 42%);
}

.concept-tabbar .tab-compass::before {
  border: 4px solid currentColor;
  background: transparent;
  transform: rotate(-24deg);
}

.concept-tabbar .tab-people::before {
  width: 20px;
  height: 16px;
  border-radius: 0;
  background:
    radial-gradient(circle at 34% 34%, currentColor 0 3px, transparent 3.3px),
    radial-gradient(circle at 66% 34%, currentColor 0 3px, transparent 3.3px),
    radial-gradient(ellipse at 50% 86%, currentColor 0 8px, transparent 8.3px);
}

.concept-tabbar .tab-account::before {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 35%, #050609 0 3px, transparent 3.3px),
    radial-gradient(ellipse at 50% 78%, #050609 0 7px, transparent 7.3px),
    currentColor;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  text-wrap: balance;
}

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

.feature-grid article,
.access-card,
.policy-strip a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.feature-grid article {
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p,
.split p,
.access-card p,
.legal-page p,
.legal-list {
  color: var(--muted);
  line-height: 1.72;
  text-wrap: pretty;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 32px;
  border-top: 1px solid var(--line);
}

.access-card {
  padding: 26px;
  background: var(--panel);
}

.policy-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 0;
}

.policy-strip a {
  display: grid;
  gap: 8px;
  padding: 22px;
  text-wrap: balance;
}

.policy-strip span {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--text);
}

.contact-modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111318;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.58);
}

.contact-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.contact-dialog h2 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.1;
}

.contact-dialog p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-fields label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-fields input,
.contact-fields select,
.contact-fields textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 15px;
}

.contact-fields input,
.contact-fields select {
  min-height: 46px;
  padding: 0 13px;
}

.contact-fields textarea {
  resize: vertical;
  min-height: 120px;
  padding: 12px 13px;
}

.contact-message,
.contact-status,
.contact-actions {
  grid-column: 1 / -1;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
}

.contact-status[data-tone="success"] {
  color: #65d68a;
}

.contact-status[data-tone="error"] {
  color: #ff8a8a;
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-page h1 {
  margin-bottom: 12px;
  font-size: clamp(40px, 6vw, 68px);
}

.updated {
  margin-bottom: 42px;
  color: #7f8796;
}

.legal-page section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-list {
  padding-left: 22px;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-page a {
  color: var(--warm);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
  text-align: center;
}

.not-found img {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    width: calc(100% - 32px);
    gap: 14px;
  }

  .hero,
  .split,
  .feature-grid,
  .policy-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-visual {
    order: -1;
  }

  .phone-frame {
    width: min(300px, 78vw);
  }

  .feature-icon {
    margin-bottom: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero,
  .section,
  .site-footer,
  .legal-page {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    width: calc(100% - 24px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-grid article,
  .access-card,
  .policy-strip a {
    padding: 20px;
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-dialog {
    padding: 20px;
  }

  .phone-frame {
    width: min(260px, 76vw);
  }
}
