:root {
  --teal: #20c9c3;
  --deep-teal: #12b8b4;
  --green: #22c55e;
  --red: #ff4d5d;
  --warning: #f59e0b;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --soft-grey: #0f1c27;
  --card: #152331;
  --card-2: #1b2d3b;
  --ink: #f5f7fb;
  --muted: #94a3b2;
  --border: rgba(148, 163, 184, 0.16);
  --line: rgba(148, 163, 184, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --content-width: 1120px;
  --page-width: 760px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 640px at 72% 140px, rgba(32, 201, 195, 0.2), rgba(32, 201, 195, 0) 70%),
    linear-gradient(180deg, rgba(32, 201, 195, 0.1) 0, rgba(15, 28, 39, 0) 560px),
    var(--soft-grey);
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: var(--teal);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(18, 184, 180, 0.35);
  outline-offset: 3px;
}

.site-header {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
}

.site-header nav,
.footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.site-header nav a,
.footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"],
.footer nav a:hover {
  color: var(--teal);
}

main {
  flex: 1;
}

.hero {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 62px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  align-items: center;
  gap: 54px;
}

.hero-copy h1,
.section-head h2,
.split-section h2,
.download-panel h2,
.wiki-hero h1 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: 64px;
  font-weight: 850;
  text-wrap: balance;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.cta-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button--primary {
  background: var(--teal);
  color: #07131c;
  box-shadow: 0 12px 28px rgba(32, 201, 195, 0.24);
}

.button--primary:hover {
  background: #2adbd5;
}

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

.button--secondary:hover {
  border-color: var(--teal);
  color: var(--deep-teal);
}

.store-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  min-height: 610px;
  position: relative;
}

