/* ========== EXPECTO-STYLE ADDITIONS ========== */

/* Mouse-follow gradient orb */
.mouse-glow {
  position: fixed;
  pointer-events: none;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,160,0,0.18) 0%, rgba(255,160,0,0.08) 30%, transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(40px);
  transition: opacity 0.3s;
  will-change: transform;
}

/* Animated logo with sparkles */
.logo-sparkle {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.logo-sparkle .logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255,160,0,0.45));
}
.logo-sparkle .star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  animation: sparkle 2.4s ease-in-out infinite;
  box-shadow: 0 0 8px white;
}
.logo-sparkle .star:nth-child(2) { top: -4px; left: 50%; animation-delay: 0s; }
.logo-sparkle .star:nth-child(3) { top: 8px; right: -6px; animation-delay: 0.6s; width: 3px; height: 3px; }
.logo-sparkle .star:nth-child(4) { bottom: -4px; left: 30%; animation-delay: 1.2s; }
.logo-sparkle .star:nth-child(5) { top: 40%; left: -6px; animation-delay: 1.8s; width: 3px; height: 3px; }
@keyframes sparkle {
  0%, 100% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1); opacity: 1; }
}

/* Hero v2 (multi-line) */
.hero-v2 {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  z-index: 2;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 30% at 20% 30%, rgba(255,160,0,0.18), transparent 70%),
    radial-gradient(50% 40% at 80% 70%, rgba(255,80,160,0.10), transparent 70%);
  z-index: -1;
}
.hero-v2-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent 80%);
}
.hero-v2-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,160,0,0.08);
  border: 1px solid rgba(255,160,0,0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-v2-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-text);
  box-shadow: 0 0 10px var(--gold-text);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-v2 h1 {
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 24px 0;
}
.hero-v2 h1 .accent {
  background: linear-gradient(135deg, #ffa000 0%, #ffea00 50%, #ffe1a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-v2-sub {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
  margin: 28px 0 32px;
}

/* Floating phone mockup with labels */
.hero-phone-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-stage .phone-shell {
  position: relative;
  width: 280px;
  border-radius: 38px;
  background: #000;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,160,0,0.10);
  z-index: 2;
}
.hero-phone-stage .phone-shell {
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-phone-stage .phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}
.hero-phone-stage .phone-screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  filter: blur(8px);
  transition: opacity 1.1s ease, transform 1.6s ease, filter 1.1s ease;
}
.hero-phone-stage .phone-screen-img.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
/* keep legacy in case any <img> direct child remains */
.hero-phone-stage .phone-shell > img {
  width: 100%;
  border-radius: 30px;
  display: block;
}
/* re-trigger fade on label change for keyed labels */
.float-label {
  animation: float-bob 5s ease-in-out infinite, label-in 0.6s ease both;
}
@keyframes label-in {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-phone-stage .phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.float-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-1);
  white-space: nowrap;
  z-index: 3;
  animation: float-bob 5s ease-in-out infinite;
}
.float-label::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dot-color, var(--gold-text));
  box-shadow: 0 0 10px var(--dot-color, var(--gold-text));
}
.float-label.fl-1 { top: 12%; left: -8%; --dot-color: #ffa000; animation-delay: 0s; }
.float-label.fl-2 { top: 30%; right: -12%; --dot-color: #ff5a8a; animation-delay: 1.2s; }
.float-label.fl-3 { bottom: 28%; left: -14%; --dot-color: #b86bff; animation-delay: 2.4s; }
.float-label.fl-4 { bottom: 6%; right: -4%; --dot-color: #4ea6ff; animation-delay: 3.6s; }
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Stats bar (gradient numbers) */
.stats-v2 {
  max-width: 880px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 32px 24px;
}
.stats-v2 > div {
  text-align: center;
  position: relative;
}
.stats-v2 > div + div::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stats-v2 .stat-num-v2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffa000 0%, #ffea00 60%, #ffe1a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-v2 .stat-num-v2 .suffix {
  font-size: 0.7em;
  font-weight: 800;
  margin-left: 4px;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #ffa000 0%, #ffea00 60%, #ffe1a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.stats-v2 .stat-label-v2 {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-3);
}

/* Section eyebrow centered */
.section-eyebrow-center {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow-center .eyebrow { color: var(--gold-text); }
.section-eyebrow-center h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.section-eyebrow-center h2 .accent {
  background: linear-gradient(135deg, #ffa000, #ffea00, #ffe1a8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3-step section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
}
.step-card {
  background: var(--bg-1);
  padding: 36px;
  position: relative;
}
.step-art {
  height: 180px;
  border-radius: 16px;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(255,160,0,0.15), transparent),
    linear-gradient(180deg, #1a1a1a, #0e0e0e);
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.step-art-icon { font-size: 56px; position: relative; z-index: 1; }
.step-art-1 .step-art-icon {
  display: grid;
  grid-template-columns: repeat(2, 50px);
  grid-template-rows: repeat(2, 50px);
  gap: 8px;
}
.step-art-1 .step-art-icon > div {
  border-radius: 12px;
}
.step-art-1 .step-art-icon > div:nth-child(1) { background: linear-gradient(135deg,#b86bff,#ff3c8e); animation: tile-pop 3.6s ease-in-out infinite; animation-delay: 0s; }
.step-art-1 .step-art-icon > div:nth-child(2) { background: linear-gradient(135deg,#ffa000,#ffea00); animation: tile-pop 3.6s ease-in-out infinite; animation-delay: 0.4s; }
.step-art-1 .step-art-icon > div:nth-child(3) { background: linear-gradient(135deg,#ff5a8a,#ffa000); animation: tile-pop 3.6s ease-in-out infinite; animation-delay: 0.8s; }
.step-art-1 .step-art-icon > div:nth-child(4) { background: rgba(255,255,255,0.06); animation: tile-pop 3.6s ease-in-out infinite; animation-delay: 1.2s; }
@keyframes tile-pop {
  0%, 60%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255,160,0,0); }
  20% { transform: scale(1.12) translateY(-3px); box-shadow: 0 8px 22px rgba(255,160,0,0.35); }
  40% { transform: scale(1); box-shadow: 0 0 0 rgba(255,160,0,0); }
}

.step-art-2 .step-art-icon {
  position: relative;
  width: 80px; height: 80px;
}
.step-art-2 .step-art-icon > div {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 12px;
}
.step-art-2 .step-art-icon > div:nth-child(1) { background: linear-gradient(135deg,#ffa000,#ff3c8e); top: 0; left: 0; animation: card-shuffle-1 4s ease-in-out infinite; box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.step-art-2 .step-art-icon > div:nth-child(2) { background: linear-gradient(135deg,#b86bff,#4ea6ff); bottom: 0; right: 0; opacity: 0.92; animation: card-shuffle-2 4s ease-in-out infinite; box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
@keyframes card-shuffle-1 {
  0%, 100% { transform: rotate(-8deg) translate(0, 0); }
  50% { transform: rotate(-14deg) translate(-8px, -4px); }
}
@keyframes card-shuffle-2 {
  0%, 100% { transform: rotate(8deg) translate(0, 0); }
  50% { transform: rotate(14deg) translate(8px, 4px); }
}

.step-art-3 .step-art-icon {
  width: 80px; height: 80px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff3c8e 0%, #b86bff 60%, #4ea6ff 100%);
  background-size: 200% 200%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  animation: portrait-glow 4s ease-in-out infinite;
}
@keyframes portrait-glow {
  0%, 100% { background-position: 0% 50%; box-shadow: 0 0 20px rgba(184,107,255,0.3); }
  50% { background-position: 100% 50%; box-shadow: 0 0 40px rgba(255,60,142,0.55); }
}
.step-art-3 .step-art-icon::before {
  content: '';
  width: 36px; height: 36px;
  background: #f5d2b3;
  border-radius: 50% 50% 30% 30%;
  margin-bottom: -6px;
}
.step-art-3 .step-art-icon::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  top: 12px; left: 16px;
  box-shadow: 0 0 12px white;
  animation: sparkle-twinkle 1.6s ease-in-out infinite;
}
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.step-art {
  transition: transform 0.4s ease;
}
.step-card:hover .step-art {
  transform: translateY(-4px);
}
.step-art::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(40% 40% at 50% 50%, rgba(255,160,0,0.10), transparent);
  animation: art-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes art-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.step-num {
  font-size: 13px;
  color: var(--gold-text);
  font-weight: 600;
  margin-bottom: 8px;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

/* Asymmetric feature grid (Premium. Private. Polished.) */
.feature-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}
.bento-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.bento-card.span-rows-2 { grid-row: span 2; }
.bento-icon {
  width: 40px; height: 40px;
  background: rgba(255,160,0,0.10);
  border: 1px solid rgba(255,160,0,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-text);
  margin-bottom: 18px;
}
.bento-icon svg { width: 20px; height: 20px; }
.bento-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.bento-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}
.bento-hero-art {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.bento-hero-art .card {
  position: absolute;
  width: 90px;
  height: 130px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.bento-hero-art .card:nth-child(1) { background: linear-gradient(135deg,#b86bff,#ff3c8e); transform: rotate(-12deg) translateX(-40px); }
.bento-hero-art .card:nth-child(2) { background: linear-gradient(135deg,#ffa000,#ff3c8e); transform: rotate(-2deg); z-index: 1; }
.bento-hero-art .card:nth-child(3) { background: linear-gradient(135deg,#36e8a0,#4ea6ff); transform: rotate(8deg) translateX(20px); z-index: 2; }
.bento-hero-art .card:nth-child(4) { background: linear-gradient(135deg,#ffa000,#ffea00); transform: rotate(18deg) translateX(60px); }
.bento-big-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg,#ffa000,#ffea00,#ffe1a8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

/* Before/After slider */
.ba-section { padding: 100px 0; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.ba-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.ba-pill {
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
}
.ba-pill:hover { background: rgba(255,255,255,0.08); color: var(--text-1); }
.ba-pill.active {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #1a1100;
  font-weight: 600;
}
.ba-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  user-select: none;
  cursor: ew-resize;
}
.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-img.before { z-index: 1; }
.ba-img.after { z-index: 2; clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: white;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.ba-handle::before {
  content: '⇆';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
}
.ba-tag {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 4;
  color: var(--text-2);
}
.ba-tag.before-tag { left: 16px; }
.ba-tag.after-tag { right: 16px; color: var(--gold-text); }

/* Language picker */
.lang-picker {
  position: relative;
  margin-left: 0;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: var(--text-1);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }
.lang-btn-code { letter-spacing: 0.04em; }
.lang-chev { transition: transform 0.2s; opacity: 0.6; }
.lang-chev.open { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  max-height: 0;
  overflow: hidden;
  background: rgba(18,18,18,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, max-height 0.2s;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  z-index: 100;
}
.lang-menu.open {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  padding: 8px;
}
.lang-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--text-1);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}
.lang-item:hover { background: rgba(255,255,255,0.05); }
.lang-item.active { background: rgba(255,160,0,0.08); color: var(--gold-text); }
.lang-name { font-weight: 500; }
.lang-code {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-3);
}
.lang-item.active .lang-code { color: var(--gold-text); }

/* Showcase (real marketing shots) */
.showcase-section { padding: 100px 0; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.showcase-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%),
    linear-gradient(180deg, #0e0e0e, #050505);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
}
.showcase-title {
  text-align: center;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.showcase-title-light {
  display: block;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-1);
  opacity: 0.92;
}
.showcase-title-bold {
  display: block;
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, color-mix(in srgb, var(--accent) 70%, white) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.showcase-img {
  width: 100%;
  display: block;
  margin-top: -10px;
}
.showcase-container { position: relative; }
.showcase-stage {
  position: relative;
}
.showcase-float {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}
.showcase-float.sf-1 { top: 4%; left: 2%; animation-delay: 0.1s; }
.showcase-float.sf-2 { top: 28%; left: -2%; animation-delay: 0.9s; }
.showcase-float.sf-3 { top: 12%; right: 1%; animation-delay: 1.6s; }
.showcase-float.sf-4 { top: 42%; right: -3%; animation-delay: 2.4s; }
.showcase-float.sf-5 { bottom: 14%; left: 4%; animation-delay: 3.0s; }
.showcase-float.sf-6 { bottom: 8%; right: 6%; animation-delay: 3.7s; }
@media (max-width: 1100px) {
  .showcase-float.sf-2, .showcase-float.sf-4, .showcase-float.sf-6 { display: none; }
}
@media (max-width: 900px) {
  .showcase-float { display: none; }
}
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; max-width: 420px; }
}
.effects-rail-section { padding: 80px 0; overflow: hidden; }
.effects-rail {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll-rail 40s linear infinite;
}
.effects-rail.reverse { animation-direction: reverse; animation-duration: 50s; }
.effects-rail-card {
  width: 180px;
  height: 240px;
  border-radius: 18px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.effects-rail-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.effects-rail-card-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  z-index: 1;
}
@keyframes scroll-rail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.effects-rail-mask {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.effects-rail-mask + .effects-rail-mask { margin-top: 14px; }

@media (max-width: 900px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-v2 h1 { font-size: clamp(40px, 10vw, 64px); }
  .stats-v2 { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .stats-v2 > div + div::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .feature-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-bento .span-rows-2 { grid-row: span 1; }
  .ba-grid { grid-template-columns: 1fr; gap: 40px; }
  .effects-rail-card { width: 140px; height: 180px; }
}

/* ========== PIXORIA WEBSITE — DESIGN TOKENS ========== */
:root {
  /* Brand */
  --bg-0: #0e0e0e;
  --bg-1: #171717;
  --bg-2: #1f1f1f;
  --bg-3: #262626;
  --bg-card: #1a1a1a;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);

  --text-1: #ffffff;
  --text-2: rgba(255,255,255,0.72);
  --text-3: rgba(255,255,255,0.48);
  --text-4: rgba(255,255,255,0.30);

  /* Postai gold gradient */
  --gold-1: #ffa000;
  --gold-2: #ffea00;
  --gold-text: #ffb519;
  --gold-glow: rgba(255,160,0,0.35);
  --gradient-gold: linear-gradient(135deg, #ffa000 0%, #ffea00 100%);
  --gradient-gold-soft: linear-gradient(180deg, rgba(255,160,0,0.14), rgba(255,234,0,0.04));

  /* Type */
  --font-display: "Gilroy", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 12px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 20px 80px -10px rgba(255,160,0,0.35);
}

/* Gilroy fallback via web-safe stack — Poppins from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg-1);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }

/* ===== Type ===== */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-text);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.h-display {
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.h-section {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-gold);
  color: #1a1100;
  box-shadow: 0 10px 32px -8px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -8px var(--gold-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-1);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 12px 20px;
  min-width: 180px;
}
.btn-store:hover {
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.btn-store .label-sm {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  display: block;
  line-height: 1;
}
.btn-store .label-lg {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  display: block;
  margin-top: 2px;
  line-height: 1.1;
}

/* ===== Header / Nav ===== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 32px);
  max-width: 1180px;
  border-radius: var(--r-pill);
  background: rgba(20,20,20,0.72);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 22px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.nav-brand-icon { width: 36px; height: 36px; background: url('assets/logo-clear.png') center/contain no-repeat; filter: drop-shadow(0 0 12px var(--gold-glow)); }
.nav-links { display: flex; gap: 4px; }
.nav-link { padding: 10px 16px; border-radius: var(--r-pill); font-size: 14px; font-weight: 500; color: var(--text-2); transition: color .2s, background .2s; }
.nav-link:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }
.nav-actions { display: flex; align-items: center; gap: 8px; }

.nav-link.active { color: var(--text-1); }
.nav-cta {
  background: var(--gradient-gold);
  color: #1a1100;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-glow {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle at center, rgba(255,160,0,0.22) 0%, rgba(255,160,0,0.06) 35%, rgba(255,160,0,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-laurel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  background: rgba(255,160,0,0.08);
  border: 1px solid rgba(255,160,0,0.25);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-text);
  margin-bottom: 28px;
}
.hero-laurel-stars { color: var(--gold-2); letter-spacing: 1px; }
.hero h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-meta { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta-item { }
.hero-meta-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; line-height: 1; color: var(--text-1); }
.hero-meta-num .gold { font-size: inherit; }
.hero-meta-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); margin-top: 6px; }

/* Hero phone fan */
.hero-phones {
  position: relative;
  height: 720px;
  perspective: 2200px;
}
.phone {
  position: absolute;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06) inset;
  background: #000;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone-1 { width: 320px; height: 660px; left: 50%; top: 30px; transform: translateX(-50%) rotate(0deg); z-index: 3; }
.phone-2 { width: 260px; height: 540px; left: 0; top: 100px; transform: rotate(-9deg); z-index: 2; }
.phone-3 { width: 260px; height: 540px; right: 0; top: 100px; transform: rotate(9deg); z-index: 2; }

/* ===== Marquee strip ===== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--bg-0);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 64px;
  letter-spacing: -0.01em;
}
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-text); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== Effects gallery ===== */
.effects-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.effects-head .h-section { max-width: 720px; }
.effects-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.effects-tab {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  font-family: var(--font-body);
  transition: all .2s;
}
.effects-tab.active {
  background: var(--gradient-gold);
  color: #1a1100;
  border-color: transparent;
  font-weight: 600;
}
.effects-tab:not(.active):hover {
  border-color: var(--line-strong);
  color: var(--text-1);
}
.effects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.effect-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease;
  background: var(--bg-2);
}
.effect-card:hover { transform: translateY(-6px); }
.effect-card img { width: 100%; height: 100%; object-fit: cover; }
.effect-card-art {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, #1a1a1d 8%, #2a2a2f 18%, #1a1a1d 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite linear;
  overflow: hidden;
}
.effect-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, opacity .4s ease;
}
.effect-card:hover .effect-card-img.loaded { transform: scale(1.05); }

.smart-img { opacity: 0; }
.smart-img.loaded { opacity: 1; }
.smart-img-skeleton {
  background: linear-gradient(110deg, #1a1a1d 8%, #2a2a2f 18%, #1a1a1d 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite linear;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.effect-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
  display: flex; align-items: end;
  padding: 18px;
}
.effect-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; color: #fff;
}
.effect-card-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.effect-card-stats { display: flex; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.85); align-items: center; }
.effect-card-stats span { display: inline-flex; align-items: center; gap: 4px; }
.effect-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(12px);
  color: #fff; font-size: 11px; font-weight: 600;
  padding: 6px 10px; border-radius: var(--r-pill);
}
.effect-card-tag.new { background: var(--gradient-gold); color: #1a1100; }
.effect-card-tag.video { background: rgba(255, 60, 90, 0.85); color: #fff; }

/* ===== Feature blocks ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.feature-block.reverse > :first-child { order: 2; }
.feature-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-text);
  margin-bottom: 20px;
}
.feature-title { margin-bottom: 20px; }
.feature-desc { color: var(--text-2); font-size: 18px; line-height: 1.65; max-width: 480px; margin-bottom: 28px; }
.feature-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-points li {
  display: flex; gap: 14px; align-items: start;
  font-size: 15px; color: var(--text-2);
}
.feature-points li::before {
  content: "";
  width: 22px; height: 22px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.feature-art {
  position: relative;
  aspect-ratio: 9/19.5;
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}
.feature-art img { width: 100%; height: 100%; object-fit: contain; display: block; }
.feature-art::before {
  content: "";
  position: absolute; inset: -20%;
  background: radial-gradient(circle at center, rgba(255,160,0,0.25), transparent 60%);
  z-index: -1;
  filter: blur(40px);
}

/* ===== Stats strip ===== */
.stats {
  background: var(--gradient-gold);
  padding: 60px 0;
  color: #1a1100;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-top: 10px; }

/* ===== Pricing / coins ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.coin-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .25s;
}
.coin-card:hover { border-color: rgba(255,160,0,0.4); transform: translateY(-4px); }
.coin-card.featured {
  background: linear-gradient(180deg, rgba(255,160,0,0.12), rgba(255,234,0,0.02));
  border-color: rgba(255,160,0,0.4);
}
.coin-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gradient-gold);
  color: #1a1100;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.coin-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gradient-gold-soft);
  border: 1px solid rgba(255,160,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.coin-amount { font-family: var(--font-display); font-size: 36px; font-weight: 800; }
.coin-amount-suffix { font-size: 18px; color: var(--text-3); margin-left: 6px; font-weight: 600; }
.coin-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold-text); }
.coin-meta { font-size: 13px; color: var(--text-3); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--gold-text); }
.faq-q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform .25s, background .25s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q-icon { background: var(--gradient-gold); color: #1a1100; transform: rotate(45deg); border-color: transparent; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.2, .8, .2, 1);
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}
.faq-a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-a-inner {
  padding-top: 16px;
}

/* ===== Footer / final CTA ===== */
.final-cta {
  position: relative;
  text-align: center;
  padding: 120px 0;
  border-radius: 48px;
  background: radial-gradient(circle at 50% 130%, rgba(255,160,0,0.22), transparent 50%), var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  margin: 80px 0;
}
.final-cta::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,160,0,0.18), transparent 60%);
  pointer-events: none;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.footer-tagline { color: var(--text-3); font-size: 14px; max-width: 280px; }
.footer-col-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-2); }
.footer-col a:hover { color: var(--text-1); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--text-3);
}

/* ===== Page-specific (legal/help) ===== */
.legal-hero {
  padding: 160px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 50% 0%, rgba(255,160,0,0.10), transparent 60%);
}
.legal-hero h1 { font-size: clamp(40px, 5vw, 72px); margin-bottom: 12px; }
.legal-hero .meta { color: var(--text-3); font-size: 14px; }
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}
.legal-body h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}
.legal-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 10px;
}
.legal-body p { color: var(--text-2); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.legal-body ul { color: var(--text-2); font-size: 15px; line-height: 1.75; padding-left: 22px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--gold-text); border-bottom: 1px solid rgba(255,160,0,0.3); }
.legal-body strong { color: var(--text-1); }

/* ===== Doc page (privacy/terms/how-it-works) ===== */
.doc-hero {
  padding: 140px 0 60px;
  position: relative;
  background: radial-gradient(60% 80% at 20% 30%, rgba(255,160,0,0.10), transparent 60%);
}
.doc-hero .container { max-width: 1200px; padding: 0 48px; }
.doc-hero .eyebrow { color: var(--text-3); }
.doc-hero h1 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 18px 0 20px;
  text-wrap: balance;
}
.doc-hero p { color: var(--text-2); font-size: 17px; line-height: 1.6; max-width: 540px; }

.doc-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 40px auto 120px;
  padding: 0 48px;
  align-items: start;
}
.doc-nav {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.doc-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-3);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.doc-nav a:hover { color: var(--text-1); background: rgba(255,255,255,0.03); }
.doc-nav a.active {
  color: var(--gold-text);
  background: rgba(255,160,0,0.08);
}
.doc-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.doc-content { min-width: 0; }
.doc-content svg, .doc-nav svg {
  flex-shrink: 0;
}
.doc-content svg:not([width]) {
  width: 18px;
  height: 18px;
}
.doc-meta {
  color: var(--text-3);
  font-size: 13px;
  margin-bottom: 32px;
}
.doc-section { margin-bottom: 64px; scroll-margin-top: 96px; }
.doc-section-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.doc-section-head svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold-text);
}
.doc-section-head h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.doc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.doc-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text-1);
}
.doc-card p { color: var(--text-2); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.doc-card p:last-child { margin-bottom: 0; }
.doc-card .lede { color: var(--gold-text); font-size: 14px; line-height: 1.6; }
.doc-card ul { color: var(--text-2); font-size: 14px; line-height: 1.7; padding-left: 18px; margin: 0; }
.doc-card li { margin-bottom: 4px; }
.doc-card a { color: var(--gold-text); }

.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.doc-grid .doc-card { margin-bottom: 0; }

.doc-glance .doc-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
}
.doc-glance .doc-card-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,160,0,0.12);
  color: var(--gold-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  margin-top: 1px;
}
.doc-glance p {
  margin: 0;
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.5;
}
.doc-glance .doc-card.full { grid-column: 1 / -1; }

.doc-card-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 10px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}
.doc-card-bullet:last-child { margin-bottom: 0; }
.doc-card-bullet-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,160,0,0.10);
  color: var(--gold-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}

.doc-faq h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
}
.doc-faq p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.doc-contact {
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(180deg, rgba(255,160,0,0.06), transparent);
  border: 1px solid rgba(255,160,0,0.20);
  border-radius: 16px;
  text-align: center;
}
.doc-contact p { color: var(--text-2); margin: 0 0 8px; font-size: 14px; }
.doc-contact a {
  color: var(--gold-text);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,160,0,0.4);
}

