/* ========================================================================== 
   Loopzey global design system
   ========================================================================== */

:root {
  /* Colors */
  --color-primary-purple: #5b21f4;
  --color-dark-purple: #32108d;
  --color-violet: #8b3dff;
  --color-pink: #f72f86;
  --color-orange: #ff721f;
  --color-blue: #2f80ed;
  --color-green: #16a67a;
  --color-dark-navy: #07142f;
  --color-heading: #0c1238;
  --color-body: #252a48;
  --color-muted: #70758d;
  --color-white: #ffffff;
  --color-page-background: #fbfaff;
  --color-card-background: #ffffff;
  --color-border: #e8e3f3;
  --color-soft-purple: #f2ebff;
  --color-soft-pink: #fff0f6;
  --color-soft-blue: #edf6ff;
  --color-soft-orange: #fff2e9;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #3512df 0%, #7628ff 100%);
  --gradient-purple-pink: linear-gradient(135deg, #5b21f4 0%, #d91cf1 100%);
  --gradient-pink-orange: linear-gradient(135deg, #f72f86 0%, #ff721f 100%);
  --gradient-blue: linear-gradient(135deg, #2167df 0%, #43a5ff 100%);
  --gradient-xp-dark: linear-gradient(135deg, #09062b 0%, #171052 52%, #291078 100%);
  --gradient-statistics: linear-gradient(90deg, #e82791 0%, #7127ef 48%, #254ce4 100%);
  --gradient-promotional: linear-gradient(135deg, #5615e9 0%, #8e18ee 52%, #df1ac8 100%);
  --gradient-button: linear-gradient(100deg, #3d16e7 0%, #8420f6 58%, #ef22c0 100%);

  /* Typography */
  --font-family-main: "Manrope", "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-display: clamp(3rem, 5vw, 5.5rem);
  --font-size-hero: clamp(2.5rem, 4vw, 4.5rem);
  --font-size-section-heading: clamp(1.75rem, 2.5vw, 2.5rem);
  --font-size-card-heading: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --font-size-label: 0.75rem;
  --font-size-button: 0.9375rem;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height-tight: 1.1;
  --line-height-heading: 1.2;
  --line-height-body: 1.65;
  --line-height-small: 1.5;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border radii */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgb(20 14 64 / 0.06);
  --shadow-card: 0 10px 30px rgb(37 22 92 / 0.09);
  --shadow-md: 0 16px 40px rgb(37 22 92 / 0.13);
  --shadow-lg: 0 24px 64px rgb(37 22 92 / 0.18);
  --shadow-purple-glow: 0 12px 36px rgb(91 33 244 / 0.3);
  --shadow-pink-glow: 0 12px 36px rgb(247 47 134 / 0.28);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-body);
  background: var(--color-page-background);
  font-family: var(--font-family-main);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0 var(--space-4);
  color: var(--color-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  text-wrap: balance;
}

h1 {
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
}

h2 {
  font-size: var(--font-size-section-heading);
}

h3 {
  font-size: var(--font-size-card-heading);
}

p {
  margin-block: 0 var(--space-4);
}

a {
  color: var(--color-primary-purple);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  color: var(--color-dark-purple);
}

button,
[type="button"],
[type="submit"],
[type="reset"] {
  font: inherit;
  font-size: var(--font-size-button);
  font-weight: var(--font-weight-semibold);
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
[type="reset"]:not(:disabled) {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="submit"]:disabled,
[type="reset"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

ul,
ol {
  margin-block: 0 var(--space-4);
  padding-inline-start: var(--space-6);
}

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

img {
  height: auto;
}

input,
select,
textarea,
button {
  color: inherit;
  font-family: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  padding: var(--space-3) var(--space-4);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

::placeholder {
  color: var(--color-muted);
  opacity: 1;
}

::selection {
  color: var(--color-white);
  background: var(--color-primary-purple);
}

:focus-visible {
  outline: 3px solid rgb(91 33 244 / 0.38);
  outline-offset: 3px;
}

/* Reusable layout primitives */
.section {
  padding-block: var(--space-16);
}

.section-sm {
  padding-block: var(--space-10);
}

.section-lg {
  padding-block: var(--space-24);
}

.section-header {
  max-width: 44rem;
  margin: 0 auto var(--space-10);
  text-align: center;
}

.section-title {
  margin-bottom: var(--space-3);
  font-size: var(--font-size-section-heading);
  font-weight: var(--font-weight-extrabold);
}

.section-description {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: var(--font-size-body);
}

/* Reusable buttons */
.btn-primary-custom,
.btn-gradient,
.btn-secondary-custom,
.btn-outline-custom,
.btn-light-custom,
.btn-link-custom,
.btn-icon,
.btn-circle {
  --button-color: var(--color-white);
  --button-background: var(--color-primary-purple);
  --button-border-color: transparent;
  --button-hover-color: var(--color-white);
  --button-hover-background: var(--color-dark-purple);
  --button-hover-border-color: transparent;
  --button-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: var(--space-2);
  padding: 0.6875rem var(--space-5);
  border: 1px solid var(--button-border-color);
  border-radius: var(--radius-sm);
  color: var(--button-color);
  background: var(--button-background);
  box-shadow: var(--button-shadow);
  font-size: var(--font-size-button);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    background-position var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast),
    opacity var(--transition-fast);
  user-select: none;
}

:is(
  .btn-primary-custom,
  .btn-gradient,
  .btn-secondary-custom,
  .btn-outline-custom,
  .btn-light-custom,
  .btn-link-custom,
  .btn-icon,
  .btn-circle
):hover {
  color: var(--button-hover-color);
  border-color: var(--button-hover-border-color);
  background: var(--button-hover-background);
  box-shadow: var(--button-hover-shadow, var(--button-shadow));
  transform: translateY(-2px);
}

:is(
  .btn-primary-custom,
  .btn-gradient,
  .btn-secondary-custom,
  .btn-outline-custom,
  .btn-light-custom,
  .btn-link-custom,
  .btn-icon,
  .btn-circle
):active {
  box-shadow: var(--shadow-sm);
  transform: translateY(0) scale(0.98);
}

:is(
  .btn-primary-custom,
  .btn-gradient,
  .btn-secondary-custom,
  .btn-outline-custom,
  .btn-light-custom,
  .btn-link-custom,
  .btn-icon,
  .btn-circle
):focus-visible {
  outline: 3px solid rgb(91 33 244 / 0.35);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgb(255 255 255 / 0.9);
}

:is(
  .btn-primary-custom,
  .btn-gradient,
  .btn-secondary-custom,
  .btn-outline-custom,
  .btn-light-custom,
  .btn-link-custom,
  .btn-icon,
  .btn-circle
):is(:disabled, .disabled, [aria-disabled="true"]) {
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.5;
  transform: none;
}

:is(
  .btn-primary-custom,
  .btn-gradient,
  .btn-secondary-custom,
  .btn-outline-custom,
  .btn-light-custom,
  .btn-link-custom,
  .btn-icon,
  .btn-circle
) :is(svg, img, i) {
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.btn-primary-custom {
  --button-hover-shadow: var(--shadow-purple-glow);
}

.btn-gradient {
  /* --button-background: var(--gradient-button); */
  --button-hover-background: var(--gradient-purple-pink);
  /* --button-hover-shadow: var(--shadow-purple-glow); */
  /* background-size: 140% 100%; */
  background: hsla(256, 94%, 56%, 1);

  background: linear-gradient(360deg, hsla(256, 94%, 56%, 1) 0%, hsla(267, 98%, 63%, 1) 50%, hsla(324, 90%, 59%, 1) 100%);

  background: -moz-linear-gradient(360deg, hsla(256, 94%, 56%, 1) 0%, hsla(267, 98%, 63%, 1) 50%, hsla(324, 90%, 59%, 1) 100%);

  background: -webkit-linear-gradient(360deg, hsla(256, 94%, 56%, 1) 0%, hsla(267, 98%, 63%, 1) 50%, hsla(324, 90%, 59%, 1) 100%);

  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#5D26F8", endColorstr="#9642FD", GradientType=1 );
}

.btn-gradient:hover {
  background-position: 100% 0;
}

.btn-secondary-custom {
  --button-color: var(--color-primary-purple);
  --button-background: var(--color-soft-purple);
  --button-hover-color: var(--color-dark-purple);
  --button-hover-background: #e7dcff;
}

.btn-outline-custom {
  --button-color: var(--color-primary-purple);
  --button-background: #fff;
  --button-border-color: #D2CAFA;
  --button-hover-color: var(--color-white);
  --button-hover-background: var(--color-primary-purple);
  --button-hover-border-color: var(--color-primary-purple);
}

.btn-light-custom {
  --button-color: var(--color-heading);
  --button-background: var(--color-white);
  --button-border-color: var(--color-border);
  --button-hover-color: var(--color-primary-purple);
  --button-hover-background: var(--color-soft-purple);
  --button-hover-border-color: #d6c8f4;
  --button-shadow: var(--shadow-sm);
}

.btn-link-custom {
  --button-color: var(--color-primary-purple);
  --button-background: transparent;
  --button-hover-color: var(--color-dark-purple);
  --button-hover-background: var(--color-soft-purple);
  min-height: 44px;
  padding-inline: var(--space-2);
  text-decoration: none;
}

.btn-icon,
.btn-circle {
  width: 44px;
  min-width: 44px;
  padding: 0;
}

.btn-icon {
  --button-color: var(--color-primary-purple);
  --button-background: var(--color-soft-purple);
  --button-hover-color: var(--color-white);
  --button-hover-background: var(--color-primary-purple);
}

.btn-circle {
  border-radius: var(--radius-circle);
}
.btn-xs-custom {
  min-height: 38px;
  padding: var(--space-1) var(--space-4);
  font-size: var(--font-size-small);
}
.btn-sm-custom {
  min-height: 44px;
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-small);
}

.btn-lg-custom {
  min-height: 52px;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.btn-block-mobile {
  width: auto;
}

/* Reusable component primitives */
.app-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-card-background);
  box-shadow: var(--shadow-card);
}

.gradient-card {
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  color: var(--color-white);
  background: var(--gradient-promotional);
  box-shadow: var(--shadow-card);
}

.gradient-card :is(h1, h2, h3, h4, h5, h6) {
  color: inherit;
}

.icon-circle {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-circle);
  color: var(--color-primary-purple);
  background: var(--color-soft-purple);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  min-height: 1.75rem;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-label);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  width: fit-content;
  min-height: 1.75rem;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-pink);
  font-size: var(--font-size-label);
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-pink-glow);
}

.avatar {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid var(--color-white);
  border-radius: var(--radius-circle);
  background: var(--color-soft-purple);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.text-gradient {
  color: var(--color-primary-purple);
  background: var(--gradient-purple-pink);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-purple {
  color: var(--color-primary-purple) !important;
}

.text-pink {
  color: var(--color-pink) !important;
}

.text-orange {
  color: var(--color-orange) !important;
}

.bg-soft-purple {
  background-color: var(--color-soft-purple) !important;
}

.bg-soft-pink {
  background-color: var(--color-soft-pink) !important;
}

.bg-soft-blue {
  background-color: var(--color-soft-blue) !important;
}

.bg-soft-orange {
  background-color: var(--color-soft-orange) !important;
}

.shadow-card {
  box-shadow: var(--shadow-card) !important;
}

.responsive-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  /* border-bottom: 1px solid rgb(232 227 243 / 0.75);
  background: rgb(255 255 255 / 0.82);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.55); */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  background: rgb(255 255 255 / 0.96);
  box-shadow: var(--shadow-sm);
}

.site-navbar {
  min-height: 76px;
  padding-block: var(--space-2);
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-sm);
}

.site-logo img {
  width: auto;
  height: 45px;
}

.site-navbar .offcanvas-body {
  align-items: center;
}

.navbar-menu {
  align-items: center;
  gap: var(--space-5);
  margin: 0 auto;
  padding: 0;
}

.navbar-link.nav-link {
  position: relative;
  padding: var(--space-3) var(--space-2);
  border-radius: var(--radius-sm);
  color: var(--color-heading);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.navbar-link.nav-link::after {
  position: absolute;
  right: var(--space-2);
  bottom: 2px;
  left: var(--space-2);
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-purple);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.navbar-link.nav-link:hover,
.navbar-link.nav-link:focus-visible,
.navbar-link.nav-link.active {
  color: var(--color-primary-purple);
}

.navbar-link.nav-link:hover,
.navbar-link.nav-link:focus-visible {
  background: var(--color-soft-purple);
}

.navbar-link.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--space-3);
}

.navbar-actions > * {
  min-width: 92px;
}

.site-navbar .navbar-toggler {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
  background: transparent;
}

.site-navbar .navbar-toggler:hover {
  border-color: var(--color-primary-purple);
}

.site-navbar .navbar-toggler:focus-visible {
  outline: 3px solid rgb(91 33 244 / 0.35);
  outline-offset: 3px;
  box-shadow: none;
}

.mobile-navigation {
  --bs-offcanvas-width: min(88vw, 360px);
  border-left: 1px solid var(--color-border);
  background: rgb(255 255 255 / 0.98);
}

.mobile-navigation .offcanvas-header {
  min-height: 70px;
  border-bottom: 1px solid var(--color-border);
}

.mobile-navigation .btn-close:focus-visible {
  outline: 3px solid rgb(91 33 244 / 0.35);
  outline-offset: 3px;
  box-shadow: none;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-10) var(--space-8);
  background: radial-gradient(circle at 42% 100%, rgb(139 61 255 / 14%), transparent 28rem), 
    linear-gradient(180deg, #fdfcff 0%, var(--color-page-background) 100%)
}
.hero-section .container {
  
}

.hero-layout {
  --bs-gutter-x: var(--space-6);
  --bs-gutter-y: var(--space-8);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  max-width: 100%;
  margin-bottom: var(--space-5);
  color: var(--color-heading);
  background: var(--color-soft-purple);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-small);
  white-space: normal;
}
.hero-giftMobile {
  display: none;
}
.hero-title {
  margin-bottom: var(--space-4);
  font-size: clamp(3rem, 4.25vw, 4.75rem);
  font-weight: var(--font-weight-bold);
  /* letter-spacing: -0.045em; */
}

.hero-title > span {
  display: inline;
}

.hero-title-watch,
.hero-title-create {
  color: var(--color-dark-navy);
}

.hero-title-connect {
  color: var(--color-primary-purple);
}

.hero-title-watch,
.hero-title-create {
  margin-right: 0.14em;
}

.hero-title-earn {
  color: var(--color-orange);
}

.hero-description {
  max-width: 35rem;
  margin-bottom: var(--space-6);
  color: var(--color-body);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero-actions > * {
  flex: 1 1 auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.hero-feature-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: var(--space-3);
}

.hero-feature-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(91 33 244 / 0.1);
  border-radius: var(--radius-circle);
  color: var(--color-blue);
}

.hero-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-feature-copy {
  display: grid;
  min-width: 0;
  line-height: var(--line-height-small);
}

.hero-feature-copy strong {
  color: var(--color-heading);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
}

.hero-feature-copy small {
  overflow: hidden;
  color: var(--color-muted);
  font-size: var(--font-size-label);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-live-crop {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 3 / 2;
  flex: 0 1 520px;
  overflow: hidden;
}

.hero-live-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 22px 30px rgb(28 12 67 / 0.16));
}
.hero-Mobile {
  display: none;
}

.hero-decorations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-decorations > span {
  position: absolute;
  display: block;
  filter: drop-shadow(0 8px 12px rgb(91 33 244 / 0.2));
}

.hero-decor-heart { top: 12%; left: -15%; font-size: 2.8rem; }
.hero-decor-gift { top: 36%; left: -8%; font-size: 4.2rem; }
.hero-decor-diamond-one { top: 4%; left: 4%; font-size: 2.5rem; }
.hero-decor-diamond-two { top: 24%; left: 7%; font-size: 2rem; }
.hero-decor-sparkle { color: var(--color-violet); }
.hero-decor-sparkle-one { top: 20%; left: 0; font-size: 1.2rem; }
.hero-decor-sparkle-two { top: 55%; left: -11%; font-size: 1.1rem; }

.phone-mockup {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  filter: drop-shadow(0 28px 30px rgb(28 12 67 / 0.22));
}

.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 8px;
  border: 2px solid #46434d;
  border-radius: 3rem;
  background: linear-gradient(145deg, #29272e, #050508 60%, #36333b);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.16),
    var(--shadow-lg),
    var(--shadow-purple-glow);
}

.phone-speaker {
  position: absolute;
  z-index: 8;
  top: 17px;
  left: 50%;
  width: 31%;
  height: 20px;
  border-radius: var(--radius-pill);
  background: #09090c;
  box-shadow: inset 0 -1px 0 rgb(255 255 255 / 0.08);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: calc(3rem - 9px);
  color: var(--color-white);
  background: #1b071c;
}

.live-creator-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
}

