@charset "UTF-8";
:root {
  --cyan: #0FFFF9;
  --hot-pink: #FF4081;
  --deep-purple: #3D1570;
  --darkest-purple: #0E0840;
  --light-purple: #F0E6FF;
  --dark-text: #2D1B4E;
  --chart-purple: #9D7FFF;
  --beige: #EFE3D7;
  --manifest-bg: #EFE3D7;
  --sp-micro: 4px;
  --sp-base: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 32px;
  --sp-xl: 48px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;
  --r-subtle: 2px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;
  --font-heading: Montserrat, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --fs-h1: 84px;
  --fs-h2: 40px;
  --fs-h3: 30px;
  --fs-h4: 20px;
  --fs-p-lg: 20px;
  --fs-p: 16px;
  --fs-p-sm: 13px;
}

[data-theme=dark] {
  --bg: #0E0840;
  --surface: #3D1570;
  --heading-color: #0FFFF9;
  --body-color: #F0E6FF;
  --card-border: #0FFFF9;
  --caption-color: #0FFFF9;
  --link-color: #0FFFF9;
  --display-color: #FFFFFF;
  --accent-btn-text: #FFFFFF;
  --secondary-btn-text: #0FFFF9;
  --nav-bg: rgba(26, 4, 64, 0.8);
  --card-border-soft: rgba(15, 255, 249, 0.25);
  --shadow-sm: 0 2px 8px rgba(15, 255, 249, 0.15);
  --shadow-md: 0 4px 16px rgba(15, 255, 249, 0.2);
  --shadow-lg: 0 8px 32px rgba(15, 255, 249, 0.25);
  --shadow-glow: 0 0 20px rgba(15, 255, 249, 0.3);
  --shadow-pink: 0 0 20px rgba(255, 64, 129, 0.3);
}

[data-theme=light] {
  --bg: #FFFFFF;
  --surface: #F5F5F7;
  --heading-color: #0E0840;
  --body-color: #2D1B4E;
  --card-border: #E5E7EB;
  --caption-color: #3D1570;
  --link-color: #0E0840;
  --display-color: #0E0840;
  --accent-btn-text: #0E0840;
  --secondary-btn-text: #0E0840;
  --nav-bg: rgba(240, 240, 245, 0.85);
  --card-border-soft: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(15, 255, 249, 0.15);
  --shadow-pink: 0 0 20px rgba(255, 64, 129, 0.15);
}

.t-white {
  color: #FFFFFF;
}

.t-chart {
  color: var(--chart-purple);
}

.t-darkest {
  color: var(--darkest-purple);
}

.t-dim {
  color: var(--light-purple);
  opacity: 0.5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

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

a {
  color: var(--link-color);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.display-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1.05;
  color: var(--display-color);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

h4 {
  font-size: 20px;
}

.caption {
  font-size: 12px;
  font-weight: 600;
  color: var(--caption-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

*:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* =========================================================
   Buttons
   ========================================================= */
.ds-btn, .ds-btn-sm, .ds-btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, filter 0.15s, background 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.ds-btn {
  padding: 16px 32px;
  font-size: 16px;
}

.ds-btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}

.ds-btn-lg {
  padding: 20px 48px;
  font-size: 18px;
}

.btn-primary {
  background: var(--cyan);
  color: var(--darkest-purple);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary-btn-text);
  border: 2px solid var(--cyan);
}

.btn-secondary:hover {
  background: rgba(15, 255, 249, 0.1);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-accent {
  background: var(--hot-pink);
  color: var(--accent-btn-text);
  box-shadow: var(--shadow-pink);
}

.btn-accent:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.btn-accent:active {
  transform: scale(0.98);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.2s;
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* =========================================================
   Nav
   ========================================================= */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--sp-lg);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--heading-color);
  text-decoration: none;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  color: #FFFFFF;
}

[data-theme=light] .brand-logo {
  color: var(--darkest-purple);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--cyan);
  display: grid;
  place-items: center;
  color: var(--darkest-purple);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-glow);
}

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

.nav-links {
  display: flex;
  gap: var(--sp-md);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--link-color);
  padding: 4px 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
  color: var(--hot-pink);
  border-bottom-color: var(--hot-pink);
}

.nav-cta {
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 20px;
  padding: 8px;
  border-radius: var(--r-md);
  cursor: pointer;
  color: var(--link-color);
}

.theme-toggle:hover {
  background: rgba(15, 255, 249, 0.1);
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: inline;
}

[data-theme=light] .theme-toggle .icon-moon {
  display: none;
}

[data-theme=light] .theme-toggle .icon-sun {
  display: inline;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--link-color);
}

/* =========================================================
   Layout helpers
   ========================================================= */
main {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

section {
  padding: var(--sp-3xl) 0;
  position: relative;
  background: var(--bg);
  color: var(--body-color);
  transition: background 0.3s, color 0.3s;
}

/* Section-level theme override (alternation) also applies to descendants */
section[data-theme] {
  background: var(--bg);
}

.section-head {
  margin-bottom: var(--sp-xl);
  max-width: 780px;
}

.section-num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--hot-pink);
  letter-spacing: 3px;
  margin-bottom: var(--sp-sm);
  text-transform: uppercase;
}

.section-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--body-color);
  max-width: 640px;
  margin-top: var(--sp-sm);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: var(--sp-2xl) 0 var(--sp-3xl);
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 50% at 85% 35%, rgba(255, 64, 129, 0.22), transparent 70%), radial-gradient(50% 40% at 10% 75%, rgba(15, 255, 249, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-theme=light] .hero::before {
  background: radial-gradient(55% 50% at 85% 35%, rgba(255, 64, 129, 0.1), transparent 70%), radial-gradient(50% 40% at 10% 75%, rgba(15, 255, 249, 0.12), transparent 70%);
}

.hero > .container-wide {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  padding-left: clamp(0px, 6vw, 120px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255, 64, 129, 0.12);
  border: 1px solid rgba(255, 64, 129, 0.3);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--sp-md);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hot-pink);
  box-shadow: 0 0 8px var(--hot-pink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero h1 {
  margin-bottom: var(--sp-md);
}

.hero h1 .accent {
  color: var(--hot-pink);
}

.hero h1 .cyan {
  color: var(--cyan);
}

.hero h1 .sub {
  color: var(--chart-purple);
}

[data-theme=light] .hero h1 .sub {
  color: var(--deep-purple);
}

.hero-lead {
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.5;
  margin: var(--sp-lg) 0 var(--sp-xl);
  color: var(--body-color);
  max-width: 700px;
  opacity: 0.9;
}

.lead-line {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .lead-line {
    white-space: normal;
  }
}
/* Rotating words in lead — inline-flow, baseline aligned */
.rotator {
  display: inline-block;
  vertical-align: baseline;
  line-height: inherit;
  color: var(--hot-pink);
  font-weight: 400;
  white-space: nowrap;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotator .rot-current {
  white-space: nowrap;
}

.rot-current {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rot-current.is-out {
  opacity: 0;
  transform: translateY(-6px);
}

.rot-current.is-in {
  opacity: 0;
  transform: translateY(6px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--sp-xl);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--light-purple);
  background: rgba(255, 64, 129, 0.08);
  border: 1px solid rgba(255, 64, 129, 0.4);
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
  letter-spacing: 0.3px;
}

.pill-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--hot-pink);
  filter: drop-shadow(0 0 3px rgba(255, 64, 129, 0.4));
  animation: iconGlow 2.5s ease-in-out infinite;
}

.hero-pill:nth-child(2) .pill-icon {
  animation-delay: 0.8s;
}

.hero-pill:nth-child(3) .pill-icon {
  animation-delay: 1.6s;
}

@keyframes iconGlow {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(255, 64, 129, 0.3));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(255, 64, 129, 0.8));
    transform: scale(1.15);
  }
}
[data-theme=light] .hero-pill {
  color: var(--dark-text);
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}

.hero-meta {
  display: flex;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--card-border-soft);
}

.hero-meta .item .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--cyan);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hero-meta .item .lbl {
  font-size: 13px;
  color: var(--body-color);
  opacity: 0.8;
}

/* Phone carousel — 3D rotating showroom */
.phone-carousel {
  perspective: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  position: relative;
}

.carousel-track {
  position: relative;
  width: 320px;
  height: 660px;
  transform-style: preserve-3d;
}

.carousel-phone {
  position: absolute;
  inset: 0;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.carousel-phone[data-pos=front] {
  transform: translateZ(200px) scale(1);
  opacity: 1;
  filter: none;
  z-index: 10;
}

.carousel-phone[data-pos=right] {
  transform: translateX(220px) translateZ(-160px) rotateY(-75deg) scale(0.7);
  opacity: 0.35;
  filter: grayscale(1) brightness(0.5);
  z-index: 2;
}

.carousel-phone[data-pos=left] {
  transform: translateX(-220px) translateZ(-160px) rotateY(75deg) scale(0.7);
  opacity: 0.35;
  filter: grayscale(1) brightness(0.5);
  z-index: 2;
}

/* Phone mockup */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
}

.phone {
  position: relative;
  width: 320px;
  height: 660px;
  background: linear-gradient(145deg, #1a0a4a 0%, #0E0840 100%);
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 0 0 2px rgba(15, 255, 249, 0.4), 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(15, 255, 249, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotate(-4deg);
  transition: transform 0.5s ease;
}

.phone:hover {
  transform: rotate(-2deg) translateY(-4px);
}

.phone::before, .phone::after {
  content: "";
  position: absolute;
  background: #0a0530;
  border-radius: 2px;
}

.phone::before {
  left: -3px;
  top: 130px;
  width: 3px;
  height: 60px;
  box-shadow: 0 80px 0 #0a0530;
}

.phone::after {
  right: -3px;
  top: 160px;
  width: 3px;
  height: 80px;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
}

.phone-notch::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a1a1a;
  box-shadow: inset 0 0 0 2px rgba(15, 255, 249, 0.3);
}

.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #0E0840;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--cyan), var(--chart-purple));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--darkest-purple);
  font-size: 13px;
  flex-shrink: 0;
}

.chat-meta {
  flex: 1;
  min-width: 0;
}

.chat-meta .name {
  font-weight: 600;
  color: #0E0840;
  font-size: 13px;
}

.chat-meta .status {
  font-size: 10.5px;
  color: #2D1B4E;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--r-full);
  background: #22C55E;
  box-shadow: 0 0 6px #22C55E;
}

.chat-body {
  flex: 1;
  overflow: hidden;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #FFFFFF;
}

.msg-time {
  text-align: center;
  font-size: 9.5px;
  color: rgba(45, 27, 78, 0.5);
  margin: 2px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bubble {
  padding: 9px 13px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 82%;
  word-wrap: break-word;
  animation: slideIn 0.5s ease backwards;
}

.bubble-mod {
  align-self: flex-start;
  background: var(--hot-pink);
  color: #FFFFFF;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 2px 8px rgba(255, 64, 129, 0.3);
}

.bubble-user {
  align-self: flex-end;
  background: var(--cyan);
  color: var(--darkest-purple);
  border-radius: 16px 16px 4px 16px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(15, 255, 249, 0.3);
}

.bubble-options {
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 2px;
  animation: slideIn 0.5s ease backwards;
}

.chip {
  padding: 7px 8px;
  border: 1.5px solid #3D1570;
  border-radius: var(--r-full);
  background: #FFFFFF;
  color: #0E0840;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.chip.selected {
  background: var(--cyan);
  color: var(--darkest-purple);
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(15, 255, 249, 0.4);
}

.typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 11px 13px;
  background: var(--hot-pink);
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 2px 8px rgba(255, 64, 129, 0.3);
  animation: slideIn 0.5s ease backwards;
}

.typing span {
  width: 5px;
  height: 5px;
  border-radius: var(--r-full);
  background: #FFFFFF;
  opacity: 0.6;
  animation: blink 1.4s infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.bubble.d1 {
  animation-delay: 0.3s;
}

.bubble-options.d2 {
  animation-delay: 0.8s;
}

.bubble.d3 {
  animation-delay: 1.3s;
}

.typing.d4 {
  animation-delay: 1.7s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blink {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-2px);
  }
}
/* Floating chat-bubble badges around phone */
.float-badge {
  position: absolute;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  max-width: 220px;
  z-index: 5;
  animation: bob 4s ease-in-out infinite;
}

.float-badge.points {
  top: 40px;
  right: -70px;
  background: var(--cyan);
  color: var(--darkest-purple);
  border-radius: 20px 20px 20px 6px;
  box-shadow: 0 8px 24px rgba(15, 255, 249, 0.4);
  transform: rotate(4deg);
}

.float-badge.rank {
  bottom: 130px;
  left: -80px;
  background: var(--hot-pink);
  color: #FFFFFF;
  border-radius: 20px 20px 6px 20px;
  box-shadow: 0 8px 24px rgba(255, 64, 129, 0.4);
  transform: rotate(-4deg);
  animation-delay: 1s;
}

@keyframes bob {
  0%, 100% {
    transform: rotate(var(--rot, 6deg)) translateY(0);
  }
  50% {
    transform: rotate(var(--rot, 6deg)) translateY(-8px);
  }
}
.float-badge.points {
  --rot: 4deg;
}

.float-badge.rank {
  --rot: -4deg;
}

/* Hero confetti scatter */
.hero-confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--hot-pink);
  border-radius: var(--r-subtle);
  pointer-events: none;
  z-index: 0;
  animation: sway 6s ease-in-out infinite;
  transform: rotate(var(--rot, 0deg));
}

@keyframes sway {
  0%, 100% {
    transform: rotate(var(--rot, 0deg)) translate(0, 0);
  }
  25% {
    transform: rotate(calc(var(--rot, 0deg) + 6deg)) translate(4px, -6px);
  }
  50% {
    transform: rotate(calc(var(--rot, 0deg) - 4deg)) translate(-3px, 3px);
  }
  75% {
    transform: rotate(calc(var(--rot, 0deg) + 3deg)) translate(2px, 4px);
  }
}
.hc1 {
  top: 15%;
  left: 5%;
  --rot: 20deg;
  animation-delay: 0s;
}

.hc2 {
  top: 25%;
  right: 40%;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  --rot: -10deg;
  animation-delay: 0.6s;
}

.hc3 {
  bottom: 30%;
  right: 45%;
  width: 14px;
  height: 14px;
  --rot: 45deg;
  animation-delay: 1.2s;
}

.hc4 {
  bottom: 15%;
  left: 42%;
  background: var(--cyan);
  --rot: -30deg;
  animation-delay: 1.8s;
}

.hc5 {
  top: 8%;
  right: 8%;
  width: 18px;
  height: 18px;
  background: var(--chart-purple);
  --rot: 35deg;
  animation-delay: 2.4s;
}

.hc6 {
  top: 60%;
  left: 2%;
  width: 10px;
  height: 10px;
  --rot: -25deg;
  animation-delay: 3s;
}

.hc7 {
  bottom: 8%;
  right: 12%;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  --rot: 15deg;
  animation-delay: 3.6s;
}

.hc8 {
  top: 42%;
  left: 38%;
  width: 20px;
  height: 20px;
  background: var(--chart-purple);
  --rot: -5deg;
  opacity: 0.7;
  animation-delay: 4.2s;
}

