@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #191b26;
  --panel: #202231;
  --panel-strong: #171923;
  --ink: #f7f7fb;
  --muted: #a9acbf;
  --line: rgba(255, 255, 255, 0.1);
  --dark: #141621;
  --purple: #7562f3;
  --purple-soft: #29274c;
  --blue: #73a8ff;
  --green: #2f8d46;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --page-max: 1120px;
  --content-max: 760px;
  --page-pad: clamp(22px, 5vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(63, 125, 244, 0.16);
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  min-height: 44px;
  padding: 10px 16px;
  color: white;
  background: var(--dark);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

section[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 18px var(--page-pad);
  background: rgba(25, 27, 38, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: white;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 32px);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.nav-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"],
.nav-links a[aria-current="location"] {
  color: var(--ink);
}

.hero-section,
.section-band,
.split-section,
.community-section,
.cta-section,
.trust-strip,
.live-stats {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.hero-section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-top: clamp(46px, 8vw, 94px);
  padding-bottom: clamp(46px, 7vw, 80px);
}

.hero-copy {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.hero-actions {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 7vw, 6.25rem);
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.4vw, 5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
}

.hero-text,
.section-heading p,
.split-section p,
.cta-section p {
  max-width: var(--content-max);
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 34px 0 48px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  touch-action: manipulation;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: var(--purple);
  border-color: var(--purple);
}

.button-primary:hover {
  background: #8d7cff;
  border-color: #8d7cff;
}

.button-apple-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  border-radius: 999px;
  color: white;
}

.button-apple-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover {
  border-color: rgba(17, 24, 39, 0.32);
}

.phone-preview {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 0;
  background: #080b2e;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  max-width: var(--page-max);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto clamp(24px, 4vw, 42px);
  padding-top: 18px;
  padding-bottom: 18px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  min-height: 44px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}

.live-stats {
  display: grid;
  max-width: var(--page-max);
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.38fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin: 0 auto clamp(34px, 5vw, 56px);
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.live-stats h2 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5.2vw, 5rem);
}

.live-stats p {
  max-width: 620px;
  margin-bottom: 0;
}

