: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;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  background: radial-gradient(circle at 22% 18%, rgba(163, 130, 255, 0.34), transparent 42%),
    radial-gradient(circle at 78% 12%, rgba(122, 142, 255, 0.3), transparent 46%),
    linear-gradient(120deg, #2b3176 0%, #343b87 32%, #2a3276 66%, #3b2f8a 100%);
  background-size: 240% 240%;
  animation: site-bg-shift 22s ease infinite;
  overscroll-behavior: none;
}

.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);
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: transparent;
  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: 100%;
  overscroll-behavior: none;
}

@keyframes site-bg-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.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(6, 6, 12, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-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;
}

.site-header:not(.home-header) .nav-bar {
  background: rgba(6, 6, 12, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

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

.logo img {
  width: 46px;
  height: 46px;
  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);
}

.wyzfit-account-menu {
  position: relative;
  flex: 0 0 auto;
}

.wyzfit-account-menu.is-hidden {
  display: none !important;
}

.wyzfit-account-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: auto;
  flex-shrink: 0;
}

.wyzfit-account-chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 38px;
  min-width: 0;
  max-width: min(56vw, 360px);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 247, 251, 0.94);
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.wyzfit-account-text {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wyzfit-account-caret {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  transition: transform 0.18s ease;
}

.wyzfit-account-menu.is-open .wyzfit-account-caret {
  transform: rotate(180deg);
}

.wyzfit-account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 230px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 16, 28, 0.98);
  box-shadow: 0 24px 44px rgba(6, 8, 16, 0.58);
  backdrop-filter: blur(10px);
  z-index: 80;
}

.wyzfit-account-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.wyzfit-account-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(246, 247, 251, 0.94);
  padding: 9px 10px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 6px;
}

.wyzfit-account-action:hover,
.wyzfit-account-action:focus-visible {
  border-color: rgba(124, 77, 255, 0.55);
  background: rgba(124, 77, 255, 0.18);
  outline: none;
}

.wyzfit-account-action.logout {
  border-color: rgba(244, 114, 182, 0.35);
  color: #ffd6e9;
}

.wyzfit-account-chip[data-role="admin"] {
  border-color: rgba(96, 123, 255, 0.55);
  background: rgba(96, 123, 255, 0.16);
}

.wyzfit-account-chip[data-role="affiliate"] {
  border-color: rgba(16, 185, 129, 0.48);
  background: rgba(16, 185, 129, 0.14);
}

.wyzfit-account-chip[data-role="none"] {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.nav-bar .wyzfit-account-menu {
  margin-left: 0;
}

.home-header .header-actions .wyzfit-account-menu {
  margin-left: 0;
}

.home-header .header-actions .wyzfit-account-trigger {
  max-width: min(56vw, 360px);
}

.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;
}

.feature-zigzag .screenshot-frame.compact {
  aspect-ratio: 1 / 2;
}

.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;
}

.feature-zigzag .tag,
.cta .tag {
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.2em;
}

.feature-zigzag .split-content h2 {
  font-size: clamp(36px, 4.4vw, 56px);
}

.feature-zigzag .split-content .muted,
.cta-content .muted {
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.72;
}

.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(36px, 4.6vw, 56px);
  margin: 16px 0;
}

.cta-content .btn {
  margin-top: 24px;
  padding: 16px 34px;
  font-size: 14px;
}

.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%);
}

.dashboard-page {
  background:
    radial-gradient(circle at 14% 14%, rgba(88, 56, 203, 0.42), transparent 42%),
    radial-gradient(circle at 82% 10%, rgba(34, 114, 255, 0.22), transparent 38%),
    linear-gradient(180deg, #0b0e23 0%, #101436 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-company {
  padding: 70px 7vw;
  background: #101320;
}

.about-company-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.about-company-card {
  border-radius: 18px;
  border: 1px solid rgba(124, 77, 255, 0.26);
  background: #191d2d;
  padding: 22px;
}

.about-company-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.about-company-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.about-company-card a {
  color: #bca5ff;
  text-decoration: underline;
}

.about-company-card p {
  color: rgba(255, 255, 255, 0.76);
}

.about-company-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(124, 77, 255, 0.2);
  min-height: 280px;
}

.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(560px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(15, 16, 26, 0.08);
  display: grid;
  gap: 14px;
  text-align: center;
}

.auth-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(17, 18, 30, 0.06);
}

.auth-mode-tab {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 12px;
  background: transparent;
  color: #525872;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.auth-mode-tab.is-active {
  background: #10121e;
  color: #fff;
  border-color: #10121e;
  box-shadow: 0 10px 22px rgba(10, 12, 22, 0.24);
}

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

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

.auth-feedback {
  display: none;
  text-align: left;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 13px;
  line-height: 1.4;
}

.auth-feedback.is-error {
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.28);
  color: #cf2921;
}

.auth-feedback.is-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.26);
  color: #146c39;
}

.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;
}

.auth-panel {
  transition: opacity 0.2s ease;
}

.auth-panel[hidden] {
  display: none !important;
}

.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);
}

.forgot-reset-panel {
  display: grid;
  gap: 10px;
  text-align: left;
  border: 1px solid rgba(17, 18, 30, 0.12);
  background: rgba(17, 18, 30, 0.03);
  border-radius: 12px;
  padding: 12px;
}

.forgot-reset-panel label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #6b6f80;
}

.forgot-reset-panel input {
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(17, 18, 30, 0.12);
}

.forgot-reset-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.forgot-reset-actions .btn {
  flex: 1 1 170px;
}

.login-submit {
  width: 100%;
}

.auth-alt-link {
  font-size: 13px;
  color: #667084;
}

.auth-alt-link a {
  color: var(--accent);
  font-weight: 700;
}

.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;
}

.dashboard-page .simple-content {
  width: min(1220px, 100% - 6vw);
  max-width: 1220px;
  margin: 0 auto;
  padding: 64px 0 84px;
  gap: 24px;
}

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

.dashboard-content-shell {
  display: grid;
  gap: 24px;
}

.dashboard-kicker {
  margin: 0;
}

.dashboard-title {
  margin-top: 6px;
}

.dashboard-subtitle {
  max-width: 920px;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.35;
  color: rgba(230, 235, 255, 0.84);
}

.dashboard-section-heading {
  font-size: 22px;
  margin-bottom: 14px;
  color: #d8ddff;
  letter-spacing: 0.02em;
}

.dashboard-quick-actions {
  margin-top: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(153, 179, 255, 0.24);
  background: linear-gradient(145deg, rgba(17, 22, 53, 0.84), rgba(11, 16, 44, 0.78));
  box-shadow: 0 18px 40px rgba(5, 8, 24, 0.42);
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  gap: 14px;
  justify-content: start;
}

.quick-action-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 164px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(173, 190, 255, 0.24);
  border-radius: 18px;
  padding: 14px;
  color: #f5f7ff;
  text-decoration: none;
  background: linear-gradient(152deg, #1b2155 0%, #13183f 100%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.quick-action-card:nth-child(1) {
  background: linear-gradient(152deg, #6534ff 0%, #a34cff 100%);
  border-color: rgba(212, 192, 255, 0.62);
}

.quick-action-card:nth-child(2) {
  background: linear-gradient(152deg, #1e48d8 0%, #2d89ff 100%);
  border-color: rgba(165, 207, 255, 0.58);
}

.quick-action-card:nth-child(3) {
  background: linear-gradient(152deg, #b24d06 0%, #ff8f1f 100%);
  border-color: rgba(255, 224, 165, 0.62);
}

.quick-action-card:nth-child(4) {
  background: linear-gradient(152deg, #0f7b66 0%, #1ca680 100%);
  border-color: rgba(160, 255, 232, 0.52);
}

.quick-action-card.quick-action-logout {
  cursor: pointer;
  text-align: left;
  appearance: none;
  font-family: inherit;
  background: linear-gradient(152deg, #7d153f 0%, #cf2768 100%);
  border-color: rgba(255, 191, 212, 0.54);
}

.quick-action-card.is-primary {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 16px 28px rgba(7, 10, 30, 0.3);
}

.quick-action-card[aria-disabled="true"] {
  filter: saturate(0.3);
}

.quick-action-card:hover,
.quick-action-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 30px rgba(3, 7, 24, 0.48);
  outline: none;
}

.quick-action-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 10, 34, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.quick-action-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-action-body {
  display: grid;
  gap: 7px;
}

.quick-action-title {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.quick-action-desc {
  font-size: 12.5px;
  line-height: 1.36;
  color: rgba(241, 244, 255, 0.9);
}

.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;
}

@media (max-width: 900px) {
  .dashboard-page .simple-content {
    width: min(1220px, 100% - 7vw);
    padding: 44px 0 64px;
  }

  .dashboard-quick-actions {
    padding: 14px;
    border-radius: 16px;
  }

  .quick-action-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 200px));
    justify-content: start;
  }

  .quick-action-card {
    min-height: 150px;
    max-width: 200px;
  }
}

@media (max-width: 560px) {
  .quick-action-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .quick-action-card {
    aspect-ratio: auto;
    min-height: 138px;
    max-width: none;
  }

  .quick-action-title {
    font-size: 18px;
  }
}

.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);
}

.affiliate-page {
  background: radial-gradient(circle at 18% 16%, rgba(129, 182, 241, 0.22), transparent 46%),
    radial-gradient(circle at 86% 12%, rgba(124, 77, 255, 0.16), transparent 42%), #f1f4fb;
  color: #121827;
}