/* Case studies — barevné čtverce na pozadí */
.cs1 {
  top: 4%;
  left: 4%;
  width: 14px;
  height: 14px;
  --rot: 15deg;
  animation-delay: 0s;
}

.cs2 {
  top: 8%;
  right: 6%;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  --rot: -20deg;
  animation-delay: 1s;
}

.cs3 {
  top: 32%;
  left: 2%;
  width: 18px;
  height: 18px;
  background: var(--chart-purple);
  --rot: 30deg;
  animation-delay: 2s;
}

.cs4 {
  top: 48%;
  right: 3%;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  --rot: -12deg;
  animation-delay: 3s;
}

.cs5 {
  bottom: 30%;
  left: 5%;
  width: 12px;
  height: 12px;
  --rot: 40deg;
  animation-delay: 4s;
}

.cs6 {
  bottom: 14%;
  right: 8%;
  width: 16px;
  height: 16px;
  background: var(--chart-purple);
  --rot: -25deg;
  animation-delay: 5s;
  opacity: 0.8;
}

.cs7 {
  top: 70%;
  right: 4%;
  width: 10px;
  height: 10px;
  --rot: 18deg;
  animation-delay: 2.5s;
}

.cs8 {
  bottom: 6%;
  left: 6%;
  width: 14px;
  height: 14px;
  background: var(--cyan);
  --rot: -35deg;
  animation-delay: 3.5s;
}

/* =========================================================
   02 — BENEFITS (Why DuelGo)
   ========================================================= */
.benefits {
  border-top: 1px solid var(--card-border-soft);
  border-bottom: 1px solid var(--card-border-soft);
  position: relative;
  overflow: hidden;
}

.benefits > .container {
  position: relative;
  z-index: 1;
}

/* =========================================================
   02 — MANIFEST / TYPOGRAFIE (light)
   ========================================================= */
.manifest-section {
  padding: var(--sp-3xl) 0 0;
  overflow: hidden;
}

.manifest-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
  margin-bottom: var(--sp-3xl);
}

.manifest-kicker {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px);
  color: var(--heading-color);
  margin-bottom: var(--sp-lg);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.manifest-kicker--xl {
  font-size: clamp(29px, 4vw, 47px);
  margin-bottom: var(--sp-md);
}
.manifest-kicker--sm {
  font-size: clamp(20px, 2.5vw, 28px);
}

.manifest-kicker .kicker-accent {
  color: var(--hot-pink);
}

[data-theme=dark] .manifest-kicker .kicker-accent {
  color: var(--chart-purple);
}

.manifest-big h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  font-weight: 700;
}

.manifest-body {
  padding-top: calc(14px + var(--sp-md) + 8px);
}

.manifest-body p {
  font-size: clamp(19px, 1.54vw, 22px);
  line-height: 1.55;
  color: var(--body-color);
  max-width: 500px;
}

/* Chat rise — bubliny stoupající zespoda */
.chat-rise {
  position: relative;
  width: 100%;
  height: 294px;
  overflow: hidden;
  margin-top: -80px;
}

.rise-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.rise-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, var(--bg), transparent);
}

.rise-bubble {
  position: absolute;
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  max-width: 480px;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  animation: riseUp var(--dur, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
  bottom: -60px;
}

.rise-bubble.rb-pink {
  background: var(--hot-pink);
  color: #FFFFFF;
  border-radius: 20px 20px 20px 5px;
  box-shadow: 0 4px 16px rgba(255, 64, 129, 0.18);
}

.rise-bubble.rb-cyan {
  background: var(--cyan);
  color: var(--darkest-purple);
  border-radius: 20px 20px 5px 20px;
  box-shadow: 0 4px 16px rgba(15, 255, 249, 0.18);
  font-weight: 600;
}

.rise-bubble.rb-purple {
  background: var(--chart-purple);
  color: #FFFFFF;
  border-radius: 20px 20px 20px 5px;
  box-shadow: 0 4px 16px rgba(157, 127, 255, 0.2);
}

@keyframes riseUp {
  0% {
    transform: translateY(0) rotate(var(--rot, 0deg));
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-500px) rotate(var(--rot, 0deg));
    opacity: 0;
  }
}
/* Decorative pink marks on manifesto background — same style as ceo-mark */
.benefits-dash {
  position: absolute;
  width: 10px;
  height: 40px;
  background: var(--hot-pink);
  border-radius: var(--r-subtle);
  box-shadow: var(--shadow-pink);
  pointer-events: none;
  z-index: 0;
  animation: sway 7s ease-in-out infinite;
  transform: rotate(var(--rot, 0deg));
}

.benefits-dash.bd1 {
  top: 10%;
  left: 8%;
  --rot: -12deg;
  animation-delay: 0s;
}

.benefits-dash.bd2 {
  top: 22%;
  right: 6%;
  --rot: 14deg;
  animation-delay: 1s;
}

.benefits-dash.bd3 {
  top: 62%;
  left: 4%;
  --rot: 18deg;
  height: 34px;
  animation-delay: 2s;
}

.benefits-dash.bd4 {
  bottom: 12%;
  right: 14%;
  --rot: -18deg;
  height: 36px;
  animation-delay: 3s;
}

.benefits-dash.bd5 {
  top: 50%;
  left: 2%;
  --rot: -8deg;
  height: 36px;
  animation-delay: 4s;
}

.benefits-dash.bd6 {
  top: 48%;
  right: 2%;
  --rot: 8deg;
  height: 36px;
  animation-delay: 5s;
}

/* CEO statement block */
.ceo-statement {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: var(--sp-xl) var(--sp-lg);
}

.ceo-mark {
  position: absolute;
  width: 10px;
  height: 40px;
  background: var(--hot-pink);
  border-radius: var(--r-subtle);
  box-shadow: var(--shadow-pink);
}

.ceo-mark.left {
  top: 24px;
  left: 0;
  transform: rotate(-8deg);
}

.ceo-mark.right {
  bottom: 24px;
  right: 0;
  transform: rotate(8deg);
}

.ceo-quote {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.35;
  color: var(--heading-color);
  margin: var(--sp-lg) 0 var(--sp-xl);
  letter-spacing: -0.01em;
}

.ceo-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  background: var(--surface);
  border: 1px solid var(--card-border-soft);
  border-radius: var(--r-full);
}

.ceo-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 2px solid var(--cyan);
  box-shadow: var(--shadow-glow);
}

.ceo-meta {
  text-align: left;
}

.ceo-name {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 15px;
  line-height: 1.2;
}

.ceo-role {
  font-size: 12px;
  color: var(--body-color);
  opacity: 0.75;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

/* =========================================================
   03 — ROZCESTNÍK (hub list)
   ========================================================= */
.hub-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "sport sport hr" "school media media" "event event tip";
  gap: var(--sp-md);
}

.hub-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--sp-sm);
  padding: var(--sp-xl) var(--sp-lg);
  border-radius: var(--r-xl);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  --hub-accent: var(--cyan);
}

.hub-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.04;
  transition: opacity 0.25s;
  pointer-events: none;
}

.hub-item:hover::before {
  opacity: 0.1;
}

.hub-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hub-content {
  margin-top: auto;
}

.hub-item:nth-child(1) {
  grid-area: sport;
}

.hub-item:nth-child(2) {
  grid-area: hr;
}

.hub-item:nth-child(3) {
  grid-area: media;
}

.hub-item:nth-child(4) {
  grid-area: school;
}

.hub-item:nth-child(5) {
  grid-area: event;
}

/* Tip dlaždice v rozcestníku */
.hub-tip {
  position: relative;
  grid-area: tip;
  background: #FFFFFF;
  border: 2px dashed var(--chart-purple);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: var(--sp-md);
  min-height: 240px;
  text-decoration: none;
  color: inherit;
  transition: border-style 0.2s, border-color 0.2s, background 0.2s;
}

.hub-tip:hover {
  border-style: solid;
  border-color: var(--hot-pink);
  background: rgba(255, 64, 129, 0.06);
}

.hub-tip .tip-bulb {
  font-size: 36px;
  display: inline-block;
  animation: bulbGlow 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(255, 224, 102, 0.3));
  transition: opacity 0.3s;
}

.hub-tip .tip-ear {
  font-size: 76px;
  display: inline-block;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s;
}

.hub-tip .tip-ears-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.hub-tip .tip-ears-bg span {
  position: absolute;
  font-size: 28px;
  opacity: 0.4;
  animation: sway 5s ease-in-out infinite;
}

.hub-tip .tip-ears-bg span:nth-child(1) {
  top: 8%;
  left: 10%;
  font-size: 24px;
  --rot: 12deg;
  animation-delay: 0s;
}

.hub-tip .tip-ears-bg span:nth-child(2) {
  top: 15%;
  right: 12%;
  font-size: 32px;
  --rot: -8deg;
  animation-delay: 0.8s;
}

.hub-tip .tip-ears-bg span:nth-child(3) {
  bottom: 25%;
  left: 5%;
  font-size: 20px;
  --rot: 18deg;
  animation-delay: 1.6s;
}

.hub-tip .tip-ears-bg span:nth-child(4) {
  bottom: 10%;
  right: 8%;
  font-size: 36px;
  --rot: -14deg;
  animation-delay: 2.4s;
}

.hub-tip .tip-ears-bg span:nth-child(5) {
  top: 45%;
  left: 35%;
  font-size: 22px;
  --rot: 6deg;
  animation-delay: 3.2s;
}

.hub-tip .tip-ears-bg span:nth-child(6) {
  top: 30%;
  right: 30%;
  font-size: 18px;
  --rot: -20deg;
  animation-delay: 0.4s;
}

.hub-tip:hover .tip-bulb {
  opacity: 0;
}

.hub-tip:hover .tip-ear {
  opacity: 1;
  z-index: 2;
}

.hub-tip:hover .tip-ears-bg {
  opacity: 1;
}

.hub-tip:hover {
  background: var(--chart-purple) !important;
  border-color: var(--chart-purple) !important;
  border-style: solid !important;
}

.hub-tip:hover p {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.hub-tip:hover .hub-tip-cta {
  color: #FFFFFF !important;
  font-size: 18px;
  z-index: 2;
  position: relative;
}

.hub-tip p {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 600;
  color: #0E0840;
  line-height: 1.4;
}

.hub-tip .hub-tip-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--hot-pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hub-tip .hub-tip-cta .arrow {
  transition: transform 0.2s;
}

.hub-tip:hover .hub-tip-cta .arrow {
  transform: translateX(4px);
}

/* Velké dlaždice (Sport, Média) — 2/3 šířky */
.hub-item:nth-child(1),
.hub-item:nth-child(3) {
  min-height: 400px;
  padding: var(--sp-2xl) var(--sp-xl);
}

.hub-item:nth-child(1) .hub-name,
.hub-item:nth-child(3) .hub-name {
  font-size: clamp(36px, 5vw, 56px);
}

.hub-item:nth-child(1) .hub-sub,
.hub-item:nth-child(3) .hub-sub {
  font-size: clamp(18px, 1.8vw, 22px);
}

.hub-item:nth-child(1) .hub-desc,
.hub-item:nth-child(3) .hub-desc {
  font-size: 16px;
}

/* Malé dlaždice (HR, Školy) — 1/3 šířky */
.hub-item:nth-child(2),
.hub-item:nth-child(4) {
  min-height: 400px;
  padding: var(--sp-lg);
}

.hub-item:nth-child(2) .hub-name,
.hub-item:nth-child(4) .hub-name {
  font-size: clamp(24px, 3vw, 34px);
}

.hub-item:nth-child(2) .hub-sub,
.hub-item:nth-child(4) .hub-sub {
  font-size: clamp(14px, 1.3vw, 16px);
}

.hub-item:nth-child(2) .hub-desc,
.hub-item:nth-child(4) .hub-desc {
  font-size: 13.5px;
}

/* Eventy — spodní řada */
.hub-item:nth-child(5) {
  min-height: 280px;
}

.hub-item:nth-child(5) .hub-name {
  font-size: clamp(28px, 3.5vw, 44px);
}

.hub-item:nth-child(5) .hub-sub {
  font-size: clamp(15px, 1.4vw, 18px);
}

.hub-item:nth-child(5) .hub-desc {
  font-size: 14px;
}

/* Společné pro dlaždice s fotkou */
.hub-item .hub-sub,
.hub-item .hub-desc {
  color: rgba(255, 255, 255, 0.9);
}

.hub-item .hub-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

.hub-item .hub-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Sport — arena */
.hub-item:nth-child(1) {
  --hub-accent: var(--cyan);
  background: linear-gradient(135deg, rgba(14, 8, 64, 0.82), rgba(15, 255, 249, 0.4)), url("../img/arena.jpg") center/cover;
  border: 1px solid rgba(15, 255, 249, 0.3);
}

.hub-item:nth-child(1)::before {
  display: none;
}

.hub-item:nth-child(1):hover {
  border-color: var(--cyan);
}

.hub-item:nth-child(1) .hub-name {
  color: var(--cyan);
}

/* HR & firemní kultura — hr */
.hub-item:nth-child(2) {
  --hub-accent: var(--chart-purple);
  background: linear-gradient(135deg, rgba(14, 8, 64, 0.82), rgba(157, 127, 255, 0.45)), url("../img/hr.png") center/cover;
  border: 1px solid rgba(157, 127, 255, 0.3);
}

.hub-item:nth-child(2)::before {
  display: none;
}

.hub-item:nth-child(2):hover {
  border-color: var(--chart-purple);
}

.hub-item:nth-child(2) .hub-name {
  color: var(--chart-purple);
}

/* Média a marketing — laughing */
.hub-item:nth-child(3) {
  --hub-accent: var(--cyan);
  background: linear-gradient(135deg, rgba(14, 8, 64, 0.8), rgba(15, 255, 249, 0.4)), url("../img/laughing.jpg") center/cover;
  border: 1px solid rgba(15, 255, 249, 0.25);
}

.hub-item:nth-child(3)::before {
  display: none;
}

.hub-item:nth-child(3):hover {
  border-color: var(--cyan);
}

.hub-item:nth-child(3) .hub-name {
  color: var(--cyan);
}

/* Školy a vzdělávání — pedagog */
.hub-item:nth-child(4) {
  --hub-accent: var(--hot-pink);
  background: linear-gradient(135deg, rgba(14, 8, 64, 0.82), rgba(255, 64, 129, 0.45)), url("../img/pedagog.png") center/cover;
  border: 1px solid rgba(255, 64, 129, 0.3);
}

.hub-item:nth-child(4)::before {
  display: none;
}

.hub-item:nth-child(4):hover {
  border-color: var(--hot-pink);
}

.hub-item:nth-child(4) .hub-name {
  color: var(--hot-pink);
}

/* Eventy & Party — wedding */
.hub-item:nth-child(5) {
  --hub-accent: var(--hot-pink);
  --hub-accent: var(--hot-pink);
  background: linear-gradient(135deg, rgba(14, 8, 64, 0.82), rgba(255, 64, 129, 0.4)), url("../img/wedding.png") center/cover;
  border: 1px solid rgba(255, 64, 129, 0.25);
}

.hub-item:nth-child(5)::before {
  display: none;
}

.hub-item:nth-child(5):hover {
  border-color: var(--hot-pink);
}

.hub-item:nth-child(5) .hub-name {
  color: var(--hot-pink);
}

.hub-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.2s;
}

