:root {
  --bg: #06111f;
  --bg-soft: #0a1a2d;
  --panel: rgba(13, 31, 52, .82);
  --panel-strong: #0d2035;
  --line: rgba(139, 197, 255, .18);
  --line-strong: rgba(139, 197, 255, .32);
  --text: #eef7ff;
  --muted: #aebdd0;
  --subtle: #7f95af;
  --blue: #7dbdff;
  --blue-strong: #248cff;
  --green: #35e6a5;
  --red: #ff5d73;
  --yellow: #ffd15c;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(36, 140, 255, .24), transparent 32rem),
    radial-gradient(circle at 84% 18%, rgba(53, 230, 165, .10), transparent 28rem),
    linear-gradient(180deg, #071425 0%, #06111f 44%, #081522 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(125, 189, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 189, 255, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 72%);
}

a {
  color: var(--blue);
}

a:hover {
  color: #b8ddff;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--muted);
}

li {
  color: var(--muted);
  margin: .45rem 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 31, .82);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.brand-link:hover {
  color: var(--text);
}

.brand-link img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 18px rgba(125, 189, 255, .34));
}

.site-nav .nav {
  flex-wrap: nowrap;
}

.site-nav .nav-link {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1rem .8rem;
  border-bottom: 2px solid transparent;
}

.site-nav .nav-link.active,
.site-nav .nav-link:hover {
  color: var(--text);
  border-bottom-color: var(--blue);
}

.content {
  max-width: 1180px;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

body.home-page .content {
  padding-top: 0;
}

body:not(.home-page) .content {
  max-width: 960px;
}

.page-title {
  margin: 1.2rem 0 1.5rem;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
}

.content > p {
  font-size: 1.06rem;
}

.lead {
  color: #dceaff;
  font-size: 1.16rem;
  font-weight: 500;
}

.section-heading,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 1.4rem 0 .9rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-heading::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 999px;
}

.site-section {
  margin-top: 6rem;
}

.site-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(16, 38, 62, .86), rgba(11, 26, 44, .9));
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.site-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(125, 189, 255, .12), transparent 38%);
}

.site-card > * {
  position: relative;
}

.site-card h3 {
  margin: 0 0 .55rem;
}

.feature-card .material-icons,
.step-card .material-icons,
.compact-card .material-icons,
.help-callout .material-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(36, 140, 255, .12);
  font-size: 1.55rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1.25rem;
}

.help-setup,
.tip-grid {
  margin-bottom: 1.5rem;
}

.help-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: auto;
  margin: 1.5rem 0 2.25rem;
}

.help-callout .material-icons {
  flex: 0 0 auto;
  margin-bottom: 0;
  color: var(--green);
  background: rgba(53, 230, 165, .1);
}

.compact-card {
  min-height: 100%;
}

.faq-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 25, 42, .48);
}

.faq-card {
  height: auto;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.faq-card:last-child {
  border-bottom: 0;
}

.faq-card h3 {
  margin-bottom: .65rem;
  color: #dceaff;
  font-size: 1.05rem;
}

.faq-card p:last-child,
.faq-card ol:last-child,
.faq-card ul:last-child {
  margin-bottom: 0;
}

.permission-list b {
  color: var(--text);
}

.policy-page {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: rgba(9, 25, 42, .46);
}

.policy-section {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.policy-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-section h2 {
  margin-bottom: .75rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 72px);
  padding: clamp(2.5rem, 7vh, 4rem) 0 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1.2rem;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow .material-icons {
  color: var(--green);
  font-size: 1.2rem;
}

.home-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
}

.hero-lede {
  max-width: 650px;
  margin: 1.15rem 0 0;
  color: #c7d5e6;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.2rem;
  margin-top: 1.45rem;
}

.play-store-link {
  display: inline-flex;
}

.play-store-link img {
  width: 205px;
  max-width: 100%;
  height: auto;
  transition: transform .2s ease, opacity .2s ease;
}

.play-store-link:hover img {
  opacity: .9;
  transform: translateY(-1px);
}

.rating-badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 62px;
  padding: .65rem .9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 31, 52, .68);
  color: var(--text);
  font-weight: 900;
  line-height: 1.2;
}

.stars {
  color: var(--yellow);
  letter-spacing: .08em;
}

