@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&family=Dancing+Script:wght@600&display=swap');


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:      #080808;
  --gold:       #C9A84C;
  --gold-dark:  #a8883a;
  --white:      #ffffff;
  --gray-dim:   #555555;
  --gray-faint: #1a1a1a;
  --gray-mid:   #2a2a2a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #080808;
}

::-webkit-scrollbar { width: 8px; background: #080808; }
::-webkit-scrollbar-track { background: #080808; border: none; }
::-webkit-scrollbar-thumb { background: #080808; border: none; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('images/color_logo_transparent.png');
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: center center;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body > * { position: relative; z-index: 1; }
body { overflow-x: hidden; }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid var(--gray-faint);
  position: sticky;
  top: 0;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { width: 46px; height: 46px; object-fit: contain; }
.nav-brand { font-family: 'Dancing Script', cursive; font-size: 22px; font-weight: 600; letter-spacing: 0.02em; color: var(--gold); text-transform: none; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: 0.12em; color: #777; text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.15em; color: var(--black); background: var(--gold); border: none; padding: 10px 26px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-dark); }

/* ── HERO ── */
.hero { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 130px 60px 130px; border-bottom: 1px solid var(--gray-faint); }
.hero h1 { font-family: var(--font-display); font-size: 62px; font-weight: 300; font-style: italic; line-height: 1.18; color: var(--white); max-width: 740px; margin-bottom: 30px; }
.hero h1 .gold { color: var(--gold); font-style: normal; font-weight: 400; }
.hero-sub { font-size: 14px; font-weight: 300; color: var(--gray-dim); line-height: 1.9; max-width: 380px; margin-bottom: 52px; letter-spacing: 0.03em; }
.hero-btns { display: flex; align-items: center; gap: 20px; margin-top: 80px; }
.btn-gold { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.15em; color: var(--black); background: var(--gold); border: none; padding: 14px 38px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-ghost { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.15em; color: #777; background: transparent; border: 1px solid var(--gray-mid); padding: 13px 38px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-divider { width: 1px; height: 42px; background: var(--gray-faint); }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--gray-faint); }
.stat { padding: 48px 32px; border-right: 1px solid var(--gray-faint); text-align: center; }
.stat:last-child { border-right: none; }
.stat-big { font-family: var(--font-display); font-size: 26px; font-weight: 400; font-style: italic; color: var(--gold); margin-bottom: 10px; }
.stat-lbl { font-size: 11px; letter-spacing: 0.14em; color: var(--gray-dim); text-transform: uppercase; }

/* ── FEATURE SECTIONS ── */
.feature { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--gray-faint); min-height: 500px; }
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature-img { overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85); transition: filter 0.5s; }
.feature-img img:hover { filter: brightness(1); }
.feature-text { padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--gray-faint); }
.feature.reverse .feature-text { border-left: none; border-right: 1px solid var(--gray-faint); }
.feature-num { font-size: 11px; letter-spacing: 0.18em; color: #2e2e2e; text-transform: uppercase; font-family: var(--font-body); margin-bottom: 20px; }
.feature-text h2 { font-family: var(--font-display); font-size: 38px; font-weight: 300; font-style: italic; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.feature-text h2 span { color: var(--gold); }
.feature-text p { font-size: 13px; font-weight: 300; color: var(--gray-dim); line-height: 1.9; max-width: 340px; letter-spacing: 0.02em; }

/* ── HOW IT WORKS ── */
.section { padding: 90px 60px; border-bottom: 1px solid var(--gray-faint); }
.section-label { font-size: 11px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; font-family: var(--font-body); margin-bottom: 48px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-faint); }
.card { background: var(--black); padding: 40px 36px; }
.card-num { font-size: 11px; letter-spacing: 0.12em; color: #2e2e2e; font-family: var(--font-body); margin-bottom: 18px; }
.card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; font-style: italic; color: #ccc; margin-bottom: 14px; }
.card p { font-size: 13px; font-weight: 300; color: var(--gray-dim); line-height: 1.9; letter-spacing: 0.02em; }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 70px 60px; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: 38px; font-weight: 300; font-style: italic; color: var(--black); margin-bottom: 10px; }
.cta-band p { font-size: 12px; font-weight: 300; color: #6b5820; margin-bottom: 32px; letter-spacing: 0.08em; text-transform: uppercase; }
.btn-dark { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.15em; color: var(--gold); background: var(--black); border: none; padding: 14px 42px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-dark:hover { background: #111; }

/* ── FOOTER ── */
.footer { padding: 36px 60px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--gray-faint); }
.footer-left { display: flex; align-items: center; gap: 14px; }
.footer-left img { width: 32px; height: 32px; object-fit: contain; opacity: 0.5; }
.footer-brand { font-size: 11px; letter-spacing: 0.14em; color: #333; text-transform: uppercase; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 11px; letter-spacing: 0.1em; color: #333; text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── INSTALL SECTION ── */
.install-section { border-bottom: 1px solid var(--gray-faint); }

.install-intro {
  max-width: 520px;
  margin-bottom: 52px;
}

.install-intro p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-dim);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-faint);
}

.install-block {
  background: var(--black);
  padding: 40px 36px;
}

.install-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-faint);
}

.install-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.install-device {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
}

.install-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.install-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 24px;
  height: 24px;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-dim);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.step-body strong {
  color: #aaa;
  font-weight: 400;
}

.step-url {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 80px 24px 70px; }
  .hero h1 { font-size: 38px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--gray-faint); }
  .stat:last-child { border-bottom: none; }
  .feature { grid-template-columns: 1fr; min-height: auto; }
  .feature.reverse { direction: ltr; }
  .feature-img { height: 260px; }
  .feature-text { padding: 48px 24px; border-left: none !important; border-right: none !important; border-top: 1px solid var(--gray-faint); }
  .section { padding: 60px 24px; }
  .cards { grid-template-columns: 1fr; }
  .install-grid { grid-template-columns: 1fr; }
  .install-block { padding: 32px 24px; }
  .cta-band { padding: 60px 24px; }
  .cta-band h2 { font-size: 28px; }
  .footer { flex-direction: column; gap: 20px; padding: 32px 24px; text-align: center; }
  .hero-btns { flex-direction: column; }
  .btn-divider { display: none; }
}