[data-theme=light] .hub-name {
  color: var(--deep-purple);
}

.hub-item:hover .hub-name {
  color: var(--hot-pink);
}

.hub-sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  color: var(--display-color);
  letter-spacing: -0.01em;
}

.hub-item:nth-child(2) .hub-sub,
.hub-item:nth-child(3) .hub-sub {
  font-size: clamp(17px, 1.8vw, 21px);
}

.hub-desc {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--body-color);
  max-width: 540px;
  margin-bottom: var(--sp-md);
}

.hub-cta {
  display: flex;
  gap: 10px;
}

/* =========================================================
   03 — CO TO UMÍ (orbit layout) — legacy
   ========================================================= */
.orbit-wrap {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.orbit-head h2 {
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}

.orbit-head h2 .pink {
  color: var(--hot-pink);
}

[data-theme=dark] .orbit-head h2 .pink {
  color: var(--chart-purple);
}

.orbit-head p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--body-color);
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto var(--sp-2xl);
}

.orbit {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 1/0.75;
  min-height: 420px;
}

/* Central small phone mockup */
.orbit-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 440px;
  background: linear-gradient(145deg, #1a0a4a 0%, #0E0840 100%);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 0 0 2px rgba(15, 255, 249, 0.4), 0 20px 50px -10px rgba(0, 0, 0, 0.5), 0 0 60px rgba(15, 255, 249, 0.3);
  z-index: 3;
}

.orbit-phone .screen {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 26px;
  overflow: hidden;
  padding: 18px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.orbit-phone .screen::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #000;
  border-radius: 14px;
}

.orbit-phone .mini-head {
  font-size: 10px;
  font-weight: 700;
  color: var(--darkest-purple);
  margin: 14px 4px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.orbit-phone .mini-head::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--chart-purple));
}

.orbit-phone .mini-bubble {
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 85%;
}

.orbit-phone .mini-bubble.mod {
  background: var(--hot-pink);
  color: #FFFFFF;
  border-radius: 14px 14px 14px 4px;
  align-self: flex-start;
}

.orbit-phone .mini-bubble.usr {
  background: var(--cyan);
  color: var(--darkest-purple);
  border-radius: 14px 14px 4px 14px;
  align-self: flex-end;
  font-weight: 600;
}

/* Orbital labels */
.orbit-label {
  position: absolute;
  padding: 12px 18px;
  background: var(--surface);
  border: 2px solid var(--cyan);
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  z-index: 4;
  animation: orbitFloat 5s ease-in-out infinite;
  cursor: help;
  outline: none;
}

.orbit-label:hover, .orbit-label:focus-visible {
  z-index: 20;
  border-color: var(--hot-pink);
  box-shadow: var(--shadow-lg), var(--shadow-pink);
}

.orbit-label .emo {
  font-size: 20px;
}

/* Tooltip popover */
.orbit-tip {
  position: absolute;
  width: 260px;
  max-width: 70vw;
  padding: 14px 18px;
  background: #FFFFFF;
  color: var(--dark-text);
  border: 1px solid var(--hot-pink);
  border-radius: var(--r-lg);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 64, 129, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(6px);
  transform-origin: center top;
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.2s;
  pointer-events: none;
  z-index: 30;
  white-space: normal;
}

.orbit-tip strong {
  display: block;
  color: var(--hot-pink);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 14px;
}

/* Arrow */
.orbit-tip::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border-left: 1px solid var(--hot-pink);
  border-top: 1px solid var(--hot-pink);
  transform: rotate(45deg);
}

/* Show on hover/focus */
.orbit-label:hover .orbit-tip,
.orbit-label:focus-visible .orbit-tip,
.orbit-label:focus-within .orbit-tip {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  pointer-events: auto;
}

/* Position variants */
.orbit-tip.tip-below {
  top: calc(100% + 14px);
  left: 50%;
  transform-origin: center top;
  transform: translateX(-50%) scale(0.9) translateY(6px);
}

.orbit-label:hover .orbit-tip.tip-below,
.orbit-label:focus-visible .orbit-tip.tip-below,
.orbit-label:focus-within .orbit-tip.tip-below {
  transform: translateX(-50%) scale(1) translateY(0);
}

.orbit-tip.tip-below::before {
  top: -7px;
  left: 50%;
  margin-left: -6px;
}

.orbit-tip.tip-above {
  bottom: calc(100% + 14px);
  left: 50%;
  transform-origin: center bottom;
  transform: translateX(-50%) scale(0.9) translateY(-6px);
}

.orbit-label:hover .orbit-tip.tip-above,
.orbit-label:focus-visible .orbit-tip.tip-above,
.orbit-label:focus-within .orbit-tip.tip-above {
  transform: translateX(-50%) scale(1) translateY(0);
}

.orbit-tip.tip-above::before {
  bottom: -7px;
  left: 50%;
  margin-left: -6px;
  transform: rotate(225deg);
}

.orbit-tip.tip-right {
  left: calc(100% + 14px);
  top: 50%;
  transform-origin: left center;
  transform: translateY(-50%) scale(0.9) translateX(-6px);
}

.orbit-label:hover .orbit-tip.tip-right,
.orbit-label:focus-visible .orbit-tip.tip-right,
.orbit-label:focus-within .orbit-tip.tip-right {
  transform: translateY(-50%) scale(1) translateX(0);
}

.orbit-tip.tip-right::before {
  left: -7px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(-45deg);
}

.orbit-tip.tip-left {
  right: calc(100% + 14px);
  top: 50%;
  transform-origin: right center;
  transform: translateY(-50%) scale(0.9) translateX(6px);
}

.orbit-label:hover .orbit-tip.tip-left,
.orbit-label:focus-visible .orbit-tip.tip-left,
.orbit-label:focus-within .orbit-tip.tip-left {
  transform: translateY(-50%) scale(1) translateX(0);
}

.orbit-tip.tip-left::before {
  right: -7px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(135deg);
}

.orbit-label.l1 {
  top: 8%;
  left: 4%;
  --rot: -4deg;
  transform: rotate(var(--rot));
  animation-delay: 0s;
}

.orbit-label.l2 {
  top: 10%;
  right: 4%;
  --rot: 4deg;
  transform: rotate(var(--rot));
  border-color: var(--hot-pink);
  animation-delay: 0.8s;
}

.orbit-label.l3 {
  bottom: 12%;
  left: 6%;
  --rot: 4deg;
  transform: rotate(var(--rot));
  border-color: var(--hot-pink);
  animation-delay: 1.6s;
}

.orbit-label.l4 {
  bottom: 10%;
  right: -2%;
  --rot: -4deg;
  transform: rotate(var(--rot));
  animation-delay: 2.4s;
}

.orbit-label.l5 {
  top: 48%;
  right: 0%;
  --rot: -6deg;
  transform: translateY(-50%) rotate(var(--rot));
  border-color: var(--cyan);
  animation-delay: 3.2s;
}

.orbit-label.l6 {
  top: 48%;
  left: 0%;
  --rot: 6deg;
  transform: translateY(-50%) rotate(var(--rot));
  border-color: var(--hot-pink);
  animation-delay: 4s;
}

.orbit-label.l7 {
  top: -4%;
  left: 50%;
  --rot: -3deg;
  transform: translateX(-50%) rotate(var(--rot));
  border-color: var(--cyan);
  animation-delay: 4.8s;
}

@keyframes orbitFloatMid {
  0%, 100% {
    transform: translateY(-50%) rotate(var(--rot));
  }
  50% {
    transform: translateY(calc(-50% - 10px)) rotate(var(--rot));
  }
}
@keyframes orbitFloatTop {
  0%, 100% {
    transform: translateX(-50%) rotate(var(--rot));
  }
  50% {
    transform: translateX(-50%) translateY(-8px) rotate(var(--rot));
  }
}
.orbit-label.l5 {
  animation-name: orbitFloatMid;
}

.orbit-label.l6 {
  animation-name: orbitFloatMid;
}

.orbit-label.l7 {
  animation-name: orbitFloatTop;
}

@keyframes orbitFloat {
  0%, 100% {
    transform: rotate(var(--rot)) translateY(0);
  }
  50% {
    transform: rotate(var(--rot)) translateY(-10px);
  }
}
/* Connector lines */
.orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.orbit-lines line {
  stroke: var(--cyan);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
  opacity: 0.35;
  animation: dashFlow 3s linear infinite;
}

@keyframes dashFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -20;
  }
}
/* =========================================================
   04 — JAK TO FUNGUJE (4 pillars)
   ========================================================= */
.how-head {
  max-width: 780px;
  margin: 0 auto var(--sp-2xl);
  text-align: center;
}

.how-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}

.how-head h2 .pink {
  color: var(--hot-pink);
}

[data-theme=dark] .how-head h2 .pink {
  color: var(--chart-purple);
}

.how-head .sub {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--body-color);
  line-height: 1.55;
  margin-bottom: var(--sp-md);
}

.how-head p {
  font-size: 16px;
  color: var(--body-color);
  max-width: 640px;
  margin: 0 auto;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--card-border-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar:nth-child(2)::before {
  background: var(--hot-pink);
}

.pillar:nth-child(4)::before {
  background: var(--hot-pink);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(15, 255, 249, 0.12);
  border: 1.5px solid var(--cyan);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.pillar:nth-child(2) .pillar-icon {
  background: rgba(255, 64, 129, 0.12);
  border-color: var(--hot-pink);
}

.pillar:nth-child(4) .pillar-icon {
  background: rgba(255, 64, 129, 0.12);
  border-color: var(--hot-pink);
}

.pillar-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--caption-color);
  text-transform: uppercase;
}

.pillar h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-top: -4px;
}

.pillar p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.5;
  flex: 1;
}

.pillar .highlight {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  background: var(--hot-pink);
  color: #FFFFFF;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
  align-self: flex-start;
}

/* Bento grid — "Pro koho je Duelgo?" */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "sport sport influ" "pedag market market" "hr    hr    tip";
  gap: var(--sp-md);
}

.bento-tile.t-tip {
  grid-area: tip;
  --accent: var(--chart-purple);
}

.bento-tile.t-sport {
  grid-area: sport;
  --accent: var(--cyan);
  background-image: linear-gradient(135deg, rgba(14, 8, 64, 0.85) 0%, rgba(61, 21, 112, 0.75) 50%, rgba(255, 64, 129, 0.65) 100%), url("../img/arena.jpg");
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.bento-tile.t-sport .bento-kicker {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.bento-tile.t-sport h3 {
  color: #FFFFFF;
}

.bento-tile.t-sport p {
  color: rgba(255, 255, 255, 0.92);
}

.bento-tile.t-sport .bento-cta {
  color: var(--cyan);
}

.bento-tile.t-sport::before {
  display: none;
}

.bento-tile.t-influ {
  grid-area: influ;
  --accent: var(--hot-pink);
  background-image: linear-gradient(135deg, rgba(14, 8, 64, 0.8) 0%, rgba(157, 127, 255, 0.65) 55%, rgba(15, 255, 249, 0.55) 100%), url("../img/influencer.jpg");
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.bento-tile.t-influ .bento-kicker {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.bento-tile.t-influ h3 {
  color: #FFFFFF;
}

.bento-tile.t-influ p {
  color: rgba(255, 255, 255, 0.92);
}

.bento-tile.t-influ .bento-cta {
  color: var(--cyan);
}

.bento-tile.t-influ::before {
  display: none;
}

.bento-tile.t-pedag {
  grid-area: pedag;
  --accent: var(--chart-purple);
  background-image: linear-gradient(135deg, rgba(14, 8, 64, 0.8) 0%, rgba(157, 127, 255, 0.65) 55%, rgba(15, 255, 249, 0.55) 100%), url("../img/pedagog.png");
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.bento-tile.t-pedag .bento-kicker {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.bento-tile.t-pedag h3 {
  color: #FFFFFF;
}

.bento-tile.t-pedag p {
  color: rgba(255, 255, 255, 0.92);
}

.bento-tile.t-pedag .bento-cta {
  color: var(--cyan);
}

.bento-tile.t-pedag::before {
  display: none;
}

.bento-tile.t-market {
  grid-area: market;
  --accent: var(--hot-pink);
  background-image: linear-gradient(135deg, rgba(14, 8, 64, 0.82) 0%, rgba(255, 64, 129, 0.68) 55%, rgba(15, 255, 249, 0.55) 100%), url("../img/marketing.png");
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.bento-tile.t-market .bento-kicker {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.bento-tile.t-market h3 {
  color: #FFFFFF;
}

.bento-tile.t-market p {
  color: rgba(255, 255, 255, 0.92);
}

.bento-tile.t-market .bento-cta {
  color: var(--cyan);
}

.bento-tile.t-market::before {
  display: none;
}

.bento-tile.t-hr {
  grid-area: hr;
  --accent: var(--cyan);
  background-image: linear-gradient(135deg, rgba(14, 8, 64, 0.82) 0%, rgba(61, 21, 112, 0.7) 50%, rgba(15, 255, 249, 0.55) 100%), url("../img/hr.png");
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.bento-tile.t-hr .bento-kicker {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.bento-tile.t-hr h3 {
  color: #FFFFFF;
}

.bento-tile.t-hr p {
  color: rgba(255, 255, 255, 0.92);
}

.bento-tile.t-hr .bento-cta {
  color: var(--cyan);
}

.bento-tile.t-hr::before {
  display: none;
}

.bento-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--card-border-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  min-height: 320px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.bento-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 110% 110%, var(--accent), transparent 55%);
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 0.25s;
}

.bento-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme=dark] .bento-tile:hover {
  box-shadow: 0 8px 24px rgba(15, 255, 249, 0.15);
}

.bento-tile:hover::before {
  opacity: 0.22;
}

.bento-emo {
  font-size: 36px;
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.bento-kicker {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--chart-purple);
  text-transform: none;
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border: 1.5px solid var(--chart-purple);
  border-radius: var(--r-full);
  background: rgba(157, 127, 255, 0.08);
}

[data-theme=light] .bento-kicker {
  color: var(--deep-purple);
  border-color: var(--deep-purple);
  background: rgba(61, 21, 112, 0.06);
}

.bento-tile h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  color: var(--heading-color);
  margin-top: -4px;
}

.bento-tile p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--body-color);
  flex: 1;
}

.bento-cta {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: var(--sp-sm);
}

.bento-cta .arrow {
  transition: transform 0.2s;
}

.bento-tile:hover .bento-cta .arrow {
  transform: translateX(4px);
}

/* Sport & Market — hrdinské dlaždice */
.bento-tile.t-sport,
.bento-tile.t-market {
  min-height: 460px;
  padding: var(--sp-2xl) var(--sp-xl);
  gap: var(--sp-md);
}

.bento-tile.t-sport h3,
.bento-tile.t-market h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
}

.bento-tile.t-sport p,
.bento-tile.t-market p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  max-width: 92%;
}

.bento-tile.t-sport .bento-cta,
.bento-tile.t-market .bento-cta {
  font-size: 15px;
  padding-top: var(--sp-md);
}

/* HR banner — horizontal layout */
.bento-tile.t-hr {
  flex-direction: row;
  align-items: center;
  gap: var(--sp-lg);
  min-height: 220px;
  padding: var(--sp-xl);
}

.bento-tile.t-hr .t-hr-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

/* Tip CTA tile — dashed outline, no bg image */
.bento-tile.t-tip {
  background: transparent;
  border: 2px dashed var(--chart-purple);
  min-height: 220px;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-lg);
}

[data-theme=light] .bento-tile.t-tip {
  border-color: var(--deep-purple);
}

.bento-tile.t-tip::before {
  display: none;
}

.bento-tile.t-tip:hover {
  border-style: solid;
  border-color: var(--hot-pink);
  background: rgba(255, 64, 129, 0.06);
}

.bento-tile.t-tip p {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.bento-tile.t-tip .tip-heart {
  font-size: 36px;
  display: inline-block;
  animation: bulbGlow 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 0 rgba(255, 224, 102, 0));
  transform-origin: center;
}

@keyframes bulbGlow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 224, 102, 0.3));
  }
  50% {
    transform: scale(1.18);
    filter: drop-shadow(0 0 18px rgba(255, 224, 102, 0.9));
  }
}
.bento-tile.t-tip .bento-cta {
  margin-top: 0;
  padding-top: 0;
  color: var(--hot-pink);
}

