:root {
  --primary: #7E57C2;
  --primary-strong: #6B46C1;
  --primary-deep: #4C1D95;
  --primary-variant: #5E35B1;
  --secondary: #B39DDB;
  --accent: #E9DFFF;

  --background: #FCFAFF;
  --background-soft: #F7F1FF;
  --background-tint: #F4EEFF;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #FFFFFF;
  --surface-muted: #F7F4FC;
  --surface-dark: #211333;
  --surface-dark-2: #2B1843;

  --text-main: #221A34;
  --text-soft: #6D6580;
  --text-faint: #9189A3;
  --text-white-soft: rgba(255, 255, 255, 0.82);

  --border: rgba(126, 87, 194, 0.10);
  --border-strong: rgba(126, 87, 194, 0.18);
  --border-light: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 10px 30px rgba(71, 35, 136, 0.08);
  --shadow-md: 0 24px 60px rgba(71, 35, 136, 0.12);
  --shadow-lg: 0 35px 90px rgba(58, 26, 115, 0.18);
  --shadow-xl: 0 40px 110px rgba(46, 18, 95, 0.24);

  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 38px;
  --radius-pill: 999px;

  --container: min(1180px, 92%);
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(179, 157, 219, 0.16), transparent 25%),
    radial-gradient(circle at top right, rgba(126, 87, 194, 0.14), transparent 22%),
    linear-gradient(180deg, #FBF9FF 0%, #FFFFFF 36%, #FAF7FF 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition:
    color var(--transition),
    opacity var(--transition),
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(126, 87, 194, 0.08);
}

.nav-shell {
  padding: 10px 0;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary-variant);
  flex-shrink: 0;
}

.logo-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(126, 87, 194, 0.16);
  background: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.97rem;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-variant));
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(126, 87, 194, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--primary-variant);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
}

.mobile-menu-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(126, 87, 194, 0.04);
  border: 1px solid rgba(126, 87, 194, 0.06);
}

.mobile-menu-links a:hover {
  color: var(--primary-variant);
  background: rgba(126, 87, 194, 0.08);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0 72px;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(126, 87, 194, 0.08), transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(126, 87, 194, 0.12), transparent 18%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-1 {
  width: 540px;
  height: 540px;
  top: -180px;
  right: -160px;
  background: radial-gradient(circle, rgba(126, 87, 194, 0.18), transparent 66%);
}

.orb-2 {
  width: 460px;
  height: 460px;
  left: -140px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(179, 157, 219, 0.22), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.badge-premium {
  background: linear-gradient(180deg, rgba(126, 87, 194, 0.10), rgba(126, 87, 194, 0.06));
  color: var(--primary-variant);
  border: 1px solid rgba(126, 87, 194, 0.12);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  color: #1C1530;
  max-width: 10ch;
}

.hero-lead,
.hero p {
  margin: 0 0 30px;
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.98rem;
}

.premium-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.premium-meta i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-variant));
  box-shadow: 0 0 0 6px rgba(126, 87, 194, 0.08);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.trust-pill {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(126, 87, 194, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trust-pill strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.trust-pill span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

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

.btn-lg {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 1.03rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-variant) 100%);
  box-shadow: 0 22px 50px rgba(94, 53, 177, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 28px 62px rgba(94, 53, 177, 0.30);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-variant);
  border-color: rgba(126, 87, 194, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(126, 87, 194, 0.25);
}

.btn-white {
  background: #fff;
  color: var(--primary-variant);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.10);
}

.btn-white:hover {
  background: #fff;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.premium-phone {
  position: relative;
}

.phone-screen {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 372px;
  min-height: 710px;
  border-radius: 42px;
  padding: 24px 18px 22px;
  background:
    radial-gradient(circle at top right, rgba(148, 114, 229, 0.18), transparent 22%),
    linear-gradient(180deg, #32204F 0%, #221334 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 40px 100px rgba(49, 19, 98, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-notch {
  width: 34%;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 auto 16px;
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 18px;
  color: #F3ECFF;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mock-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #BCA8F2, #8D67DD);
}

.mock-profile-card {
  padding: 18px;
  border-radius: 26px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.09);
}

