:root {
  color-scheme: dark;
  --ink: #f8fafc;
  --soft: #cad5df;
  --muted: #93a3ad;
  --night: #080911;
  --night-2: #121015;
  --panel: rgba(12, 13, 19, 0.82);
  --panel-strong: rgba(18, 16, 21, 0.94);
  --line: rgba(248, 250, 252, 0.18);
  --green: #5ee0bf;
  --gold: #f6c453;
  --red: #e4565b;
  --violet: #9e7cff;
  --shadow: rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(8, 9, 17, 0.72), rgba(18, 16, 21, 0.98) 38rem),
    url("homepage/images/conspiral-space-background.png") center top / 100% auto no-repeat,
    var(--night);
  color: var(--ink);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 17, 0.86), rgba(8, 9, 17, 0.42), rgba(8, 9, 17, 0.9)),
    url("homepage/images/conspiral-board-background.png") center / cover no-repeat;
  opacity: 0.44;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  width: clamp(8.5rem, 18vw, 14rem);
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.45rem;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-links a,
.nav-home-menu summary {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.58rem 0.72rem;
  text-decoration: none;
}

.top-links a:hover,
.top-links a:focus-visible,
.nav-home-menu summary:hover,
.nav-home-menu summary:focus-visible,
.nav-home-menu summary[aria-current="page"] {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.nav-home-menu {
  position: relative;
}

.nav-home-menu summary {
  display: block;
  cursor: pointer;
  list-style: none;
}

.nav-home-menu summary::-webkit-details-marker {
  display: none;
}

.nav-home-menu summary::after {
  content: "v";
  margin-left: 0.38rem;
  color: var(--green);
  font-size: 0.72rem;
}

.nav-home-menu[open] summary::after {
  content: "^";
}

.nav-section-links {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 0.2rem;
  min-width: 9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.35rem;
  background: rgba(8, 9, 17, 0.96);
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.nav-section-links a {
  padding: 0.44rem 0.5rem;
  color: var(--muted);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(28rem, 1.04fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.8rem);
  min-height: 94vh;
  padding: clamp(7rem, 12vw, 9rem) max(1rem, calc((100vw - 1200px) / 2)) clamp(2rem, 6vw, 5rem);
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 43rem;
  text-align: center;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.7rem, 6.8vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 39rem;
  margin-top: 1.35rem;
  margin-right: auto;
  margin-left: auto;
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  border: 1px solid rgba(255, 232, 157, 0.62);
  background: var(--gold);
  color: #15120a;
  box-shadow: 0 16px 36px rgba(246, 196, 83, 0.24);
}

.button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

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

.disclaimer-line {
  max-width: 36rem;
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.91rem;
}

.hero__screens {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  min-height: 35rem;
}

.phone-shot {
  position: relative;
  width: min(15.7rem, 28vw);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  background: #090b10;
  box-shadow: 0 2.2rem 5.5rem var(--shadow);
  overflow: hidden;
}

.phone-shot img {
  width: 100%;
}

.phone-shot--main {
  z-index: 3;
  width: min(17.4rem, 31vw);
  justify-self: center;
  transform: translateY(-0.7rem);
}

.phone-shot--left {
  z-index: 1;
  justify-self: end;
  transform: translate(1.25rem, 2.4rem) rotate(-7deg);
}

.phone-shot--right {
  z-index: 2;
  justify-self: start;
  transform: translate(-1.25rem, 2.4rem) rotate(7deg);
}

.section,
.intro-section,
.deck-section,
.download-section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section {
  display: block;
  padding: clamp(3rem, 8vw, 6.5rem) 0;
  text-align: center;
}

.intro-section__copy h2,
.section-heading h2,
.why-section h2,
.download-section h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.7rem, 4.2vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-section__copy p,
.section-heading p,
.why-copy,
.download-section p {
  color: var(--soft);
  font-size: 1.02rem;
}

.intro-section__copy > p {
  max-width: 46rem;
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  width: fit-content;
  max-width: 100%;
  margin: 1.35rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--green);
}

.section {
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}

.section-heading {
  max-width: 50rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  margin-top: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-grid article {
  min-height: 16rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(1.2rem, 3vw, 1.6rem);
  text-align: center;
}

.feature-number {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.feature-grid h3 {
  margin-top: 2.5rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

.feature-grid p {
  margin-top: 0.8rem;
  color: var(--soft);
}

.wide-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.4rem);
  align-items: start;
  margin-top: 2rem;
}

.wide-screens img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1.65rem;
  background: #080911;
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.36);
}