.bento-tile.t-hr .t-hr-body h3 {
  font-size: clamp(20px, 2.2vw, 26px);
}

.bento-tile.t-hr .bento-cta {
  margin-top: 0;
  padding-top: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.benefits-visual {
  aspect-ratio: 1/1;
  background: var(--darkest-purple);
  border-radius: var(--r-xl);
  border: 2px solid var(--cyan);
  padding: var(--sp-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

[data-theme=light] .benefits-visual {
  border: 1px solid var(--card-border);
}

.bv-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
}

.bv-head .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
}

.bv-head .live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--light-purple);
}

.bv-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: var(--sp-md) 0;
}

.bv-bar {
  flex: 1;
  background: var(--chart-purple);
  border-radius: 8px 8px 0 0;
  position: relative;
  animation: rise 1s ease forwards;
  transform-origin: bottom;
}

.bv-bar:nth-child(odd) {
  background: var(--cyan);
}

.bv-bar:nth-child(1) {
  height: 40%;
  animation-delay: 0.1s;
}

.bv-bar:nth-child(2) {
  height: 65%;
  animation-delay: 0.2s;
}

.bv-bar:nth-child(3) {
  height: 50%;
  animation-delay: 0.3s;
}

.bv-bar:nth-child(4) {
  height: 85%;
  animation-delay: 0.4s;
}

.bv-bar:nth-child(5) {
  height: 70%;
  animation-delay: 0.5s;
}

.bv-bar:nth-child(6) {
  height: 95%;
  animation-delay: 0.6s;
}

@keyframes rise {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.bv-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  color: #FFFFFF;
}

.bv-stat .val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--cyan);
  line-height: 1;
}

.bv-stat .lbl {
  font-size: 12px;
  color: var(--light-purple);
  margin-top: 4px;
}

.benefits-text h2 {
  margin-bottom: var(--sp-md);
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.benefits-list li {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  font-size: 16px;
}

.benefits-list .check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: var(--r-full);
  background: var(--cyan);
  color: var(--darkest-purple);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.benefits-list strong {
  color: var(--heading-color);
}

/* =========================================================
   STATS — Duelgo v číslech (light)
   ========================================================= */
.stats-section {
  padding: var(--sp-3xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--card-border-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--hot-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.stat-card:nth-child(2)::before {
  background: var(--cyan);
}

.stat-card:nth-child(3)::before {
  background: var(--chart-purple);
}

.stat-card:nth-child(4)::before {
  background: var(--hot-pink);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--hot-pink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card .stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(42px, 4.8vw, 64px);
  color: var(--deep-purple);
  line-height: 1;
  letter-spacing: -0.02em;
}

[data-theme=dark] .stat-card .stat-num {
  color: var(--chart-purple);
}

.stat-card .stat-lbl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--heading-color);
  letter-spacing: 0;
  margin-top: 4px;
}

.stat-card .stat-note {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--body-color);
  opacity: 0.8;
  margin-top: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--card-border-soft);
}

/* =========================================================
   05 — CASE STUDIES (vertical alternating rows)
   ========================================================= */
.cases-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3xl);
  margin-top: var(--sp-xl);
}

.case-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.case-row--reverse .case-phone-wrap {
  order: 2;
}

.case-row--reverse .case-card-v2 {
  order: 1;
}

.case-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--sp-2xl) var(--sp-lg);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  background-color: var(--darkest-purple);
}

.case-phone-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.case-phone-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.case-phone-wrap .phone {
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}

.case-row--reverse .case-phone-wrap .phone {
  transform: rotate(3deg);
}

.case-phone-wrap .phone:hover {
  transform: rotate(0deg) translateY(-4px);
}

/* Floating decorative emoji on case mockups */
.case-emoji {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Trophy cup — bob + pulse */
.case-trophy {
  animation: trophyBob 3.5s ease-in-out infinite;
}

.case-trophy.t1 {
  top: 8%;
  left: 6%;
  font-size: 42px;
  animation-delay: 0s;
}

.case-trophy.t2 {
  top: 14%;
  right: 8%;
  font-size: 28px;
  animation-delay: 0.8s;
}

.case-trophy.t3 {
  bottom: 22%;
  left: 4%;
  font-size: 34px;
  animation-delay: 1.6s;
}

.case-trophy.t4 {
  bottom: 10%;
  right: 10%;
  font-size: 40px;
  animation-delay: 2.4s;
}

@keyframes trophyBob {
  0%, 100% {
    transform: translateY(0) rotate(-6deg) scale(1);
  }
  50% {
    transform: translateY(-12px) rotate(6deg) scale(1.1);
  }
}
/* Hearts — rise + fade */
.case-heart {
  bottom: -40px;
  font-size: 28px;
  opacity: 0;
  animation: heartRise 4s ease-in infinite;
}

.case-heart.h1 {
  left: 12%;
  font-size: 44px;
  animation-delay: 0s;
}

.case-heart.h2 {
  left: 28%;
  font-size: 32px;
  animation-delay: 0.6s;
}

.case-heart.h3 {
  left: 48%;
  font-size: 54px;
  animation-delay: 1.2s;
}

.case-heart.h4 {
  left: 68%;
  font-size: 36px;
  animation-delay: 1.8s;
}

.case-heart.h5 {
  left: 82%;
  font-size: 42px;
  animation-delay: 2.4s;
}

.case-heart.h6 {
  left: 20%;
  font-size: 38px;
  animation-delay: 3s;
}

@keyframes heartRise {
  0% {
    transform: translateY(0) rotate(-8deg) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(-520px) rotate(12deg) scale(1.1);
    opacity: 0;
  }
}
/* Per-case backgrounds */
.case-phone-wrap.bg-arena::before {
  background-image: url("../img/arena.jpg");
}

.case-phone-wrap.bg-arena::after {
  background: linear-gradient(135deg, rgba(14, 8, 64, 0.78) 0%, rgba(61, 21, 112, 0.6) 50%, rgba(15, 255, 249, 0.35) 100%);
}

.case-phone-wrap.bg-media::before {
  background-image: url("../img/wedding.png");
}

.case-phone-wrap.bg-media::after {
  background: linear-gradient(135deg, rgba(14, 8, 64, 0.72) 0%, rgba(255, 64, 129, 0.55) 50%, rgba(157, 127, 255, 0.45) 100%);
}

.case-phone-wrap.bg-pub::before {
  background-image: url("../img/marketing.png");
}

.case-phone-wrap.bg-pub::after {
  background: linear-gradient(135deg, rgba(14, 8, 64, 0.78) 0%, rgba(157, 127, 255, 0.55) 55%, rgba(15, 255, 249, 0.4) 100%);
}

.case-card-v2 {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  max-width: 520px;
}

.case-card-v2 .case-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--heading-color);
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-card-v2 .case-logo .dot {
  width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  background: var(--hot-pink);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-size: 14px;
}

.case-card-v2 h3 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  margin: 0;
}

.case-card-v2 .case-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-color);
}

.case-card-v2 .case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-card-v2 .case-tag {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--hot-pink);
  background: rgba(255, 64, 129, 0.12);
  border: 1px solid rgba(255, 64, 129, 0.3);
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-card-v2 .case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--card-border-soft);
  margin-top: var(--sp-sm);
}

.case-card-v2 .case-metrics .m .val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 44px);
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.01em;
}

.case-card-v2 .case-metrics .m .lbl {
  font-size: 12px;
  color: var(--body-color);
  opacity: 0.85;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Legacy case-card styles (kept for safety) */
.cases-row {
  display: flex;
  gap: var(--sp-md);
  overflow-x: auto;
  overflow-y: hidden;
  padding: var(--sp-sm) var(--sp-lg) var(--sp-xl);
  margin: 0 calc(var(--sp-lg) * -1);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) transparent;
}

.cases-row::-webkit-scrollbar {
  height: 8px;
}

.cases-row::-webkit-scrollbar-track {
  background: transparent;
}

.cases-row::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: var(--r-full);
}

.case-card {
  flex: 0 0 340px;
  background: var(--surface);
  border: 1px solid var(--card-border-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  scroll-snap-align: start;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}

.case-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--heading-color);
  font-size: 16px;
}

.case-logo .dot {
  width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  background: var(--hot-pink);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-size: 14px;
}

.case-card h3 {
  font-size: 22px;
  line-height: 1.25;
}

.case-desc {
  font-size: 14px;
  color: var(--body-color);
  flex: 1;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--card-border-soft);
}

.case-metrics .m .val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--cyan);
  line-height: 1;
}

.case-metrics .m .lbl {
  font-size: 11px;
  color: var(--body-color);
  opacity: 0.8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-tag {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--hot-pink);
  background: rgba(255, 64, 129, 0.12);
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
}

/* =========================================================
   04 — TESTIMONIALS + client strip
   ========================================================= */
/* Popcorn bubble wall — z prezentace */
.popcorn-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 100%;
  margin: 0;
}

.popcorn-bubble {
  font-size: 14px;
  line-height: 1.5;
  padding: 16px 20px;
  opacity: 0;
  transform: scale(0);
  animation: popIn 0.4s ease-out forwards;
  max-width: 100%;
}

.popcorn-bubble:nth-child(odd) {
  background: rgba(15, 255, 249, 0.08);
  border: 1px solid rgba(15, 255, 249, 0.2);
  color: var(--body-color);
  border-radius: 24px 24px 24px 6px;
}

.popcorn-bubble:nth-child(even) {
  background: rgba(255, 64, 129, 0.08);
  border: 1px solid rgba(255, 64, 129, 0.2);
  color: var(--body-color);
  border-radius: 24px 24px 6px 24px;
}

.popcorn-bubble:nth-child(3n) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--body-color);
  border-radius: 24px 24px 24px 6px;
}

[data-theme=light] .popcorn-bubble:nth-child(odd) {
  background: rgba(15, 255, 249, 0.12);
  border-color: rgba(61, 21, 112, 0.15);
  color: var(--dark-text);
}

[data-theme=light] .popcorn-bubble:nth-child(even) {
  background: rgba(255, 64, 129, 0.08);
  border-color: rgba(255, 64, 129, 0.25);
  color: var(--dark-text);
}

[data-theme=light] .popcorn-bubble:nth-child(3n) {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--dark-text);
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Client logo strip */
.logo-strip {
  overflow: hidden;
  position: relative;
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--card-border-soft);
  border-bottom: 1px solid var(--card-border-soft);
  background: var(--surface);
}

.logo-strip::before, .logo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.logo-track {
  display: flex;
  gap: var(--sp-2xl);
  animation: slide 30s linear infinite;
  width: max-content;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logo-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--heading-color);
  opacity: 0.75;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 var(--sp-lg);
  transition: opacity 0.2s;
  min-width: 140px;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0);
}

.logo-item .logo-placeholder {
  height: 56px;
  width: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(15, 255, 249, 0.1), rgba(255, 64, 129, 0.1));
  border: 1px solid var(--card-border-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--heading-color);
}

/* Review card inline in the logo track */
.logo-track .logo-review {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  max-width: 340px;
  padding: 12px 18px;
  margin: 0 var(--sp-sm);
  background: #FFFFFF;
  border: 1px solid rgba(255, 64, 129, 0.25);
  border-radius: 20px 20px 20px 6px;
  text-align: left;
  white-space: normal;
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(255, 64, 129, 0.08);
  flex-shrink: 0;
}

.logo-track .logo-review .quote {
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--dark-text);
}

.logo-track .logo-review .who {
  font-size: 11px;
  color: var(--deep-purple);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo-track .logo-review .who .handle {
  color: var(--hot-pink);
  font-weight: 600;
  margin-left: 4px;
}

/* =========================================================
   05 — SERVICES / FEATURES (5-column menu)
   ========================================================= */
.services-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
  margin-bottom: var(--sp-2xl);
}

.services-head p {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--body-color);
  /* align to the H2 baseline — skip the section-num kicker height */
  margin-top: calc(13px + var(--sp-sm) + 4px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--card-border-soft);
}

.service-item {
  padding: var(--sp-lg) var(--sp-md);
  border-right: 1px solid var(--card-border-soft);
  border-bottom: 1px solid var(--card-border-soft);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  min-height: 260px;
}

.service-item:last-child {
  border-right: none;
}

.service-item:hover {
  background: var(--surface);
}

.service-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 72px;
  color: var(--hot-pink);
  line-height: 1;
  letter-spacing: -0.02em;
}

[data-theme=dark] .service-num {
  color: var(--chart-purple);
}

.service-item h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.service-item p {
  font-size: 14px;
  color: var(--body-color);
  flex: 1;
}

.service-item .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-top: auto;
}

/* =========================================================
   06 — CTA (big form)
   ========================================================= */
.cta-section {
  padding: var(--sp-3xl) 0;
}

/* Final CTA split — text left, phone right */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.cta-text h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: var(--sp-sm) 0 var(--sp-md);
  color: var(--display-color);
}

.cta-text h2 .cyan {
  color: var(--cyan);
}

.cta-text > .section-num {
  color: var(--hot-pink);
}

.cta-text > p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--body-color);
  max-width: 540px;
  margin-bottom: var(--sp-lg);
}

.cta-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--sp-xl);
}

.cta-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--body-color);
}

.cta-perks .check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: var(--r-full);
  background: var(--cyan);
  color: var(--darkest-purple);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}

.cta-perks .emoji {
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
}

.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.cta-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: var(--sp-sm);
  border-radius: var(--r-lg);
  transition: background 0.2s;
}

.cta-feat:hover {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme=dark] .cta-feat:hover {
  background: rgba(255, 255, 255, 0.04);
}

.cta-feat-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--hot-pink);
  margin-top: 2px;
}

