:root {
  --bg: #12131f;
  --bg-alt: #181a2a;
  --ink: #f6f7fb;
  --muted: #a5a9b8;
  --accent: #7c4dff;
  --accent-dark: #5c35d6;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.05);
  --glass: rgba(12, 13, 22, 0.8);
  --shadow: 0 30px 70px rgba(6, 8, 16, 0.6);
  --radius: 26px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.media-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.media-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, rgba(124, 77, 255, 0.18), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(104, 119, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #11121e 0%, #141523 35%, #11121e 100%);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 5;
  background: radial-gradient(circle at 20% 20%, rgba(124, 77, 255, 0.18), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(104, 119, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #11121e 0%, #141523 35%, #11121e 100%);
  background-repeat: no-repeat;
  background-size: 100% 100vh;
  background-position: top;
  --ink: #f6f7fb;
  --muted: #a5a9b8;
  color: var(--ink);
}

.home-header {
  padding-top: 80px;
}

.home-header .header-top,
.home-header > .nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 7vw;
  background: rgba(15, 16, 26, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.home-header > .nav-bar {
  min-height: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.home-header > .nav-bar .nav-links {
  display: none !important;
}

.home-header > .nav-bar .nav-cta {
  margin-left: auto;
}

.home-header .header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.home-header .slide-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(6, 8, 16, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.home-header .home-slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: min(88vw, 430px);
  background: linear-gradient(160deg, rgba(15, 16, 28, 0.98), rgba(12, 14, 24, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.25, 0.72, 0.31, 1);
  box-shadow: -32px 0 56px rgba(5, 6, 14, 0.55);
}

.home-header .slide-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-header .menu-cta {
  margin-left: 0;
}

.home-header .menu-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.home-header .slide-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
}

.home-header .slide-menu-nav a {
  display: block;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease;
}

.home-header .slide-menu-nav a:hover,
.home-header .slide-menu-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.home-header .slide-menu-nav a.active {
  color: var(--accent);
}

.home-header .menu-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.home-header .menu-toggle:hover,
.home-header .menu-toggle:focus-visible {
  border-color: rgba(124, 77, 255, 0.58);
  background: rgba(124, 77, 255, 0.18);
  outline: none;
}

.home-header .menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .home-header .slide-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .home-header .home-slide-menu {
  transform: translateX(0);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 7vw 18px;
  min-height: 80px;
}

@media (min-width: 981px) {
  .nav-bar {
    height: 80px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.logo img {
  width: 38px;
  height: 38px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  position: relative;
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 7vw;
  background: linear-gradient(90deg, #23153a, #3a1b63);
  font-size: 13px;
  color: #d9c8ff;
}

.top-bar a {
  color: #eadcff;
  text-decoration: underline;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(124, 77, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(124, 77, 255, 0.45);
}

.home-header .nav-cta-top {
  background: linear-gradient(115deg, #9b79ff, #7c4dff, #5f5eff, #9b79ff);
  background-size: 230% 230%;
  animation: cta-gradient-shift 5.6s ease infinite;
  box-shadow: 0 14px 34px rgba(93, 98, 255, 0.42);
}

.home-header .nav-cta-top:hover {
  box-shadow: 0 20px 40px rgba(96, 122, 255, 0.5);
}

@keyframes cta-gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--ink);
}

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

.btn-link {
  margin-top: 20px;
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  padding: 80px 7vw 40px;
  position: relative;
  align-items: center;
}

@media (min-width: 981px) {
  .hero {
    grid-template-columns: minmax(300px, 0.92fr) minmax(340px, 1.08fr);
  }
}

@media (min-width: 1180px) {
  .hero {
    grid-template-columns: minmax(320px, 0.88fr) minmax(400px, 1.12fr);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-text h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 14px;
}

.muted {
  color: var(--muted);
}

.hero-text .btn {
  margin-top: 22px;
}

.store-badge-wrap {
  margin-top: 24px;
  width: min(100%, 560px);
}

.store-badge-desktop {
  display: block;
}

.store-badge-mobile {
  display: none;
  justify-self: center;
}

.store-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  min-height: 64px;
  border-radius: 15px;
  border: 1px solid rgba(10, 24, 66, 0.18);
  background: #fff;
  color: #090c17;
  text-decoration: none;
  flex: 0 0 auto;
  box-shadow: 0 14px 24px rgba(10, 24, 66, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(10, 24, 66, 0.3);
}

.store-badge-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.store-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-badge-text small {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.store-badge-text strong {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-text {
  position: relative;
  z-index: 3;
}

.award {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.award-meta {
  color: var(--accent);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 1;
}

.hero-screens {
  position: relative;
  width: min(100%, 560px);
  height: clamp(380px, 48vw, 620px);
  margin-left: auto;
}

.hero-screens .hero-shot {
  position: absolute;
  width: clamp(240px, 26vw, 360px);
  max-width: none;
}

.hero-screens .hero-back {
  left: 12px;
  bottom: 0;
  z-index: 1;
  opacity: 0.88;
  transform: translateY(14px);
}

.hero-screens .hero-front {
  right: 0;
  top: 0;
  z-index: 2;
}

.screenshot-frame {
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

.screenshot-frame.large {
  width: 100%;
  max-width: clamp(320px, 38vw, 540px);
}

.screenshot-frame.compact {
  max-width: clamp(250px, 31vw, 430px);
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.screenshot-frame img.media-contain {
  object-fit: contain;
  transform: none;
}

.screenshot-stack {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: clamp(340px, 42vw, 580px);
}

.cta-visual .screenshot-frame {
  width: 100%;
  max-width: clamp(260px, 31vw, 430px);
}

@media (max-width: 980px) {
  .store-badge-desktop {
    display: none;
  }

  .store-badge-mobile {
    display: block;
    margin-top: 6px;
    width: min(100%, 460px);
  }

  .store-badge-row {
    justify-content: center;
    gap: 10px;
  }

  .store-badge {
    min-height: 56px;
    border-radius: 14px;
    padding: 8px 12px;
  }

  .store-badge-icon {
    width: 24px;
    height: 24px;
  }

  .store-badge-text small {
    font-size: 9px;
  }

  .store-badge-text strong {
    font-size: 18px;
  }

  .hero-screens {
    width: min(100%, 430px);
    height: 470px;
  }

  .hero-screens .hero-shot {
    width: min(74vw, 270px);
  }

  .hero-screens .hero-front {
    right: 2px;
    top: 14px;
  }

  .hero-screens .hero-back {
    left: 6px;
    bottom: 0;
    transform: translateY(6px);
  }

  .screenshot-stack {
    width: 100%;
  }

  .cta-visual .screenshot-frame {
    max-width: min(100%, 360px);
  }
}

@media (min-width: 981px) {
  .hero {
    column-gap: clamp(60px, 7vw, 96px);
  }

  .hero-visual {
    justify-content: flex-end;
  }

  .hero-screens {
    width: min(100%, 520px);
  }

  .hero-screens .hero-back {
    left: 18px;
  }
}

.phone {
  width: 230px;
  height: 450px;
  border-radius: 34px;
  background: #0d0e18;
  border: 2px solid #2a2e43;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  border-radius: 999px;
  background: #0a0b12;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-back {
  transform: translateX(16px) scale(0.9);
  opacity: 0.7;
}

.phone-front {
  position: absolute;
  right: 10%;
  transform: translateY(20px);
}

.phone-stack {
  transform: translateX(-20px) scale(0.92);
  opacity: 0.75;
}

.phone-screen {
  padding: 36px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.screen-title {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}

.screen-placeholder {
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.screen-placeholder.tall {
  height: 220px;
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.screen-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.screen-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.screen-tags span {
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
}

.hero-card {
  position: absolute;
  left: 8%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(15, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.photo-placeholder.wide {
  width: 100%;
  max-width: 480px;
  height: 260px;
}

.hero-card .card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-title {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}

.card-meta {
  font-size: 12px;
  color: var(--muted);
}

.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.stat-stars {
  color: var(--accent);
  letter-spacing: 0.2em;
  font-size: 14px;
}

.stat-number {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 70px 7vw;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.feature-zigzag {
  padding: 70px 7vw;
  display: grid;
  gap: 56px;
}

.feature-zigzag .split {
  padding: 0;
}

.feature-zigzag .split-visual {
  justify-content: flex-end;
}

.feature-zigzag .split:nth-child(even) .split-visual {
  justify-content: flex-start;
}

.split-content h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  margin: 16px 0 16px;
}

.tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
}

.center {
  text-align: center;
}

.split-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.floating-card {
  position: absolute;
  right: 10%;
  bottom: 12%;
  background: rgba(15, 16, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
}

.featured {
  padding: 60px 7vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}

.logo-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.faq {
  padding: 70px 7vw 80px;
}

.faq-list {
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  color: var(--muted);
  padding: 0 0 16px;
  line-height: 1.6;
}

.faq-link {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(124, 77, 255, 0.42);
  background: linear-gradient(120deg, rgba(124, 77, 255, 0.2), rgba(95, 94, 255, 0.16));
  color: #a78cff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-link:hover,
.faq-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(124, 77, 255, 0.72);
  box-shadow: 0 14px 26px rgba(124, 77, 255, 0.28);
  outline: none;
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 7vw;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 16px 0;
}

.cta-content .btn {
  margin-top: 18px;
}

.site-footer {
  padding: 70px 7vw 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 19, 31, 0.2), rgba(10, 10, 18, 0.85));
  display: grid;
  gap: 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 2.2fr);
  gap: 40px;
  align-items: start;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
}

.footer-columns h3 {
  margin-bottom: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.footer-columns a {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  opacity: 0.85;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.footer-brand-text span {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
}

.footer-brand-text p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.footer-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: var(--muted);
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.reveal {
  animation: fade-up 0.8s ease both;
  will-change: transform, opacity;
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
}

.js-reveal .reveal.is-visible {
  animation: fade-up 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .js-reveal .reveal,
  .js-reveal .reveal.is-visible {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-header .nav-cta-top {
    animation: none !important;
  }
}

.simple-page {
  background: linear-gradient(180deg, #11121e 0%, #141523 100%);
}

.about-page {
  background: #0f111b;
  color: #f4f4f9;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-hero {
  position: relative;
  min-height: 420px;
  padding: 100px 7vw 90px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 12, 20, 0.9), rgba(18, 19, 31, 0.6));
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.about-hero-content h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 16px 0;
}

.about-hero-content .muted {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.about-story {
  padding: 70px 7vw;
  background: #11131f;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: start;
}

.about-story-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-story-text p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.about-quote {
  font-style: italic;
  color: #cbb8ff;
  margin-top: 20px;
}

.about-story-card {
  background: #1a1d2d;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(124, 77, 255, 0.3);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.25);
}

.about-story-card .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #b69bff;
  margin-bottom: 12px;
}

.about-story-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.about-press {
  padding: 70px 7vw;
  background: #0f111b;
}

.section-header {
  margin-bottom: 28px;
}

.section-header.light {
  text-align: center;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.press-card {
  background: #151827;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(124, 77, 255, 0.2);
  color: #f4f4f9;
  display: grid;
  gap: 16px;
}

.press-logo {
  height: 90px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.press-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-testimonials {
  padding: 80px 7vw;
  background: #141624;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 24px;
}

.testimonial-card {
  background: #1b1f30;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(124, 77, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #fff;
}

.testimonial-author span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.about-team {
  padding: 70px 7vw;
  background: #0f111b;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.team-card {
  background: #151827;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.team-photo,
.advisor-photo {
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  margin-bottom: 14px;
}

.team-photo img,
.advisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-advisors {
  padding: 60px 7vw;
  background: #131624;
}

.advisor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.advisor-card {
  background: #1a1d2d;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.about-cta {
  padding: 70px 7vw 90px;
  text-align: center;
  background: #0f111b;
}

.about-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.about-page .site-footer {
  background: #0b0d16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-page .footer-columns h3 {
  color: rgba(255, 255, 255, 0.6);
}

.about-page .footer-columns a {
  color: rgba(255, 255, 255, 0.75);
}

.about-page .footer-brand span {
  color: #fff;
}

.login-page {
  background: #f4f4f8;
  color: #11121e;
  --ink: #11121e;
  --muted: #5f6476;
  --line: rgba(17, 18, 30, 0.1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-header {
  padding: 18px 7vw;
}

.login-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.login-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6f80;
}

.login-links a.active {
  color: #11121e;
  font-weight: 600;
}

.login-shell {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 40px 7vw 60px;
}

.login-card {
  width: min(480px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(15, 16, 26, 0.08);
  display: grid;
  gap: 16px;
  text-align: center;
}

.login-card h1 {
  font-size: 28px;
}

.login-card .muted {
  color: #6b6f80;
}

.auth-stack {
  display: grid;
  gap: 12px;
}

.auth-btn {
  border: 1px solid rgba(17, 18, 30, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  background: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.auth-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(124, 77, 255, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b6f80;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(17, 18, 30, 0.1);
}

.login-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.login-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #6b6f80;
}

.login-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(17, 18, 30, 0.12);
}

.forgot-link {
  text-align: right;
  font-size: 13px;
  color: var(--accent);
}

.login-submit {
  width: 100%;
}

.legal {
  font-size: 12px;
  color: #6b6f80;
}

.legal a {
  color: var(--accent);
}

.login-footer {
  padding: 26px 7vw 34px;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: #8a8fa4;
  font-size: 12px;
}

.login-footer-note {
  color: #6b6f80;
  font-size: 12px;
}

.login-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  color: #6b6f80;
}

.download-page {
  background: #f4f4f8;
  color: #11121e;
  min-height: 100vh;
}

.download-header {
  background: #11121e;
  color: #fff;
  padding: 18px 7vw;
}

.download-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.download-links {
  display: flex;
  gap: 18px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.download-links a {
  color: inherit;
}

.download-shell {
  padding: 60px 7vw 80px;
  display: grid;
  place-items: center;
}

.download-hero {
  max-width: 720px;
  text-align: center;
  display: grid;
  gap: 20px;
}

.download-page .muted {
  color: #7b8093;
}

.qr-box {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  border: 2px dashed rgba(17, 18, 30, 0.2);
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  margin: 0 auto;
}

.link-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  align-items: center;
}

.store-links .btn {
  width: 100%;
  min-width: 220px;
}

.download-page .store-links .btn-secondary {
  background: rgba(124, 77, 255, 0.14);
  border-color: rgba(124, 77, 255, 0.44);
  color: #5b33d8;
}

.download-page .store-links .btn-secondary:hover {
  box-shadow: 0 14px 30px rgba(93, 69, 210, 0.22);
}

.link-row input {
  min-width: 260px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(17, 18, 30, 0.12);
}

.download-page .link-row .btn-secondary {
  background: #ececf3;
  border-color: rgba(17, 18, 30, 0.16);
  color: #4c5162;
}

.download-footer {
  background: #2b2c3b;
  color: #d6d8e6;
  display: grid;
  gap: 24px;
  padding: 50px 7vw 36px;
}

.download-footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 2.2fr);
  gap: 28px;
  align-items: start;
}

.download-footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.download-footer-brand span {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  font-size: 20px;
  color: #fff;
}

.download-footer-brand p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 260px;
}

.download-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.download-footer-columns h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.download-footer-columns a {
  display: block;
  color: #d6d8e6;
  margin-bottom: 8px;
  font-size: 13px;
}

.download-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.download-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.download-footer-links a {
  color: rgba(255, 255, 255, 0.65);
}

.blog-page {
  background: #eef0f6;
  color: #11121e;
}

.blog-header {
  background: #141523;
  color: #fff;
}

.blog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7vw;
}

.blog-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.blog-brand img {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.blog-brand .brand-name {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-brand .brand-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.blog-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.blog-links a {
  color: inherit;
}

.blog-links .btn {
  padding: 10px 20px;
}

.blog-topbar {
  background: linear-gradient(90deg, rgba(124, 77, 255, 0.2), rgba(124, 77, 255, 0.05));
  padding: 8px 7vw;
  font-size: 13px;
  color: #dcd9ff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-topbar a {
  color: #fff;
  text-decoration: underline;
}

.blog-hero {
  padding: 50px 7vw 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 24px;
  align-items: center;
}

.blog-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6f80;
  margin-bottom: 12px;
}

.blog-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 12px;
}

.blog-search {
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 18, 30, 0.12);
}

.blog-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 100%;
}

.topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.topic-chip {
  border: 1px solid rgba(17, 18, 30, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #2b2f44;
  background: #fff;
}

.blog-section {
  padding: 30px 7vw 40px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 22px;
}

.featured-main {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.4), rgba(255, 255, 255, 0.9));
  border-radius: 20px;
  padding: 24px;
  min-height: 260px;
  display: grid;
  gap: 10px;
  color: #101223;
}

.featured-tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4f2bbf;
}

.featured-side {
  display: grid;
  gap: 16px;
}

.mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(17, 18, 30, 0.1);
}

.mini-image {
  width: 84px;
  height: 64px;
  border-radius: 12px;
  background: #dfe3f5;
}

.mini-image.chart {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.4), rgba(124, 77, 255, 0.1));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.article-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(17, 18, 30, 0.1);
  display: grid;
  gap: 10px;
}

.card-image {
  height: 150px;
  border-radius: 12px;
  background: #dfe3f5;
}

.card-image.purple {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.6), rgba(124, 77, 255, 0.15));
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.blog-footer {
  background: #2b2c3b;
  color: #d6d8e6;
  padding: 50px 7vw 36px;
  margin-top: 40px;
}

.blog-footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 2.2fr);
  gap: 28px;
  align-items: start;
}

.blog-footer-branding {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.blog-footer-branding span {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  font-size: 20px;
  color: #fff;
}

.blog-footer-branding p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 260px;
}

.blog-footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.blog-footer-links h3 {
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.blog-footer-links a {
  display: block;
  color: #d6d8e6;
  margin-bottom: 8px;
  font-size: 13px;
}

.blog-footer-mark {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  margin: 30px 0;
}

.blog-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #9da2bb;
}

.blog-footer-meta a {
  color: #9da2bb;
}

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

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

  .blog-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.onboarding-page {
  background: #f4f4f8;
  color: #11121e;
  min-height: 100vh;
}

.onboarding-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100vh;
}

.onboarding-header {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  gap: 12px;
}

.onboarding-brand {
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 18, 30, 0.25);
  font-size: 16px;
}

.back-btn {
  border: none;
  background: none;
  color: #11121e;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
}

.exit-link {
  text-align: right;
  font-size: 13px;
  color: var(--accent);
}

.progress-track {
  height: 8px;
  background: #e1e3ee;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.onboarding-step[hidden] {
  display: none;
}

.onboarding-step h1 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 8px;
}

.onboarding-step .muted {
  color: #6b6f80;
  margin-bottom: 18px;
}

.choice-grid {
  display: grid;
  gap: 14px;
}

.choice-card {
  background: #fff;
  border: 1px solid rgba(17, 18, 30, 0.12);
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

.choice-card.selected {
  border-color: var(--accent);
  background: rgba(124, 77, 255, 0.08);
  box-shadow: 0 12px 24px rgba(124, 77, 255, 0.2);
}

.choice-card.selected::after {
  content: "Selected";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.panel-card {
  background: #fff;
  border: 1px solid rgba(17, 18, 30, 0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(15, 16, 26, 0.08);
}

.profile-card {
  background: rgba(124, 77, 255, 0.08);
  border: 1px solid rgba(124, 77, 255, 0.25);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 14px;
}

.profile-card h2 {
  color: var(--accent);
  margin-bottom: 10px;
}

.media-placeholder {
  background: #fff;
  border: 1px dashed rgba(17, 18, 30, 0.2);
  border-radius: 18px;
  min-height: 220px;
  display: grid;
  place-items: center;
  color: #8a8fa4;
  font-weight: 600;
}

.rating-row {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 0.18em;
  margin: 12px 0 16px;
}

.quote {
  color: #3b3f52;
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-author {
  color: #6b6f80;
  font-weight: 600;
}

.progress-list {
  display: grid;
  gap: 16px;
}

.progress-row {
  display: grid;
  gap: 8px;
}

.progress-bar {
  background: #e1e3ee;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(124, 77, 255, 0.6), var(--accent));
}

.text-input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(17, 18, 30, 0.15);
  font-size: 16px;
  margin-bottom: 12px;
}

.fine-print {
  font-size: 12px;
  color: #6b6f80;
  line-height: 1.5;
}

.summary-row {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: #3b3f52;
  margin-bottom: 16px;
}

.plan-grid .choice-card {
  display: grid;
  gap: 6px;
}

.plan-card.popular {
  border-color: var(--accent);
}

.plan-title {
  font-size: 16px;
  font-weight: 700;
}

.plan-price {
  font-size: 24px;
  font-weight: 700;
}

.plan-sub {
  color: #6b6f80;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.onboarding-page .faq-list {
  display: grid;
  gap: 14px;
}

.onboarding-page .faq-list details {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 18, 30, 0.12);
}

.onboarding-page .faq-list summary {
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
}

.onboarding-footer {
  margin-top: 8px;
}

.onboarding-footer .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
}

.onboarding-footer .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.simple-content {
  padding: 80px 7vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
}

.simple-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-document {
  margin-top: 10px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(7, 9, 18, 0.68);
  box-shadow: 0 18px 44px rgba(5, 8, 16, 0.35);
}

.legal-document pre {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  color: rgba(236, 239, 249, 0.86);
  white-space: pre-wrap;
  word-break: break-word;
}

.legal-actions {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.legal-actions .btn-link {
  margin-top: 0;
}

.legal-page .simple-content {
  max-width: none;
}

.legal-page .legal-document {
  margin-top: 16px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-page .legal-document pre {
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.85;
  color: rgba(236, 239, 249, 0.92);
}

.legal-page .legal-actions {
  margin-top: 16px;
}

.faq-page main {
  padding-bottom: 80px;
}

.faq-page .site-header:not(.home-header) .nav-bar {
  height: 80px;
  min-height: 80px;
  padding: 24px 7vw 18px;
}

.faq-hero {
  padding: 70px 7vw 40px;
  text-align: center;
}

.faq-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 82px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
}

.faq-hero p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.faq-section {
  padding: 40px 7vw;
}

.faq-section + .faq-section {
  border-top: 1px solid var(--line);
}

.faq-container {
  max-width: 980px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}

.faq-page .faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.faq-page .faq-item summary {
  font-size: 17px;
}

.faq-page .faq-item p,
.faq-page .faq-item li {
  color: var(--muted);
  line-height: 1.6;
}

.faq-page .faq-item ul {
  padding-left: 18px;
  margin: 10px 0 16px;
}

.faq-subsection {
  margin-top: 40px;
}

.faq-subsection h3 {
  text-align: center;
  color: var(--accent);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.faq-kicker {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.help-page {
  background: #f2f2f6;
  color: #11121e;
}

.help-hero {
  position: relative;
  background: #171827;
  color: #fff;
  padding: 80px 7vw 90px;
  overflow: hidden;
}

.help-hero-bg {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  background: repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 20px,
      transparent 20px,
      transparent 60px
    ),
    linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  opacity: 0.55;
  pointer-events: none;
}

.help-hero-bg span {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.help-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.help-hero-content h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 600;
  margin-bottom: 16px;
}

.help-search {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.help-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  background: transparent;
}

.help-search .search-icon,
.help-inline-search .search-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(124, 77, 255, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.help-topics {
  padding: 70px 7vw 60px;
  background: #f2f2f6;
}

.help-topics h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 16px;
  margin-bottom: 30px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.topic-card {
  background: #f7f7fb;
  border: 1px solid rgba(124, 77, 255, 0.5);
  border-radius: 18px;
  padding: 26px 24px;
  display: grid;
  gap: 16px;
  place-items: center;
  text-align: center;
  color: #1a1c2e;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.topic-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(124, 77, 255, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.topic-card span {
  color: var(--accent);
  font-weight: 600;
}

.topic-card {
  min-height: 150px;
}

.search-empty {
  padding: 16px 20px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(124, 77, 255, 0.2);
  color: #5a5a6e;
  margin-bottom: 18px;
  font-weight: 500;
}

.help-cta {
  background: #111219;
  color: #f5f5f8;
  padding: 60px 7vw;
}

.help-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.help-cta-card h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 20px;
}

.help-cta-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 12px 22px;
  font-size: 12px;
}

.help-footer {
  background: #0b0b10;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 7vw 30px;
  display: grid;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.help-footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.help-footer-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.help-footer-brand p {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.help-footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.help-footer-links h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  margin-bottom: 10px;
}

.help-footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.help-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  font-size: 12px;
}

.help-socials {
  display: flex;
  gap: 10px;
}

.help-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.help-socials a:hover,
.help-socials a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.help-socials svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.help-socials svg.stroke-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-socials svg.x-icon {
  width: 14px;
  height: 14px;
}

.help-footer-copy {
  color: rgba(255, 255, 255, 0.55);
}

.help-language {
  display: flex;
  justify-content: flex-end;
}

.help-language select {
  background: #0b0b10;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 999px;
}

.help-category-page {
  background: #f2f2f6;
  color: #11121e;
}

.help-category-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 22px 7vw;
  border-bottom: 1px solid rgba(17, 18, 30, 0.08);
}

.help-breadcrumb {
  color: #6b6f80;
  font-size: 14px;
}

.help-breadcrumb a {
  color: var(--accent);
}

.help-inline-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(17, 18, 30, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 260px;
}

.help-inline-search input {
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  width: 220px;
}

.help-category-title {
  padding: 26px 7vw 12px;
}

.help-category-title h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
}

.help-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  padding: 10px 7vw 60px;
}

.help-category-section {
  background: #ffffff;
  border: 1px solid rgba(17, 18, 30, 0.1);
  border-radius: 14px;
  padding: 18px 18px 16px;
}

.help-category-section h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.help-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.help-links a {
  display: block;
  color: #1a1c2e;
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 0 8px 12px;
  border-left: 2px solid rgba(124, 77, 255, 0.2);
}

.help-links a:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}

.help-links a.help-see-all {
  color: var(--accent);
  font-weight: 600;
}

.help-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  padding: 10px 7vw 60px;
}

.help-faq-column h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.help-faq-list {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.help-faq-list li {
  color: #1a1c2e;
  font-weight: 500;
}

.help-faq-list a {
  color: inherit;
}

.help-faq-list a:hover {
  color: var(--accent);
}

.help-article-page {
  background: #f2f2f6;
  color: #11121e;
}

.help-article-sidebar .article-wrapper {
  max-width: 1200px;
  padding: 0 7vw 40px;
}

.help-article-sidebar .article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.help-article-sidebar .article-sidebar {
  background: #f7f7fb;
  border: 1px solid rgba(17, 18, 30, 0.12);
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.help-article-sidebar .article-sidebar h2 {
  font-size: 16px;
  margin-bottom: 14px;
}

.help-article-sidebar .article-nav-item {
  display: block;
  padding: 10px 12px;
  border-left: 3px solid transparent;
  border-radius: 8px;
  color: #3b3f52;
  font-weight: 500;
}

.help-article-sidebar .article-nav-item:hover {
  color: var(--accent);
}

.help-article-sidebar .article-nav-item.active {
  border-left-color: var(--accent);
  background: rgba(124, 77, 255, 0.08);
  color: var(--accent);
  font-weight: 600;
}

.article-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.article-card {
  background: #f7f7fb;
  border: 1px solid rgba(17, 18, 30, 0.12);
  border-radius: 14px;
  padding: 28px;
}

.article-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.article-header h1 {
  font-size: clamp(28px, 4vw, 40px);
}

.article-meta {
  color: #6b6f80;
  font-size: 13px;
  margin: 12px 0 18px;
}

.follow-btn {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.article-section {
  margin-top: 28px;
}

.article-section h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.article-section h3 {
  font-size: 18px;
  margin: 18px 0 10px;
}

.article-section p,
.article-section li {
  color: #3b3f52;
  line-height: 1.6;
}

.article-section ul,
.article-section ol {
  margin: 12px 0 12px 1.2rem;
  padding-left: 1rem;
}

.article-section li + li {
  margin-top: 8px;
}

.toc a {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
}

.note {
  background: rgba(124, 77, 255, 0.08);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  margin: 16px 0;
  border-radius: 8px;
  color: #2a2e43;
}

.helpful {
  background: #fff;
  border: 1px solid rgba(17, 18, 30, 0.12);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  margin-top: 24px;
}

.helpful-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 12px 0;
}

.btn-choice {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.article-divider {
  border-top: 1px solid rgba(17, 18, 30, 0.12);
  margin: 26px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.related-grid h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.related-grid a {
  display: block;
  color: var(--accent);
  margin-bottom: 10px;
}

.return-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2a2e43;
  margin-top: 16px;
}

.request-form {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(17, 18, 30, 0.15);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: #1a1c2e;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b6f80' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}

.form-hint {
  color: #6b6f80;
  font-size: 13px;
  margin-top: 6px;
}

.form-toolbar {
  display: flex;
  gap: 10px;
  border: 1px solid rgba(17, 18, 30, 0.15);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 10px 12px;
  background: #f9f9fd;
  color: #6b6f80;
  font-size: 13px;
}

.form-toolbar span {
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(124, 77, 255, 0.12);
  color: var(--accent);
  font-weight: 600;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.file-drop {
  border: 1px dashed rgba(124, 77, 255, 0.4);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  color: #6b6f80;
  background: #fbfbff;
}

.file-drop a {
  color: var(--accent);
  font-weight: 600;
}

.submit-button {
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.nav-more {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #242735;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  min-width: 200px;
  padding: 6px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  z-index: 20;
}

.nav-dropdown a {
  padding: 10px 14px;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  color: #f6f7fb;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-more:hover .nav-dropdown,
.nav-more:focus-within .nav-dropdown {
  display: flex;
}

.stories-page {
  background: #121321;
  color: var(--ink);
}

.stories-hero {
  padding: 80px 7vw 30px;
  text-align: center;
}

.stories-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 16px;
}

.stories-hero p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  padding: 40px 7vw;
}

.story-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-photo {
  height: 180px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.35), rgba(17, 18, 30, 0.8));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.story-tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.story-card p {
  color: var(--muted);
}

.story-link {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.stories-cta {
  padding: 60px 7vw;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stories-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}

.testimonials {
  padding: 70px 7vw;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  color: var(--muted);
}

.testimonial-card .stars {
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-size: 12px;
}

.stories-extended {
  padding: 70px 7vw 80px;
}

.stories-extended h2 {
  text-align: center;
  margin-bottom: 26px;
}

.shop-page {
  background: #f4f4f8;
  color: #141523;
}

.shop-header {
  background: #11121e;
  color: #fff;
}

.shop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 7vw;
}

.shop-logo {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 26px;
  color: #fff;
}

.shop-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.shop-icons {
  display: flex;
  gap: 10px;
}

.shop-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
}

.shop-hero {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(18, 19, 33, 0.8), rgba(18, 19, 33, 0.55));
  position: relative;
  color: #fff;
  overflow: hidden;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 18px,
      transparent 18px,
      transparent 50px
    );
  opacity: 0.3;
}

.shop-hero > * {
  position: relative;
  z-index: 1;
}

.shop-hero h1 {
  position: relative;
  font-size: clamp(30px, 5vw, 56px);
  font-style: italic;
}

.shop-section {
  padding: 60px 7vw;
}

.shop-section h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 24px;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.shop-category-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
}

.category-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.35), rgba(20, 20, 30, 0.8));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
}