.phone-frame,
.mini-shot,
.screen-row figure {
  background: #07111b;
  border: 1px solid rgba(32, 201, 195, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-frame {
  width: 286px;
  aspect-ratio: 9 / 19.4;
  border-radius: 36px;
  padding: 10px;
}

.phone-frame--main {
  position: absolute;
  right: 92px;
  top: 0;
  transform: rotate(1deg);
}

.phone-frame img,
.mini-shot img,
.screen-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-shot {
  position: absolute;
  width: 160px;
  aspect-ratio: 9 / 19.4;
  border-radius: 28px;
  padding: 7px;
}

.mini-shot--bills {
  left: 0;
  top: 92px;
  transform: rotate(-6deg);
}

.mini-shot--savings {
  right: 0;
  bottom: 32px;
  transform: rotate(6deg);
}

.phone-frame--main img {
  border-radius: 28px;
}

.mini-shot img {
  border-radius: 22px;
}

.phone-mock {
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-mock--home {
  padding: 16px;
  background:
    linear-gradient(#07111b 0 15%, transparent 15%),
    var(--card);
}

.mock-nav {
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-band {
  display: grid;
  gap: 4px;
  margin: 4px -16px 0;
  padding: 18px 12px;
  background: var(--teal);
  color: #07131c;
  text-align: center;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-band strong {
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.mock-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #0e1924;
}

.mock-tabs b {
  padding: 9px 6px;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.mock-tabs b:first-child {
  background: var(--teal);
  color: #07131c;
}

.mock-ring-row,
.mock-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mock-ring-row {
  background: #101d29;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 10px;
}

.mock-ring-row i {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 999px;
  background: conic-gradient(var(--green) 0 71%, #203141 71% 100%);
  font-style: normal;
  font-size: 19px;
  font-weight: 850;
}

.mock-ring-row i:first-child {
  background: conic-gradient(var(--red) 0 29%, #203141 29% 100%);
}

.mock-ring-row small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.mock-card-row b,
.phone-mock--mini b {
  background: #101d29;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  color: var(--ink);
  font-size: 12px;
}

.phone-mock--mini {
  padding: 14px 10px;
  background: var(--card);
  gap: 10px;
}

.phone-mock--mini .mock-band {
  margin: 0 -10px;
  padding: 14px 10px;
}

.phone-mock--mini .mock-band strong {
  font-size: 20px;
}

.phone-mock--mini em {
  display: block;
  color: var(--teal);
  font-style: normal;
  margin-top: 4px;
}

.proof-strip {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-strip span {
  background: var(--card);
  padding: 18px 20px;
  text-align: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.split-section,
.features-section,
.journey-section,
.screens-section,
.steps-section,
.faq-section,
.download-panel {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 84px 24px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.split-section h2,
.section-head h2,
.download-panel h2 {
  font-size: 42px;
  font-weight: 850;
}

.split-section p,
.section-head p,
.download-panel p,
.wiki-hero p {
  color: var(--muted);
  font-size: 18px;
}

.privacy-list,
.faq-list,
.trouble-list {
  display: grid;
  gap: 14px;
}

.privacy-list article,
.feature-card,
.steps article,
.faq-list article,
.trouble-list article,
.wiki-content section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.privacy-list article {
  padding: 20px;
  display: grid;
  gap: 6px;
}

.privacy-list strong {
  font-size: 17px;
}

.privacy-list span {
  color: var(--muted);
}

.section-head {
  max-width: 660px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
  margin-bottom: 18px;
}

.feature-card--teal .feature-icon { background: var(--teal); }
.feature-card--blue .feature-icon { background: var(--blue); }
.feature-card--purple .feature-icon { background: var(--purple); }
.feature-card--green .feature-icon { background: var(--green); }
.feature-card--orange .feature-icon { background: var(--warning); }
.feature-card--red .feature-icon { background: var(--red); }

.feature-card h3,
.steps h3,
.faq-list h3,
.trouble-list h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.feature-card p,
.steps p,
.faq-list p,
.trouble-list p {
  margin: 0;
  color: var(--muted);
}

.journey-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: center;
}

.journey-copy {
  background: linear-gradient(180deg, rgba(32, 201, 195, 0.18), rgba(21, 35, 49, 0.92));
  border: 1px solid rgba(32, 201, 195, 0.28);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.journey-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: 0;
}

.journey-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.journey-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.journey-points span {
  border: 1px solid rgba(32, 201, 195, 0.28);
  border-radius: 999px;
  background: rgba(32, 201, 195, 0.1);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 13px;
}

.journey-media {
  margin: 0;
  justify-self: center;
  width: min(100%, 340px);
  background: #07111b;
  border: 1px solid rgba(32, 201, 195, 0.2);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.journey-media img {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.journey-map {
  position: relative;
  min-height: 560px;
  background:
    radial-gradient(circle at 28% 18%, rgba(32, 201, 195, 0.26), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(139, 92, 246, 0.22), transparent 18%),
    linear-gradient(155deg, #07111b 0%, #102231 48%, #07111b 100%);
}

.journey-map::before {
  content: "";
  position: absolute;
  inset: 92px 50% 98px auto;
  width: 110px;
  border-right: 16px dotted rgba(32, 201, 195, 0.55);
  border-radius: 50%;
  transform: rotate(22deg);
}

.journey-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 4px solid #07111b;
  border-radius: 999px;
  background: var(--teal);
  color: #07131c;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.journey-node--done {
  left: 46px;
  bottom: 170px;
}

.journey-node--active {
  right: 88px;
  top: 220px;
}

.journey-node--locked {
  left: 94px;
  top: 178px;
  background: #243545;
  color: var(--muted);
}

.journey-card {
  position: absolute;
  width: 210px;
  padding: 16px;
  border: 1px solid rgba(32, 201, 195, 0.44);
  border-radius: 16px;
  background: rgba(15, 28, 39, 0.84);
  backdrop-filter: blur(10px);
}

.journey-card strong,
.journey-card span,
.journey-card b {
  display: block;
}

.journey-card strong {
  font-size: 16px;
}

.journey-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.journey-card b {
  margin-top: 8px;
  color: var(--ink);
}

.journey-card--one {
  left: 24px;
  top: 122px;
}

.journey-card--two {
  right: 20px;
  bottom: 160px;
}

.journey-card--three {
  left: 20px;
  bottom: 34px;
}

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

.screen-row figure {
  margin: 0;
  border-radius: 26px;
  padding: 10px;
}

.screen-row img {
  aspect-ratio: 9 / 19.4;
  border-radius: 18px;
}

.screen-row figcaption {
  background: var(--card-2);
  color: var(--ink);
  margin-top: 10px;
  padding: 12px;
  border-radius: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}

.screen-mock {
  display: grid;
  gap: 12px;
  min-height: 390px;
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(var(--teal) 0 88px, transparent 88px),
    var(--card);
}

.screen-mock strong {
  color: #07131c;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.screen-mock b {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  text-align: center;
}

.screen-mock span {
  display: block;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #101d29;
  color: var(--ink);
  font-weight: 800;
}

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

.steps article {
  padding: 24px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(18, 184, 180, 0.14);
  color: var(--deep-teal);
  font-weight: 850;
  margin-bottom: 16px;
}

.faq-section {
  max-width: 860px;
}

.faq-list article {
  padding: 22px 24px;
}

.download-panel {
  margin-top: 84px;
  margin-bottom: 72px;
  padding: 56px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #21cbc5 0%, #12b8b4 100%);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.download-panel h2,
.download-panel p {
  position: relative;
}

.download-panel p {
  color: rgba(7, 19, 28, 0.76);
}

.download-panel .button--secondary {
  color: #07131c;
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.28);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 26px 24px 34px;
  text-align: center;
  color: var(--muted);
  background: #0b1621;
}

.dot {
  color: #aab4c0;
}

.copyright {
  margin: 12px 0 0;
  font-size: 14px;
}

.page {
  flex: 1;
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 52px 24px 72px;
}

.page .back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--teal);
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
}

.page .back:hover {
  text-decoration: underline;
}

.page h1 {
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1.1;
}

.page .effective {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}

.page h2 {
  margin: 32px 0 8px;
  font-size: 22px;
}

.page p,
.page li {
  color: #cbd5e1;
}

.page ul {
  padding-left: 22px;
}

.wiki-shell {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 42px 24px 72px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.wiki-nav {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.wiki-nav strong {
  font-size: 15px;
  margin-bottom: 4px;
}

.wiki-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 8px;
  border-radius: 10px;
}

.wiki-nav a:hover {
  color: var(--teal);
  background: rgba(32, 201, 195, 0.1);
}

.wiki-content {
  min-width: 0;
}

.wiki-hero {
  padding: 32px 0 18px;
}

.wiki-hero h1 {
  font-size: 52px;
}

.wiki-hero p {
  max-width: 720px;
  margin: 16px 0 0;
}

.wiki-content section {
  padding: 28px;
  margin-top: 18px;
  scroll-margin-top: 24px;
}

.wiki-content h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.wiki-content p {
  color: #cbd5e1;
}

.wiki-content p:first-of-type {
  margin-top: 0;
}

.wiki-content li {
  color: #cbd5e1;
  margin: 8px 0;
}

.wiki-content ul,
.wiki-content ol {
  padding-left: 22px;
}

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

.trouble-list article {
  padding: 18px;
  background: var(--card-2);
}

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

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

  .hero-copy h1,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .cta-row {
    justify-content: center;
  }

  .hero-media {
    min-height: 560px;
    width: min(100%, 470px);
    margin: 0 auto;
  }

  .proof-strip,
  .feature-grid,
  .screen-row,
  .steps,
  .split-section,
  .journey-section,
  .wiki-shell {
    grid-template-columns: 1fr;
  }

  .wiki-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wiki-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .hero,
  .split-section,
  .features-section,
  .journey-section,
  .screens-section,
  .steps-section,
  .faq-section,
  .wiki-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: 34px;
    max-width: 310px;
    overflow-wrap: anywhere;
  }

  .hero-text,
  .split-section p,
  .section-head p,
  .download-panel p,
  .wiki-hero p {
    font-size: 16px;
  }

  .hero-text {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row,
  .store-note {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .split-section h2,
  .section-head h2,
  .journey-copy h2,
  .download-panel h2 {
    font-size: 32px;
  }

  .journey-copy {
    padding: 24px;
  }

  .journey-copy p {
    font-size: 16px;
  }

  .journey-media {
    width: min(100%, 280px);
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: auto;
    display: flex;
    justify-content: center;
  }

  .phone-frame {
    width: 210px;
  }

  .phone-frame--main {
    position: static;
    transform: none;
  }

  .phone-mock--home {
    padding: 12px;
  }

  .phone-mock--home .mock-band {
    margin-left: -12px;
    margin-right: -12px;
  }

  .mock-ring-row i {
    width: 58px;
    height: 58px;
    font-size: 16px;
  }

  .mock-card-row b {
    padding: 9px;
    font-size: 10px;
  }

  .mini-shot {
    display: none;
  }

  .proof-strip {
    width: calc(100% - 36px);
  }

  .proof-strip span {
    padding: 15px;
  }

  .download-panel {
    width: auto;
    margin-left: 18px;
    margin-right: 18px;
    padding: 40px 20px;
  }

  .wiki-hero h1,
  .page h1 {
    font-size: 36px;
  }

  .wiki-nav {
    grid-template-columns: 1fr;
  }

  .wiki-content section {
    padding: 22px;
  }

  .trouble-list {
    grid-template-columns: 1fr;
  }

  .footer nav {
    gap: 8px 10px;
  }
}