.cta-feat strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cta-feat span {
  font-size: 13.5px;
  color: var(--body-color);
  opacity: 0.85;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.cta-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-phone-wrap .phone {
  transform: rotate(3deg);
}

.cta-phone-wrap .phone:hover {
  transform: rotate(1deg) translateY(-4px);
}

.cta-box {
  background: var(--darkest-purple);
  border: 2px solid var(--cyan);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl) var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-2xl);
  align-items: center;
  position: relative;
  overflow: hidden;
}

[data-theme=light] .cta-box {
  border: 1px solid var(--darkest-purple);
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--hot-pink), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-text h2 {
  color: #FFFFFF;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: var(--sp-md);
}

.cta-text p {
  font-size: 17px;
  color: var(--light-purple);
  max-width: 440px;
}

.cta-text .checks {
  list-style: none;
  margin-top: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-text .checks li {
  color: var(--light-purple);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-text .checks li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
  font-size: 16px;
}

.cta-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(15, 255, 249, 0.3);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.cta-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-form input, .cta-form textarea, .cta-form select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  background: rgba(14, 8, 64, 0.6);
  border: 1px solid rgba(15, 255, 249, 0.3);
  border-radius: var(--r-md);
  color: #FFFFFF;
  font-family: inherit;
  margin-bottom: var(--sp-md);
  transition: border-color 0.2s;
}

.cta-form input:focus, .cta-form textarea:focus, .cta-form select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(15, 255, 249, 0.15);
}

.cta-form textarea {
  min-height: 90px;
  resize: vertical;
}

.cta-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}

.cta-form .row input {
  margin-bottom: var(--sp-md);
}

.cta-form button {
  width: 100%;
}

/* =========================================================
   07 — CONTACT
   ========================================================= */
.contact {
  text-align: center;
  padding: var(--sp-2xl) 0 var(--sp-3xl);
  position: relative;
  overflow: hidden;
}

.contact > .container {
  position: relative;
  z-index: 1;
}

.contact h3 {
  font-size: 20px;
  margin-bottom: var(--sp-md);
}

.contact-items {
  display: flex;
  justify-content: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  margin-top: var(--sp-md);
}

.contact-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--heading-color);
  transition: color 0.2s;
}

.contact-item:hover {
  color: var(--hot-pink);
}

/* =========================================================
   BLOG — "Prudce čtivé"
   ========================================================= */
.blog-teaser .section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--sp-2xl);
}

.blog-head-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
  margin-bottom: var(--sp-xl);
}

.blog-head-row h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}

.blog-head-row h2 .wink {
  color: var(--hot-pink);
  font-family: var(--font-heading);
}

[data-theme=dark] .blog-head-row h2 .wink {
  color: var(--chart-purple);
}

.blog-head-row .blog-sub {
  max-width: 480px;
  color: var(--body-color);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  /* align to H2 baseline — skip the kicker height */
  margin-top: calc(13px + var(--sp-sm) + 4px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.blog-card {
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  --tint: var(--cyan);
}

.blog-card:nth-child(1) {
  background: linear-gradient(135deg, #FFF4F8 0%, #FFE8F0 100%);
  border: 1px solid rgba(255, 64, 129, 0.3);
  color: var(--dark-text);
  --tint: var(--hot-pink);
}

.blog-card:nth-child(2) {
  background: linear-gradient(135deg, #F5F0FF 0%, #ECE3FF 100%);
  border: 1px solid rgba(157, 127, 255, 0.4);
  color: var(--dark-text);
  --tint: var(--deep-purple);
}

.blog-card:nth-child(3) {
  background: linear-gradient(135deg, #FFF4F8 0%, #FFE8F0 100%);
  border: 1px solid rgba(255, 64, 129, 0.3);
  color: var(--dark-text);
  --tint: var(--hot-pink);
}

.blog-card h3, .blog-card p, .blog-card .meta {
  color: var(--dark-text);
}

.blog-card .meta {
  color: rgba(45, 27, 78, 0.7);
}

.blog-card .meta .author span {
  color: var(--darkest-purple);
}

.blog-card .read {
  color: var(--tint);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--tint);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-card .tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: #FFFFFF;
  color: var(--tint);
  border: 1px solid currentColor;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 22px;
  line-height: 1.3;
  color: var(--darkest-purple);
  font-weight: 700;
}

.blog-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-text);
  flex: 1;
  font-weight: 500;
}

.blog-card .meta {
  font-size: 13.5px;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(45, 27, 78, 0.15);
}

.blog-card .meta .dot {
  color: var(--hot-pink);
  opacity: 0.7;
}

.blog-card .meta .author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.blog-card .meta .author img {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 1.5px solid var(--tint);
}

.blog-card .meta .author span {
  color: var(--darkest-purple);
  font-weight: 700;
}

.blog-card .meta .read-time {
  opacity: 0.7;
}

.blog-card .read {
  font-size: 15px;
  font-weight: 700;
  color: var(--darkest-purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-sm);
}

[data-theme=light] .blog-card .read {
  color: var(--deep-purple);
}

.blog-card .read .arrow {
  transition: transform 0.2s;
}

.blog-card:hover .read .arrow {
  transform: translateX(4px);
}

.blog-all {
  text-align: center;
  margin-top: var(--sp-xl);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--bg);
  color: var(--body-color);
  padding: var(--sp-3xl) var(--sp-lg) var(--sp-lg);
  border-top: 1px solid var(--card-border-soft);
  position: relative;
  overflow: hidden;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-2xl);
  position: relative;
  z-index: 1;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  align-items: flex-start;
}

.footer-logo {
  width: 220px;
  height: auto;
  max-width: 100%;
}

.footer-claim {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.25;
  color: var(--display-color);
  letter-spacing: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-claim .word:nth-child(1) {
  color: #FFFFFF;
}

[data-theme=light] .footer-claim .word:nth-child(1) {
  color: var(--darkest-purple);
}

.footer-claim .word:nth-child(2) {
  color: var(--cyan);
}

.footer-claim .word:nth-child(3) {
  color: var(--chart-purple);
}

[data-theme=light] .footer-claim .word:nth-child(3) {
  color: var(--hot-pink);
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  margin-top: var(--sp-sm);
}

.footer-contact {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--heading-color);
  transition: color 0.2s;
}

.footer-contact:hover {
  color: var(--hot-pink);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  align-content: start;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: var(--sp-sm);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--body-color);
}

.footer-col a:hover {
  color: var(--hot-pink);
}

.footer-brand .tagline {
  margin-top: var(--sp-sm);
  max-width: 320px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--body-color);
  opacity: 0.85;
}

.footer-bottom {
  max-width: 1200px;
  margin: var(--sp-2xl) auto 0;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--card-border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--body-color);
  opacity: 0.8;
  position: relative;
  z-index: 1;
}
.footer-bottom > span > a + a {
  margin-left: var(--sp-sm);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .manifest-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .manifest-body {
    padding-top: 0;
  }
  .hub-list {
    grid-template-columns: 1fr;
    grid-template-areas: "sport" "hr" "media" "school" "event" "tip";
  }
  .hub-item, .hub-item:nth-child(5) {
    flex-direction: column;
    min-height: 220px;
    gap: var(--sp-md);
  }
  .hub-item:nth-child(5) .hub-content {
    margin-top: auto;
  }
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-head-row {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }
  .blog-head-row .blog-sub {
    margin-top: 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "sport sport" "influ pedag" "market market" "hr hr" "tip tip";
  }
  .popcorn-wall {
    gap: 8px;
  }
  .cta-box {
    grid-template-columns: 1fr;
    padding: var(--sp-xl);
  }
  .cta-split {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .cta-phone-wrap .phone {
    transform: rotate(0deg);
  }
  .case-row, .case-row--reverse {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .case-row--reverse .case-phone-wrap,
  .case-row--reverse .case-card-v2 {
    order: initial;
  }
  .case-phone-wrap .phone,
  .case-row--reverse .case-phone-wrap .phone {
    transform: rotate(0deg);
  }
  .cases-stack {
    gap: var(--sp-2xl);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-item:nth-child(even) {
    border-right: none;
  }
  .service-item:nth-child(odd) {
    border-right: 1px solid var(--card-border-soft);
  }
  .services-head {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
  .phone-wrap {
    margin-top: var(--sp-xl);
  }
  .phone-carousel {
    min-height: 560px;
    perspective: 1000px;
  }
  .carousel-phone[data-pos=front] {
    transform: translateZ(120px) scale(1);
  }
  .carousel-phone[data-pos=right] {
    transform: translateX(140px) translateZ(-100px) rotateY(-75deg) scale(0.65);
  }
  .carousel-phone[data-pos=left] {
    transform: translateX(-140px) translateZ(-100px) rotateY(75deg) scale(0.65);
  }
}
@media (max-width: 768px) {
  .topnav {
    height: 64px;
    padding: 0 var(--sp-sm);
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: var(--sp-sm);
    align-items: stretch;
    background: var(--bg);
    padding: var(--sp-sm);
    border-bottom: 1px solid var(--card-border-soft);
    transform: translateY(-120%);
    transition: transform 0.3s;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 12px 8px;
  }
  .nav-cta .ds-btn-sm.desktop-only {
    display: none;
  }
  section {
    padding: var(--sp-2xl) 0;
  }
  .hero {
    padding: var(--sp-xl) 0 var(--sp-2xl);
    min-height: auto;
  }
  .cta-form .row {
    grid-template-columns: 1fr;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: "sport" "influ" "pedag" "market" "hr" "tip";
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .bento-tile, .bento-tile.t-sport, .bento-tile.t-market {
    min-height: 220px;
  }
  .bento-tile.t-hr {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-sm);
    padding: var(--sp-lg);
  }
  .orbit {
    min-height: 720px;
    aspect-ratio: auto;
  }
  .orbit-phone {
    width: 180px;
    height: 360px;
  }
  .orbit-label {
    font-size: 12px;
    padding: 8px 12px;
  }
  .orbit-label.l1 {
    top: 0%;
    left: 2%;
  }
  .orbit-label.l2 {
    top: 0%;
    right: 2%;
  }
  .orbit-label.l3 {
    bottom: 2%;
    left: 2%;
  }
  .orbit-label.l4 {
    bottom: 2%;
    right: 2%;
  }
  .orbit-label.l5 {
    top: 38%;
    right: 2%;
    transform: translateY(-50%) rotate(-6deg);
  }
  .orbit-label.l6 {
    top: 38%;
    left: 2%;
    transform: translateY(-50%) rotate(6deg);
  }
  .orbit-label.l7 {
    top: auto;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
  }
  .orbit-lines {
    display: none;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
  }
  .footer-claim {
    font-size: 14px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-sm);
    text-align: center;
  }
  .case-card {
    flex: 0 0 280px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-item {
    border-right: none !important;
  }
  .phone {
    transform: rotate(0deg);
  }
  .float-badge.points {
    right: -10px;
  }
  .float-badge.rank {
    left: -10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.home-v3 ul, .home-v3 ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-v3 button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.home-v3 {
  overflow-x: hidden;
}
.home-v3 img, .home-v3 svg, .home-v3 video {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: var(--sp-sm) var(--sp-md);
  background: var(--cyan);
  color: var(--darkest-purple);
  font-weight: 700;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus {
  left: 0;
}

.btn {
  --btn-bg: var(--cyan);
  --btn-fg: var(--darkest-purple);
  --btn-border: transparent;
  --btn-px: 32px;
  --btn-py: 16px;
  --btn-fs: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: var(--btn-py) var(--btn-px);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-border);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--btn-fs);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: scale(1.02);
  filter: brightness(1.08);
}
.btn:active {
  transform: scale(0.98);
}
.btn:disabled, .btn[aria-disabled=true] {
  opacity: 0.5;
  pointer-events: none;
}
.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.btn--primary {
  --btn-bg: var(--hot-pink);
  --btn-fg: #FFFFFF;
}
.btn--accent {
  --btn-bg: var(--cyan);
  --btn-fg: var(--darkest-purple);
}
.btn--line {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  --btn-border: rgba(255, 255, 255, 0.5);
}
.btn--line:hover {
  background: rgba(255, 255, 255, 0.08);
  filter: none;
}
[data-theme=light] .btn--line {
  --btn-border: var(--darkest-purple);
  color: var(--darkest-purple);
}
[data-theme=light] .btn--line:hover {
  background: rgba(14, 8, 64, 0.06);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--darkest-purple);
  --btn-border: #E5E7EB;
  color: var(--darkest-purple);
}
.btn--ghost:hover {
  background: rgba(14, 8, 64, 0.04);
  filter: none;
}
.btn--sm {
  --btn-px: 22px;
  --btn-py: 8px;
  --btn-fs: 16px;
}
.btn--lg {
  --btn-px: 32px;
  --btn-py: 20px;
  --btn-fs: 16px;
}
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
  }
}
.btn--arrow .btn__arrow {
  width: 1em;
  height: 1em;
  transition: transform 0.2s;
  flex: 0 0 auto;
}
.btn--arrow:hover .btn__arrow {
  transform: translateX(3px);
}

.media-slot {
  --ar: 1 / 1;
  --tilt: 0deg;
  --slot-bg: rgba(255, 255, 255, 0.04);
  --slot-border: 1px dashed rgba(255, 255, 255, 0.18);
  --slot-radius: var(--r-xl);
  position: relative;
  display: block;
  aspect-ratio: var(--ar);
  background: var(--slot-bg);
  border: var(--slot-border);
  border-radius: var(--slot-radius);
  transform: rotate(var(--tilt));
  transform-origin: center;
  overflow: hidden;
  isolation: isolate;
}
.media-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.04) 75%) 0 0/24px 24px, linear-gradient(45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.04) 75%) 12px 12px/24px 24px;
  pointer-events: none;
}
.media-slot > img,
.media-slot > video,
.media-slot > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.media-slot:has(> img), .media-slot:has(> video), .media-slot:has(> picture) {
  --slot-bg: transparent;
  --slot-border: 0 solid transparent;
}
.media-slot:has(> img)::before, .media-slot:has(> video)::before, .media-slot:has(> picture)::before {
  display: none;
}
.media-slot[data-frame=phone] {
  --slot-bg: #FFFFFF;
  --slot-border: 6px solid #000000;
  --slot-radius: 50px;
}
.media-slot[data-frame=phone]:has(> img), .media-slot[data-frame=phone]:has(> video), .media-slot[data-frame=phone]:has(> picture) {
  --slot-bg: #FFFFFF;
  --slot-border: 6px solid #000000;
}
.media-slot[data-frame=phone] > img,
.media-slot[data-frame=phone] > video,
.media-slot[data-frame=phone] > picture > img {
  border-radius: 44px;
}
.media-slot[data-corners=bottom] {
  border-radius: 0 0 50px 50px;
}
.media-slot[data-corners=top] {
  border-radius: 50px 50px 0 0;
}

.stat-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-md);
  font-size: var(--fs-p);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.stat-line li {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-md);
}
.stat-line li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  background: rgba(217, 217, 217, 0.6);
  border-radius: var(--r-full);
  flex: 0 0 auto;
}
.stat-line strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
[data-theme=light] .stat-line {
  color: rgba(45, 27, 78, 0.6);
}
[data-theme=light] .stat-line strong {
  color: rgba(45, 27, 78, 0.85);
}
[data-theme=light] .stat-line li:not(:last-child)::after {
  background: rgba(45, 27, 78, 0.25);
}
@media (max-width: 768px) {
  .stat-line {
    gap: var(--sp-sm);
    font-size: 14px;
  }
  .stat-line li {
    gap: var(--sp-sm);
  }
}