.shop-category-card span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 600;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.shop-product-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(15, 16, 26, 0.08);
}

.shop-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border-radius: 999px;
}

.product-photo {
  height: 200px;
  border-radius: 14px;
  background: #e1e3ee;
  display: grid;
  place-items: center;
  color: #8e92a4;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 6px;
}

.price-old {
  text-decoration: line-through;
  color: #9a9eb0;
}

.price-new {
  color: var(--accent);
  font-weight: 600;
}

.shop-button {
  display: inline-flex;
  padding: 12px 26px;
  border-radius: 12px;
  border: 1px solid #d5d6e2;
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #1a1c2e;
}

.shop-footer {
  background: #2b2d3f;
  color: #fff;
  padding: 50px 7vw 36px;
}

.shop-footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 2.2fr);
  gap: 28px;
  align-items: start;
}

.shop-footer-branding {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.shop-footer-branding h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.shop-footer-branding p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.shop-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.shop-footer-columns h4 {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 12px;
}

.shop-footer-columns a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 13px;
}

.shop-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.shop-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.shop-footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.shop-footer-brand {
  font-family: var(--font-display);
  font-size: clamp(46px, 12vw, 140px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.08);
  margin-top: 30px;
}

.shop-cart {
  padding: 60px 7vw 80px;
}