.mock-profile-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mock-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
}

.mock-profile-lines {
  display: grid;
  gap: 8px;
  flex: 1;
}

.mock-profile-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.mock-profile-lines span:first-child {
  width: 65%;
}

.mock-profile-lines span:last-child {
  width: 45%;
}

.mock-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mock-profile-badges span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(244, 239, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.mock-card {
  border-radius: 26px;
  padding: 20px 18px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-card-feature {
  background:
    radial-gradient(circle at top right, rgba(142, 108, 223, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
}

.mock-card strong {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.mock-card p {
  margin: 0;
  color: rgba(236, 230, 246, 0.84);
  font-size: 1rem;
  line-height: 1.55;
}

.mock-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.mock-actions div {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.float-chip {
  position: absolute;
  z-index: 2;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  color: var(--text-main);
  border: 1px solid rgba(126, 87, 194, 0.12);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.float-chip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: #261B39;
}

.float-chip span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.chip-1 {
  top: 86px;
  left: -28px;
}

.chip-2 {
  right: -22px;
  bottom: 170px;
}

.chip-3 {
  left: 10px;
  bottom: 54px;
}

/* Social proof strip */
.social-proof-strip {
  padding: 0 0 18px;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -14px;
}

.social-proof-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(126, 87, 194, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.social-proof-number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 87, 194, 0.10);
  color: var(--primary-variant);
  font-size: 1rem;
  font-weight: 800;
}

.social-proof-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.social-proof-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* Generic sections */
.section {
  padding: 100px 0;
}

.section-premium {
  padding-top: 92px;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(126, 87, 194, 0.04), rgba(126, 87, 194, 0.02));
}

.section-tint {
  background:
    radial-gradient(circle at top right, rgba(126, 87, 194, 0.08), transparent 24%),
    linear-gradient(180deg, #FAF8FF 0%, #F6F1FD 100%);
}

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

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-soft);
  letter-spacing: -0.02em;
}

.kicker-dark {
  color: rgba(255, 255, 255, 0.74);
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: #1E1730;
}

.section-subtitle {
  margin: 0 auto;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.premium-grid {
  align-items: stretch;
}

/* Cards */
.card {
  position: relative;
  min-height: 100%;
  padding: 34px 28px;
  border-radius: 30px;
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card-lift:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.card h3 {
  margin: 0 0 14px;
  font-size: 1.95rem;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.card-soft {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.card-purple {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 22%),
    linear-gradient(180deg, #7E57C2 0%, #6037B4 100%);
  color: #fff;
  border-color: rgba(126, 87, 194, 0.24);
  box-shadow: 0 26px 60px rgba(94, 53, 177, 0.20);
}

.card-purple p,
.card-purple .text-link {
  color: rgba(255,255,255,0.88);
}

.card-purple .card-icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.card-dark {
  background:
    radial-gradient(circle at top right, rgba(109, 78, 173, 0.16), transparent 24%),
    linear-gradient(180deg, #26173F 0%, #1B102C 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 26px 60px rgba(27, 14, 48, 0.28);
}

.card-dark p {
  color: rgba(244,240,250,0.82);
}

.card-featured::after {
  content: "Popular";
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.card-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 87, 194, 0.10);
  color: var(--primary-variant);
  font-size: 1.65rem;
  font-weight: 800;
}

.card-icon-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Feature band */
.feature-band {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    linear-gradient(135deg, #211433 0%, #2B1845 48%, #1A1028 100%);
  color: #fff;
}

.feature-band::before {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 87, 194, 0.22), transparent 70%);
}

.feature-band::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 157, 219, 0.16), transparent 70%);
}

.feature-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.feature-band h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.feature-band p {
  margin: 0;
  color: rgba(241, 234, 250, 0.82);
  font-size: 1.06rem;
  max-width: 610px;
}

.feature-band-points {
  display: grid;
  gap: 18px;
}

.feature-band-point {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.feature-band-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.feature-band-point span {
  color: rgba(241, 234, 250, 0.78);
}

/* Difference section */
.difference-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.difference-panel {
  height: 100%;
  padding: 34px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(126, 87, 194, 0.10), transparent 24%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(126, 87, 194, 0.10);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.difference-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(126, 87, 194, 0.08);
  color: var(--primary-variant);
  font-size: 0.86rem;
  font-weight: 800;
}

.difference-panel h3 {
  margin: 0 0 14px;
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.difference-panel p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.difference-points {
  display: grid;
  gap: 18px;
}

.difference-point {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(126, 87, 194, 0.08);
  box-shadow: var(--shadow-sm);
}

.difference-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.difference-point span {
  color: var(--text-soft);
}

.difference-point-featured {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 20%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-variant) 100%);
  border-color: rgba(126, 87, 194, 0.24);
  box-shadow: 0 24px 58px rgba(94, 53, 177, 0.18);
}

.difference-point-featured strong,
.difference-point-featured span {
  color: #fff;
}

/* Blog */
.blog-card-premium {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(126, 87, 194, 0.08);
  color: var(--primary-variant);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-card-premium h3 {
  font-size: 1.72rem;
  margin-bottom: 12px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  color: var(--primary-variant);
}

.text-link:hover {
  color: var(--primary);
}

/* CTA */
.cta-section {
  padding: 14px 0 104px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 36px;
  padding: 62px 32px;
  color: #fff;
  box-shadow: var(--shadow-xl);
}

.cta-box-premium {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.10), transparent 26%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-variant) 100%);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}

.cta-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.cta-box h2,
.cta-box h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.cta-box p {
  position: relative;
  z-index: 1;
  margin: 0 auto 26px;
  max-width: 720px;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1C122C 0%, #120A1F 100%);
  color: #D9D1E9;
  padding: 58px 0 0;
  margin-top: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 30px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: #D9D1E9;
}

.footer-grid p {
  margin: 0 0 10px;
  line-height: 1.75;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-size: 1.02rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 10px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(217, 209, 233, 0.72);
  font-size: 0.94rem;
}

/* Generic content helpers for other pages */
.page-hero,
.page-shell,
.blog-shell,
.contact-shell {
  padding: 72px 0;
}

.content-card,
.page-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(126, 87, 194, 0.08);
  box-shadow: var(--shadow-sm);
}

