:root {
  color-scheme: dark;
  --bg: #07080d;
  --bg-soft: #10121a;
  --panel: rgba(20, 21, 31, 0.82);
  --panel-solid: #151720;
  --text: #fff8fb;
  --muted: #b9b3c0;
  --line: rgba(255, 255, 255, 0.11);
  --pink: #ff0054;
  --pink-light: #ff4f8b;
  --violet: #9c4dff;
  --orange: #ff8a4c;
  --green: #45d49d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 0, 84, 0.16), transparent 30rem),
    radial-gradient(circle at 85% 25%, rgba(156, 77, 255, 0.13), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 13, 0.76);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(255, 0, 84, 0.28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a,
.footer-links a {
  color: var(--muted);
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 79, 139, .45);
  border-radius: 999px;
  color: #fff !important;
  background: rgba(255, 0, 84, .14);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  font-size: 0;
  list-style: none;
}

.mobile-nav summary::after {
  content: "☰";
  font-size: 1.25rem;
}

.mobile-nav[open] summary::after {
  content: "×";
}

.mobile-nav div {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(280px, calc(100vw - 40px));
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #11131c;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,.06);
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff92b7;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  right: -120px;
  top: -210px;
  border-radius: 50%;
  background: rgba(255, 0, 84, .16);
  content: "";
  filter: blur(100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.07em;
}

.gradient-text {
  background: linear-gradient(100deg, #fff 10%, #ff7aaa 48%, #c99aff 75%, #ffac71);
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 670px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: #fff;
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.button-primary {
  background: linear-gradient(120deg, var(--pink), #d51b85);
  box-shadow: 0 14px 34px rgba(255, 0, 84, .25);
}

.button-secondary {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 30px;
  color: #ded8e2;
  font-size: .88rem;
  font-weight: 750;
}

.trust-row span::before {
  margin-right: 8px;
  color: var(--green);
  content: "●";
  font-size: .6rem;
  vertical-align: 2px;
}

.hero-art {
  position: relative;
  min-height: 620px;
  animation: hero-in .75s ease-out both;
}

.icon-orbit {
  position: absolute;
  z-index: 4;
  width: 108px;
  height: 108px;
  top: 20px;
  left: 50%;
  padding: 7px;
  transform: translateX(-50%) rotate(-5deg);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 65px rgba(255, 0, 84, .34);
  backdrop-filter: blur(12px);
}

.icon-orbit img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.phone-shot {
  position: absolute;
  overflow: hidden;
  width: clamp(245px, 18vw, 270px);
  aspect-ratio: 9 / 16;
  border: 8px solid #161821;
  border-radius: 34px;
  background: #1a1c25;
  box-shadow: var(--shadow);
}

.phone-shot::before {
  position: absolute;
  z-index: 2;
  width: 42%;
  height: 18px;
  top: 8px;
  left: 29%;
  border-radius: 0 0 12px 12px;
  background: #161821;
  content: "";
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.phone-shot-a {
  z-index: 3;
  top: 78px;
  left: 0;
  transform: rotate(-8deg);
}

.phone-shot-b {
  z-index: 2;
  top: 92px;
  right: 0;
  transform: rotate(8deg);
}

.glow-pill {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 30px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(13,14,21,.82);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  font-size: .82rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

section {
  scroll-margin-top: 90px;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 68px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-header h2,
.download-card h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.section-header p,
.download-card p,
.cta-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.download-card,
.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(255,0,84,.2), rgba(156,77,255,.13) 55%, rgba(255,138,76,.12));
  box-shadow: var(--shadow);
}

.download-card::after,
.cta-card::after {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -150px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
  filter: blur(90px);
  opacity: .28;
}

.steps-grid,
.guide-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card,
.guide-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 16px 48px rgba(0,0,0,.17);
}

.step-card,
.feature-card {
  padding: 28px;
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid rgba(255,79,139,.45);
  border-radius: 12px;
  background: rgba(255,0,84,.13);
  color: #ff8daf;
  font-weight: 950;
}

.step-card h3,
.feature-card h3,
.guide-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.step-card p,
.feature-card p,
.guide-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.screenshot-grid a {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #13151e;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  transition: transform .25s ease, border-color .25s ease;
}

.screenshot-grid a:hover {
  transform: translateY(-7px);
  border-color: rgba(255,79,139,.5);
}

.screenshot-grid img {
  width: 100%;
  aspect-ratio: 370 / 592;
  object-fit: cover;
}

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

.guide-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 25px;
  color: var(--text);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,79,139,.5);
  background: rgba(34, 28, 41, .92);
}

.guide-card .tag {
  align-self: flex-start;
  margin-bottom: 32px;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(156,77,255,.15);
  color: #ceb3ff;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guide-card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.text-link {
  color: #ff8eb5;
  font-weight: 850;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.faq-list summary {
  position: relative;
  padding: 21px 56px 21px 22px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #ff8eb5;
  content: "+";
  font-size: 1.55rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0 0 10px;
}

.page-hero {
  padding: 78px 0 50px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.page-hero .lead {
  max-width: 790px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #a9a2b0;
  font-size: .86rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: #ff91b6;
  text-decoration: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  align-items: start;
  gap: 64px;
  padding: 64px 0 90px;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 2.4em 0 .65em;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -.04em;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 1.8em 0 .5em;
  font-size: 1.25rem;
}

.article-body p,
.article-body li {
  color: #d0c9d3;
}

.article-body strong {
  color: #fff;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: .65em;
}

.callout,
.prompt-box {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid rgba(255,79,139,.3);
  border-radius: 18px;
  background: rgba(255,0,84,.08);
}

.prompt-box {
  border-color: rgba(156,77,255,.32);
  background: rgba(156,77,255,.08);
  color: #eee5fa;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .94rem;
}

.article-aside {
  position: sticky;
  top: 98px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.article-aside img {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 18px;
}

.article-aside h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.article-aside p {
  color: var(--muted);
  font-size: .93rem;
}

.article-aside .button {
  width: 100%;
  margin-top: 9px;
}

.related-guides {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.related-guides a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.legal-page {
  max-width: 800px;
  padding: 70px 0 100px;
}

.legal-page h1 {
  margin: 0 0 32px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.legal-page h2 {
  margin: 2.25em 0 .5em;
  font-size: 1.45rem;
}

.legal-page p,
.legal-page li {
  color: #d0c9d3;
}

.legal-page a {
  color: #ff91b6;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 48px 0;
}

.footer-copy {
  max-width: 520px;
  color: var(--muted);
  font-size: .9rem;
}

.footer-copy .brand {
  margin-bottom: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px 22px;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: #8f8996;
  font-size: .8rem;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    text-align: center;
  }

  .hero-copy,
  .section-header {
    margin-inline: auto;
  }

  .button-row,
  .trust-row {
    justify-content: center;
  }

  .hero-art {
    width: min(100%, 540px);
    margin-inline: auto;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.1rem);
  }

  .hero-art {
    min-height: 560px;
  }

  .phone-shot {
    width: 220px;
  }

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

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

  .download-card,
  .cta-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .download-card .button-row,
  .cta-card .button-row {
    justify-content: flex-start;
    margin-top: 0;
  }

  .related-guides {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero-art {
    min-height: 490px;
  }

  .phone-shot {
    width: min(54vw, 205px);
    border-width: 6px;
    border-radius: 27px;
  }

  .phone-shot-a {
    left: 12px;
    transform: rotate(-5deg);
  }

  .phone-shot-b {
    right: 12px;
    transform: rotate(5deg);
  }

  .icon-orbit {
    width: 82px;
    height: 82px;
    border-radius: 23px;
  }

  .icon-orbit img {
    border-radius: 18px;
  }

  .glow-pill {
    right: 4px;
    bottom: 16px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .guide-card {
    min-height: 220px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