body.home-v3 .topnav,
.topnav {
  --nav-h: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--sp-2xl);
  padding: 22px clamp(24px, 8vw, 140px);
  background: var(--darkest-purple) !important;
  background-color: var(--darkest-purple);
  color: #FFFFFF;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  margin: 0;
  max-width: none;
  height: auto;
  min-height: var(--nav-h);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.home-v3 .topnav__nav,
.topnav__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
body.home-v3 .topnav__nav ul,
.topnav__nav ul {
  display: flex;
  align-items: center;
  gap: 33px;
}
body.home-v3 .topnav__nav a,
.topnav__nav a {
  color: #FFFFFF;
  font-size: var(--fs-p);
  font-weight: 400;
  line-height: 1.5;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
body.home-v3 .topnav__nav a:hover, body.home-v3 .topnav__nav a:focus-visible,
.topnav__nav a:hover,
.topnav__nav a:focus-visible {
  color: var(--hot-pink);
  border-bottom-color: var(--hot-pink);
}
body.home-v3 .topnav__cta,
.topnav__cta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: auto;
}
body.home-v3 .topnav .hamburger,
.topnav .hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-md);
}
body.home-v3 .topnav .hamburger span,
.topnav .hamburger span {
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
body.home-v3 .topnav .hamburger[aria-expanded=true] span:nth-child(1),
.topnav .hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.home-v3 .topnav .hamburger[aria-expanded=true] span:nth-child(2),
.topnav .hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
body.home-v3 .topnav .hamburger[aria-expanded=true] span:nth-child(3),
.topnav .hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body.home-v3 .topnav .hamburger:focus-visible,
.topnav .hamburger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  body.home-v3 .topnav,
  .topnav {
    gap: var(--sp-sm);
    padding: 14px var(--sp-md);
  }
  body.home-v3 .topnav__nav,
  .topnav__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darkest-purple);
    padding: var(--sp-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.2s, visibility 0s linear 0.25s;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  body.home-v3 .topnav__nav ul,
  .topnav__nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  body.home-v3 .topnav__nav a,
  .topnav__nav a {
    font-size: 22px;
    display: block;
    padding: 12px 4px;
    border-bottom: 0;
  }
  body.home-v3 .topnav.nav-open body.home-v3 .topnav__nav,
  body.home-v3 .topnav.nav-open .topnav__nav,
  .topnav.nav-open body.home-v3 .topnav__nav,
  .topnav.nav-open .topnav__nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: transform 0.25s ease, opacity 0.2s, visibility 0s linear 0s;
  }
  body.home-v3 .topnav .hamburger,
  .topnav .hamburger {
    display: inline-flex;
  }
}
@media (max-width: 1024px) {
  body.home-v3 .topnav__cta,
  .topnav__cta {
    display: none;
  }
}
@media (max-width: 480px) {
  body.home-v3 .topnav,
  .topnav {
    padding: 12px var(--sp-sm);
  }
}

html[data-theme=light] .topnav {
  background: #FFFFFF;
  color: var(--darkest-purple);
  border-bottom: 1px solid rgba(14, 8, 64, 0.08);
}
html[data-theme=light] .topnav.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
}
html[data-theme=light] .topnav .brand {
  color: var(--darkest-purple);
}
html[data-theme=light] .topnav .topnav__nav a {
  color: var(--darkest-purple);
}
html[data-theme=light] .topnav .topnav__nav a:hover, html[data-theme=light] .topnav .topnav__nav a:focus-visible {
  color: var(--hot-pink);
  border-bottom-color: var(--hot-pink);
}
html[data-theme=light] .topnav .btn--line {
  --btn-border: var(--darkest-purple);
  color: var(--darkest-purple);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--cyan);
  text-decoration: none;
  line-height: 0;
}
.brand__svg {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .brand__svg {
    height: 32px;
  }
}
@media (max-width: 480px) {
  .brand__svg {
    height: 28px;
  }
}

.home-v3 .home-hero {
  position: relative;
  background: var(--darkest-purple);
  color: #FFFFFF;
  padding: 60px clamp(24px, 8vw, 140px) 100px;
  border: 0;
  border-radius: 0;
  margin: 0;
  max-width: none;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home-v3 .home-hero {
    padding: 40px var(--sp-md) var(--sp-2xl);
  }
}
@media (max-width: 480px) {
  .home-v3 .home-hero {
    padding: 32px var(--sp-sm) var(--sp-xl);
  }
}
.home-v3 .home-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 117px);
  max-width: 1640px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .home-v3 .home-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-2xl);
  }
}
.home-v3 .home-hero__copy {
  flex: 1 1 auto;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 81px;
  max-width: 818px;
  min-width: 0;
}
@media (max-width: 1024px) {
  .home-v3 .home-hero__copy {
    gap: var(--sp-2xl);
    max-width: none;
  }
}
.home-v3 .home-hero__pitch {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.home-v3 .home-hero__head {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.home-v3 .home-hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h1);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-v3 .home-hero__title .hero-line {
  display: block;
}
@media (max-width: 768px) {
  .home-v3 .home-hero__title {
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  .home-v3 .home-hero__title {
    font-size: 44px;
    line-height: 1.02;
  }
}
.home-v3 .home-hero__highlight {
  display: inline-block;
  background: var(--cyan);
  color: var(--darkest-purple);
  padding: 0 0.18em 0.04em;
  line-height: 0.95;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.home-v3 .home-hero__lead {
  font-size: var(--fs-p-lg);
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
  max-width: 551px;
}
@media (max-width: 768px) {
  .home-v3 .home-hero__lead br {
    display: none;
  }
}
.home-v3 .home-hero__cta {
  align-self: flex-start;
}
@media (max-width: 768px) {
  .home-v3 .home-hero__cta {
    align-self: stretch;
  }
}
.home-v3 .home-hero__visual {
  --phone-w: clamp(280px, 24vw, 396px);
  --photo-w: clamp(340px, 30vw, 499px);
  flex: 0 0 var(--phone-w);
  margin-left: auto;
  position: relative;
  z-index: 1;
  align-self: center;
  aspect-ratio: 396/704;
}
@media (max-width: 1024px) {
  .home-v3 .home-hero__visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    --phone-w: clamp(220px, 50vw, 360px);
    --photo-w: clamp(280px, 60vw, 440px);
    aspect-ratio: auto;
    min-height: 600px;
  }
}
@media (max-width: 768px) {
  .home-v3 .home-hero__visual {
    --phone-w: 60vw;
    --photo-w: 120vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    align-self: stretch;
    min-height: 600px;
  }
}
@media (max-width: 480px) {
  .home-v3 .home-hero__visual {
    --phone-w: 65vw;
    --photo-w: 130vw;
    min-height: 540px;
  }
}
.home-v3 .home-hero__scenes {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.home-v3 .home-hero .hero-scene {
  position: absolute;
  inset: 0;
}
.home-v3 .home-hero .hero-scene__photo {
  position: absolute;
  width: var(--photo-w);
  aspect-ratio: 499/398;
  right: calc(var(--phone-w) - 24%);
  top: 22%;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  z-index: 1;
  transform: rotate(3deg);
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media (max-width: 1024px) {
  .home-v3 .home-hero .hero-scene__photo {
    right: auto;
    left: 0;
    top: 0;
    width: var(--photo-w);
  }
}
@media (max-width: 768px) {
  .home-v3 .home-hero .hero-scene__photo {
    left: -55vw;
    right: auto;
    bottom: auto;
    top: 18vw;
    width: var(--photo-w);
    aspect-ratio: 5/4;
    transform: rotate(0deg);
    z-index: 1;
  }
}
.home-v3 .home-hero .hero-scene__phone {
  position: absolute;
  width: var(--phone-w);
  aspect-ratio: 396/704;
  right: 0;
  top: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  transform: rotate(-4deg) rotateY(180deg);
}
@media (max-width: 768px) {
  .home-v3 .home-hero .hero-scene__phone {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    right: -6vw;
    top: 0;
    width: var(--phone-w);
    aspect-ratio: 396/704;
    z-index: 2;
    transform: rotate(0deg) rotateY(180deg);
    animation: none !important;
  }
}
.home-v3 .home-hero .hero-scene.is-active .hero-scene__photo {
  opacity: 1;
}
.home-v3 .home-hero .hero-scene.is-active .hero-scene__phone {
  transform: rotate(-4deg) rotateY(0deg);
  animation: phone-flip-in 1.1s cubic-bezier(0.5, 0, 0.2, 1) both;
}
@media (max-width: 768px) {
  .home-v3 .home-hero .hero-scene.is-active .hero-scene__phone {
    transform: rotate(0deg) rotateY(0deg);
    animation: none;
  }
}
.home-v3 .home-hero .hero-scene.is-leaving .hero-scene__phone {
  transform: rotate(-4deg) rotateY(180deg);
  animation: phone-flip-out 1.1s cubic-bezier(0.5, 0, 0.2, 1) both;
}
@media (max-width: 768px) {
  .home-v3 .home-hero .hero-scene.is-leaving .hero-scene__phone {
    transform: rotate(0deg) rotateY(180deg);
    animation: none;
  }
}

@keyframes phone-flip-in {
  0% {
    transform: rotate(-4deg) rotateY(-180deg);
  }
  100% {
    transform: rotate(-4deg) rotateY(0deg);
  }
}
@keyframes phone-flip-out {
  0% {
    transform: rotate(-4deg) rotateY(0deg);
  }
  100% {
    transform: rotate(-4deg) rotateY(180deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scene__photo,
  .hero-scene__phone {
    animation: none !important;
  }
}
.chat-pill {
  --pill-bg: var(--hot-pink);
  --pill-fg: #FFFFFF;
  --pill-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--pill-bg);
  color: var(--pill-fg);
  font-family: var(--font-body);
  font-size: var(--fs-p);
  font-weight: 700;
  line-height: 1.25;
  border-radius: var(--pill-radius);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(14, 8, 64, 0.08);
}
.chat-pill--pink {
  --pill-bg: var(--hot-pink);
  --pill-fg: #FFFFFF;
}
.chat-pill--purple {
  --pill-bg: var(--deep-purple);
  --pill-fg: #FFFFFF;
}
.chat-pill--cyan {
  --pill-bg: var(--cyan);
  --pill-fg: #000000;
}
.chat-pill--lilac {
  --pill-bg: var(--light-purple);
  --pill-fg: #000000;
}
.chat-pill--tail-bl {
  border-radius: var(--pill-radius) var(--pill-radius) var(--pill-radius) 0;
}
.chat-pill--tail-tr {
  border-radius: var(--pill-radius) 0 var(--pill-radius) var(--pill-radius);
}
.chat-pill--tail-br {
  border-radius: var(--pill-radius) var(--pill-radius) 0 var(--pill-radius);
}
.chat-pill--tail-tl {
  border-radius: 0 var(--pill-radius) var(--pill-radius) var(--pill-radius);
}

.avatar-bubble {
  --x: 50%;
  --y: 50%;
  --rot: 0deg;
  --delay: 0s;
  --duration: 14s;
  --avatar-size: clamp(48px, 5vw, 75px);
  position: absolute;
  left: var(--x);
  top: 110%;
  width: 0;
  height: 0;
  animation: bubble-rise var(--duration) linear var(--delay) infinite;
}
.avatar-bubble__avatar {
  position: absolute;
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  overflow: hidden;
  background: #D9D9D9;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.avatar-bubble__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar-bubble .chat-pill {
  position: absolute;
  z-index: 3;
  transform: rotate(var(--rot));
  opacity: 0;
  scale: 0.3;
  animation: pill-pop var(--duration) ease-out var(--delay) infinite;
}
.avatar-bubble[data-anchor=bl] .chat-pill {
  left: 20px;
  bottom: 20px;
  transform-origin: bottom left;
}
.avatar-bubble[data-anchor=tr] .chat-pill {
  right: 20px;
  top: 20px;
  transform-origin: top right;
}
.avatar-bubble[data-anchor=br] .chat-pill {
  right: 20px;
  bottom: 20px;
  transform-origin: bottom right;
}
.avatar-bubble[data-anchor=tl] .chat-pill {
  left: 20px;
  top: 20px;
  transform-origin: top left;
}

@keyframes bubble-rise {
  0% {
    top: 115%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  50% {
    top: var(--y);
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    top: -25%;
    opacity: 0;
  }
}
@keyframes pill-pop {
  0%, 18% {
    opacity: 0;
    scale: 0.3;
  }
  24% {
    opacity: 1;
    scale: 1.08;
  }
  30% {
    scale: 1;
  }
  50% {
    opacity: 1;
    scale: 1;
  }
  60% {
    opacity: 0;
    scale: 0.95;
  }
  100% {
    opacity: 0;
    scale: 0.95;
  }
}
.home-v3 .manifest {
  position: relative;
  height: 700px;
  background: var(--manifest-bg);
  color: var(--darkest-purple);
  padding: clamp(72px, 9vw, 110px) clamp(24px, 8vw, 140px) 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  max-width: none;
  overflow: hidden;
  isolation: isolate;
}
.home-v3 .manifest__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: clamp(40px, 9vw, 137px);
  max-width: 1640px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .home-v3 .manifest__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-xl);
  }
}
.home-v3 .manifest__head {
  flex: 0 1 649px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .home-v3 .manifest__head {
    flex: 0 0 auto;
  }
}
.home-v3 .manifest__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--darkest-purple);
  margin: 0;
}
@media (max-width: 768px) {
  .home-v3 .manifest__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .home-v3 .manifest__title {
    font-size: 26px;
  }
}
.home-v3 .manifest__title-line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .home-v3 .manifest__title-line {
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .home-v3 .manifest__lead, .home-v3 .manifest__body {
    font-size: var(--fs-p);
  }
}
.home-v3 .manifest__lead {
  font-size: var(--fs-p-lg);
  font-weight: 400;
  line-height: 1.5;
  color: var(--darkest-purple);
  margin: 0;
}
.home-v3 .manifest__body {
  flex: 0 1 551px;
  font-size: var(--fs-p-lg);
  line-height: 1.5;
  color: var(--darkest-purple);
  margin: 0;
}
.home-v3 .manifest__body strong {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .home-v3 .manifest__body {
    flex: 0 0 auto;
  }
}
.home-v3 .manifest__pills {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .home-v3 .manifest {
    min-height: 0;
    padding: clamp(56px, 10vw, 96px) clamp(24px, 6vw, 64px) clamp(56px, 10vw, 96px);
  }
  .home-v3 .manifest__pills {
    display: none;
  }
}
@media (max-width: 768px) {
  .home-v3 .manifest {
    height: 720px;
    padding: 56px var(--sp-md) 0;
    overflow: hidden;
  }
  .home-v3 .manifest__pills {
    display: block;
  }
  .home-v3 .manifest .avatar-bubble {
    --avatar-size: 44px;
  }
  .home-v3 .manifest .chat-pill {
    padding: 10px 16px;
    font-size: var(--fs-p-sm);
  }
}
@media (max-width: 480px) {
  .home-v3 .manifest {
    height: 640px;
    padding: 48px var(--sp-sm) 0;
  }
  .home-v3 .manifest .chat-pill {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .avatar-bubble {
    animation: none !important;
    opacity: 0 !important;
  }
}
.review-pill {
  --pill-bg: #F2F2F2;
  --pill-fg: var(--darkest-purple);
  --pill-handle: var(--hot-pink);
  --pill-radius: 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 25px;
  background: var(--pill-bg);
  color: var(--pill-fg);
  border-radius: var(--pill-radius);
  max-width: min(420px, 100vw - 64px);
  font-family: var(--font-body);
}
@media (max-width: 480px) {
  .review-pill {
    padding: 16px 20px;
    max-width: min(360px, 100vw - 48px);
  }
}
.review-pill__quote {
  font-size: var(--fs-p);
  font-weight: 700;
  line-height: 1.4;
}
.review-pill__author {
  font-size: var(--fs-p-sm);
  font-weight: 400;
  line-height: 1.4;
}
.review-pill__handle {
  color: var(--pill-handle);
}
.review-pill--gray {
  --pill-bg: #F2F2F2;
  --pill-fg: var(--darkest-purple);
}
.review-pill--purple {
  --pill-bg: var(--deep-purple);
  --pill-fg: #FFFFFF;
}
.review-pill--pink {
  --pill-bg: var(--hot-pink);
  --pill-fg: #FFFFFF;
  --pill-handle: #FFFFFF;
}
.review-pill--lilac {
  --pill-bg: var(--light-purple);
  --pill-fg: var(--darkest-purple);
}
.review-pill--tail-bl {
  border-radius: var(--pill-radius) var(--pill-radius) var(--pill-radius) 0;
}
.review-pill--tail-tr {
  border-radius: var(--pill-radius) 0 var(--pill-radius) var(--pill-radius);
}
.review-pill--tail-br {
  border-radius: var(--pill-radius) var(--pill-radius) 0 var(--pill-radius);
}
.review-pill--tail-tl {
  border-radius: 0 var(--pill-radius) var(--pill-radius) var(--pill-radius);
}

.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px;
  background: #FFFFFF;
  border-radius: 50px;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.showcase-card:hover {
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .showcase-card {
    border-radius: 32px;
  }
}
.showcase-card--sm {
  border-radius: 32px;
  padding: 6px;
  gap: 8px;
}
.showcase-card--sm .showcase-card__media {
  --slot-radius: 26px;
  height: clamp(160px, 18vw, 240px);
}
.showcase-card--sm .showcase-card__body {
  padding: 20px;
  gap: 14px;
}
.showcase-card--sm .showcase-card__head {
  gap: 6px;
}
.showcase-card--sm .showcase-card__title {
  font-size: var(--fs-h4);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.showcase-card--sm .showcase-card__desc {
  font-size: var(--fs-p-sm);
}
.showcase-card__media {
  --slot-radius: 42px;
  width: 100%;
  flex: 0 0 auto;
  height: clamp(240px, 26vw, 450px);
  aspect-ratio: auto;
}
@media (max-width: 768px) {
  .showcase-card__media {
    --slot-radius: 26px;
    height: clamp(200px, 56vw, 320px);
  }
}
.showcase-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  flex: 1 1 auto;
}
@media (max-width: 768px) {
  .showcase-card__body {
    padding: 24px;
    gap: 20px;
  }
}
.showcase-card__head {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-self: stretch;
}
.showcase-card__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h3);
  line-height: 1.1;
  color: var(--darkest-purple);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .showcase-card__title {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 24px;
  }
}
.showcase-card__sub {
  font-size: var(--fs-p-lg);
  font-weight: 400;
  line-height: 1.5;
  color: var(--darkest-purple);
  margin: 0;
}
.showcase-card__desc {
  font-size: var(--fs-p);
  font-weight: 400;
  line-height: 1.5;
  color: var(--darkest-purple);
  margin: 0;
  align-self: stretch;
}
.showcase-card__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.home-v3 .showcase {
  position: relative;
  background: #F2F2F2;
  color: var(--darkest-purple);
  padding: clamp(72px, 9vw, 110px) clamp(24px, 8vw, 140px);
  border: 0;
  border-radius: 0;
  margin: 0;
  max-width: none;
}
@media (max-width: 768px) {
  .home-v3 .showcase {
    padding: 56px var(--sp-md);
  }
}
@media (max-width: 480px) {
  .home-v3 .showcase {
    padding: 48px var(--sp-sm);
  }
}