.affiliate-page .site-header {
  background: linear-gradient(180deg, #0f1420 0%, #111827 42%, #172036 100%);
  color: #f6f7fb;
}

.affiliate-page .site-header .muted {
  color: rgba(246, 247, 251, 0.7);
}

.affiliate-page .help-category-bar {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.affiliate-page .help-breadcrumb {
  color: #4b5563;
}

.affiliate-shell {
  width: min(1200px, 100% - 14vw);
  margin: 36px auto 18px;
}

.affiliate-intro {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 150% at 0% 0%, rgba(132, 191, 247, 0.24), transparent 52%),
    radial-gradient(95% 130% at 100% 0%, rgba(138, 94, 255, 0.24), transparent 48%),
    linear-gradient(150deg, #0f172a 0%, #141f38 44%, #1f2c4f 100%);
  color: rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 54px rgba(11, 23, 42, 0.34);
}

.affiliate-intro::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
  pointer-events: none;
}

.affiliate-intro > * {
  position: relative;
  z-index: 1;
}

.affiliate-intro h1 {
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.affiliate-intro .muted {
  color: rgba(255, 255, 255, 0.8);
  max-width: 920px;
  font-size: 17px;
}

.affiliate-benefits {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 13px;
}

.affiliate-benefits li {
  position: relative;
  padding-left: 20px;
  line-height: 1.56;
  color: rgba(255, 255, 255, 0.92);
}

.affiliate-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9fd0ff;
}

.affiliate-application {
  width: min(1200px, 100% - 14vw);
  margin: 24px auto 44px;
}

.affiliate-card-wrap {
  position: relative;
  width: min(940px, 100%);
  margin: 0 auto;
}

.affiliate-card {
  position: relative;
  z-index: 3;
  border-radius: 24px;
  background: radial-gradient(120% 130% at 16% 6%, rgba(230, 247, 255, 0.72), transparent 48%),
    radial-gradient(90% 120% at 86% 6%, rgba(189, 208, 255, 0.44), transparent 46%),
    linear-gradient(150deg, #89bff0 0%, #78afe6 56%, #71a5dd 100%);
  padding: 34px 34px 32px;
  box-shadow: 0 34px 68px rgba(17, 24, 39, 0.26);
  border: 1px solid rgba(17, 24, 39, 0.2);
}

.affiliate-auth-banner {
  margin-bottom: 16px;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.24);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.32));
  backdrop-filter: blur(10px) saturate(152%);
  -webkit-backdrop-filter: blur(10px) saturate(152%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.affiliate-auth-banner p {
  color: rgba(16, 24, 40, 0.9);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.45;
}

.affiliate-auth-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.affiliate-auth-banner-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 24, 39, 0.2);
  color: #111827;
  background: rgba(255, 255, 255, 0.42);
}

.affiliate-auth-banner-actions a:first-child {
  background: rgba(124, 77, 255, 0.2);
  border-color: rgba(124, 77, 255, 0.35);
  color: #2f2155;
}

.affiliate-auth-banner.is-authenticated {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(140deg, rgba(203, 255, 236, 0.58), rgba(228, 255, 246, 0.25));
}

.affiliate-auth-banner.is-admin-mode {
  border-color: rgba(47, 93, 255, 0.5);
  background: linear-gradient(140deg, rgba(222, 236, 255, 0.82), rgba(198, 221, 255, 0.54));
}

.affiliate-auth-banner.is-admin-mode p {
  color: #0c2d76;
  font-weight: 700;
}

.affiliate-auth-banner.is-admin-mode .affiliate-auth-banner-actions a:first-child {
  border-color: #3a67ff;
  background: linear-gradient(130deg, #2b5dff, #3f8bff);
  color: #ffffff;
}

.affiliate-auth-banner.is-admin-mode .affiliate-auth-banner-actions a:last-child {
  border-color: #506fcd;
  background: #ffffff;
  color: #174196;
}

.affiliate-card.is-form-locked .affiliate-form {
  opacity: 0.76;
  filter: blur(1px) saturate(0.95);
  pointer-events: none;
  user-select: none;
}

.affiliate-form-lock {
  display: none;
}

.affiliate-card.is-form-locked .affiliate-form-lock {
  position: absolute;
  inset: 26px 24px 24px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.58), transparent 54%),
    radial-gradient(circle at 82% 80%, rgba(165, 209, 255, 0.36), transparent 57%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(13px) saturate(162%);
  -webkit-backdrop-filter: blur(13px) saturate(162%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 24px 44px rgba(15, 23, 42, 0.18);
  text-align: center;
  padding: 18px;
  z-index: 5;
}

.affiliate-form-lock h4 {
  font-size: 19px;
  color: #0f172a;
  margin-bottom: 8px;
}

.affiliate-form-lock p {
  color: rgba(15, 23, 42, 0.88);
  margin-bottom: 14px;
  max-width: 520px;
}

.affiliate-form-lock-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.affiliate-form-lock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.42);
  color: #1e293b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.affiliate-form-lock a:first-child {
  border-color: rgba(124, 77, 255, 0.45);
  background: rgba(124, 77, 255, 0.24);
  color: #2b1d52;
}

.affiliate-details {
  width: min(1200px, 100% - 14vw);
  margin: 16px auto 12px;
}

.affiliate-details-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  margin-top: 8px;
}

.affiliate-details-head .muted {
  margin-top: 8px;
  color: rgba(15, 23, 42, 0.78);
  max-width: 820px;
}

.affiliate-details-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.affiliate-detail-card {
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 18px 16px;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.11);
}

.affiliate-detail-card h3 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 8px;
}

.affiliate-detail-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: rgba(15, 23, 42, 0.86);
  line-height: 1.42;
}

.affiliate-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 4.3vw, 58px);
  line-height: 0.95;
  color: #101828;
  margin-bottom: 12px;
}

.affiliate-card p {
  color: rgba(16, 24, 40, 0.92);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 18px;
  max-width: 760px;
}

.affiliate-form {
  display: grid;
  gap: 14px;
}

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

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

.affiliate-field {
  display: grid;
  gap: 8px;
  color: #111827;
  font-weight: 600;
  font-size: 15px;
}

.affiliate-field input,
.affiliate-field select,
.affiliate-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.26);
  border-radius: 10px;
  padding: 14px 14px;
  font-family: inherit;
  font-size: 16px;
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.affiliate-field textarea {
  resize: vertical;
  min-height: 120px;
}

.affiliate-field input:focus,
.affiliate-field select:focus,
.affiliate-field textarea:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.16);
}

.affiliate-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #111827;
  margin-top: 4px;
}

.affiliate-consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #111827;
}

.affiliate-submit {
  margin-top: 4px;
  border: none;
  border-radius: 10px;
  padding: 15px 18px;
  background: #0b0b10;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.affiliate-submit:hover,
.affiliate-submit:focus-visible {
  transform: translateY(-1px);
  background: #000;
  outline: none;
}

.affiliate-feedback {
  min-height: 20px;
  font-weight: 600;
  color: #8f1d1d;
  font-size: 14px;
}

.affiliate-feedback.is-success {
  color: #165f24;
}

.affiliate-admin-link-panel {
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(22, 78, 168, 0.34);
  background: linear-gradient(140deg, rgba(225, 238, 255, 0.84), rgba(208, 228, 255, 0.64));
  padding: 12px;
  display: grid;
  gap: 10px;
}

.affiliate-admin-link-note {
  margin: 0;
  color: #0f337e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.affiliate-admin-link-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.affiliate-admin-link-row input {
  flex: 1 1 360px;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid rgba(44, 95, 206, 0.5);
  background: #ffffff;
  color: #0f172a;
  padding: 10px 12px;
  font: inherit;
}

.affiliate-admin-link-row button {
  border: 1px solid rgba(30, 66, 149, 0.5);
  background: linear-gradient(130deg, #1f56ff, #3a91ff);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.affiliate-admin-link-row button:hover,
.affiliate-admin-link-row button:focus-visible {
  filter: brightness(1.07);
  outline: none;
}

.affiliate-steps {
  width: min(1200px, 100% - 14vw);
  margin: 6px auto 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.affiliate-step {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  padding: 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.affiliate-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.affiliate-step h3 {
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 20px;
}

.affiliate-step p {
  color: #374151;
  line-height: 1.45;
}

.affiliate-thank-shell {
  width: min(980px, 100% - 14vw);
  margin: 36px auto 64px;
}

.affiliate-thank-card {
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 255, 0.72));
  box-shadow: 0 30px 58px rgba(13, 21, 40, 0.14);
  padding: 32px 34px;
}

.affiliate-thank-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 700;
  color: #0f5132;
  background: linear-gradient(140deg, rgba(132, 255, 195, 0.8), rgba(171, 255, 220, 0.65));
  border: 1px solid rgba(16, 185, 129, 0.36);
  margin-bottom: 12px;
}

.affiliate-thank-card h1 {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.98;
  color: #0f172a;
}

.affiliate-thank-card .muted {
  max-width: 760px;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.55;
}

.affiliate-thank-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.affiliate-thank-grid article {
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  padding: 12px;
}

.affiliate-thank-grid h3 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.68);
}

.affiliate-thank-grid p {
  margin-top: 6px;
  font-size: 15px;
  color: #0f172a;
}

.affiliate-thank-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.affiliate-thank-note {
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  background: rgba(15, 23, 42, 0.06);
  padding: 12px 14px;
  color: rgba(15, 23, 42, 0.86);
  display: grid;
  gap: 6px;
}