.phone-screen-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(5 3 12 / 0.55) 0%, transparent 24%, transparent 46%, rgb(5 3 12 / 0.18) 62%, rgb(5 3 12 / 0.86) 100%);
  pointer-events: none;
}

.live-header {
  position: absolute;
  z-index: 3;
  top: 5.8%;
  right: 4.5%;
  left: 4.5%;
  display: flex;
  align-items: center;
  gap: 2.5%;
}

.live-profile {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: var(--space-2);
}

.live-profile .avatar {
  width: clamp(32px, 10%, 42px);
  height: auto;
  aspect-ratio: 1;
}

.live-profile-meta {
  display: grid;
  min-width: 0;
  line-height: 1.25;
  text-shadow: 0 1px 5px rgb(0 0 0 / 0.7);
}

.live-profile-meta strong {
  overflow: hidden;
  font-size: clamp(0.66rem, 2.9vw, 0.82rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-profile-meta small {
  color: rgb(255 255 255 / 0.8);
  font-size: clamp(0.52rem, 2.2vw, 0.65rem);
}

.verified-badge {
  display: inline-flex;
  width: 1.1em;
  height: 1.1em;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  color: var(--color-white);
  background: #2389ff;
  font-size: 0.72em;
  vertical-align: 0.08em;
}

.follow-button {
  min-height: 28px;
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  background: var(--gradient-primary);
  font-size: clamp(0.58rem, 2.5vw, 0.7rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.follow-button:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.follow-button:active {
  transform: translateY(0) scale(0.97);
}

.follow-button:focus-visible {
  outline-color: var(--color-white);
}

.live-status {
  position: absolute;
  z-index: 3;
  top: 12.5%;
  left: 4.5%;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.live-timer {
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  background: rgb(0 0 0 / 0.5);
  font-size: var(--font-size-label);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  backdrop-filter: blur(6px);
}

.reaction-stack {
  position: absolute;
  z-index: 3;
  right: 3.8%;
  bottom: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(5px, 1.6%, 10px);
}

.reaction-item {
  display: grid;
  width: clamp(28px, 9vw, 38px);
  height: clamp(28px, 9vw, 38px);
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: var(--radius-circle);
  color: #ff3b93;
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 6px 16px rgb(247 47 134 / 0.32);
  font-size: clamp(0.9rem, 4vw, 1.25rem);
  line-height: 1;
  opacity: 0.88;
}

.reaction-item-sm {
  scale: 0.78;
  opacity: 0.6;
}

.reaction-item-lg {
  scale: 1.08;
  opacity: 1;
}

.gift-activity {
  position: absolute;
  z-index: 3;
  right: 17%;
  bottom: 12.5%;
  left: 3.8%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.gift-activity-item {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 4px 4px;
  border: 1px solid rgb(255 255 255 / 0.09);
  border-radius: var(--radius-pill);
  background: rgb(8 5 16 / 0.58);
  font-size: clamp(0.52rem, 2.15vw, 0.65rem);
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.gift-activity-item > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gift-activity-item b {
  color: #ffda58;
}

.gift-sender-avatar {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: var(--radius-circle);
  color: var(--color-white);
  background: var(--gradient-pink-orange);
  font-size: 0.55rem;
  font-weight: var(--font-weight-bold);
}

.gift-comment-item {
  background: rgb(91 33 244 / 0.6);
}

.live-comment-bar {
  position: absolute;
  z-index: 4;
  right: 3.5%;
  bottom: 2.2%;
  left: 3.5%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-comment-bar input {
  min-width: 0;
  height: 38px;
  padding: 0 var(--space-3);
  border-color: rgb(255 255 255 / 0.12);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  background: rgb(5 4 11 / 0.72);
  font-size: clamp(0.58rem, 2.4vw, 0.72rem);
  backdrop-filter: blur(8px);
}

.live-comment-bar input::placeholder {
  color: rgb(255 255 255 / 0.7);
}

.live-action-button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  min-height: 36px;
  flex: 0 0 36px;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: var(--radius-circle);
  color: var(--color-white);
  background: rgb(5 4 11 / 0.7);
  font-size: 1rem;
  line-height: 1;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  backdrop-filter: blur(8px);
}

.live-action-button:hover {
  background: var(--color-primary-purple);
  transform: translateY(-1px);
}

.live-action-button:active {
  transform: translateY(0) scale(0.94);
}

.live-reaction-button {
  color: #ff5ba8;
}

.live-gift-button {
  background: var(--color-pink);
}

.hero-side-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: 16px;
}

.hero-promo-placeholder {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-6);
  text-align: center;
}

.hero-promo-placeholder strong {
  color: inherit;
  font-size: var(--font-size-card-heading);
}

.hero-promo-placeholder small {
  color: inherit;
  opacity: 0.72;
}

.app-card.hero-promo-placeholder strong {
  color: var(--color-heading);
}

.app-card.hero-promo-placeholder small {
  color: var(--color-muted);
}

.hero-promo-placeholder-icon {
  font-size: 2.5rem;
  line-height: 1;
}

/* Homepage cards and content sections */
.gift-count-list {
  display: grid;
  width: 132px;
  flex: 0 0 132px;
  gap: var(--space-2);
}

.gift-count-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 58px;
  padding: var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 0.9);
  box-shadow: var(--shadow-sm);
}

.gift-count-card > span { grid-row: 1 / 3; font-size: 1.75rem; }
.gift-count-card small { color: var(--color-body); font-size: 0.62rem; }
.gift-count-card strong { color: #211194; font-size: 1.05rem; line-height: 1; }

.download-card { padding: 13px 16px; border-color: #eeeaf6; border-radius: 14px; background: rgb(255 255 255 / 0.94); box-shadow: 0 9px 24px rgb(55 37 105 / 0.07); text-align: center; }
.download-card h2 { margin-bottom: 2px; color: var(--color-heading); font-size: 1.02rem; font-weight: var(--font-weight-bold); letter-spacing: -0.025em; line-height: 1.25; }
.download-card p { margin-bottom: 8px; color: var(--color-body); font-size: 0.65rem; font-weight: var(--font-weight-medium); line-height: 1.4; }
.download-options { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; justify-content: center; padding-inline: 14px; }
.download-option { display: grid; justify-items: center; gap: 3px; }
.qr-code { display: block; width: 92px; height: 82px; padding: 5px; border: 1px solid #ddd8eb; border-radius: 7px 7px 3px 3px; background: white; object-fit: fill; }
.store-badge { display: flex; width: 104px; height: 29px; align-items: center; justify-content: center; gap: 5px; padding: 3px 7px; border-radius: 4px; color: white; background: #050505; box-shadow: 0 2px 4px rgb(0 0 0 / 0.18); text-align: left; }
.store-badge:hover { color: white; background: #181818; }
.store-badge img { width: 18px; height: 18px; flex: 0 0 18px; object-fit: contain; }
.store-badge[href*="App"] img,
.download-option:last-child .store-badge img { filter: brightness(0) invert(1); }
.store-badge span { display: grid; line-height: 1; }
.store-badge small { color: white; font-size: 0.38rem; letter-spacing: 0.03em; }
.store-badge strong { color: white; font-size: 0.65rem; font-weight: var(--font-weight-medium); white-space: nowrap; }

.gift-promo-card { position: relative; display: block; min-height: 138px; padding: 16px 18px; overflow: hidden; background: linear-gradient(112deg, #3714f2 0%, #7017ef 47%, #ed2998 100%); }
.gift-promo-copy { position: relative; z-index: 2; display: flex; width: 66%; height: 100%; flex-direction: column; justify-content: center; }
.gift-promo-card h2 { margin-bottom: 5px; color: white; font-size: 0.94rem; font-weight: var(--font-weight-bold); letter-spacing: -0.02em; line-height: 1.2; white-space: nowrap; }
.gift-promo-card p { max-width: 190px; margin-bottom: 10px; color: rgb(255 255 255 / 0.96); font-size: 0.69rem; font-weight: var(--font-weight-medium); line-height: 1.55; }
.gift-promo-art { position: absolute; z-index: 1; right: -9px; bottom: -13px; width: 52%; height: auto; border-radius: 0; object-fit: contain; filter: drop-shadow(0 12px 16px rgb(28 5 73 / 0.3)); }
.promo-learn-button { display: inline-flex; width: fit-content; min-height: 30px; align-items: center; justify-content: center; gap: 5px; padding: 6px 12px; border: 1px solid rgb(255 255 255 / 0.7); border-radius: 5px; color: var(--color-primary-purple); background: white; box-shadow: 0 4px 10px rgb(36 8 96 / 0.14); font-size: 0.64rem; font-weight: var(--font-weight-bold); line-height: 1; transition: color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast); }
.promo-learn-button img { width: 12px; height: 12px; filter: invert(18%) sepia(95%) saturate(6600%) hue-rotate(256deg) brightness(91%); }
.promo-learn-button:hover { color: var(--color-dark-purple); box-shadow: 0 7px 16px rgb(36 8 96 / 0.22); transform: translateY(-1px); }
.promo-learn-button:active { transform: translateY(0); }
.promo-learn-button:focus-visible { outline-color: white; }

.benefits-section { padding-bottom: var(--space-3); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; }
.benefit-card { --benefit-accent: var(--color-primary-purple); position: relative; min-height: 180px; padding: 12px 16px; overflow: hidden; border: 1px solid #e1d8f4; border-radius: 14px; background: linear-gradient(135deg, #f1ebff, #f7f1ff); }
.benefit-card h3 { position: relative; z-index: 3; display: flex; align-items: center; gap: 8px; margin-bottom: 9px; font-size: 0.82rem; white-space: nowrap; }
.benefit-card h3 span { display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center; border-radius: 50%; background: var(--color-primary-purple); }
.benefit-card h3 span img { position: static; width: 16px; height: 16px; border-radius: 0; filter: brightness(0) invert(1); object-fit: contain; }
.benefit-card ul { position: relative; z-index: 3; display: grid; width: 62%; gap: 5px; margin: 0; padding: 0; list-style: none; color: #131734; font-size: 0.62rem; line-height: 1.35; }
.benefit-card li { display: flex; align-items: flex-start; gap: 6px; }
.benefit-card li::before { width: 12px; height: 12px; flex: 0 0 12px; margin-top: 1px; background: var(--benefit-accent); content: ""; -webkit-mask: url("../images/lets-icons_check-round-fill.svg") center / contain no-repeat; mask: url("../images/lets-icons_check-round-fill.svg") center / contain no-repeat; }
.benefit-card .benefit-art { position: absolute; z-index: 1; right: -1%; bottom: 0; width: 51%; height: 94%; border-radius: 0; object-fit: contain; object-position: right bottom; }
.benefit-creators { --benefit-accent: var(--color-pink); background: var(--color-soft-pink); }
.benefit-creators h3 span { background-color: var(--color-pink); }
.benefit-streamers { --benefit-accent: var(--color-blue); background: var(--color-soft-blue); }
.benefit-streamers h3 span { background-color: var(--color-blue); }
.benefit-shoppers { --benefit-accent: var(--color-orange); background: var(--color-soft-orange); }
.benefit-shoppers h3 span { background-color: var(--color-orange); }
.benefit-shoppers .benefit-art { right: 1%; width: 52%; height: 82%; }
.creator-earnings { position: absolute; z-index: 3; right: 18%; bottom: 7px; display: grid; width: 105px; padding: 7px; border-radius: 8px; color: white; background: rgb(24 7 45 / 0.7); font-size: 0.52rem; box-shadow: var(--shadow-sm);backdrop-filter: blur(6px); }
.creator-earnings small { opacity: 0.85; }
.creator-earnings strong { font-size: 0.72rem; }
.creator-earnings span { color: #52db89; font-size: 0.48rem; }
.creator-earnings svg { width: 100%; height: 22px; }
.creator-earnings polyline { fill: none; stroke: #c259ff; stroke-width: 2; }
.streamer-badge { position: absolute; z-index: 3; right: 3%; bottom: 7px; display: flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 7px; color: white; background: rgb(31 34 74 / 0.84); font-size: 0.58rem; }
.streamer-badge span { display: grid; }
.streamer-badge strong { font-size: 0.6rem; }

.engagement-section { padding-block: var(--space-2); }
.engagement-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-3); }
.xp-card { display: grid; grid-template-columns: 0.68fr 1.32fr; min-height: 168px; padding: 14px 20px; overflow: hidden; border: 1px solid rgb(112 88 217 / 0.25); border-radius: 14px; color: white; background: radial-gradient(circle at 66% 24%, rgb(91 33 244 / 0.2), transparent 28%), linear-gradient(112deg, #080721 0%, #11103a 55%, #09072a 100%); box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04); }
.xp-card h2, .social-feed-card h2 { margin-bottom: 4px; font-size: 1.15rem; }
.xp-card h2 { color: white; }
.xp-card p, .social-feed-card p { margin-bottom: var(--space-3); font-size: 0.7rem; line-height: 1.5; }
.xp-copy p { margin-bottom: 8px; color: rgb(255 255 255 / 0.88); }
.xp-copy ul { display: grid; grid-template-rows: repeat(4, auto); grid-auto-flow: column; grid-auto-columns: 1fr; gap: 6px 14px; margin: 0; padding: 0; list-style: none; font-size: 0.64rem; }
.xp-copy li { display: flex; align-items: center; gap: 7px; }
.xp-copy li::before { display: grid; width: 11px; height: 11px; flex: 0 0 11px; place-items: center; border-radius: 50%; color: white; background: linear-gradient(135deg, #8f57ff, #5725eb); box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.18); content: "✓"; font-family: Arial, sans-serif; font-size: 7px; font-weight: 700; line-height: 1; }
.xp-copy li:nth-child(n + 5)::before { background: linear-gradient(135deg, #ff659e, #f62975); }
.xp-progress-area { min-width: 0; align-self: center; }
.xp-stage { position: relative; min-height: 92px; padding: 7px 12px 22px; border: 1px solid rgb(120 97 224 / 0.13); border-radius: 11px; background: linear-gradient(180deg, rgb(25 22 76 / 0.72), rgb(9 8 40 / 0.88)); }
.xp-level { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; }
.xp-level > img { width: 52px; height: 62px; object-fit: contain; filter: drop-shadow(0 5px 7px rgb(77 32 200 / 0.35)); }
.xp-level > span { display: grid; color: white; font-size: 0.65rem; line-height: 1.25; }
.xp-level small { color: rgb(255 255 255 / 0.82); font-size: 0.58rem; }
.xp-level-start { position: absolute; top: 7px; left: 12px; }
.xp-level-end { position: absolute; z-index: 4; top: 7px; right: 12px; }
.xp-level-end > img { width: 50px; height: 60px; }
.xp-trophy { position: absolute; z-index: 3; top: -22px; left: 49%; width: 140px; height: 105px; object-fit: contain; filter: drop-shadow(0 6px 12px rgb(255 170 0 / 0.28)); transform: translateX(-50%); }
.xp-progress-track { position: absolute; right: 12px; bottom: 16px; left: 12px; height: 8px; overflow: hidden; border-radius: var(--radius-pill); background: #292553; }
.xp-progress-track span { display: block; width: 28%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #712cf4, #b342f4); box-shadow: 0 0 9px rgb(145 57 255 / 0.45); }
.xp-progress-value { position: relative; z-index: 4; display: block; margin: -14px 0 0 14px; color: white; font-size: 0.63rem; }
.xp-perks { display: flex; align-items: center; justify-content: space-between; gap: 5px; margin-top: 9px; padding-inline: 10px; font-size: 0.52rem; }
.xp-perks span { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.xp-perks b { color: white; font-weight: var(--font-weight-medium); }
.xp-perks img { width: 16px; height: 16px; flex: 0 0 16px; object-fit: contain; filter: drop-shadow(0 2px 3px rgb(0 0 0 / 0.28)); }
.xp-perks span:nth-child(2) img { width: 18px; height: 18px; flex-basis: 18px; }
.xp-perks span:nth-child(3) img,
.xp-perks span:nth-child(4) img { width: 17px; height: 17px; flex-basis: 17px; }
.xp-perks span:nth-child(5) img { width: 18px; height: 18px; flex-basis: 18px; }

.social-feed-card { display: grid; grid-template-columns: 0.7fr 1.3fr; min-height: 168px; padding: var(--space-4); border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: linear-gradient(135deg, #fbfaff, #f0efff); }
.social-copy { padding-right: var(--space-4); }
.feed-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 8px; }
.feed-tabs button { min-height: 25px; padding: 3px 8px; border: 0; border-radius: 7px; color: var(--color-heading); background: transparent; font-size: 0.62rem; font-weight: var(--font-weight-semibold); line-height: 1; transition: color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast); }
.feed-tabs button:hover { color: var(--color-primary-purple); background: rgb(91 33 244 / 0.07); }
.feed-tabs button.active { color: white; background: linear-gradient(100deg, #2915bd 0%, #7024ec 58%, #d72ae6 100%); box-shadow: 0 5px 12px rgb(91 33 244 / 0.2); }
.feed-tabs button:focus-visible { outline: 2px solid var(--color-primary-purple); outline-offset: 2px; }
.feed-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }
.feed-post-card { position: relative; min-width: 0; height: 138px; overflow: hidden; border-radius: 8px; background: var(--color-dark-navy); box-shadow: 0 5px 12px rgb(24 18 62 / 0.16); }
.feed-post-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.feed-post-card:hover > img { transform: scale(1.04); }
.feed-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 7px 6px; color: white; background: linear-gradient(180deg, transparent 25%, rgb(3 4 16 / 0.9) 100%); }
.feed-card-overlay strong { overflow: hidden; font-size: 0.58rem; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.feed-card-overlay small { overflow: hidden; color: rgb(255 255 255 / 0.88); font-size: 0.48rem; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.feed-card-overlay > span { display: flex; justify-content: space-between; margin-top: 4px; font-size: 0.75rem; }
.feed-card-overlay b { color: white; font-weight: var(--font-weight-medium); }

.statistics-section { padding-block: var(--space-2); }
.statistics-strip { display: grid; grid-template-columns: repeat(5, 1fr) 1.55fr; min-height: 70px; padding: 10px 16px; border-radius: 16px; color: white; background: linear-gradient(100deg, #df2691 0%, #b527c1 30%, #6227ed 60%, #2c51e5 100%); box-shadow: 0 8px 22px rgb(91 33 244 / 0.14); }
.stat-item { display: flex; gap: 6px; align-items: center; padding-inline: 22px; border-right: 1px solid rgb(255 255 255 / 0.24); }
.stat-item svg { width: 30px; height: 30px; flex: 0 0 30px; }
.stat-item svg path { fill: white; }
.stat-item > img { grid-row: 1 / 3; width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }
.stat-item strong { color: white; font-size: 1.28rem; font-weight: var(--font-weight-bold); line-height: 1; }
.stat-item small { align-self: start; color: rgb(255 255 255 / 0.92); font-size: 0.75rem; line-height: 1.25; }
.trusted-creators { display: grid; align-content: center; justify-items: start; gap: 4px; padding-left: 22px; line-height: 1.02; }
.trusted-copy { display: grid; min-width: max-content; }
.trusted-creators b { color: white; font-size: 0.8rem; font-weight: var(--font-weight-bold); }
.trusted-creators small { color: rgb(255 255 255 / 0.94); font-size: 0.57rem; }
.trusted-avatar-list { display: flex; align-items: center; padding-right: 4px; }
.trusted-avatar-list > img,
.trusted-add { width: 27px; height: 27px; flex: 0 0 27px; margin-left: 5px; border: 2px solid #f2c94c; border-radius: 50%; background: #f6ca49; object-fit: cover; object-position: center top; }
.stat-copy { display: flex; gap: 4px; flex-direction:column}
.trusted-avatar-list > img:first-child { margin-left: 0; }
.trusted-add { display: grid; margin-left: 9px; place-items: center; border-color: white; background: white; }
.trusted-add img { width: 13px; height: 13px; filter: invert(22%) sepia(98%) saturate(6017%) hue-rotate(253deg) brightness(91%); }
.trusted-add svg { width: 20px; height: 20px; }
.trusted-add svg path { fill: var(--color-primary-purple); }

.site-footer { padding-block: var(--space-5); color: rgb(255 255 255 / 0.72); background: var(--color-dark-navy); }
/* .site-footer .site-logo img, .footer-brand img { filter: brightness(0) invert(1); } */
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 0.7fr) 2.2fr; gap: var(--space-6); }
.footer-brand p, .footer-subscribe p { margin-block: var(--space-2); font-size: 0.75rem; line-height: 1.5; }
.footer-socials { display: flex; align-items: center; gap: 9px; }
.footer-socials a { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border: 1px solid rgb(255 255 255 / 0.02); border-radius: 50%; color: white; background: #111a3b; box-shadow: 0 5px 12px rgb(0 0 0 / 0.16); transition: background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast); }
.footer-socials a:hover { color: white; background: var(--color-primary-purple); box-shadow: 0 7px 16px rgb(91 33 244 / 0.3); transform: translateY(-2px); }
.footer-socials a:active { transform: translateY(0) scale(0.96); }
.footer-socials a:focus-visible { outline-color: white; }
.footer-socials img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-links { display: flex; flex-direction: column; gap: 5px; }
.footer-links h2, .footer-subscribe h2 { margin-bottom: var(--space-2); color: white; font-size: 0.78rem; }
.footer-links a, .footer-legal a { color: rgb(255 255 255 / 0.72); font-size: 0.75rem; }
.footer-links a:hover, .footer-legal a:hover { color: white; }
.footer-subscribe { padding-left: var(--space-5); border-left: 1px solid rgb(255 255 255 / 0.18); }
.footer-subscribe form { display: flex; }
.footer-subscribe input { height: 38px; border-color: rgb(255 255 255 / 0.12); border-radius: var(--radius-sm) 0 0 var(--radius-sm); color: white; background: rgb(255 255 255 / 0.08); font-size: 0.7rem; }
.footer-subscribe button { width: 42px; border: 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: white; background: var(--gradient-pink-orange); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2); margin-top: var(--space-3); font-size: 0.58rem; }
.footer-legal span { font-size: 0.75rem; }
.footer-legal div { display: flex; gap: 12px; }

@media (min-width: 1400px) {
  .container { max-width: 1450px; }
  .hero-section { height: 357px; padding-block: 0; }
  .site-navbar { min-height: 68px; }
  .hero-layout { --bs-gutter-x: var(--space-3); --bs-gutter-y: 0; }
  .hero-content { align-self: flex-start; padding-top: 18px; }
  .hero-title { margin-bottom: var(--space-2); font-size: 3.15rem; line-height: 1.08; }
  .hero-badge { margin-bottom: var(--space-3); font-size: 0.72rem; }
  .hero-description { margin-bottom: var(--space-4); font-size: 0.96rem; line-height: 1.5; }
  .hero-actions { margin-bottom: var(--space-4); }
  .hero-actions .btn-lg-custom { min-height: 44px; padding: var(--space-2) var(--space-5); font-size: 0.8rem; }
  .hero-features { grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }
  .hero-feature-item { gap: 6px; }
  .hero-feature-icon { width: 36px; height: 36px; flex-basis: 36px; }
  .hero-feature-copy strong { font-size: 0.62rem; }
  .hero-feature-copy small { font-size: 0.53rem; }
  .hero-live-crop { height: 370px;/*  width: 450px;  flex: 0 0 450px;*/ transform: translateX(-20px); }
  .hero-live-image {position: absolute; top: -1px; left: 40px;  width: auto;max-width: none; height: 360px;}
  .hero-visual { justify-content: flex-end; gap: 0; padding-left: 0; }
  .hero-live-crop + .gift-count-list {
    margin-left: -64px;
  }
  /*  */
  .gift-count-list { position: relative; z-index: 2; width: 140px; flex-basis: 140px; }
  .gift-count-card { min-height: 56px; }
  .phone-frame { border-radius: 2.25rem; }
  .phone-screen { border-radius: calc(2.25rem - 9px); }
  .hero-side-content { gap: var(--space-3); }
  .download-card { height: 190px; padding: 13px 16px; }
  .gift-promo-card { height: 142px; min-height: 142px; padding: 16px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