.blog-content {
  color: var(--text-main);
  font-size: 1.06rem;
  line-height: 1.9;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #211732;
}

.blog-content img {
  border-radius: 22px;
  margin: 26px 0;
  box-shadow: var(--shadow-sm);
}

.blog-content blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  background: rgba(126, 87, 194, 0.05);
  border-radius: 18px;
}

.blog-content code {
  background: rgba(126, 87, 194, 0.08);
  padding: 2px 8px;
  border-radius: 8px;
}

.blog-content pre {
  background: #1D132F;
  color: #F4EFFF;
  padding: 18px;
  border-radius: 16px;
  overflow-x: auto;
  margin: 22px 0;
}

.blog-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(126, 87, 194, 0.12);
  box-shadow: 0 12px 30px rgba(94, 53, 177, 0.08);
}

.blog-content thead {
  background: linear-gradient(135deg, #F5EFFD, #FAF8FF);
}

.blog-content th {
  padding: 16px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #2A2040;
  text-align: left;
  border-bottom: 1px solid rgba(126, 87, 194, 0.12);
}

.blog-content td {
  padding: 14px 16px;
  color: #3A2F4D;
  border-bottom: 1px solid rgba(126, 87, 194, 0.08);
}

.blog-content tbody tr:hover {
  background: #FCF8FF;
}

.blog-content tr:last-child td {
  border-bottom: none;
}

.blog-ad {
  margin: 32px 0;
  clear: both;
  overflow: hidden;
  text-align: center;
}

.blog-ad ins {
  display: block;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .feature-band-grid,
  .difference-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .chip-1 {
    left: 0;
  }

  .chip-2 {
    right: 0;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    padding: 64px 0 52px;
  }

  .section,
  .feature-band {
    padding: 76px 0;
  }

  .cta-box {
    padding: 42px 22px;
    border-radius: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-grid > div {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 20px 18px;
  }

  .nav-shell {
    padding: 10px 0 12px;
  }

  .nav {
    flex-direction: row;
    align-items: center;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease,
      margin-top 0.25s ease;
    margin-top: 0;
  }

  .mobile-menu.is-open {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 14px;
  }

  .mobile-menu-links {
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(126, 87, 194, 0.10);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    min-height: 680px;
  }

  .float-chip {
    min-width: 164px;
  }
}

@media (max-width: 640px) {
  .logo {
    font-size: 1rem;
  }

  .logo-mark {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.8rem);
    max-width: 100%;
  }

  .hero-lead,
  .hero p,
  .section-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 12px 18px;
    font-size: 0.94rem;
  }

  .phone-stage {
    max-width: 100%;
  }

  .phone-screen {
    max-width: 100%;
    min-height: auto;
    padding: 22px 16px 20px;
  }

  .mock-card strong {
    font-size: 1.35rem;
  }

  .mock-actions div {
    width: 56px;
    height: 56px;
  }

  .float-chip {
    position: static;
    margin: 0 0 12px;
    width: 100%;
  }

  .social-proof-card,
  .card,
  .difference-panel,
  .difference-point {
    border-radius: 24px;
  }

  .blog-content {
    font-size: 1rem;
    line-height: 1.8;
  }

  .blog-content h2 {
    font-size: 1.4rem;
  }

  .blog-content h3 {
    font-size: 1.15rem;
  }

  .blog-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}