@media (max-width: 900px) {
  .doc-shell { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .doc-nav {
    position: relative; top: 0;
    flex-direction: row; flex-wrap: wrap;
    background: rgba(255,255,255,0.02);
    padding: 8px;
    border-radius: 12px;
  }
  .doc-nav a { padding: 8px 12px; }
  .doc-grid { grid-template-columns: 1fr; }
  .doc-hero { padding: 110px 0 40px; }
  .doc-hero .container { padding: 0 24px; }
}

.legal-callout {
  background: linear-gradient(180deg, rgba(255,160,0,0.06), rgba(255,160,0,0.02));
  border: 1px solid rgba(255,160,0,0.20);
  border-radius: 20px;
  padding: 28px 32px;
  margin: 32px 0 48px;
}
.legal-callout-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 16px;
}
.legal-callout ul { padding-left: 0; list-style: none; margin: 0; }
.legal-callout li {
  position: relative;
  padding-left: 26px;
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.legal-callout li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
.legal-faq { margin-top: 24px; }
.legal-faq h3 {
  font-size: 17px;
  color: var(--text-1);
  margin: 28px 0 8px;
}

.help-hero {
  padding: 160px 0 64px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255,160,0,0.12), transparent 60%);
}
.help-search {
  max-width: 560px;
  margin: 32px auto 0;
  position: relative;
}
.help-search input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  padding: 18px 22px 18px 56px;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
}
.help-search input:focus { border-color: rgba(255,160,0,0.5); }
.help-search-icon {
  position: absolute;
  left: 22px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); font-size: 18px;
}
.help-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}
.help-cat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all .25s;
  cursor: pointer;
}
.help-cat:hover { border-color: rgba(255,160,0,0.4); transform: translateY(-4px); }
.help-cat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-gold-soft);
  border: 1px solid rgba(255,160,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.help-cat h3 { font-size: 18px; margin-bottom: 8px; font-family: var(--font-display); font-weight: 700; }
.help-cat p { color: var(--text-3); font-size: 14px; }
.help-cat-count { color: var(--gold-text); font-size: 12px; margin-top: 14px; font-weight: 600; }

/* ===== Small / responsive ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid, .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 48px; }
  .feature-block.reverse > :first-child { order: 0; }
  .effects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .help-cats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-phones { height: 560px; }
  .phone-1 { width: 240px; height: 500px; }
  .phone-2, .phone-3 { width: 200px; height: 420px; }
  .section { padding: 80px 0; }
}

/* Tweaks panel parent overrides (when changed at runtime) */
[data-theme="light"] {
  --bg-0: #f7f5ef;
  --bg-1: #ffffff;
  --bg-2: #f3efe6;
  --bg-3: #ebe6db;
  --bg-card: #fff;
  --line: rgba(0,0,0,0.08);
  --line-strong: rgba(0,0,0,0.14);
  --text-1: #161616;
  --text-2: rgba(0,0,0,0.7);
  --text-3: rgba(0,0,0,0.5);
  --text-4: rgba(0,0,0,0.3);
}

/* ===== Help / Contact ===== */
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.contact-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-1);
}
.contact-head h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.contact-head svg { color: var(--gold-text); }
.contact-field {
  display: block;
  margin-bottom: 14px;
}
.contact-field > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text-1);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-3);
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--gold-text);
  background: rgba(255, 160, 0, 0.04);
}
.contact-submit {
  width: 100%;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-submit svg { transform: translateY(-1px); }
.contact-direct {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
}
.contact-direct a { color: var(--gold-text); }

.quick-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
}
.quick-link:last-child { margin-bottom: 0; }
.quick-link:hover {
  border-color: var(--gold-text);
  transform: translateX(2px);
}
.quick-link-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 160, 0, 0.12);
  color: var(--gold-text);
  flex-shrink: 0;
}
.quick-link-text { flex: 1; min-width: 0; }
.quick-link-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-1);
}
.quick-link-text span {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}
.quick-link-arrow {
  font-size: 20px;
  color: var(--text-3);
  font-weight: 300;
}

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

