:root {
  --bg: #0b0a0f;
  --bg-soft: #111016;
  --panel: #18171d;
  --panel-soft: #201f26;

  --text: #f5f1e8;
  --text-muted: #b7afc2;
  --text-soft: #8f879a;

  --gold: #d4b76f;
  --gold-bright: #f0cf78;
  --gold-dark: #6f5424;

  --border: rgba(212, 183, 111, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-pill: 999px;

  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212, 183, 111, 0.10), transparent 34rem),
    radial-gradient(circle at top left, rgba(77, 66, 108, 0.14), transparent 32rem),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 10, 15, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-name {
  color: var(--gold-bright);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold-bright);
}

/* HERO */

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center right;
  opacity: 0.56;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 15, 0.96) 0%, rgba(11, 10, 15, 0.80) 43%, rgba(11, 10, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(11, 10, 15, 0.30) 0%, rgba(11, 10, 15, 0.95) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 108px 24px 86px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}

.hero h1 {
  margin: 22px 0 12px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero-subtitle {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero-text {
  margin: 30px 0 0;
  max-width: 620px;
  color: var(--text);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.28;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.hero-note {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.65;
}

/* STORE BUTTONS */

.store-buttons {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-buttons.centered {
  justify-content: center;
}

.store-button {
  display: inline-grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  min-height: 74px;
  min-width: 244px;
  padding: 13px 26px 13px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #09080c;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(212, 183, 111, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(212, 183, 111, 0.24);
}

.store-button.secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.store-icon {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.apple-icon svg {
  fill: #09080c;
}

.google-icon svg {
  fill: none;
}

.google-blue {
  fill: #4285f4;
}

.google-green {
  fill: #34a853;
}

.google-yellow {
  fill: #fbbc05;
}

.google-red {
  fill: #ea4335;
}

.store-label-small {
  grid-column: 2;
  color: inherit;
  opacity: 0.72;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.store-label-main {
  grid-column: 2;
  color: inherit;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.google-play-button .store-label-small {
  color: var(--text-muted);
  opacity: 1;
}

.google-play-button .store-label-main {
  color: var(--text);
}

/* PHONE MOCKUP */

.hero-phone-area {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 183, 111, 0.30), transparent 67%);
  filter: blur(24px);
}

.phone-mockup {
  position: relative;
  width: min(350px, 78vw);
  aspect-ratio: 9 / 19;
  padding: 11px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(240, 207, 120, 0.55), rgba(64, 47, 20, 0.32)),
    #0a090d;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.70),
    0 0 0 1px rgba(240, 207, 120, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.phone-screen-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
  background: #0b0a0f;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #0b0a0f;
}

/* SECTIONS */

.section {
  padding: 112px 24px;
}

.section-muted {
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 183, 111, 0.08), transparent 30rem),
    rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 74px;
  align-items: center;
}

.section h2 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section-copy p {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.7;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.steps-grid,
.readings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card,
.reading-card,
.responsible-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.info-card {
  min-height: 245px;
  padding: 26px;
}

.card-number {
  display: inline-flex;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.info-card h3,
.reading-card h3 {
  margin: 28px 0 12px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.info-card p,
.reading-card p,
.responsible-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.readings-grid {
  grid-template-columns: repeat(2, 1fr);
}

.reading-card {
  min-height: 220px;
  padding: 32px;
}

.reading-card::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 183, 111, 0.16), transparent 68%);
}

.visual-section {
  background:
    radial-gradient(circle at bottom right, rgba(212, 183, 111, 0.10), transparent 34rem),
    var(--bg);
}

.visual-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.responsible-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
}

.responsible-card h2 {
  margin-bottom: 28px;
}

.responsible-card p {
  margin-bottom: 18px;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-bright);
  font-weight: 800;
}

/* DOWNLOAD */

.download-section {
  position: relative;
  overflow: hidden;
  padding: 118px 24px;
  text-align: center;
}

.download-background {
  position: absolute;
  inset: 0;
  background-image: url("assets/closing-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.42;
}

.download-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 15, 0.92), rgba(11, 10, 15, 0.68), rgba(11, 10, 15, 0.96));
}

.download-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.download-inner h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.download-inner p {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.65;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #08070b;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  color: var(--gold-bright);
  font-size: 20px;
  font-weight: 800;
}

.footer-subtitle,
.footer-copy {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-copy {
  grid-column: 1 / -1;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 82px;
    gap: 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 10, 15, 0.92) 0%, rgba(11, 10, 15, 0.78) 45%, rgba(11, 10, 15, 0.98) 100%);
  }

  .hero-phone-area {
    min-height: 560px;
  }

  .two-column,
  .steps-grid,
  .readings-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 84px 22px;
  }

  .visual-panel img {
    height: 420px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    padding: 14px 18px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-subtitle {
    font-size: 12px;
  }

  .hero-inner {
    padding: 62px 20px 72px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    min-width: 0;
  }

  .hero-phone-area {
    min-height: 520px;
  }

  .phone-mockup {
    width: min(310px, 86vw);
  }

  .section h2 {
    font-size: 38px;
  }

  .section-copy p {
    font-size: 18px;
  }

  .info-card,
  .reading-card {
    padding: 26px;
  }

  .responsible-card {
    padding: 30px;
  }

  .visual-panel img {
    height: 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}


























/* LEGAL PAGES */

.legal-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-bottom: 1px solid var(--border-soft);
}

.legal-hero-background {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}

.legal-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 15, 0.96), rgba(11, 10, 15, 0.74)),
    linear-gradient(180deg, rgba(11, 10, 15, 0.20), rgba(11, 10, 15, 0.96));
}

.legal-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 24px 82px;
  text-align: center;
}

.legal-hero h1 {
  margin: 20px 0 20px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.legal-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 21px;
  line-height: 1.65;
}

.legal-section {
  padding: 86px 24px 112px;
  background:
    radial-gradient(circle at top right, rgba(212, 183, 111, 0.08), transparent 34rem),
    var(--bg);
}

.legal-container {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 54px;
}

.legal-updated {
  margin: 0 0 34px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-block {
  padding: 30px 0;
  border-top: 1px solid var(--border-soft);
}

.legal-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-block:last-child {
  padding-bottom: 0;
}

.legal-block h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.legal-block p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

@media (max-width: 620px) {
  .legal-hero-inner {
    padding: 78px 20px 64px;
    text-align: left;
  }

  .legal-hero h1 {
    font-size: 52px;
  }

  .legal-hero p {
    font-size: 18px;
  }

  .legal-section {
    padding: 56px 18px 82px;
  }

  .legal-card {
    padding: 30px;
    border-radius: 24px;
  }

  .legal-block h2 {
    font-size: 24px;
  }

  .legal-block p {
    font-size: 17px;
  }
}




















.support-email {
  display: inline-flex;
  margin: 8px 0;
  color: var(--gold-bright);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.legal-list {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text-muted);
}

.legal-list li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.65;
}

.legal-list a {
  color: var(--gold-bright);
  font-weight: 800;
}

.legal-list a:hover,
.support-email:hover {
  text-decoration: underline;
}

@media (max-width: 620px) {
  .support-email {
    font-size: 18px;
    word-break: break-word;
  }

  .legal-list li {
    font-size: 17px;
  }
}