.cart-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 24px rgba(15, 16, 26, 0.08);
}

.product-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding: 60px 7vw 30px;
}

.product-image {
  background: #e1e3ee;
  border-radius: 18px;
  min-height: 360px;
  display: grid;
  place-items: center;
  color: #8e92a4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-info h1 {
  font-size: clamp(26px, 4vw, 34px);
}

.product-controls {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.shop-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.shop-secondary {
  background: #fff;
  color: #1a1c2e;
  border: 1px solid #d5d6e2;
  border-radius: 12px;
  padding: 12px 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.business-page {
  background: #f4f5f8;
  color: #10121d;
}

.business-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 70px 7vw 50px;
  align-items: center;
}

.business-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  text-transform: uppercase;
}

.business-hero p {
  color: #5b6072;
}

.business-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.business-tile {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  min-height: 120px;
  box-shadow: 0 10px 20px rgba(15, 16, 26, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #1a1c2e;
  font-weight: 600;
}

.business-stats {
  background: var(--accent);
  color: #fff;
  padding: 24px 7vw;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  text-align: center;
}

.business-stat {
  flex: 1 1 140px;
}

.business-benefits {
  padding: 60px 7vw;
  background: #f0f1f7;
  text-align: center;
}

.business-features {
  padding: 60px 7vw 80px;
}

.business-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.business-feature {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(15, 16, 26, 0.08);
}

.business-contact {
  padding: 60px 7vw;
  text-align: center;
  background: #eceef6;
}

.careers-page {
  background: #121321;
  color: #fff;
}

.careers-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 80px 7vw;
  align-items: center;
}