.deck-section {
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}

.deck-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
  margin-top: 2rem;
}

.deck-grid img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 1.3rem 3rem rgba(0, 0, 0, 0.38);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.why-copy {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6.5rem) 0;
  text-align: center;
}

.download-section__copy {
  max-width: 44rem;
  margin-right: auto;
  margin-left: auto;
}

.download-section__copy p {
  margin: 1rem 0 1.5rem;
}

.store-note {
  display: inline-flex;
  border: 1px solid rgba(94, 224, 191, 0.42);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  background: rgba(94, 224, 191, 0.11);
  color: var(--ink);
  font-weight: 900;
}

.download-section__mockups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1rem;
  justify-items: center;
}

.download-section__mockups img {
  width: min(100%, 18rem);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: #080911;
  box-shadow: 0 1.4rem 4rem var(--shadow);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}

.site-footer a {
  color: var(--soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green);
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero__screens {
    width: min(38rem, 100%);
    min-height: 29rem;
    margin: 0 auto;
  }

  .phone-shot {
    width: min(13.5rem, 30vw);
  }

  .phone-shot--main {
    width: min(15rem, 34vw);
  }

  .intro-section,
  .why-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 0;
  }

  .feature-grid h3 {
    margin-top: 1.4rem;
  }
}

@media (max-width: 700px) {
  body {
    background:
      linear-gradient(180deg, rgba(8, 9, 17, 0.62), rgba(18, 16, 21, 0.98) 33rem),
      url("homepage/images/conspiral-space-background.png") center top / auto 48rem no-repeat,
      var(--night);
  }

  .site-header {
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 0.75rem;
    width: min(100% - 24px, 1200px);
    padding-top: 0.8rem;
  }

  .brand {
    width: min(11rem, 58vw);
  }

  .top-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.35rem;
    font-size: 0.72rem;
  }

  .top-links a,
  .nav-home-menu summary {
    display: flex;
    min-height: 2.55rem;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.35rem;
    text-align: center;
  }

  .nav-home-menu {
    position: static;
  }

  .nav-section-links {
    position: static;
    grid-template-columns: 1fr;
    min-width: 0;
    margin-top: 0.35rem;
    font-size: 0.67rem;
  }

  .hero,
  .section,
  .intro-section,
  .deck-section,
  .download-section {
    width: min(100% - 24px, 1200px);
  }

  .hero {
    gap: 1.6rem;
    padding-top: 1.4rem;
    padding-bottom: 2.4rem;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.25rem);
  }

  .hero__lead,
  .intro-section__copy p,
  .section-heading p,
  .why-copy,
  .download-section p {
    font-size: 0.96rem;
  }

  .intro-section__copy h2,
  .section-heading h2,
  .why-section h2,
  .download-section h2 {
    font-size: clamp(1.55rem, 9vw, 2.5rem);
    line-height: 1.08;
  }

  .hero__actions,
  .hero__actions .button,
  .download-section .button {
    width: 100%;
  }

  .hero__screens {
    min-height: 0;
    align-items: center;
    margin-top: 0.5rem;
  }

  .phone-shot {
    border-radius: 1.35rem;
  }

  .phone-shot--left {
    transform: translate(0.65rem, 1.6rem) rotate(-6deg);
  }

  .phone-shot--right {
    transform: translate(-0.65rem, 1.6rem) rotate(6deg);
  }

  .wide-screens {
    grid-template-columns: 1fr;
    width: min(18rem, 100%);
    margin-inline: auto;
  }

  .deck-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-section__mockups {
    gap: 0.7rem;
  }

  .download-section__mockups img {
    width: min(100%, 16rem);
    border-radius: 1.1rem;
  }

  .site-footer {
    width: min(100% - 24px, 1200px);
  }
}

@media (max-width: 460px) {
  .top-links {
    max-width: none;
  }

  .hero__screens {
    grid-template-columns: 0.72fr 1fr 0.72fr;
    min-height: 0;
  }

  .phone-shot {
    width: 100%;
  }

  .phone-shot--main {
    width: 100%;
  }

  .deck-grid {
    gap: 0.55rem;
  }

  .download-section__mockups {
    grid-template-columns: 1fr;
  }

  .download-section__mockups img {
    width: min(17rem, 100%);
  }

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