.showcase__inner {
  max-width: 1640px;
  margin: 0 auto;
}
.showcase__head {
  display: flex;
  align-items: flex-end;
  gap: clamp(40px, 9vw, 137px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 1024px) {
  .showcase__head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
  }
}
.showcase__title {
  flex: 0 1 649px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--darkest-purple);
  margin: 0;
}
@media (max-width: 1024px) {
  .showcase__title {
    flex: 0 0 auto;
  }
}
@media (max-width: 768px) {
  .showcase__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .showcase__title {
    font-size: 26px;
  }
}
.showcase__title .showcase__title-line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .showcase__title .showcase__title-line {
    white-space: normal;
  }
}
.showcase__lead {
  flex: 0 1 551px;
  font-size: var(--fs-p-lg);
  font-weight: 400;
  line-height: 1.5;
  color: var(--darkest-purple);
  margin: 0;
}
.showcase__lead strong {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .showcase__lead {
    flex: 0 0 auto;
  }
}
@media (max-width: 768px) {
  .showcase__lead {
    font-size: var(--fs-p);
  }
}
.showcase__rows {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 32px);
}
.showcase__row {
  display: grid;
  gap: clamp(24px, 2.5vw, 32px);
}
.showcase__row--wide-narrow {
  grid-template-columns: 5fr 4fr;
}
.showcase__row--narrow-wide {
  grid-template-columns: 4fr 5fr;
}
@media (max-width: 1024px) {
  .showcase__row {
    grid-template-columns: 1fr;
  }
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .feature {
    gap: 16px;
  }
}
.feature__icon {
  width: 64px;
  height: 64px;
  color: var(--hot-pink);
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .feature__icon {
    width: 40px;
    height: 40px;
  }
}
.feature__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h4);
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}
.feature__body {
  font-size: var(--fs-p);
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}

.home-v3 .feature-cta {
  position: relative;
  background: var(--darkest-purple);
  color: #FFFFFF;
  padding: clamp(72px, 9vw, 110px) clamp(24px, 8vw, 140px);
  border: 0;
  border-radius: 0;
  margin: 0;
  max-width: none;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home-v3 .feature-cta {
    padding: 64px var(--sp-md);
  }
}
@media (max-width: 480px) {
  .home-v3 .feature-cta {
    padding: 56px var(--sp-sm);
  }
}

.feature-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 220px;
  align-items: stretch;
  max-width: 1640px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .feature-cta__inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 100px);
  }
}
@media (max-width: 768px) {
  .feature-cta__inner {
    gap: var(--sp-2xl);
  }
}
.feature-cta__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 102px);
}
@media (max-width: 768px) {
  .feature-cta__copy {
    gap: 32px;
  }
}
.feature-cta__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 768px) {
  .feature-cta__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .feature-cta__title {
    font-size: 26px;
  }
}
.feature-cta__title-line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .feature-cta__title-line {
    white-space: normal;
  }
}
.feature-cta__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 663px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .feature-cta__features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.feature-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.feature-cta__buttons .btn--line {
  --btn-border: #FFFFFF;
}
@media (max-width: 768px) {
  .feature-cta__buttons {
    gap: 12px;
  }
  .feature-cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
.feature-cta__phones {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: -200px;
  overflow: visible;
}
@media (max-width: 1024px) {
  .feature-cta__phones {
    display: none;
  }
}
.feature-cta__col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: rotate(-15deg);
  transform-origin: center;
}
.feature-cta__col--offset {
  margin-top: 40px;
}

.feature-phone {
  width: 318px;
  height: 605px;
  flex: 0 0 auto;
  aspect-ratio: auto;
}

.home-v3 .logo-marquee {
  position: relative;
  background: #FFFFFF;
  padding: clamp(48px, 6vw, 88px) 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  max-width: none;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 768px) {
  .home-v3 .logo-marquee {
    padding: 40px 0;
  }
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
@media (max-width: 768px) {
  .logo-marquee__track {
    animation-duration: 70s;
  }
}
@media (max-width: 480px) {
  .logo-marquee__track {
    animation-duration: 90s;
  }
}
.logo-marquee:hover .logo-marquee__track, .logo-marquee:focus-within .logo-marquee__track {
  animation-play-state: paused;
}
.logo-marquee__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--darkest-purple);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.logo-marquee__item--tile-red {
  background: #E12128;
  padding: 14px 22px;
  border-radius: 12px;
}
.logo-marquee__logo {
  height: clamp(52px, 5.2vw, 73px);
  width: auto;
  object-fit: contain;
  display: block;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track {
    animation: none;
  }
  .home-v3, .home-v3 *, .home-v3 *::before, .home-v3 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.home-v3 .home-footer {
  position: relative;
  background: var(--darkest-purple);
  color: var(--light-purple);
  padding: clamp(60px, 7vw, 96px) clamp(24px, 8vw, 140px) 32px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  margin: 0;
  max-width: none;
}
@media (max-width: 768px) {
  .home-v3 .home-footer {
    padding: 56px var(--sp-md) 24px;
  }
}
@media (max-width: 480px) {
  .home-v3 .home-footer {
    padding: 48px var(--sp-sm) 24px;
  }
}

.home-footer__inner {
  max-width: 1640px;
  margin: 0 auto;
}
.home-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 1024px) {
  .home-footer__top {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
}
.home-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  align-items: flex-start;
}
.home-footer__logo {
  height: 48px;
  width: auto;
  color: #FFFFFF;
  display: block;
}
.home-footer__claim {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h4);
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}
.home-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-footer__contact {
  color: var(--light-purple);
  font-size: var(--fs-p);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}
.home-footer__contact:hover, .home-footer__contact:focus-visible {
  color: var(--cyan);
}
.home-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
}
@media (max-width: 768px) {
  .home-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
  }
}
.home-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-footer__col h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-p-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}
.home-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .home-footer__col ul {
    gap: 4px;
  }
}
.home-footer__col a {
  color: var(--light-purple);
  font-size: var(--fs-p);
  text-decoration: none;
  transition: color 0.2s;
}
.home-footer__col a:hover, .home-footer__col a:focus-visible {
  color: var(--cyan);
}
@media (max-width: 768px) {
  .home-footer__col a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 0;
  }
}
.home-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 230, 255, 0.12);
  color: rgba(240, 230, 255, 0.7);
  font-size: var(--fs-p-sm);
}
.home-footer__bottom a {
  color: rgba(240, 230, 255, 0.7);
  font-size: var(--fs-p-sm);
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}
.home-footer__bottom a:hover, .home-footer__bottom a:focus-visible {
  color: var(--cyan);
}
@media (max-width: 768px) {
  .home-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-sm);
  }
  .home-footer__bottom a:first-of-type {
    margin-left: 0;
  }
}
.home-footer--simple .home-footer__top {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 1024px) {
  .home-footer--simple .home-footer__top {
    grid-template-columns: 1fr;
  }
}
.home-footer__moderator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 460px;
}
@media (max-width: 1024px) {
  .home-footer__moderator {
    max-width: 100%;
  }
}
.home-footer__ctas {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}
.home-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--cyan);
  color: var(--darkest-purple);
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--fs-p);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s;
}
.home-footer__cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.home-footer__cta:hover, .home-footer__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 255, 249, 0.28);
  color: var(--darkest-purple);
}
.home-footer__cta--ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}
.home-footer__cta--ghost:hover, .home-footer__cta--ghost:focus-visible {
  background: #FFFFFF;
  color: var(--darkest-purple);
  border-color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.18);
}

.moderator-bubble {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-body);
}
.moderator-bubble__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 0, 0, 0.12);
}
.moderator-bubble__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.moderator-bubble__name {
  color: var(--hot-pink);
  font-size: var(--fs-p-sm);
  font-weight: 600;
  margin: 8px 0 6px;
}
.moderator-bubble__msg {
  background: #FFFFFF;
  color: var(--darkest-purple);
  padding: 14px 18px;
  border-radius: 4px 20px 20px 20px;
  font-size: var(--fs-p);
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.home-v3 .is-hidden {
  display: none !important;
}

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

.home-v3 .page-hero {
  position: relative;
  background: var(--darkest-purple);
  color: #FFFFFF;
  padding: clamp(72px, 9vw, 120px) clamp(24px, 8vw, 140px) clamp(64px, 8vw, 100px);
  border: 0;
  border-radius: 0;
  margin: 0;
  max-width: none;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 768px) {
  .home-v3 .page-hero {
    padding: 56px var(--sp-md) 48px;
  }
}
@media (max-width: 480px) {
  .home-v3 .page-hero {
    padding: 48px var(--sp-sm) 40px;
  }
}
.home-v3 .page-hero[data-theme=light] {
  background: #F2F2F2;
  color: var(--darkest-purple);
}
.home-v3 .page-hero[data-theme=light] .page-hero__eyebrow {
  border-color: rgba(255, 64, 129, 0.4);
  color: var(--hot-pink);
}
.home-v3 .page-hero[data-theme=light] .page-hero__title {
  color: var(--darkest-purple);
}
.home-v3 .page-hero[data-theme=light] .page-hero__highlight {
  color: var(--hot-pink);
}
.home-v3 .page-hero[data-theme=light] .page-hero__lead {
  color: rgba(14, 8, 64, 0.75);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-lg);
}
.page-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(15, 255, 249, 0.4);
  border-radius: var(--r-full);
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: var(--fs-p-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h1);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 768px) {
  .page-hero__title {
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  .page-hero__title {
    font-size: 40px;
    line-height: 1.05;
  }
}
.page-hero__highlight {
  color: var(--chart-purple);
}
.page-hero__lead {
  max-width: 640px;
  font-size: var(--fs-p-lg);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
@media (max-width: 768px) {
  .page-hero__lead {
    font-size: var(--fs-p);
  }
}
.page-hero__cta {
  margin-top: var(--sp-sm);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split + .split {
  margin-top: clamp(56px, 7vw, 96px);
}
.split--reverse .split__copy {
  order: 2;
}
.split--reverse .split__media {
  order: 1;
}
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .split--reverse .split__copy {
    order: 1;
  }
  .split--reverse .split__media {
    order: 2;
  }
}
.split__copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.split__eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--chart-purple);
  margin: 0;
}
[data-theme=light] .split__eyebrow {
  color: var(--hot-pink);
}
.split__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h3);
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}
[data-theme=light] .split__title {
  color: var(--darkest-purple);
}
@media (max-width: 768px) {
  .split__title {
    font-size: 24px;
  }
}
.split__title-accent {
  color: var(--hot-pink);
}
[data-theme=dark] .split__title-accent {
  color: var(--chart-purple);
}
.split__body {
  font-size: var(--fs-p);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
[data-theme=light] .split__body {
  color: var(--dark-text);
}
.split__body strong {
  font-weight: 700;
}
.split__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.split__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--fs-p);
  line-height: 1.5;
}
.split__list li strong {
  font-weight: 700;
}
.split__check {
  color: var(--hot-pink);
  font-weight: 900;
  font-size: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
}
.split__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.split__media .media-slot {
  width: 100%;
  max-width: 460px;
}
.split__media .media-slot[data-frame=phone] {
  max-width: 320px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.section-head__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0;
}
[data-theme=light] .section-head__title {
  color: var(--darkest-purple);
}
@media (max-width: 768px) {
  .section-head__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .section-head__title {
    font-size: 26px;
  }
}
.section-head__highlight {
  color: var(--chart-purple);
}
.section-head__highlight--pink {
  color: var(--hot-pink);
}
[data-theme=light] .section-head__highlight {
  color: var(--hot-pink);
}
.section-head__lead {
  font-size: var(--fs-p-lg);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
[data-theme=light] .section-head__lead {
  color: var(--dark-text);
}
@media (max-width: 768px) {
  .section-head__lead {
    font-size: var(--fs-p);
  }
}

.home-v3 .subpage {
  position: relative;
  padding: clamp(72px, 9vw, 110px) clamp(24px, 8vw, 140px);
  border: 0;
  border-radius: 0;
  margin: 0;
  max-width: none;
  overflow: hidden;
}
.home-v3 .subpage[data-theme=dark] {
  background: var(--darkest-purple);
  color: #FFFFFF;
}
.home-v3 .subpage[data-theme=light] {
  background: #F2F2F2;
  color: var(--darkest-purple);
}
@media (max-width: 768px) {
  .home-v3 .subpage {
    padding: 56px var(--sp-md);
  }
}
@media (max-width: 480px) {
  .home-v3 .subpage {
    padding: 48px var(--sp-sm);
  }
}
.home-v3 .subpage__inner {
  max-width: 1640px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 96px);
}