.careers-hero p {
  color: var(--muted);
}

.careers-photo {
  min-height: 300px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.3), rgba(15, 16, 26, 0.8));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
}

.careers-values {
  padding: 60px 7vw;
  background: #0f101a;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.careers-benefits {
  padding: 60px 7vw;
  background: #f4f4f8;
  color: #1a1c2e;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(15, 16, 26, 0.08);
}

.careers-cta {
  padding: 60px 7vw;
  text-align: center;
  background: #1a1c2e;
}

.careers-cta h2 {
  margin-bottom: 16px;
}

@media (max-width: 720px) {
  .help-search {
    flex-direction: row;
    padding: 10px 14px;
  }

  .help-language {
    justify-content: flex-start;
  }

  .help-category-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .help-inline-search {
    width: 100%;
  }

  .help-inline-search input {
    width: 100%;
  }

  .article-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  .help-article-sidebar .article-layout {
    grid-template-columns: 1fr;
  }

  .help-article-sidebar .article-sidebar {
    position: static;
  }
}

@media (max-width: 980px) {
  .nav-bar {
    flex-wrap: wrap;
  }

  .nav-cta {
    margin-left: 0;
  }

  .home-header {
    padding-top: 72px;
  }

  .home-header .header-top {
    padding: 10px 7vw;
  }

  .home-header > .nav-bar {
    padding: 10px 7vw;
  }

  .hero-card {
    position: static;
    margin-top: 20px;
  }

  .phone-front {
    position: static;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .split.reverse {
    direction: ltr;
  }

  .feature-zigzag {
    padding: 60px 7vw;
    gap: 40px;
  }

  .feature-zigzag .split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-zigzag .split + .split {
    border-top: 1px solid var(--line);
    padding-top: 40px;
    margin-top: 6px;
  }

  .feature-zigzag .split-content {
    order: 1;
  }

  .feature-zigzag .split-visual {
    order: 2;
    justify-content: center;
    min-height: 0;
  }

  .feature-zigzag .screenshot-frame.compact {
    width: min(100%, 360px);
    max-width: 360px;
    margin-inline: auto;
  }

  .footer-main,
  .download-footer-main,
  .blog-footer-main,
  .shop-footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .home-header {
    padding-top: 66px;
  }

  .home-header .header-top {
    padding: 8px 5vw;
    gap: 12px;
  }

  .home-header > .nav-bar {
    padding: 8px 5vw;
    gap: 12px;
  }

  .home-header .logo span {
    font-size: 24px;
    letter-spacing: 0.1em;
  }

  .home-header .nav-cta-top {
    padding: 11px 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .home-header .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .home-header .slide-menu-nav a {
    padding: 18px 20px;
    font-size: clamp(22px, 7vw, 32px);
  }

  .faq-link {
    width: calc(100% - 24px);
    justify-content: center;
  }

  .top-bar {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding-top: 60px;
  }

  .phone {
    width: 200px;
    height: 400px;
  }

  .hero-visual {
    flex-direction: column;
  }

  .hero-card {
    width: 100%;
    justify-content: center;
  }

  .store-badge-wrap {
    width: 100%;
  }

  .store-badge-row {
    flex-direction: column;
    gap: 8px;
  }

  .store-badge {
    width: auto;
    min-height: 52px;
    padding: 7px 10px;
  }

  .store-badge-text strong {
    font-size: 16px;
  }

  .store-badge-icon {
    width: 20px;
    height: 20px;
  }

  .hero-screens {
    width: min(100%, 390px);
    height: 440px;
  }

  .hero-screens .hero-shot {
    width: min(76vw, 250px);
  }

  .cta-visual .screenshot-frame,
  .feature-zigzag .screenshot-frame.compact {
    max-width: min(100%, 340px);
  }
}