/* ── INSTALL SECTION ── */
.install-section { border-bottom: 1px solid var(--gray-faint); }
.install-intro { max-width: 560px; margin-bottom: 48px; }
.install-intro p { font-size: 14px; font-weight: 300; color: var(--gray-dim); line-height: 1.9; letter-spacing: 0.02em; }
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-faint); }
.install-block { background: var(--black); padding: 40px 36px; }
.install-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-faint); }
.install-icon { width: 34px; height: 34px; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.install-device { font-family: var(--font-display); font-size: 20px; font-style: italic; font-weight: 300; color: var(--white); }
.install-app-btn { display: inline-block; margin-bottom: 28px; }
.install-steps { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.install-steps li { display: flex; align-items: flex-start; gap: 16px; }
.step-num { width: 24px; height: 24px; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 400; color: var(--gold); font-family: var(--font-body); flex-shrink: 0; margin-top: 2px; }
.step-body { font-size: 13px; font-weight: 300; color: var(--gray-dim); line-height: 1.8; }
.step-body strong { color: #aaa; font-weight: 400; }
.android-box-cta { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--gray-faint); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.android-box-cta p { font-size: 13px; color: var(--gray-dim); font-weight: 300; }

/* ── DOWNLOAD PAGE ── */
.explainer-grid { max-width: 680px; }
.explainer-text p { font-size: 14px; font-weight: 300; color: var(--gray-dim); line-height: 1.9; letter-spacing: 0.02em; }
.explainer-text strong { color: #aaa; font-weight: 400; }
.step-explainer { max-width: 720px; }
.step-explainer-intro { font-size: 14px; font-weight: 300; color: var(--gray-dim); line-height: 1.9; margin-bottom: 40px; }
.step-explainer-intro strong { color: #aaa; font-weight: 400; }
.download-steps { display: flex; flex-direction: column; gap: 1px; background: var(--gray-faint); }
.dl-step { background: var(--black); padding: 28px 32px; display: flex; align-items: flex-start; gap: 24px; }
.dl-num { width: 36px; height: 36px; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--gold); font-family: var(--font-body); flex-shrink: 0; }
.dl-content h4 { font-family: var(--font-display); font-size: 18px; font-style: italic; font-weight: 400; color: #ccc; margin-bottom: 8px; }
.dl-content p { font-size: 13px; font-weight: 300; color: var(--gray-dim); line-height: 1.8; }
.dl-content strong { color: #aaa; font-weight: 400; }
.url-box { margin-top: 12px; background: #111; border: 1px solid #2a2a2a; padding: 12px 18px; font-family: var(--font-body); font-size: 13px; color: var(--gold); letter-spacing: 0.04em; display: inline-block; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .install-grid { grid-template-columns: 1fr; }
  .install-block { padding: 32px 24px; }
  .android-box-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dl-step { padding: 24px 20px; gap: 16px; }
}

/* ── APP LINKS SECTION (homepage) ── */
.app-links-section { border-bottom: none; border-top: none; }
.app-links-intro { font-size: 14px; font-weight: 300; color: var(--gray-dim); line-height: 1.9; max-width: 520px; margin-bottom: 40px; }
.app-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-faint); }
.app-link-card { background: #0f0f0f; border: none; border-bottom: 1px solid var(--gray-faint); padding: 32px 36px; display: flex; align-items: center; gap: 28px; text-decoration: none; transition: background 0.2s; }
.app-link-card:hover { background: #141414; }
.app-link-icon { width: 52px; height: 52px; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-link-text { flex: 1; }
.app-link-text h3 { font-family: var(--font-display); font-size: 24px; font-style: italic; font-weight: 400; color: #ffffff !important; margin-bottom: 6px; }
.app-link-text p { font-size: 13px; font-weight: 300; color: #555555 !important; line-height: 1.7; }
.app-link-arrow { font-size: 18px; color: #C9A84C !important; flex-shrink: 0; }

/* ── PHONE STEPS PAGE ── */
.phone-steps-wrap { max-width: 720px; }
.phone-cta-row { margin-bottom: 36px; }
.step-url { color: var(--gold); font-style: italic; font-family: var(--font-display); font-size: 15px; }

@media (max-width: 900px) {
  .app-links-grid { grid-template-columns: 1fr; }
  .app-link-card { padding: 28px 24px; }
}

/* ── ANDROID DIRECT DOWNLOAD ── */
.android-direct-download { max-width: 720px; }
.android-note { max-width: 600px; }

@media (max-width: 900px) {
  .app-links-grid { grid-template-columns: 1fr !important; }
}