.step__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.9;
  color: var(--cyan);
  margin-bottom: var(--sp-sm);
}
[data-theme=light] .step__num {
  color: var(--hot-pink);
}

.vertical-grid,
.showcase-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}
@media (max-width: 1024px) {
  .vertical-grid,
  .showcase-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .vertical-grid,
  .showcase-grid--4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.vertical-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--sp-sm);
  min-height: 320px;
  padding: var(--sp-xl) var(--sp-lg);
  border-radius: var(--r-xl);
  color: #FFFFFF;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vertical-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  user-select: none;
  pointer-events: none;
}
.vertical-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(14, 8, 64, 0.82), var(--vc-tint, rgba(15, 255, 249, 0.4)));
}
.vertical-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 36px rgba(15, 255, 249, 0.15);
}
.vertical-card--cyan {
  --vc-tint: rgba(15, 255, 249, 0.4);
}
.vertical-card--pink {
  --vc-tint: rgba(255, 64, 129, 0.45);
}
.vertical-card--purple {
  --vc-tint: rgba(157, 127, 255, 0.45);
}
.vertical-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h4);
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}
.vertical-card__body {
  font-size: var(--fs-p);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-lg);
  font-size: var(--fs-p-sm);
  color: rgba(255, 255, 255, 0.7);
  list-style: none;
  padding: 0;
  margin: 0;
}
[data-theme=light] .trust-row {
  color: var(--dark-text);
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-row__check {
  color: var(--hot-pink);
  font-weight: 900;
}
@media (max-width: 768px) {
  .trust-row {
    gap: var(--sp-md);
  }
}

.post-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  margin: clamp(40px, 6vw, 72px) auto 0;
  text-align: center;
}
.post-cta__caption {
  margin: 0;
  font-size: var(--fs-p-sm);
  color: rgba(255, 255, 255, 0.7);
}
[data-theme=light] .post-cta__caption {
  color: rgba(45, 27, 78, 0.65);
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: var(--fs-p);
  line-height: 1.65;
  color: var(--darkest-purple);
}
.legal > * + * {
  margin-top: 24px;
}
.legal h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h3);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-top: clamp(48px, 6vw, 64px);
  padding-top: clamp(28px, 3vw, 36px);
  border-top: 1px solid rgba(14, 8, 64, 0.12);
}
.legal h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-h4);
  margin-top: 32px;
}
.legal p {
  margin: 0;
}
.legal ul, .legal ol {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal li::marker {
  color: var(--hot-pink);
}
.legal strong {
  color: var(--darkest-purple);
  font-weight: 700;
}
.legal a {
  color: var(--hot-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.legal a:hover, .legal a:focus-visible {
  color: var(--deep-purple);
}
.legal__defs {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
  column-gap: clamp(16px, 3vw, 32px);
  row-gap: 8px;
}
.legal__defs li {
  display: contents;
}
.legal__defs li::before {
  content: attr(data-label);
  font-weight: 700;
  color: var(--deep-purple);
}
@media (max-width: 768px) {
  .legal__defs {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
  .legal__defs li {
    display: block;
  }
  .legal__defs li::before {
    display: block;
    font-size: var(--fs-p-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
}
.legal__meta {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(28px, 3vw, 36px);
  border-top: 1px solid rgba(14, 8, 64, 0.12);
  font-size: var(--fs-p-sm);
  color: rgba(14, 8, 64, 0.65);
}
.legal__meta p + p {
  margin-top: 8px;
}
.legal__address {
  display: block;
  font-style: normal;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .legal {
    font-size: var(--fs-p);
    line-height: 1.6;
  }
  .legal > * + * {
    margin-top: 20px;
  }
}

.topnav__nav a[aria-current=page] {
  color: var(--hot-pink);
  border-bottom-color: var(--hot-pink);
}

.pricing-hero {
  position: relative;
  background: var(--bg);
  color: var(--body-color);
  padding: clamp(72px, 9vw, 128px) clamp(24px, 6vw, 64px) clamp(40px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.pricing-hero__inner {
  max-width: 880px;
  margin: 0 auto;
}
.pricing-hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--display-color);
  margin: 0 0 var(--sp-md);
}
.pricing-hero__title mark {
  display: inline-block;
  background: var(--cyan);
  color: var(--darkest-purple);
  -webkit-text-fill-color: var(--darkest-purple);
  padding: 0 0.18em 0.04em;
  line-height: 0.95;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.pricing-hero__lead {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--body-color);
  max-width: 640px;
  margin: 0 auto var(--sp-xl);
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(15, 255, 249, 0.08);
  border: 1px solid var(--card-border-soft);
  border-radius: var(--r-full);
}
.billing-toggle__btn {
  position: relative;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--body-color);
  cursor: pointer;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
  min-height: 40px;
}
.billing-toggle__btn:hover {
  color: var(--display-color);
}
.billing-toggle__btn.is-active {
  background: var(--cyan);
  color: var(--darkest-purple);
  box-shadow: 0 6px 18px rgba(15, 255, 249, 0.22);
}
.billing-toggle__btn.is-active:hover {
  color: var(--darkest-purple);
}
.billing-toggle__btn.is-active .billing-toggle__save {
  background: rgba(14, 8, 64, 0.18);
  color: var(--darkest-purple);
}
.billing-toggle__save {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-full);
  background: rgba(255, 64, 129, 0.2);
  color: var(--hot-pink);
}

[data-theme=light] .billing-toggle {
  background: rgba(14, 8, 64, 0.05);
}

.pricing {
  background: var(--bg);
  padding: clamp(48px, 6vw, 88px) clamp(24px, 6vw, 64px) clamp(72px, 9vw, 120px);
  position: relative;
}
.pricing__inner {
  max-width: 1480px;
  margin: 0 auto;
}
.pricing__strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--card-border-soft);
  border-radius: 0 var(--r-xl) var(--r-xl) var(--r-xl);
  background: var(--bg);
  isolation: isolate;
  overflow: visible;
}
.pricing__strip[data-theme=light] {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border-color: rgba(14, 8, 64, 0.12);
}
.pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--body-color);
  opacity: 0.7;
  margin: var(--sp-xl) auto 0;
  max-width: 720px;
}

.pricing-tile {
  position: relative;
  padding: clamp(28px, 2.4vw, 36px) clamp(16px, 1.4vw, 24px) clamp(24px, 1.8vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--card-border-soft);
  min-width: 0;
  background: var(--bg);
}
.pricing-tile:first-child {
  border-radius: 0 0 0 var(--r-xl);
}
.pricing-tile:last-child {
  border-right: 0;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}
.pricing-tile:hover, .pricing-tile:focus-within {
  z-index: 5;
}
.pricing-tile__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heading-color);
}
.pricing-tile__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  min-height: 48px;
}
.pricing-tile__amount {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--display-color);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pricing-tile__period {
  font-size: 13px;
  color: var(--body-color);
  opacity: 0.7;
  font-weight: 500;
}
.pricing-tile__save {
  font-size: 12px;
  font-weight: 700;
  color: var(--hot-pink);
  min-height: 18px;
  line-height: 1.4;
}
.pricing-tile__desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--body-color);
  opacity: 0.85;
  min-height: 38px;
}
.pricing-tile__stats {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 8px;
  align-items: baseline;
  padding: var(--sp-sm) 0;
  border-top: 1px solid var(--card-border-soft);
  border-bottom: 1px solid var(--card-border-soft);
}
.pricing-tile__stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  text-align: right;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--display-color);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pricing-tile__stat-label {
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--body-color);
  opacity: 0.78;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.pricing-tile__stat--empty .pricing-tile__stat-num,
.pricing-tile__stat--empty .pricing-tile__stat-label {
  opacity: 0.32;
}
.pricing-tile__stat-num.pricing-tile__stat--empty, .pricing-tile__stat-label.pricing-tile__stat--empty {
  opacity: 0.32;
}
.pricing-tile__inherit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-top: 4px;
}
.pricing-tile__inherit::before {
  content: "+";
  color: var(--hot-pink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}
.pricing-tile__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pricing-tile__features li {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--body-color);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-tile__features li::before {
  content: "✓";
  color: var(--hot-pink);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-tile__features li.is-soon {
  opacity: 0.6;
}
.pricing-tile__features li.is-soon::after {
  content: "brzy";
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hot-pink);
  background: rgba(255, 64, 129, 0.12);
  padding: 2px 6px;
  border-radius: var(--r-full);
  margin-left: 4px;
  align-self: center;
}
.pricing-tile .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  --btn-px: 16px;
  --btn-py: 12px;
  --btn-fs: 14px;
}
.pricing-tile__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hot-pink);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(255, 64, 129, 0.4);
  z-index: 3;
}
.pricing-tile--popular {
  background: linear-gradient(180deg, rgba(255, 64, 129, 0.1), rgba(255, 64, 129, 0.03) 50%, rgba(255, 64, 129, 0) 100%), var(--bg);
  border: 2px solid var(--hot-pink);
  border-radius: var(--r-xl);
  margin: -24px -1px;
  padding-top: calc(clamp(28px, 2.4vw, 36px) + 24px);
  padding-bottom: calc(clamp(24px, 1.8vw, 30px) + 24px);
  box-shadow: 0 18px 50px rgba(255, 64, 129, 0.2);
  z-index: 2;
}
.pricing-tile--popular .pricing-tile__name {
  color: var(--hot-pink);
}

.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: var(--hot-pink);
  font-size: 9px;
  font-weight: 800;
  cursor: help;
  opacity: 0.7;
  transition: opacity 0.15s;
  flex-shrink: 0;
  font-family: var(--font-body);
  line-height: 1;
}
.info-tip:hover, .info-tip:focus-visible {
  opacity: 1;
  outline: none;
}
.info-tip:hover .info-tip__text, .info-tip:focus-visible .info-tip__text {
  opacity: 1;
}
.info-tip__text {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  background: var(--darkest-purple);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 8px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 10;
}
.info-tip__text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--darkest-purple);
}

@media (max-width: 980px) {
  .pricing {
    padding-inline: 0;
  }
  .pricing__strip {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 32px clamp(20px, 6vw, 64px);
    gap: 12px;
    scroll-padding-inline: clamp(20px, 6vw, 64px);
    isolation: isolate;
    scrollbar-width: none;
  }
  .pricing__strip::-webkit-scrollbar {
    display: none;
  }
  .pricing-tile {
    flex: 0 0 min(76vw, 320px);
    scroll-snap-align: center;
    border: 1px solid var(--card-border-soft);
    border-right: 1px solid var(--card-border-soft);
    border-radius: var(--r-xl);
    background: var(--bg);
  }
  .pricing-tile:first-child, .pricing-tile:last-child {
    border-radius: var(--r-xl);
  }
  .pricing-tile:last-child {
    border-right: 1px solid var(--card-border-soft);
  }
  .pricing-tile--popular {
    margin: 0;
    flex: 0 0 min(82vw, 340px);
    padding-top: clamp(40px, 4vw, 48px);
    padding-bottom: clamp(24px, 1.8vw, 30px);
  }
  .pricing__note {
    padding: 0 var(--sp-md);
  }
}
.feat-section {
  background: var(--bg);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 64px);
}
.feat-section__head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.feat-section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--display-color);
  margin: 0 0 var(--sp-md);
}
.feat-section__title em {
  display: inline-block;
  background: var(--cyan);
  color: var(--darkest-purple);
  font-style: normal;
  padding: 0 0.18em 0.04em;
  line-height: 0.95;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.feat-section__lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--body-color);
  margin: 0;
}

.home-v3 .feat-list {
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.home-v3 .feat-list__item {
  border-bottom: 1px solid var(--card-border-soft);
}
.home-v3 .feat-list__item:first-child {
  border-top: 1px solid var(--card-border-soft);
}
.home-v3 .feat-list__item.is-open .feat-list__icon {
  transform: rotate(45deg);
}
.home-v3 .feat-list__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: inherit;
}
.home-v3 .feat-list__btn-text {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
}
.home-v3 .feat-list__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--display-color);
  line-height: 1.2;
}
.home-v3 .feat-list__hook {
  font-size: 13px;
  font-weight: 600;
  color: var(--hot-pink);
  letter-spacing: 0;
}
.home-v3 .feat-list__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--hot-pink);
  transition: transform 0.3s;
}
.home-v3 .feat-list__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.home-v3 .feat-list__body-inner {
  padding: 0 0 var(--sp-md);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body-color);
  max-width: 680px;
}

.faq-section {
  background: var(--bg);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 6vw, 64px);
}
.faq-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 56px);
}
.faq-section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--display-color);
  margin: 0;
}

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

.faq-item {
  border: 1px solid var(--card-border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--hot-pink);
}
.faq-item.is-open {
  border-color: var(--hot-pink);
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  padding: var(--sp-md) clamp(20px, 2.5vw, 32px);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--display-color);
  text-align: left;
  line-height: 1.4;
}
.faq-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--hot-pink);
  transition: transform 0.3s;
}
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__inner {
  padding: 0 clamp(20px, 2.5vw, 32px) var(--sp-md);
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-color);
}
.faq-item__inner p + p {
  margin-top: var(--sp-sm);
}
.faq-item__inner strong {
  color: var(--display-color);
}

/*# sourceMappingURL=main.v2.css.map */