/* ===== Final CTA (gradient card) ===== */
.cta-card {
  margin: 80px auto 100px;
  padding: 80px 40px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 160, 0, 0.20) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(255, 234, 0, 0.10) 0%, transparent 50%),
    linear-gradient(135deg, #1c1814 0%, #14110d 60%, #1c1814 100%);
  border: 1px solid rgba(255, 160, 0, 0.18);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(255, 160, 0, 0.18), 0 20px 60px rgba(0, 0, 0, 0.4);
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 160, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 36px;
  position: relative;
}
.cta-pill svg { color: var(--gold-text); }
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin: 0 0 28px;
  position: relative;
}
.cta-highlight {
  display: inline-block;
  background: var(--gradient-gold);
  color: #1a1100;
  padding: 0 22px;
  border-radius: 16px;
  margin-left: 4px;
  box-shadow: 0 12px 36px rgba(255, 160, 0, 0.45), 0 0 60px rgba(255, 234, 0, 0.20);
}
.cta-sub {
  color: var(--text-2);
  font-size: 17px;
  margin: 0 0 36px;
  font-weight: 500;
  position: relative;
}
.cta-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px 14px 22px;
  background: var(--text-1);
  color: #0a0a0a;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.10);
  position: relative;
}
.cta-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}
.cta-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.cta-store-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.cta-store-name {
  font-size: 19px;
  font-weight: 700;
  margin-top: 3px;
}

@media (max-width: 720px) {
  .cta-card { padding: 56px 24px; margin: 56px auto 72px; border-radius: 28px; }
  .cta-highlight { padding: 0 12px; border-radius: 12px; }
}

/* RTL adjustments for CTA */
html[dir="rtl"] .cta-store-text { align-items: flex-end; }
html[dir="rtl"] .cta-highlight { margin-left: 0; margin-right: 4px; }