.download-counter {
  display: grid;
  min-height: 178px;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 3.2vw, 34px);
  color: white;
  background: var(--dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.counter-label,
.counter-status {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.counter-label {
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.download-counter strong {
  font-size: clamp(2.9rem, 5.2vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.section-band,
.split-section,
.community-section {
  padding-top: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(72px, 11vw, 132px);
}

.section-band,
.community-section {
  background: var(--bg);
}

.section-heading {
  max-width: var(--content-max);
  margin-right: auto;
  margin-bottom: clamp(36px, 6vw, 70px);
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.feature-grid {
  display: grid;
  max-width: var(--page-max);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
}

.feature-card {
  min-height: 278px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 0;
  background: var(--panel);
}

.feature-card p,
.member-showcase p,
.proof-grid p {
  color: var(--muted);
  font-weight: 500;
}

.card-icon {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
  color: white;
  background: #10121b;
}

.split-section > div,
.split-section > ul {
  max-width: 560px;
}

.split-section > div {
  justify-self: end;
}

.split-section > ul {
  justify-self: start;
  width: 100%;
}

.split-section .eyebrow,
.split-section h2 {
  color: white;
}

.split-section p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.check-list li {
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 600;
}

.inline-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 24px;
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.community-layout {
  display: grid;
  max-width: var(--page-max);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  margin: 0 auto;
}

.member-showcase,
.topic-panel {
  min-height: 360px;
  border-radius: 8px;
}

.member-showcase {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 54px);
  background: var(--panel);
}

.member-row {
  display: flex;
  margin-bottom: auto;
}

.member-avatar {
  width: 70px;
  height: 70px;
  margin-right: -12px;
  border: 4px solid var(--panel);
  border-radius: 999px;
}

.avatar-a {
  background: #3f7df4;
}

.avatar-b {
  background: #f4c63d;
}

.avatar-c {
  background: #ef5370;
}

.avatar-d {
  background: #8fc8ff;
}

.topic-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.topic-panel span {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--panel);
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  font-weight: 700;
  text-align: center;
}

.proof-grid {
  display: grid;
  max-width: var(--page-max);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px auto 0;
}

.proof-grid article {
  min-height: 188px;
  padding: 28px;
  background: var(--panel);
  border-radius: 8px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.cta-section {
  display: grid;
  width: calc(100% - (2 * var(--page-pad)));
  max-width: var(--page-max);
  grid-template-columns: minmax(0, 1fr) minmax(140px, 190px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin: clamp(54px, 8vw, 92px) auto;
  padding-top: clamp(36px, 6vw, 62px);
  padding-bottom: clamp(36px, 6vw, 62px);
  color: white;
  background: var(--purple);
  border-radius: 28px;
}

.cta-section > div {
  max-width: 560px;
}

.cta-section .eyebrow,
.cta-section h2,
.cta-section p {
  color: white;
}

.cta-section h2 {
  max-width: 520px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.cta-section p {
  max-width: 500px;
}

.cta-section .button-primary {
  color: var(--purple);
  background: white;
  border-color: white;
}

.qr-feature {
  display: grid;
  gap: 22px;
}

.qr-feature .eyebrow,
.qr-feature p {
  margin-bottom: 0;
}

.qr-download-button {
  width: fit-content;
}

.download-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
}

.download-panel-compact {
  grid-template-columns: 1fr;
  justify-self: end;
  width: min(100%, 170px);
}

.qr-link {
  display: block;
  border-radius: 12px;
}

.qr-code {
  display: block;
  width: 116px;
  height: 116px;
  padding: 8px;
  background: white;
  border-radius: 12px;
}

.qr-code-large {
  width: clamp(150px, 17vw, 210px);
  height: clamp(150px, 17vw, 210px);
  padding: 12px;
}

.cta-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
}

.privacy-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-page {
  --privacy-ink: #171923;
  --privacy-muted: #4b5565;
  --privacy-soft: #f4f6fb;
  --privacy-line: rgba(23, 25, 35, 0.14);
  color: var(--privacy-ink);
  background: white;
}

.privacy-hero,
.privacy-document {
  max-width: 980px;
  margin: 0 auto;
  padding-right: clamp(18px, 4vw, 44px);
  padding-left: clamp(18px, 4vw, 44px);
}

.privacy-hero {
  padding-top: clamp(58px, 9vw, 108px);
  padding-bottom: clamp(42px, 7vw, 72px);
}

.privacy-hero h1 {
  max-width: 900px;
  color: var(--privacy-ink);
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--privacy-muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
}

.privacy-hero .eyebrow {
  color: var(--purple);
}

.privacy-document {
  padding-bottom: clamp(68px, 10vw, 120px);
}

.privacy-document article {
  padding: 34px 0;
  border-top: 1px solid var(--privacy-line);
}

.privacy-document h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--privacy-ink);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.privacy-document p,
.privacy-document li {
  color: var(--privacy-muted);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
}

.privacy-document a {
  color: var(--privacy-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  margin: 0 0 18px;
}

.privacy-document .note {
  color: var(--privacy-ink);
  background: var(--privacy-soft);
  border-radius: 8px;
  padding: 14px 16px;
}

.contact-page {
  --contact-ink: #18304f;
  --contact-muted: #41536f;
  --contact-line: rgba(24, 48, 79, 0.42);
  min-height: calc(100vh - 84px);
  color: var(--contact-ink);
  background: #f8f8f7;
}

.contact-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(58px, 9vw, 112px) var(--page-pad);
}

.contact-info {
  text-align: center;
}

.contact-info h1 {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: var(--contact-ink);
  font-size: clamp(3rem, 6vw, 4.9rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.contact-intro {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
  padding-bottom: 34px;
  color: var(--contact-ink);
  border-bottom: 2px solid var(--contact-line);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 500;
}

.contact-email-card {
  display: grid;
  width: min(100%, 560px);
  gap: 10px;
  margin: 0 auto;
  padding: 24px;
  color: var(--contact-ink);
  background: white;
  border: 2px solid var(--contact-line);
  border-radius: 8px;
}

.contact-email-card span {
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-email-card a {
  color: var(--contact-ink);
  font-size: clamp(1.12rem, 3vw, 1.55rem);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 980px) {
  .feature-grid,
  .proof-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .community-layout,
  .live-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5.4rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .proof-grid,
  .trust-strip,
  .topic-panel {
    grid-template-columns: 1fr;
  }

  .phone-preview {
    border-radius: 18px;
  }

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

  .cta-section {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 34px auto;
    padding: 22px 16px;
    border-radius: 22px;
  }

  .qr-feature {
    justify-items: center;
    gap: 16px;
    width: 100%;
    text-align: center;
  }

  .qr-download-button {
    width: min(100%, 250px);
  }

  .qr-code-large {
    width: min(62vw, 210px);
    height: min(62vw, 210px);
  }

  .download-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 14px 12px;
    min-width: 0;
    width: 100%;
    border-radius: 16px;
  }

  .cta-actions {
    align-items: stretch;
    gap: 10px;
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .privacy-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .privacy-hero,
  .privacy-document {
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .privacy-hero {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .privacy-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.35rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .privacy-hero p:not(.eyebrow),
  .privacy-document p,
  .privacy-document li {
    font-size: 1rem;
    line-height: 1.6;
  }

  .privacy-document article {
    padding: 28px 0;
  }

  .privacy-document h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    letter-spacing: -0.035em;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .privacy-document .note {
    padding: 14px;
  }

  .contact-shell {
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .contact-info h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.05;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