.hero-trust-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .98rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.screenshot-card {
  position: absolute;
  width: min(42vw, 310px);
  max-width: 78%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--panel-strong);
}

.screenshot-card-main {
  z-index: 3;
  top: 0;
  left: 20%;
}

.screenshot-card-secondary {
  z-index: 2;
  top: 12%;
  left: 0;
  transform: rotate(-4deg);
}

.screenshot-card-tertiary {
  z-index: 1;
  top: 22%;
  right: 0;
  transform: rotate(5deg);
}

.step-card {
  padding-top: 1.8rem;
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(125, 189, 255, .32);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.split-copy p {
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: .85rem;
  margin-top: 1.4rem;
}

.feature-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: .75rem;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 31, 52, .68);
  color: #dceaff;
}

.feature-list .material-icons {
  color: var(--green);
}

.evidence-preview {
  display: flex;
  justify-content: center;
}

.evidence-preview img {
  width: min(100%, 390px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-section {
  display: grid;
  gap: 1.2rem;
}

.trust-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(255, 93, 115, .12), transparent 42%),
    rgba(13, 31, 52, .72);
}

.trust-panel h2 {
  margin: .3rem 0 .6rem;
}

.trust-panel .stars {
  font-size: 1.6rem;
}

.reviews-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.reviews-intro > div {
  min-width: 0;
}

.reviews-intro p {
  max-width: 680px;
  margin-bottom: 0;
}

.reviews-intro .play-store-link {
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "arrow_forward";
  color: var(--blue);
  font-family: "Material Icons";
  font-size: 1.15rem;
  line-height: 1;
}

.text-link:hover {
  color: var(--blue);
}

blockquote {
  margin: 0;
}

blockquote p {
  color: #dceaff;
  font-size: 1.12rem;
  font-style: italic;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 3.4rem 1.6rem 1.45rem;
}

.review-card h3 {
  margin-bottom: .75rem;
  color: var(--blue);
  font-size: 1.02rem;
  text-transform: uppercase;
}

.review-card::before,
.review-card::after {
  position: absolute;
  z-index: 1;
  inset: auto;
  color: rgba(125, 189, 255, .24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: .75;
  pointer-events: none;
}

.review-card::before {
  content: "\201C";
  top: .65rem;
  right: auto;
  bottom: auto;
  left: 1rem;
  background: none;
}

.review-card::after {
  content: "\201D";
  top: auto;
  right: 1rem;
  bottom: .25rem;
  left: auto;
}

.review-card h3,
.review-card p,
.review-card footer {
  z-index: 2;
}

.review-card footer {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: .6rem;
  margin-top: 1.1rem;
  color: #f1f8ff;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.review-card footer::before {
  content: "";
  width: 1.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  opacity: .9;
}

.access-card {
  display: grid;
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.access-option {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(16, 38, 62, .9), rgba(11, 26, 44, .94));
}

.access-option .material-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(36, 140, 255, .12);
  font-size: 1.55rem;
}

.access-option p {
  margin-bottom: 0;
}

.note-section .site-card {
  background: linear-gradient(180deg, rgba(22, 34, 50, .86), rgba(10, 24, 40, .92));
}

.play-cta {
  margin-top: 4rem;
  text-align: center;
}

.site-footer {
  margin-top: 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: .9rem;
}

.site-footer a {
  color: var(--muted);
}

.alert-success {
  border-color: rgba(53, 230, 165, .32);
  border-radius: 8px;
  background: rgba(53, 230, 165, .12);
  color: #c9ffeb;
}

ol,
ul {
  padding-left: 1.35rem;
}

@media (max-width: 991.98px) {
  .home-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 580px;
  }

  .screenshot-card {
    width: 290px;
  }

  .reviews-intro {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 575.98px) {
  body {
    font-size: 15px;
  }

  .nav-container {
    align-items: stretch;
    flex-direction: column;
    gap: .2rem;
    padding-top: .65rem;
  }

  .site-nav .nav-link {
    padding: .75rem .65rem;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 470px;
  }

  .screenshot-card {
    width: 230px;
  }

  .screenshot-card-main {
    left: 16%;
  }

  .screenshot-card-secondary {
    top: 16%;
  }

  .screenshot-card-tertiary {
    top: 26%;
  }

  .site-section {
    margin-top: 4rem;
  }
}