/* =========================
   Play Store Button
========================= */

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 800;
  line-height: 1;
  transition: all var(--transition);
}

.store-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-btn-icon svg {
  display: block;
}

/* Text inside button */
.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-btn-text small {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 2px;
}

.store-btn-text strong {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

/* Light version (CTA section) */
.store-btn-light {
  background: #fff;
  color: var(--primary-variant);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.store-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(0,0,0,0.16);
}

/* Hero button enhancement */
.btn-primary.store-btn {
  padding-left: 16px;
  padding-right: 22px;
}

/* CTA alignment */
.cta-store-actions {
  justify-content: center;
}


/* =========================
   Premium Download Upgrade
========================= */

.hero-actions-premium {
  align-items: center;
}

.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.store-btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 42%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.store-btn:hover::before {
  opacity: 1;
  transform: scale(1);
}

.store-btn:hover {
  transform: translateY(-3px);
}

.store-btn-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-btn-icon svg {
  display: block;
  flex-shrink: 0;
}

.store-btn-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.08;
}

.store-btn-text small {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.88;
  margin-bottom: 3px;
}

.store-btn-text strong {
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.store-btn-hero {
  box-shadow:
    0 22px 52px rgba(94, 53, 177, 0.28),
    0 0 0 1px rgba(255,255,255,0.08) inset;
}

.store-btn-hero:hover {
  box-shadow:
    0 28px 70px rgba(94, 53, 177, 0.34),
    0 0 0 1px rgba(255,255,255,0.12) inset;
}

.store-btn-light {
  background: #fff;
  color: var(--primary-variant);
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.store-btn-light:hover {
  box-shadow: 0 24px 50px rgba(0,0,0,0.16);
}

.download-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-proof-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(126, 87, 194, 0.10);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.download-proof-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 87, 194, 0.10);
  color: var(--primary-variant);
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.download-proof-badge strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.download-proof-badge small {
  display: block;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.download-proof-note {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  padding-left: 4px;
}

.cta-store-actions {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.cta-download-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cta-download-meta span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
}

.mobile-install-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(28, 18, 44, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 45px rgba(16, 8, 28, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-install-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mobile-install-copy strong {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.mobile-install-copy span {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
}

.mobile-install-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-variant) 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(94, 53, 177, 0.28);
}

.mobile-install-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hero-actions-premium {
    flex-direction: column;
    align-items: stretch;
  }

  .download-proof {
    width: 100%;
  }

  .download-proof-badge {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .mobile-install-bar {
    display: flex;
  }

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

  .store-btn-text {
    align-items: flex-start;
  }

  .cta-download-meta {
    gap: 8px;
  }

  .cta-download-meta span {
    font-size: 0.8rem;
  }
}



/* =========================
   BLOG ARTICLE / BLOG LINKS
   ========================= */

.blog-article {
  position: relative;
  padding: 34px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(126, 87, 194, 0.10);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 22px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.blog-cover {
  width: 100%;
  border-radius: 26px;
  margin: 22px 0 30px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.blog-content {
  font-size: 1.04rem;
  color: var(--text-main);
}

.blog-content > *:first-child {
  margin-top: 0;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #1E1730;
}

.blog-content h2 {
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
}

.blog-content h3 {
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
}

.blog-content p,
.blog-content ul,
.blog-content ol,
.blog-content blockquote {
  margin: 0 0 1.15rem;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.35rem;
}

.blog-content li {
  margin-bottom: 0.7rem;
  color: var(--text-main);
}

.blog-content strong {
  color: #1D1630;
}

.blog-content blockquote {
  margin: 1.4rem 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(180deg, rgba(126, 87, 194, 0.08), rgba(126, 87, 194, 0.04));
  color: #2B2140;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.blog-content hr {
  margin: 2rem 0;
  border: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(126, 87, 194, 0.18),
    transparent
  );
}

/* Premium inline links inside article body */
.blog-content a {
  color: var(--primary-deep);
  font-weight: 700;
  text-decoration: none;
  background-image: linear-gradient(
    180deg,
    transparent 62%,
    rgba(126, 87, 194, 0.18) 62%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-bottom: 1px solid rgba(126, 87, 194, 0.22);
  padding: 0 2px;
  border-radius: 4px;
  transition:
    color var(--transition),
    background-size var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.blog-content a:hover {
  color: var(--primary-variant);
  background-image: linear-gradient(
    180deg,
    rgba(126, 87, 194, 0.10),
    rgba(126, 87, 194, 0.16)
  );
  border-bottom-color: rgba(126, 87, 194, 0.45);
  box-shadow: 0 8px 22px rgba(126, 87, 194, 0.10);
}

.blog-content a:active {
  transform: translateY(1px);
}

.blog-content a:focus-visible {
  outline: 3px solid rgba(126, 87, 194, 0.18);
  outline-offset: 3px;
}

/* Make links in lists look more intentional */
.blog-content li a {
  display: inline;
  line-height: 1.6;
}

/* Premium Related Reads block at the bottom of markdown */
.blog-content h2:last-of-type + ul,
.blog-content h3:last-of-type + ul {
  margin-top: 0.9rem;
}

/* Specifically target the final related reads list */
.blog-content h2 + ul li,
.blog-content h3 + ul li {
  margin-bottom: 0.85rem;
}

/* Better styling for markdown lists that contain links */
.blog-content ul li a,
.blog-content ol li a {
  color: #251a3a;
}

.blog-content ul li a:hover,
.blog-content ol li a:hover {
  color: var(--primary-variant);
}

/* Optional: make the final related links feel premium cards */
.blog-content h2 + ul,
.blog-content h3 + ul {
  list-style: none;
  padding-left: 0;
}

.blog-content h2 + ul li,
.blog-content h3 + ul li {
  position: relative;
  padding-left: 0;
}

.blog-content h2 + ul li a,
.blog-content h3 + ul li a {
  display: block;
  padding: 14px 16px 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(126, 87, 194, 0.06), rgba(126, 87, 194, 0.03));
  border: 1px solid rgba(126, 87, 194, 0.10);
  color: #211733;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(71, 35, 136, 0.05);
}

.blog-content h2 + ul li a:hover,
.blog-content h3 + ul li a:hover {
  transform: translateX(4px);
  border-color: rgba(126, 87, 194, 0.20);
  box-shadow: 0 18px 34px rgba(71, 35, 136, 0.10);
  color: var(--primary-variant);
}

/* Divider + footer */
.blog-divider {
  margin: 2.4rem 0 1.8rem;
  border: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(126, 87, 194, 0.18),
    transparent
  );
}

.blog-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Blog list page links */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(126, 87, 194, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(126, 87, 194, 0.16);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 20px;
}

.blog-card-title {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.blog-card-title a {
  color: #1F1730;
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-title a:hover {
  color: var(--primary-variant);
}

.blog-card-excerpt {
  margin-bottom: 18px;
}

.blog-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(126, 87, 194, 0.08);
  color: var(--primary-variant);
  border: 1px solid rgba(126, 87, 194, 0.10);
  font-weight: 800;
}

.blog-read-link:hover {
  background: rgba(126, 87, 194, 0.12);
  border-color: rgba(126, 87, 194, 0.18);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-article {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .blog-card-body {
    padding: 18px;
  }

  .blog-content h2 + ul li a,
  .blog-content h3 + ul li a {
    padding: 13px 14px;
  }
}

/* =========================
   Premium Base Layout Extras
========================= */

.nav-premium {
  gap: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(126, 87, 194, 0.08);
  border: 1px solid rgba(126, 87, 194, 0.12);
  color: var(--primary-variant);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.nav-store-btn:hover {
  background: rgba(126, 87, 194, 0.12);
  transform: translateY(-1px);
}

.nav-store-btn-icon,
.mobile-menu-store-btn-icon,
.footer-store-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-menu-shell {
  display: grid;
  gap: 14px;
}

.mobile-menu-cta {
  padding: 0 14px 14px;
}

.mobile-menu-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-variant) 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(94, 53, 177, 0.24);
}

.mobile-menu-store-btn:hover {
  transform: translateY(-1px);
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  margin: 8px 0 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.footer-store-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.footer-contact-list p {
  margin: 0 0 8px;
}

body.menu-open {
  overflow: hidden;
}

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



/* =========================================
   BLOG + DESKTOP/LAPTOP POLISH
   Add at the very end of style.css
========================================= */

/* Better desktop header behavior */
@media (max-width: 1180px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease,
      margin-top 0.25s ease;
    margin-top: 0;
  }

  .mobile-menu.is-open {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 14px;
  }

  .mobile-menu-links {
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(126, 87, 194, 0.10);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

/* Blog list shell */
.blog-list-section {
  padding-top: 84px;
}

.blog-list-container {
  max-width: 1280px;
}

.blog-list-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.blog-list-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Better desktop grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(126, 87, 194, 0.10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(126, 87, 194, 0.18);
}

.blog-card-image-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #f6f0ff, #fbf8ff);
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.04);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 22px;
}

.blog-card-title {
  margin: 0 0 14px;
  font-size: 1.34rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.blog-card-title a:hover {
  color: var(--primary-variant);
}

.blog-card-excerpt {
  margin: 0 0 20px;
  line-height: 1.8;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(126, 87, 194, 0.08);
}

.blog-read-link {
  font-weight: 800;
  color: var(--primary-variant);
  white-space: nowrap;
}

/* Blog detail shell */
.blog-detail-section {
  padding-top: 84px;
}

.blog-detail-container {
  width: min(920px, 92%);
}

.blog-article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(126, 87, 194, 0.10);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.blog-eyebrow {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-detail-title {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  max-width: 16ch;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--text-soft);
  font-weight: 700;
}

.blog-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 26px;
  margin: 0 0 30px;
  box-shadow: var(--shadow-sm);
}

.blog-content {
  font-size: 1.08rem;
  line-height: 1.95;
}

.blog-content > *:first-child {
  margin-top: 0;
}

.blog-content h2 {
  margin-top: 2.4em;
  margin-bottom: 0.7em;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.blog-content h3 {
  margin-top: 2em;
  margin-bottom: 0.65em;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
}

.blog-content p,
.blog-content ul,
.blog-content ol,
.blog-content blockquote,
.blog-content pre,
.blog-content table {
  margin-top: 0;
  margin-bottom: 1.35em;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.25rem;
}

.blog-content li + li {
  margin-top: 0.45rem;
}

.blog-divider {
  margin: 34px 0 24px;
  border: 0;
  border-top: 1px solid rgba(126, 87, 194, 0.10);
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* Laptop refinement */
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-detail-container {
    width: min(860px, 92%);
  }

  .blog-detail-title {
    max-width: 18ch;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .blog-list-section,
  .blog-detail-section {
    padding-top: 72px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-article {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .blog-detail-container {
    width: min(760px, 92%);
  }

  .blog-detail-title {
    max-width: 100%;
  }

  .blog-card-body {
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .blog-list-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .blog-article {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .blog-cover {
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .blog-card {
    border-radius: 24px;
  }

  .blog-card-title {
    font-size: 1.2rem;
  }

  .blog-card-footer,
  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Big desktop polish */
@media (min-width: 1400px) {
  .blog-list-container {
    max-width: 1380px;
  }

  .blog-grid {
    gap: 32px;
  }

  .blog-article {
    padding: 42px;
  }

  .blog-detail-container {
    width: min(980px, 90%);
  }
}

/* =========================================
   HOME HERO DESKTOP / LAPTOP UPGRADE
========================================= */

.hero-desktop-upgrade {
  padding: 112px 0 88px;
}

.hero-desktop-upgrade::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(
    180deg,
    rgba(251, 249, 255, 0) 0%,
    rgba(251, 249, 255, 0.78) 55%,
    rgba(251, 249, 255, 1) 100%
  );
  pointer-events: none;
}

.orb-3 {
  width: 420px;
  height: 420px;
  right: 24%;
  top: 16%;
  background: radial-gradient(circle, rgba(126, 87, 194, 0.10), transparent 68%);
}

.hero-grid-premium {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 76px;
  align-items: center;
}

.hero-copy-premium {
  max-width: 690px;
  position: relative;
  z-index: 2;
}

.hero-copy-premium h1 {
  max-width: 11ch;
  margin-bottom: 24px;
}

.hero-copy-premium .hero-lead {
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 34px;
}

.hero-actions-premium {
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-actions-premium .btn-secondary {
  min-width: 180px;
}

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

.phone-stage-premium {
  max-width: 560px;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow-ring {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(126, 87, 194, 0.16) 0%, rgba(126, 87, 194, 0.07) 34%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.phone-stage-premium .premium-phone {
  transform: perspective(1400px) rotateY(-8deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.phone-stage-premium:hover .premium-phone {
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg) translateY(-6px);
}

.phone-stage-premium .phone-screen {
  max-width: 390px;
  min-height: 735px;
  box-shadow:
    0 48px 110px rgba(49, 19, 98, 0.30),
    0 22px 50px rgba(49, 19, 98, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-stage-premium .float-chip {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(126, 87, 194, 0.10);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.phone-stage-premium .float-chip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.phone-stage-premium .float-chip span {
  display: block;
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.45;
}

.phone-stage-premium .chip-1 {
  top: 11%;
  left: -6%;
}

.phone-stage-premium .chip-2 {
  top: 34%;
  right: -8%;
}

.phone-stage-premium .chip-3 {
  bottom: 12%;
  left: -2%;
}

.hero-trust-row {
  margin-top: 34px;
}

.trust-pill {
  min-height: 102px;
}

.download-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(126, 87, 194, 0.10);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.download-proof-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.download-proof-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-variant));
  box-shadow: 0 14px 34px rgba(94, 53, 177, 0.25);
}

.download-proof-badge strong {
  display: block;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.download-proof-badge small {
  display: block;
  color: var(--text-soft);
  font-size: 0.82rem;
  margin-top: 2px;
}

.download-proof-note {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(126, 87, 194, 0.08);
  color: var(--primary-variant);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

/* Large desktop */
@media (min-width: 1400px) {
  .hero-desktop-upgrade {
    padding: 126px 0 96px;
  }

  .hero-grid-premium {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
    gap: 92px;
  }

  .hero-copy-premium {
    max-width: 740px;
  }

  .hero-copy-premium h1 {
    font-size: clamp(3.6rem, 5vw, 5.7rem);
    max-width: 10.5ch;
  }

  .phone-stage-premium {
    max-width: 620px;
    min-height: 790px;
  }

  .hero-glow-ring {
    width: 620px;
    height: 620px;
  }

  .phone-stage-premium .chip-1 {
    left: -10%;
  }

  .phone-stage-premium .chip-2 {
    right: -11%;
  }
}

/* Laptop */
@media (max-width: 1280px) {
  .hero-grid-premium {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 52px;
  }

  .hero-copy-premium h1 {
    max-width: 12ch;
  }

  .phone-stage-premium {
    max-width: 500px;
    min-height: 700px;
  }

  .phone-stage-premium .phone-screen {
    max-width: 360px;
    min-height: 700px;
  }

  .phone-stage-premium .float-chip {
    max-width: 200px;
  }

  .phone-stage-premium .chip-1 {
    left: -2%;
  }

  .phone-stage-premium .chip-2 {
    right: -3%;
  }

  .phone-stage-premium .chip-3 {
    left: 1%;
  }
}

/* Small laptop / big tablet */
@media (max-width: 1080px) {
  .hero-desktop-upgrade {
    padding: 92px 0 72px;
  }

  .hero-grid-premium {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy-premium {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy-premium h1,
  .hero-copy-premium .hero-lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions-premium,
  .hero-meta.premium-meta {
    justify-content: center;
  }

  .hero-trust-row {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual-premium {
    justify-content: center;
  }

  .phone-stage-premium {
    min-height: auto;
    padding-top: 12px;
  }

  .phone-stage-premium .premium-phone {
    transform: none;
  }

  .phone-stage-premium:hover .premium-phone {
    transform: none;
  }

  .phone-stage-premium .chip-1 {
    top: 6%;
    left: 0;
  }

  .phone-stage-premium .chip-2 {
    top: 34%;
    right: 0;
  }

  .phone-stage-premium .chip-3 {
    bottom: 7%;
    left: 2%;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .hero-desktop-upgrade {
    padding: 84px 0 64px;
  }

  .hero-actions-premium {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions-premium .btn,
  .download-proof {
    width: 100%;
  }

  .download-proof {
    justify-content: space-between;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .phone-stage-premium {
    max-width: 430px;
  }

  .phone-stage-premium .float-chip {
    display: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-desktop-upgrade {
    padding: 76px 0 56px;
  }

  .hero-copy-premium h1 {
    max-width: 100%;
  }

  .hero-copy-premium .hero-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .phone-stage-premium .phone-screen {
    max-width: 100%;
    min-height: 660px;
    border-radius: 34px;
  }

  .download-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-proof-note {
    white-space: normal;
  }
}