.affiliate-thank-note a {
  color: #4b2ddf;
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gift-page {
  background: radial-gradient(circle at 16% 8%, rgba(157, 100, 255, 0.32), transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(124, 77, 255, 0.34), transparent 38%),
    linear-gradient(180deg, #140b2d 0%, #1b1040 46%, #140a2e 100%);
}

.gift-main {
  padding: 38px 0 68px;
}

.gift-shell,
.gift-results {
  width: min(1200px, 100% - 14vw);
  margin: 0 auto;
}

.gift-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.gift-copy h1 {
  margin-top: 10px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.94;
}

.gift-lead {
  margin-top: 14px;
  color: rgba(241, 234, 255, 0.9);
  max-width: 720px;
}

.gift-account-status {
  margin-top: 12px;
  font-size: 14px;
  color: #f8b4ff;
  font-weight: 700;
}

.gift-account-status.is-logged-in {
  color: #a9ffdd;
}

.gift-purchase-card {
  margin-top: 20px;
  border-radius: 22px;
  border: 1px solid rgba(181, 133, 255, 0.42);
  background: linear-gradient(155deg, rgba(41, 19, 82, 0.86), rgba(27, 12, 64, 0.9));
  box-shadow: 0 26px 48px rgba(8, 2, 24, 0.44);
  padding: 22px;
  display: grid;
  gap: 14px;
}

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

.gift-row h3 {
  font-size: 21px;
  color: #ffffff;
}

.gift-row p {
  margin-top: 3px;
  color: rgba(227, 213, 255, 0.86);
  font-size: 14px;
}

.gift-row strong {
  color: #ffffff;
  font-size: clamp(24px, 3.1vw, 34px);
  font-weight: 800;
}

.gift-row.total {
  border-top: 1px solid rgba(185, 145, 255, 0.32);
  padding-top: 14px;
}

.gift-quantity-control select {
  border-radius: 10px;
  border: 1px solid rgba(213, 184, 255, 0.54);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  min-width: 92px;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
}

.gift-quantity-control select:focus {
  outline: none;
  border-color: #d8b6ff;
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.33);
}

.gift-buy-button {
  border: none;
  border-radius: 12px;
  background: linear-gradient(125deg, #7d2bff, #b552ff);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 18px;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.gift-buy-button:hover,
.gift-buy-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
  outline: none;
}

.gift-buy-feedback {
  min-height: 20px;
  color: #ff9fbf;
  font-size: 14px;
  font-weight: 700;
}

.gift-buy-feedback.is-success {
  color: #a9ffdd;
}

.gift-preview-panel {
  border-radius: 22px;
  border: 1px solid rgba(181, 133, 255, 0.32);
  background: linear-gradient(160deg, rgba(38, 20, 82, 0.84), rgba(20, 11, 54, 0.9));
  padding: 20px;
  box-shadow: 0 26px 48px rgba(8, 2, 24, 0.38);
}

.gift-preview-card {
  border-radius: 18px;
  border: 1px solid rgba(188, 148, 255, 0.36);
  background: radial-gradient(circle at 14% 8%, rgba(190, 123, 255, 0.3), transparent 46%),
    linear-gradient(150deg, rgba(63, 33, 123, 0.88), rgba(30, 15, 77, 0.96));
  padding: 18px;
}

.gift-preview-brand {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffccff;
  font-weight: 700;
}

.gift-preview-card h3 {
  margin-top: 6px;
  font-size: 30px;
  color: #ffffff;
}

.gift-preview-card dl {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.gift-preview-card dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f2c5ff;
}

.gift-preview-card dd {
  margin-top: 4px;
  color: #ffffff;
  font-weight: 700;
  word-break: break-all;
}

.gift-preview-note {
  margin-top: 14px;
  color: rgba(239, 227, 255, 0.88);
}

.gift-admin-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gift-admin-card {
  border-radius: 20px;
  border: 1px solid rgba(179, 140, 255, 0.34);
  background: rgba(25, 12, 59, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.gift-admin-card h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.96;
}

.gift-admin-card p {
  color: rgba(236, 223, 255, 0.9);
}

.gift-generate-form {
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.gift-generate-form label {
  display: grid;
  gap: 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.gift-generate-form input,
.gift-generate-form select {
  border-radius: 10px;
  border: 1px solid rgba(214, 188, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  padding: 12px 13px;
}

.gift-generate-form input:focus,
.gift-generate-form select:focus {
  outline: none;
  border-color: rgba(220, 193, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.34);
}

.gift-generate-form button {
  border: none;
  border-radius: 12px;
  background: linear-gradient(130deg, #7a2dff, #b653ff);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 16px;
  cursor: pointer;
}

.gift-generate-form button:hover,
.gift-generate-form button:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.gift-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gift-tracking-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.gift-mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gift-mini-metric {
  border-radius: 12px;
  border: 1px solid rgba(202, 175, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.gift-mini-metric span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 222, 255, 0.74);
}

.gift-mini-metric strong {
  margin-top: 4px;
  display: block;
  font-size: 23px;
  color: #ffffff;
}

.gift-tracking-list-wrap {
  border-top: 1px solid rgba(198, 165, 255, 0.22);
  padding-top: 10px;
}

.gift-tracking-list-wrap h3 {
  font-size: 20px;
}

.gift-tracking-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}

.gift-tracking-item {
  border-radius: 12px;
  border: 1px solid rgba(198, 165, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  padding: 10px;
  display: grid;
  gap: 5px;
}

.gift-tracking-item p {
  margin: 0;
}

.gift-tracking-item a {
  color: #bdeaff;
  text-decoration: underline;
}

.gift-tracking-actions {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gift-tracking-actions .gift-copy-link-btn {
  padding: 8px 10px;
  font-size: 10px;
}

.gift-status-chip {
  display: inline-flex;
  margin-left: 7px;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(234, 217, 255, 0.4);
  background: rgba(141, 94, 255, 0.3);
}

.gift-results {
  margin-top: 22px;
  border-radius: 20px;
  border: 1px solid rgba(178, 135, 255, 0.34);
  background: rgba(23, 11, 53, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px;
}

.gift-results-head h2 {
  font-size: clamp(30px, 3.7vw, 44px);
}

.gift-results-head p {
  margin-top: 6px;
  color: rgba(233, 220, 255, 0.87);
}

.gift-results-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gift-results-actions button {
  border: 1px solid rgba(208, 177, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.gift-results-actions button:hover,
.gift-results-actions button:focus-visible {
  background: rgba(124, 77, 255, 0.35);
  border-color: rgba(225, 202, 255, 0.75);
  outline: none;
}

.gift-link-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.gift-link-item {
  border: 1px solid rgba(200, 170, 255, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.gift-link-actions {
  display: grid;
  gap: 8px;
  width: 160px;
}

.gift-link-index {
  color: #f6ceff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
}

.gift-link-code {
  margin-top: 4px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  word-break: break-word;
}

.gift-link-url {
  margin-top: 4px;
  display: inline-block;
  color: #bdeaff;
  text-decoration: underline;
  word-break: break-all;
}

.gift-copy-link-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #6c2cff, #3b8dff);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  white-space: nowrap;
}

.gift-copy-link-btn:hover,
.gift-copy-link-btn:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.gift-checkout-page {
  background: radial-gradient(circle at 14% 8%, rgba(169, 112, 255, 0.24), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(120, 76, 255, 0.24), transparent 38%),
    linear-gradient(180deg, #efebf8 0%, #e9e3f7 52%, #ede8f8 100%);
  color: #120a2b;
}

.gift-checkout-main {
  padding: 38px 0 68px;
}

.gift-checkout-shell {
  width: min(920px, 100% - 14vw);
  margin: 0 auto;
}

.gift-checkout-card {
  border-radius: 24px;
  border: 1px solid rgba(133, 92, 214, 0.28);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(248, 245, 255, 0.96));
  box-shadow: 0 30px 56px rgba(32, 17, 74, 0.18);
  padding: 28px 30px;
}

.gift-checkout-card h1 {
  margin-top: 10px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 0.95;
  color: #1a0f3d;
}

.gift-checkout-lead {
  margin-top: 12px;
  color: rgba(33, 20, 75, 0.84);
  max-width: 700px;
}

.gift-checkout-account {
  margin-top: 10px;
  color: #6127c4;
  font-size: 14px;
  font-weight: 700;
}

.gift-checkout-summary {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gift-checkout-summary > div {
  border: 1px solid rgba(145, 105, 222, 0.28);
  border-radius: 14px;
  background: rgba(124, 77, 255, 0.06);
  padding: 12px;
}

.gift-checkout-summary p {
  color: rgba(45, 29, 90, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gift-checkout-summary strong {
  margin-top: 5px;
  display: block;
  font-size: 25px;
  color: #1d1144;
}

.gift-checkout-form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.gift-checkout-form label {
  display: grid;
  gap: 7px;
  color: #26165a;
  font-size: 14px;
  font-weight: 700;
}

.gift-checkout-form input {
  border-radius: 10px;
  border: 1px solid rgba(124, 77, 255, 0.24);
  background: #ffffff;
  color: #1d1144;
  font: inherit;
  font-size: 16px;
  padding: 12px 13px;
}

.gift-checkout-form input::placeholder {
  color: rgba(64, 43, 125, 0.55);
}

.gift-checkout-form input:focus,
.gift-checkout-form select:focus {
  outline: none;
  border-color: #7c4dff;
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.18);
}

.gift-checkout-form select {
  border-radius: 10px;
  border: 1px solid rgba(124, 77, 255, 0.24);
  background: #ffffff;
  color: #1d1144;
  font: inherit;
  font-size: 16px;
  padding: 12px 13px;
}

.gift-checkout-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gift-recipient-list {
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.gift-recipient-item {
  border: 1px solid rgba(124, 77, 255, 0.2);
  border-radius: 12px;
  background: rgba(124, 77, 255, 0.04);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.gift-recipient-item legend {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(64, 43, 125, 0.74);
  padding: 0 5px;
}

.gift-checkout-form button {
  margin-top: 4px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(130deg, #7c2dff, #b653ff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 16px;
  cursor: pointer;
}

.gift-checkout-form button:hover,
.gift-checkout-form button:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.gift-checkout-feedback {
  min-height: 20px;
  color: #b5164d;
  font-size: 14px;
  font-weight: 700;
}

.gift-checkout-feedback.is-success {
  color: #0d8d58;
}

.gift-checkout-terms {
  font-size: 13px;
  color: rgba(38, 22, 90, 0.74);
}

.gift-checkout-terms a {
  color: #6a2de2;
  text-decoration: underline;
  font-weight: 700;
}

.redeem-page {
  background: radial-gradient(circle at 14% 10%, rgba(160, 102, 255, 0.3), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(132, 76, 255, 0.3), transparent 38%),
    linear-gradient(180deg, #130a2f 0%, #1a0f3c 52%, #130a2f 100%);
}

.redeem-main {
  padding: 40px 0 70px;
}

.redeem-shell {
  width: min(920px, 100% - 14vw);
  margin: 0 auto;
}

.redeem-card {
  border-radius: 24px;
  border: 1px solid rgba(183, 139, 255, 0.36);
  background: linear-gradient(150deg, rgba(35, 18, 78, 0.86), rgba(20, 9, 53, 0.92));
  box-shadow: 0 28px 52px rgba(8, 2, 24, 0.42);
  padding: 28px 28px 26px;
}

.redeem-card h1 {
  margin-top: 10px;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 0.95;
}

.redeem-lead {
  margin-top: 14px;
  max-width: 760px;
  color: rgba(232, 220, 255, 0.88);
}

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

.redeem-form label {
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}

.redeem-form input {
  border-radius: 10px;
  border: 1px solid rgba(219, 193, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  padding: 12px 13px;
}

.redeem-form input::placeholder {
  color: rgba(241, 228, 255, 0.7);
}

.redeem-form input:focus {
  outline: none;
  border-color: rgba(220, 194, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.34);
}

.redeem-form button {
  margin-top: 4px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(130deg, #7a2dff, #b54fff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 16px;
  cursor: pointer;
}

.redeem-form button:hover,
.redeem-form button:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.redeem-feedback {
  min-height: 20px;
  color: #ffabc8;
  font-size: 14px;
  font-weight: 700;
}

.redeem-feedback.is-success {
  color: #a9ffdd;
}

.redeem-success {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(176, 238, 204, 0.52);
  background: linear-gradient(140deg, rgba(18, 79, 56, 0.74), rgba(16, 55, 45, 0.78));
  padding: 16px;
  display: grid;
  gap: 10px;
}

.redeem-success h2 {
  font-size: 27px;
}

.redeem-success p {
  color: rgba(233, 255, 244, 0.92);
}

.redeem-success dl {
  display: grid;
  gap: 9px;
}

.redeem-success dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(213, 255, 235, 0.85);
}

.redeem-success dd {
  margin-top: 3px;
  color: #ffffff;
  font-weight: 700;
}

.admin-page {
  --admin-bg-soft: #f4f8ff;
  --admin-ink: #081845;
  --admin-muted: #1f3d83;
  --admin-line: #9eb8ff;
  --admin-focus: #2f5dff;
  --admin-surface: #ffffff;
  --admin-deep: #081c57;
  --admin-deeper: #0a1240;
  background: radial-gradient(circle at 12% 4%, rgba(114, 196, 255, 0.28), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(137, 98, 255, 0.2), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, var(--admin-bg-soft) 100%);
}

.admin-page .admin-shell {
  color: var(--admin-ink);
}

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

.admin-page .admin-login-card {
  color: #f6fbff;
}

.admin-page .admin-table-hint,
.admin-page .admin-search-box {
  color: #193a86;
}

.admin-page .admin-search-box input {
  border-color: #6f95ff;
  background: #ffffff;
  color: var(--admin-ink);
}

.admin-page .admin-search-box input::placeholder {
  color: #4b66a9;
}

.admin-page .admin-filter-btn {
  border-color: #4d6fe0;
  background: #ffffff;
  color: #173d91;
}

.admin-page .admin-filter-btn:hover,
.admin-page .admin-filter-btn:focus-visible {
  background: #ecf2ff;
  border-color: #3558cf;
  color: #0f3285;
  outline: none;
}

.admin-shell {
  width: min(1200px, 100% - 14vw);
  margin: 36px auto 60px;
}

.admin-login-card {
  max-width: 520px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #5f89ff;
  background: linear-gradient(138deg, #07184d, #102d87);
  box-shadow: 0 28px 56px rgba(8, 24, 77, 0.42);
}

.admin-login-card h1 {
  font-size: clamp(34px, 3.6vw, 48px);
  margin-bottom: 8px;
}

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

.admin-login-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #d5e4ff;
}

.admin-login-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #7297ff;
  background: rgba(9, 29, 85, 0.72);
  color: #f5f9ff;
  padding: 12px 14px;
  font: inherit;
}

.admin-login-form input::placeholder {
  color: #bed1ff;
}

.admin-panel {
  display: grid;
  gap: 26px;
}

.admin-panel-topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-toolbar h1 {
  margin-top: 8px;
  font-size: clamp(34px, 3.9vw, 52px);
}

.admin-toolbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #385ec8;
  background: linear-gradient(130deg, #07174a, #0b2368);
  box-shadow: 0 22px 42px rgba(8, 24, 77, 0.48);
}

.admin-action-btn {
  border-radius: 999px;
  padding: 12px 18px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f8fbff;
  border: 1px solid transparent;
  background: rgba(16, 41, 110, 0.84);
  box-shadow: 0 14px 30px rgba(8, 24, 77, 0.42);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.admin-action-btn .admin-btn-icon {
  font-size: 14px;
  line-height: 1;
}

.admin-action-btn:hover,
.admin-action-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
  outline: none;
}

.admin-action-btn.is-busy,
.admin-action-btn:disabled {
  opacity: 0.76;
  cursor: progress;
  transform: none;
  filter: none;
}

.admin-refresh-btn {
  background: linear-gradient(120deg, #1f56ff, #02adff);
  border-color: #d0e3ff;
}

.admin-sync-btn {
  background: linear-gradient(120deg, #00b894, #00dfff);
  border-color: #bcfff4;
}

.admin-logout-btn {
  background: linear-gradient(120deg, #d93b56, #ff7342);
  border-color: #ffd2c9;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(206, 61, 66, 0.38);
  min-width: 132px;
}

.admin-status {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #4368dc;
  background: #e8efff;
  color: #112c6e;
  font-size: 14px;
}

.admin-status.is-error {
  border-color: #e12d52;
  background: #ffe6ec;
  color: #6e0820;
}

.admin-status.is-success {
  border-color: #0d9e5e;
  background: #e4ffef;
  color: #065631;
}

.admin-table-wrap {
  border: 1px solid #2e51ac;
  border-radius: 14px;
  overflow: auto;
  background: linear-gradient(160deg, #071648, #0d286d);
  box-shadow: 0 24px 46px rgba(9, 23, 72, 0.3);
}

.admin-table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(188, 205, 255, 0.28);
  font-size: 14px;
  vertical-align: top;
  color: #f3f7ff;
}

.admin-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c6d6ff;
}

.admin-status-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.admin-status-pill.review {
  background: #fff0d4;
  color: #8d4f00;
  border: 1px solid #f4b13d;
}

.admin-status-pill.approved {
  background: #dffff0;
  color: #0b6f3f;
  border: 1px solid #29bf72;
}

.admin-status-pill.rejected {
  background: #ffe5eb;
  color: #8b1f39;
  border: 1px solid #e0506f;
}

.admin-status-pill.revoked {
  background: #ece4ff;
  color: #4520a9;
  border: 1px solid #7d56e8;
}

.admin-actions {
  white-space: nowrap;
}

.admin-actions button {
  border: 1px solid #8db5ff;
  background: #0e2e77;
  color: #f8fbff;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  margin-right: 6px;
  margin-bottom: 6px;
  cursor: pointer;
}

.admin-actions button.status-approved {
  border-color: #2ed67f;
  background: rgba(16, 124, 73, 0.45);
}

.admin-actions button.status-review {
  border-color: #ffbf55;
  background: rgba(161, 97, 3, 0.45);
}

.admin-actions button.status-rejected {
  border-color: #ff7c95;
  background: rgba(150, 26, 54, 0.48);
}

.admin-actions button.status-revoked {
  border-color: #b79bff;
  background: rgba(78, 53, 167, 0.45);
}

.admin-actions button:hover,
.admin-actions button:focus-visible {
  background: #2f5fff;
  border-color: #b2c9ff;
  outline: none;
}

.admin-actions button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  filter: none;
}

.admin-login-error {
  display: none;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffe5ec;
  border: 1px solid #e74a6a;
  color: #7a0d2a;
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.admin-hero h1 {
  margin-top: 8px;
  font-size: clamp(34px, 4vw, 56px);
  color: var(--admin-ink);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 4px;
}

.admin-metric-card {
  border: 1px solid #7ea1ff;
  border-radius: 12px;
  background: linear-gradient(160deg, #0a1f63, #15358f);
  padding: 14px;
  box-shadow: 0 14px 30px rgba(9, 23, 72, 0.24);
}

.admin-metric-card p {
  color: #d4e0ff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.admin-metric-card strong {
  margin-top: 8px;
  display: block;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}

.admin-metric-card.review {
  border-color: #ffba4d;
  background: linear-gradient(160deg, #4f2f00, #7f5100);
}

.admin-metric-card.approved {
  border-color: #25d37f;
  background: linear-gradient(160deg, #00502d, #057442);
}

.admin-metric-card.rejected {
  border-color: #ff5f7d;
  background: linear-gradient(160deg, #5f1024, #871637);
}

.admin-metric-card.revoked {
  border-color: #9f7cff;
  background: linear-gradient(160deg, #31216f, #49309f);
}

.admin-gift-metrics {
  margin-top: 14px;
}

.admin-gift-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.admin-product-metrics-panel {
  border: 1px solid #759dff;
  border-radius: 14px;
  background: linear-gradient(160deg, #081d5d, #0f2c7d);
  box-shadow: 0 20px 38px rgba(9, 23, 72, 0.25);
  padding: 16px;
  display: grid;
  gap: 14px;
}

.admin-product-metrics-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: end;
}

.admin-product-metrics-head h2 {
  margin-top: 6px;
  font-size: clamp(24px, 2.8vw, 34px);
  color: #f8fbff;
}

.admin-product-metrics-head .muted {
  color: #bed0ff;
}

.admin-product-metrics-controls {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-product-metrics-controls label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b8ccff;
}

.admin-product-metrics-controls select {
  min-width: 150px;
  border-radius: 10px;
  border: 1px solid #7298ff;
  background: #f5f8ff;
  color: #112f73;
  padding: 10px 11px;
  font: inherit;
}

.admin-product-metrics-groups {
  display: grid;
  gap: 16px;
}

.admin-product-metrics-empty {
  border: 1px dashed #87a8ff;
  border-radius: 10px;
  padding: 16px;
  color: #d5e3ff;
  text-align: center;
}

.admin-product-metric-group h3 {
  font-size: 16px;
  color: #f6f9ff;
  margin-bottom: 10px;
}

.admin-product-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-product-metric-card {
  border: 1px solid #587fdc;
  border-radius: 12px;
  padding: 12px;
  background: rgba(12, 35, 97, 0.66);
  display: grid;
  gap: 6px;
}

.admin-product-metric-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.admin-product-metric-top h4 {
  font-size: 13px;
  color: #dce8ff;
  margin: 0;
}

.admin-product-metric-source {
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #9bb8ff;
  color: #d7e5ff;
}

.admin-product-metric-source.auto {
  background: rgba(56, 135, 255, 0.32);
}

.admin-product-metric-source.manual {
  background: rgba(0, 199, 169, 0.28);
  border-color: #5aeed8;
  color: #defff9;
}

.admin-product-metric-card strong {
  font-size: 26px;
  color: #ffffff;
  line-height: 1.1;
}

.admin-product-metric-month {
  font-size: 12px;
  color: #c1d4ff;
}

.admin-product-metric-graph {
  border: 1px solid rgba(146, 173, 255, 0.45);
  border-radius: 9px;
  background: rgba(8, 23, 63, 0.85);
  padding: 4px 5px;
}

.admin-product-metric-graph svg {
  width: 100%;
  height: 144px;
  display: block;
}

.admin-product-metric-graph .sparkline-grid {
  stroke: rgba(160, 191, 255, 0.18);
  stroke-width: 1;
}

.admin-product-metric-graph .sparkline-axis {
  stroke: rgba(191, 214, 255, 0.6);
  stroke-width: 1.1;
}

.admin-product-metric-graph .sparkline-line {
  fill: none;
  stroke: #73e7ff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-product-metric-graph .sparkline-dot {
  fill: #f8fdff;
  stroke: #73e7ff;
  stroke-width: 1.6;
}

.admin-product-metric-graph .sparkline-tick-label,
.admin-product-metric-graph .sparkline-axis-label,
.admin-product-metric-graph .sparkline-empty-label {
  fill: #d6e6ff;
  font-size: 10px;
  font-family: inherit;
}

.admin-product-metric-graph .sparkline-axis-label {
  fill: #9fc0ff;
  font-size: 10px;
  font-weight: 600;
}

.admin-product-metric-ratio {
  font-size: 12px;
  color: #afd1ff;
}

.admin-product-metric-description,
.admin-product-metric-coverage {
  font-size: 11px;
  color: #bed1ff;
  line-height: 1.35;
}

.admin-product-input-hint {
  margin-top: -4px;
}

.admin-product-manual-form {
  border-top: 1px solid rgba(159, 183, 255, 0.46);
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.admin-product-manual-form h3 {
  font-size: 18px;
  color: #f8fbff;
}

.admin-product-manual-form .muted {
  color: #c1d4ff;
}

.admin-product-manual-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-product-manual-grid label {
  display: grid;
  gap: 6px;
  color: #d0ddff;
  font-size: 12px;
}

.admin-product-manual-grid input,
.admin-product-manual-grid select,
.admin-product-manual-grid textarea {
  border-radius: 10px;
  border: 1px solid #7698f4;
  background: #f5f9ff;
  color: #102c6f;
  padding: 10px 12px;
  font: inherit;
}

.admin-product-manual-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.admin-product-manual-note {
  grid-column: 1 / -1;
}

.admin-product-manual-span-all {
  grid-column: 1 / -1;
}

.admin-product-manual-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-top: 2px;
}

.admin-search-box {
  display: grid;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #12357e;
}

.admin-search-box input {
  border-radius: 10px;
  border: 1px solid #6f95ff;
  background: #ffffff;
  color: var(--admin-ink);
  padding: 11px 12px;
  font: inherit;
}

.admin-search-box input:focus {
  outline: none;
  border-color: #2456ff;
  box-shadow: 0 0 0 3px rgba(47, 93, 255, 0.2);
}

.admin-filter-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-filter-btn {
  border: 1px solid #4d6fe0;
  background: #ffffff;
  color: #173d91;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.admin-filter-btn.active {
  border-color: #2747c9;
  background: linear-gradient(130deg, #335dff, #6b48ff);
  color: #ffffff;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 2px;
}

.admin-table-panel {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.admin-table-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #173f93;
}

.admin-table-hint span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dfebff;
  border: 1px solid #486dde;
  color: #2f51b9;
}

.admin-table tr[data-app-id] {
  cursor: pointer;
  transition: background 0.16s ease, box-shadow 0.16s ease;
}

.admin-table tr[data-app-id]:hover {
  background: rgba(59, 103, 255, 0.24);
  box-shadow: inset 3px 0 0 rgba(143, 208, 255, 0.9);
}

.admin-table tr.is-selected {
  background: rgba(99, 74, 255, 0.33);
  box-shadow: inset 4px 0 0 rgba(143, 208, 255, 1);
}

.admin-row-pick {
  display: inline-block;
  margin-right: 9px;
  color: #a5bcff;
  font-size: 10px;
  transform: translateY(-1px);
}

.admin-table tr.is-selected .admin-row-pick {
  color: #ffffff;
}

.admin-subtle {
  font-size: 12px;
  color: #d3deff;
}

.admin-source-chip {
  display: inline-block;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid #8db6ff;
  color: #ecf4ff;
}

.admin-source-chip.cloud {
  background: rgba(0, 202, 255, 0.25);
  border-color: #2bd8ff;
}

.admin-source-chip.local {
  background: rgba(255, 167, 37, 0.24);
  border-color: #ffb047;
}

.admin-empty {
  text-align: center;
  color: #d4dfff;
}

.admin-detail-panel {
  border: 1px solid #2f57b8;
  background: linear-gradient(170deg, #081a52, #091542);
  border-radius: 14px;
  padding: 16px;
  position: static;
}

.admin-detail-panel #admin-detail-content {
  color: #f3f7ff;
}

.admin-detail-empty {
  color: #d0ddff;
  font-size: 14px;
  line-height: 1.5;
}

.admin-detail-empty strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

#admin-detail-content h3 {
  font-size: 26px;
  line-height: 1.1;
  color: #f8fbff;
}

.admin-detail-panel .muted,
#detail-email {
  color: #9ec1ff;
}

.admin-detail-meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #b7c8ff;
}

.admin-detail-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.admin-detail-item {
  background: rgba(24, 56, 142, 0.58);
  border: 1px solid #4269cb;
  border-radius: 10px;
  padding: 10px 11px;
}

.admin-detail-item span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aec2ff;
}

.admin-detail-item p {
  margin-top: 5px;
  color: #ffffff;
  line-height: 1.42;
  word-break: break-word;
}

.admin-detail-actions {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-detail-actions button {
  border: 1px solid #8db3ff;
  background: #1a439d;
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
}

.admin-detail-actions button:hover,
.admin-detail-actions button:focus-visible {
  background: #2f62e8;
  border-color: #b4ceff;
  outline: none;
}

.admin-detail-actions button[data-next-status="approved"] {
  border-color: #2ed67f;
  background: rgba(16, 124, 73, 0.5);
}

.admin-detail-actions button[data-next-status="under_review"] {
  border-color: #ffbf55;
  background: rgba(161, 97, 3, 0.52);
}

.admin-detail-actions button[data-next-status="rejected"] {
  border-color: #ff7c95;
  background: rgba(150, 26, 54, 0.56);
}

.admin-detail-actions button[data-next-status="revoked"] {
  border-color: #b79bff;
  background: rgba(78, 53, 167, 0.56);
}

.admin-detail-actions button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.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: radial-gradient(circle at 18% 10%, rgba(127, 87, 255, 0.2), transparent 42%),
    radial-gradient(circle at 82% 14%, rgba(157, 103, 255, 0.22), transparent 44%),
    linear-gradient(180deg, #0f0a1f 0%, #140d28 45%, #10081e 100%);
  color: #f4efff;
}

.business-page .site-header {
  background: radial-gradient(circle at 18% 14%, rgba(142, 94, 255, 0.25), transparent 42%),
    radial-gradient(circle at 84% 10%, rgba(112, 81, 255, 0.22), transparent 44%),
    linear-gradient(180deg, #130b26 0%, #180f31 44%, #120a23 100%);
}

.business-page .home-header .header-top {
  background: rgba(6, 6, 12, 0.96);
  border-bottom: 1px solid rgba(175, 134, 255, 0.34);
}

.business-page .home-header .menu-toggle {
  border-color: rgba(176, 143, 255, 0.42);
}

.business-page .home-header .menu-toggle span {
  background: #b690ff;
}

.business-page .logo img,
.business-page .logo-mark,
.business-page .logo-mark img {
  border-radius: 50%;
}

.business-page .logo img,
.business-page .logo-mark img {
  object-fit: cover;
}

.business-demo-page {
  margin: 0;
  min-height: 100vh;
  color: #f5f7ff;
  background: radial-gradient(circle at 20% 10%, rgba(142, 96, 255, 0.16), transparent 42%),
    radial-gradient(circle at 84% 12%, rgba(104, 78, 255, 0.13), transparent 46%),
    linear-gradient(180deg, #131527 0%, #131427 55%, #121426 100%);
  overflow-x: hidden;
}

.business-demo-main {
  width: min(1500px, 100% - 14vw);
  margin: 0 auto;
  padding: 146px 0 96px;
}

.demo-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  top: 18px;
  left: 2vw;
  z-index: 12;
  color: rgba(234, 227, 255, 0.94);
  font-size: clamp(16px, 1.3vw, 22px);
  letter-spacing: 0.01em;
  border: 1px solid rgba(175, 145, 247, 0.34);
  background: rgba(95, 60, 168, 0.22);
  border-radius: 999px;
  padding: 10px 16px;
  width: fit-content;
}

.demo-back-btn:hover,
.demo-back-btn:focus-visible {
  outline: none;
  background: rgba(119, 76, 204, 0.34);
  border-color: rgba(196, 172, 255, 0.58);
}

.demo-back-btn span:first-child {
  font-size: 22px;
  line-height: 1;
}

.business-demo-form {
  margin-top: 0;
}

.demo-step {
  display: none;
  min-height: 72vh;
}

.demo-step.is-active {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fade-up 0.45s ease both;
}

.demo-intro-copy {
  margin: 0;
  max-width: 1300px;
  font-size: clamp(34px, 3.3vw, 64px);
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #f4f4fb;
}

.demo-question-title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.demo-q-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #ffffff;
  color: #16182a;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.demo-question-title h2 {
  margin: 0;
  color: #f4f5fb;
  font-size: clamp(38px, 3.8vw, 76px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.demo-input-wrap {
  display: block;
  width: min(1220px, 100%);
}

.demo-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(244, 246, 255, 0.4);
  background: transparent;
  color: #f6f7ff;
  font-family: var(--font-body);
  font-size: clamp(40px, 3.7vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  padding: 16px 0 14px;
}

.demo-input::placeholder {
  color: rgba(222, 227, 247, 0.42);
}

.demo-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.88);
}

.demo-textarea {
  min-height: 210px;
  resize: vertical;
}

.demo-step-actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.demo-step-actions.submit {
  gap: 22px;
}

.demo-step-actions.multi {
  flex-wrap: wrap;
}

.demo-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  min-width: 178px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(130deg, #7a45ff, #9d5cff);
  color: #ffffff;
  font-size: clamp(36px, 2.9vw, 52px);
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 0 34px;
  cursor: pointer;
}

.demo-pill-btn:hover,
.demo-pill-btn:focus-visible {
  outline: none;
  filter: brightness(1.06);
}

.demo-pill-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.demo-pill-btn.anchor {
  text-decoration: none;
}

.demo-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(173, 147, 240, 0.52);
  color: rgba(238, 234, 255, 0.94);
  padding: 0 30px;
  font-size: clamp(24px, 2.1vw, 36px);
}

.demo-ghost-btn:hover,
.demo-ghost-btn:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

.demo-inline-error {
  margin: -10px 0 0;
  min-height: 30px;
  color: #ff95b7;
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 600;
}

.demo-submit-note,
.demo-hint,
.demo-submit-status {
  color: rgba(233, 236, 251, 0.82);
  font-size: clamp(23px, 1.8vw, 34px);
  line-height: 1.4;
}

.demo-hint {
  margin: -8px 0 0;
}

.demo-submit-status {
  margin: 0;
  max-width: 980px;
}

.demo-select-surface {
  width: min(1220px, 100%);
  border: 1px solid rgba(221, 229, 255, 0.12);
  border-radius: 28px;
  background: rgba(24, 25, 42, 0.82);
  padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.demo-search-wrap {
  position: relative;
  width: 100%;
}

.demo-search-wrap .demo-input {
  padding-right: 68px;
}

.demo-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(237, 240, 255, 0.9);
  font-size: 44px;
}

.demo-option-list,
.demo-choice-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.demo-option-btn,
.demo-choice-btn {
  width: 100%;
  min-height: 100px;
  border-radius: 22px;
  border: 1px solid rgba(225, 232, 255, 0.16);
  background: rgba(43, 45, 62, 0.78);
  color: #eceef8;
  text-align: left;
  padding: 0 28px;
  font-size: clamp(30px, 2.5vw, 50px);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.demo-option-btn:hover,
.demo-choice-btn:hover,
.demo-option-btn:focus-visible,
.demo-choice-btn:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.34);
}

.demo-option-btn.is-selected,
.demo-choice-btn.is-selected {
  border-color: rgba(193, 162, 255, 0.88);
  background: rgba(91, 58, 153, 0.78);
}

.demo-choice-list {
  width: min(760px, 100%);
}

.demo-choice-key {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(228, 234, 255, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f6f8ff;
  font-size: 34px;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .business-demo-main {
    width: min(1500px, 100% - 10vw);
    padding-top: 112px;
  }

  .demo-back-btn {
    top: 14px;
    left: 3vw;
  }

  .demo-step {
    min-height: 66vh;
  }

  .demo-q-number {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 24px;
  }

  .demo-input {
    font-size: clamp(30px, 4vw, 50px);
  }

  .demo-pill-btn {
    min-height: 76px;
    min-width: 150px;
    font-size: clamp(28px, 3vw, 40px);
  }

  .demo-option-btn,
  .demo-choice-btn {
    min-height: 84px;
    font-size: clamp(24px, 3vw, 36px);
  }

  .demo-choice-key {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .demo-search-icon {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .business-demo-main {
    width: min(1500px, 100% - 8vw);
    padding: 88px 0 66px;
  }

  .demo-back-btn {
    top: 10px;
    left: 3vw;
    font-size: 14px;
    padding: 8px 12px;
  }

  .business-demo-form {
    margin-top: 0;
  }

  .demo-step {
    min-height: auto;
  }

  .demo-step.is-active {
    gap: 20px;
  }

  .demo-intro-copy {
    font-size: clamp(24px, 6vw, 34px);
  }

  .demo-question-title {
    gap: 12px;
  }

  .demo-question-title h2 {
    font-size: clamp(28px, 7.2vw, 40px);
  }

  .demo-input {
    font-size: clamp(28px, 7vw, 38px);
    padding: 14px 0 10px;
  }

  .demo-textarea {
    min-height: 140px;
  }

  .demo-pill-btn {
    min-height: 62px;
    min-width: 126px;
    border-radius: 14px;
    font-size: clamp(24px, 7vw, 32px);
    padding: 0 24px;
  }

  .demo-ghost-btn {
    min-height: 62px;
    border-radius: 14px;
    font-size: clamp(20px, 5vw, 24px);
    padding: 0 20px;
  }

  .demo-select-surface {
    border-radius: 18px;
    padding: 12px;
  }

  .demo-option-btn,
  .demo-choice-btn {
    min-height: 66px;
    border-radius: 14px;
    padding: 0 16px;
    font-size: clamp(22px, 6vw, 28px);
  }

  .demo-choice-key {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 18px;
  }

  .demo-submit-note,
  .demo-hint,
  .demo-submit-status,
  .demo-inline-error {
    font-size: clamp(16px, 4.1vw, 20px);
  }
}

.business-topbar {
  position: sticky;
  top: 0;
  z-index: 45;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.business-topbar-inner {
  width: min(1280px, 100% - 4vw);
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.business-topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.business-topbar-brand img {
  width: auto;
  height: clamp(26px, 2.8vw, 42px);
}

.business-topbar-brand span {
  font-size: clamp(23px, 2vw, 42px);
  font-weight: 700;
  color: #171a2d;
  letter-spacing: 0.02em;
}

.business-topbar-nav {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.business-topbar-nav a {
  color: #161928;
  font-size: 17px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
}

.business-topbar-nav a:hover,
.business-topbar-nav a:focus-visible {
  outline: none;
  background: rgba(124, 77, 255, 0.12);
}

.business-demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(130deg, #7b43ff, #a35dff);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  min-height: 56px;
  padding: 0 26px;
  border: none;
}

.business-demo-btn:hover,
.business-demo-btn:focus-visible {
  outline: none;
  filter: brightness(1.05);
}

.business-demo-btn.large {
  min-height: 62px;
  min-width: min(100%, 320px);
  padding: 0 30px;
  font-size: 18px;
}

.business-main {
  padding-top: 14px;
}

.business-hero-surface,
.business-value-band,
.business-benefits-section {
  width: min(1280px, 100% - 4vw);
  margin: 0 auto;
}

.business-hero-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.94fr) minmax(360px, 1.06fr);
  gap: 22px;
  padding: 18px 0 24px;
}

.business-hero-copy {
  background: linear-gradient(150deg, rgba(58, 34, 111, 0.72), rgba(39, 22, 86, 0.8));
  border: 1px solid rgba(183, 150, 255, 0.32);
  border-radius: 24px;
  padding: 28px 24px;
}

.business-hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(58px, 7vw, 126px);
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.business-hero-copy h2 {
  margin-top: 10px;
  font-size: clamp(38px, 3.7vw, 66px);
  line-height: 0.96;
  font-weight: 800;
  font-style: italic;
  color: #d8c7ff;
}

.business-hero-copy p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.52;
  color: #e5d8ff;
}

.business-hero-copy .business-demo-btn {
  margin-top: 18px;
}

.business-story-list {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-top: 8px;
}

.business-story-item {
  border-bottom: 1px solid rgba(177, 145, 255, 0.25);
  padding: 14px 0 16px;
}

.business-story-item h3 {
  margin: 0;
  color: #f0e6ff;
  font-size: clamp(24px, 2.2vw, 40px);
  line-height: 1.05;
  font-weight: 800;
  font-style: italic;
}

.business-value-band {
  margin-top: 12px;
}

.business-value-shell {
  border-radius: 26px;
  border: 1px solid rgba(176, 141, 255, 0.34);
  background: linear-gradient(145deg, rgba(67, 41, 128, 0.82), rgba(44, 25, 95, 0.9));
  padding: 36px 34px;
  text-align: center;
}

.business-value-shell h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 6vw, 104px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.business-value-shell .business-value-lead {
  margin: 12px auto 0;
  max-width: 920px;
  font-size: clamp(28px, 2.8vw, 52px);
  line-height: 1.02;
  font-weight: 800;
  font-style: italic;
  color: #d2bfff;
}

.business-value-shell p {
  max-width: 980px;
  margin: 16px auto 0;
  color: #e2d4ff;
  font-size: 17px;
  line-height: 1.6;
}

.business-benefits-section {
  margin-top: 16px;
}

.business-benefits-shell {
  padding: 10px 0 26px;
}

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

.business-benefit-card {
  border-radius: 18px;
  background: rgba(52, 29, 104, 0.5);
  border: 1px solid rgba(160, 126, 244, 0.22);
  padding: 20px 18px;
}

.business-benefit-card h3 {
  margin-top: 0;
  font-size: clamp(30px, 2.6vw, 48px);
  line-height: 0.96;
  font-weight: 800;
  font-style: italic;
}

.business-benefit-card p {
  margin-top: 10px;
  color: #d9cbff;
  font-size: 16px;
  line-height: 1.55;
}

.business-capability-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.business-capability {
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(58, 33, 115, 0.82), rgba(40, 22, 92, 0.88));
  border: 1px solid rgba(173, 143, 248, 0.32);
  padding: 18px 18px 16px;
}

.business-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 24px;
  background: rgba(170, 126, 255, 0.28);
}

.business-capability h4 {
  margin-top: 10px;
  font-size: clamp(30px, 2.7vw, 48px);
  line-height: 0.96;
  font-style: italic;
  font-weight: 800;
}

.business-capability p {
  margin-top: 10px;
  color: #ddceff;
  line-height: 1.55;
}

.business-product-section,
.business-resources-section {
  margin-top: 12px;
  background: linear-gradient(170deg, #1a1035, #130b29);
}

.business-product-shell,
.business-resources-shell {
  width: min(1280px, 100% - 4vw);
  margin: 0 auto;
  padding: 36px 0;
}

.business-product-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(360px, 1.16fr);
  gap: 20px;
  align-items: stretch;
}

.business-product-copy .tag {
  color: #c49eff;
}

.business-product-copy h2 {
  margin-top: 8px;
  color: #f4f6ff;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 0.93;
  font-style: italic;
  font-weight: 800;
}

.business-product-copy div {
  margin-top: 20px;
}

.business-product-copy h3 {
  color: #ddc9ff;
  font-size: clamp(36px, 3.2vw, 58px);
  line-height: 0.93;
  font-weight: 800;
  font-style: italic;
}

.business-product-copy p {
  margin-top: 8px;
  color: #d2bdf8;
  font-size: 16px;
  line-height: 1.55;
}

.business-product-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.business-phone {
  position: absolute;
  border-radius: 30px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  background: #1a1235;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.48);
}

.business-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.business-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 30, 0.04), rgba(12, 8, 30, 0.65));
}

.business-phone figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: rgba(244, 236, 255, 0.95);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
  font-style: italic;
  font-weight: 800;
}

.business-phone.first {
  width: min(62%, 430px);
  aspect-ratio: 9 / 18;
  left: 8%;
  top: 5%;
}

.business-phone.second {
  width: min(58%, 390px);
  aspect-ratio: 9 / 18;
  right: 4%;
  bottom: 2%;
}

.business-resources-shell .tag {
  color: #c49eff;
}

.business-resources-shell h2 {
  margin-top: 8px;
  max-width: 980px;
  color: #f6f7ff;
  font-size: clamp(44px, 4.6vw, 78px);
  line-height: 0.93;
  font-weight: 800;
  font-style: italic;
}

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

.business-resource-card {
  position: relative;
  min-height: 260px;
  border-radius: 14px;
  overflow: hidden;
  background: #22124a;
}

.business-resource-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.62);
}

.business-resource-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(9, 10, 20, 0.34), rgba(7, 8, 16, 0.54));
}

.business-resource-card h3 {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(30px, 2.2vw, 40px);
  line-height: 0.98;
  font-weight: 800;
  font-style: italic;
}

.business-resource-card.text-only {
  padding: 22px;
  border: 1px solid rgba(177, 145, 255, 0.28);
  background: linear-gradient(145deg, rgba(53, 31, 106, 0.9), rgba(30, 16, 63, 0.95));
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.business-resource-card.text-only::after {
  display: none;
}

.business-resource-card.text-only h3 {
  position: static;
  inset: auto;
  margin: 0;
}

.business-resource-card.text-only:hover,
.business-resource-card.text-only:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(205, 182, 255, 0.78);
  box-shadow: 0 16px 36px rgba(18, 10, 42, 0.42);
}

.business-cta-band {
  background: linear-gradient(180deg, #291552, #1d103e);
  position: relative;
}

.business-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20px 20px, rgba(196, 165, 255, 0.18) 2px, transparent 2px);
  background-size: 62px 62px;
  opacity: 0.28;
  pointer-events: none;
}

.business-cta-shell {
  width: min(1280px, 100% - 4vw);
  margin: 0 auto;
  padding: 52px 0 54px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.business-cta-shell h2 {
  font-size: clamp(48px, 4.4vw, 74px);
  line-height: 0.93;
  font-weight: 800;
  font-style: italic;
}

.business-cta-shell p {
  margin-top: 12px;
  color: #e4d6ff;
  font-size: 17px;
}

.business-page .help-footer {
  background: linear-gradient(180deg, #120a24, #0e091d);
  border-top: 1px solid rgba(180, 148, 255, 0.24);
}

.business-page .help-footer-links h4 {
  color: #d5bbff;
}

.business-page .help-footer-links a,
.business-page .help-footer-brand p,
.business-page .help-footer-copy {
  color: rgba(235, 225, 255, 0.78);
}

.business-page .help-socials a {
  border-color: rgba(193, 165, 255, 0.42);
  background: rgba(107, 69, 188, 0.16);
}

.business-cta-shell .business-demo-btn {
  margin-top: 20px;
}

.business-footer {
  background: linear-gradient(180deg, #33384e, #30364a);
  color: #f2f3fa;
}

.business-footer-inner {
  width: min(1280px, 100% - 4vw);
  margin: 0 auto;
  padding: 42px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.business-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 18px 26px;
  width: 100%;
  max-width: 880px;
}

.business-footer-columns h4 {
  color: #ff3f79;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  margin-bottom: 12px;
}

.business-footer-columns a {
  display: block;
  color: rgba(241, 244, 255, 0.9);
  margin-bottom: 8px;
  font-size: 14px;
}

.business-footer-mark img {
  width: 92px;
  opacity: 0.9;
}

.business-footer-wordmark {
  width: min(1280px, 100% - 4vw);
  margin: 0 auto;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(120px, 21vw, 360px);
  line-height: 0.8;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  padding: 10px 0 14px;
}

.business-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  width: min(1280px, 100% - 4vw);
  margin: 0 auto;
  padding: 14px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: center;
  color: rgba(243, 246, 255, 0.86);
  font-size: 13px;
}

.business-footer-bottom a {
  color: rgba(243, 246, 255, 0.9);
}

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

  .business-product-shell {
    grid-template-columns: 1fr;
  }

  .business-product-visual {
    min-height: 460px;
  }

  .business-phone.first {
    width: min(56%, 340px);
    left: 14%;
  }

  .business-phone.second {
    width: min(52%, 320px);
    right: 12%;
  }

  .business-benefit-cards,
  .business-capability-grid,
  .business-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-footer-columns {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 900px) {
  .business-topbar-inner {
    min-height: 72px;
    width: min(1280px, 100% - 6vw);
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }

  .business-topbar-nav {
    width: 100%;
    justify-content: center;
  }

  .business-main {
    padding-top: 10px;
  }

  .business-hero-surface,
  .business-value-band,
  .business-benefits-section,
  .business-product-shell,
  .business-resources-shell,
  .business-cta-shell,
  .business-footer-inner,
  .business-footer-wordmark,
  .business-footer-bottom {
    width: min(1280px, 100% - 6vw);
  }

  .business-story-item h3 {
    font-size: clamp(26px, 5vw, 38px);
  }

  .business-value-shell h2 {
    font-size: clamp(44px, 8vw, 74px);
  }

  .business-value-shell .business-value-lead {
    font-size: clamp(24px, 5.6vw, 38px);
  }

  .business-benefit-card h3,
  .business-capability h4,
  .business-resource-card h3 {
    font-size: clamp(24px, 5vw, 34px);
  }

  .business-footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .business-topbar-brand span {
    font-size: clamp(20px, 7vw, 30px);
  }

  .business-topbar-nav a {
    font-size: 14px;
    padding: 6px 8px;
  }

  .business-demo-btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 14px;
  }

  .business-demo-btn.large {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 15px;
  }

  .business-hero-copy {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .business-hero-copy h1 {
    font-size: clamp(48px, 14vw, 80px);
  }

  .business-hero-copy h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .business-story-list,
  .business-benefit-cards,
  .business-capability-grid,
  .business-resource-grid,
  .business-footer-columns {
    grid-template-columns: 1fr;
  }

  .business-resource-card {
    min-height: 210px;
  }

  .business-resource-card.text-only {
    min-height: 210px;
    align-items: flex-start;
  }

  .business-value-shell {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .business-value-shell h2 {
    font-size: clamp(38px, 11vw, 62px);
  }

  .business-value-shell .business-value-lead {
    font-size: clamp(22px, 7vw, 32px);
    line-height: 1.03;
  }

  .business-value-shell p,
  .business-benefit-card p,
  .business-capability p,
  .business-product-copy p,
  .business-cta-shell p {
    font-size: 15px;
  }

  .business-product-shell,
  .business-resources-shell {
    padding: 24px 0;
  }

  .business-product-visual {
    min-height: 360px;
  }

  .business-phone {
    border-radius: 22px;
    border-width: 2px;
  }

  .business-phone.first {
    width: min(65%, 250px);
    left: 8%;
    top: 3%;
  }

  .business-phone.second {
    width: min(62%, 230px);
    right: 7%;
    bottom: 1%;
  }

  .business-cta-shell h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .business-footer-wordmark {
    letter-spacing: 0.03em;
  }

  .business-footer-bottom {
    justify-content: flex-start;
  }
}

.business-insight-page {
  min-height: 100%;
  background:
    radial-gradient(circle at -4% 46%, rgba(163, 191, 255, 0.32) 0, rgba(163, 191, 255, 0.32) 18%, transparent 18.5%),
    radial-gradient(circle at 104% 52%, rgba(172, 185, 255, 0.24) 0, rgba(172, 185, 255, 0.24) 17%, transparent 17.5%),
    linear-gradient(180deg, #f5f3ff 0%, #f2f1ff 48%, #f7f6ff 100%);
  color: #16162c;
}

.insight-main {
  position: relative;
  padding: clamp(34px, 5vw, 74px) 0 clamp(64px, 8vw, 108px);
}

.insight-main::before,
.insight-main::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 36px;
  border: 12px solid rgba(119, 143, 199, 0.26);
  transform: rotate(16deg);
  pointer-events: none;
}

.insight-main::before {
  left: clamp(8px, 1.8vw, 24px);
  top: clamp(220px, 28vw, 300px);
}

.insight-main::after {
  right: clamp(8px, 1.8vw, 24px);
  bottom: clamp(250px, 24vw, 320px);
}

.insight-shell {
  width: min(1080px, 100% - 6vw);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(80, 63, 148, 0.16);
  border-radius: 30px;
  padding: clamp(24px, 3.8vw, 54px) clamp(20px, 3.6vw, 58px) clamp(30px, 4.4vw, 58px);
  box-shadow:
    0 38px 70px rgba(31, 26, 55, 0.14),
    0 10px 24px rgba(35, 28, 68, 0.08);
  position: relative;
  z-index: 1;
}

.insight-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(102, 79, 190, 0.24);
  background: rgba(124, 77, 255, 0.1);
  color: #442d9e;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 11px 14px;
  text-decoration: none;
}

.insight-back-link::before {
  content: "<";
  font-size: 15px;
  line-height: 1;
}

.insight-back-link:hover,
.insight-back-link:focus-visible {
  outline: none;
  background: rgba(124, 77, 255, 0.17);
  border-color: rgba(90, 63, 181, 0.5);
}

.insight-kicker {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a5af5;
  font-weight: 800;
}

.insight-title {
  margin-top: 10px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
  color: #161228;
  font-weight: 800;
  font-style: italic;
}

.insight-subtitle {
  margin-top: 14px;
  max-width: 900px;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.4;
  color: #3c325f;
}

.insight-content {
  margin-top: 24px;
}

.insight-content h2 {
  margin-top: 26px;
  color: #17142a;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.08;
  font-weight: 800;
  font-style: italic;
}

.insight-content p {
  margin-top: 14px;
  color: #1e1b34;
  font-size: 20px;
  line-height: 1.72;
}

.insight-content ul {
  margin: 16px 0 0;
  padding-left: 28px;
  color: #1d1932;
}

.insight-content li {
  margin: 8px 0;
  font-size: 19px;
  line-height: 1.6;
}

.insight-content strong {
  color: #4b2bc2;
  font-weight: 800;
}

.insight-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.insight-cta .btn.btn-primary {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6d47f7, #9858ff);
  color: #ffffff;
  font-weight: 800;
  border: none;
}

.insight-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(92, 70, 184, 0.26);
  background: #f6f2ff;
  color: #37286f;
  font-weight: 700;
  text-decoration: none;
}

.insight-cta .btn.btn-primary:hover,
.insight-cta .btn.btn-primary:focus-visible,
.insight-cta-secondary:hover,
.insight-cta-secondary:focus-visible {
  outline: none;
  filter: brightness(1.05);
}

.business-insight-page .help-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .insight-main::before,
  .insight-main::after {
    width: 110px;
    height: 110px;
    border-width: 8px;
  }

  .insight-shell {
    width: min(1080px, 100% - 7vw);
    border-radius: 22px;
  }

  .insight-content p {
    font-size: 18px;
  }

  .insight-content li {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .insight-main {
    padding-top: 22px;
    padding-bottom: 56px;
  }

  .insight-main::before,
  .insight-main::after {
    display: none;
  }

  .insight-shell {
    width: min(1080px, 100% - 8vw);
    border-radius: 18px;
    padding: 18px 16px 24px;
  }

  .insight-kicker {
    margin-top: 14px;
    font-size: 12px;
  }

  .insight-title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .insight-subtitle {
    font-size: 17px;
  }

  .insight-content h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .insight-content p {
    font-size: 17px;
    line-height: 1.62;
  }

  .insight-content ul {
    padding-left: 22px;
  }

  .insight-content li {
    font-size: 16px;
    line-height: 1.5;
  }

  .insight-cta {
    margin-top: 24px;
    gap: 10px;
  }

  .insight-cta .btn.btn-primary,
  .insight-cta-secondary {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }
}

.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: 1080px) {
  .gift-shell,
  .gift-results,
  .gift-checkout-shell,
  .redeem-shell {
    width: min(1200px, 100% - 10vw);
  }

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

  .gift-preview-panel {
    order: 2;
  }

  .gift-admin-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .wyzfit-account-chip {
    max-width: min(52vw, 260px);
    padding: 7px 12px;
    font-size: 10px;
  }

  .wyzfit-account-trigger {
    max-width: none;
  }

  .nav-bar .wyzfit-account-menu {
    margin-left: 0;
  }

  .wyzfit-account-dropdown {
    min-width: 210px;
  }

  .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 .tag,
  .cta .tag {
    font-size: 13px;
  }

  .feature-zigzag .split-content h2,
  .cta-content h2 {
    font-size: clamp(34px, 8.5vw, 44px);
  }

  .feature-zigzag .split-content .muted,
  .cta-content .muted {
    font-size: 20px;
    line-height: 1.7;
  }

  .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;
  }

  .about-company-grid {
    grid-template-columns: 1fr;
  }

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

  .admin-shell {
    width: min(1200px, 100% - 10vw);
  }

  .admin-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .admin-controls {
    grid-template-columns: 1fr;
  }

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

  .admin-detail-panel {
    position: static;
  }

  .admin-toolbar-actions {
    width: 100%;
    justify-content: flex-start;
    padding: 8px;
  }
}

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

  .wyzfit-account-chip {
    max-width: min(58vw, 210px);
    padding: 6px 10px;
    font-size: 9px;
  }

  .wyzfit-account-trigger {
    max-width: none;
  }

  .home-header .header-actions .wyzfit-account-trigger {
    max-width: min(58vw, 210px);
  }

  .wyzfit-account-dropdown {
    min-width: 190px;
    right: 0;
  }

  .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 .logo img {
    width: 40px;
    height: 40px;
  }

  .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);
  }

  .gift-main,
  .gift-checkout-main,
  .redeem-main {
    padding: 26px 0 54px;
  }

  .gift-shell,
  .gift-results,
  .gift-checkout-shell,
  .redeem-shell {
    width: min(1200px, 100% - 10vw);
  }

  .gift-purchase-card,
  .gift-preview-panel,
  .gift-checkout-card,
  .redeem-card {
    padding: 20px 18px;
  }

  .gift-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .gift-row strong {
    font-size: 30px;
  }

  .gift-checkout-summary {
    grid-template-columns: 1fr;
  }

  .gift-checkout-two-col {
    grid-template-columns: 1fr;
  }

  .gift-two-col {
    grid-template-columns: 1fr;
  }

  .gift-mini-metrics {
    grid-template-columns: 1fr;
  }

  .gift-results-actions button {
    width: 100%;
    text-align: center;
  }

  .gift-link-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .gift-link-actions {
    width: 100%;
  }

  .gift-copy-link-btn {
    width: 100%;
    text-align: center;
  }

  .affiliate-shell,
  .affiliate-steps,
  .affiliate-details,
  .affiliate-application,
  .affiliate-thank-shell {
    width: min(1200px, 100% - 10vw);
  }

  .affiliate-intro {
    padding: 28px 22px;
  }

  .affiliate-card {
    padding: 24px 20px 22px;
    border-radius: 20px;
  }

  .affiliate-thank-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .affiliate-thank-actions .btn {
    width: 100%;
    text-align: center;
  }

  .affiliate-form-lock-actions {
    flex-direction: column;
  }

  .affiliate-form-lock a {
    width: 100%;
  }

  .admin-shell {
    width: min(1200px, 100% - 10vw);
  }

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

  .admin-product-metric-grid {
    grid-template-columns: 1fr;
  }

  .admin-product-manual-grid {
    grid-template-columns: 1fr;
  }

  .admin-filter-group {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .admin-toolbar-actions {
    flex-wrap: wrap;
  }

  .admin-action-btn {
    width: 100%;
    justify-content: center;
  }

  .affiliate-grid-two {
    grid-template-columns: 1fr;
  }

  .affiliate-auth-banner-actions {
    flex-direction: column;
  }

  .affiliate-auth-banner-actions a {
    width: 100%;
  }

  .affiliate-admin-link-row {
    flex-direction: column;
  }

  .affiliate-admin-link-row input,
  .affiliate-admin-link-row button {
    width: 100%;
  }

  .affiliate-details-grid {
    grid-template-columns: 1fr;
  }

  .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);
  }

  .cta-content .btn {
    padding: 15px 32px;
    font-size: 13px;
  }
}
