/* İnstakoz — Public Site (marketing layout only; shared UI in components.css) */

/* Base */
.ps-skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 16px;
  background: #fff;
  color: #06060c;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.ps-skip-link:focus { left: 12px; }

.ps-body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.ps-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ps-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: ps-float 22s ease-in-out infinite;
}

.ps-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.32), transparent 68%);
  top: -220px; right: -140px;
}

.ps-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.22), transparent 68%);
  bottom: 8%; left: -100px;
  animation-delay: -7s;
}

.ps-orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.14), transparent 68%);
  top: 42%; left: 42%;
  animation-delay: -14s;
}

.ps-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes ps-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.04); }
  66% { transform: translate(-18px, 12px) scale(0.97); }
}

.ps-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .ps-container { padding: 0 28px; }
}

/* Header */
.ps-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.ps-header.scrolled {
  background: rgba(6, 6, 12, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.ps-header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.ps-logo-link {
  min-width: 0;
  max-width: calc(100% - 56px);
}

@media (min-width: 768px) {
  .ps-header-inner { padding: 16px 28px; }
}

.ps-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ps-nav-link {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.ps-nav-link:hover,
.ps-nav-link.active {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.ps-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ps-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.ps-user-chip:hover { color: #fff; text-decoration: none; border-color: var(--color-border-strong); }

.ps-user-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
}

/* Buttons */
.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.ps-btn:hover { text-decoration: none; transform: translateY(-1px); }
.ps-btn:active { transform: translateY(0); }

.ps-btn-primary {
  background: var(--brand-grad-btn);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.ps-btn-primary:hover { color: #fff; opacity: 0.96; }

.ps-btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.ps-btn-ghost:hover { color: #fff; border-color: var(--color-border-strong); }

.ps-btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
}

.ps-btn-outline:hover { background: rgba(255, 255, 255, 0.04); color: #fff; }

.ps-btn-sm { padding: 9px 16px; font-size: 13px; }
.ps-btn-lg { padding: 14px 28px; font-size: 15px; }

/* Mobile menu */
.ps-menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.ps-menu-bar {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.ps-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 298;
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.ps-mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.ps-mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 92vw);
  height: 100dvh;
  height: 100svh;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  z-index: 299;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-lg);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.ps-mobile-nav.open { transform: translateX(0); }

.ps-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
}

.ps-mobile-close {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-mobile-links {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.ps-mobile-link {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.ps-mobile-link:hover,
.ps-mobile-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.ps-mobile-actions {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--color-border);
}

.ps-mobile-actions .ps-btn { width: 100%; }

.ps-mobile-foot {
  padding: 14px 20px;
  font-size: 12px;
  color: var(--color-text-dim);
  border-top: 1px solid var(--color-border);
}

@media (max-width: 960px) {
  .ps-nav, .ps-header-actions { display: none; }
  .ps-menu-toggle { display: flex; }
}

body.ps-menu-open { overflow: hidden; }

.ps-main { position: relative; z-index: 1; }

/* Hero */
.ps-hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 0 72px;
  position: relative;
}

.ps-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.ps-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: rgba(219, 39, 119, 0.1);
  border: 1px solid rgba(219, 39, 119, 0.28);
  color: #f9a8d4;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 22px;
}

.ps-hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
  animation: ps-pulse 2s ease infinite;
}

@keyframes ps-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.ps-hero-slider { position: relative; min-height: 200px; }

.ps-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}

.ps-hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.ps-hero-title {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 18px;
}

.ps-gradient {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ps-hero-desc {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.72;
  color: var(--color-text-muted);
  margin: 0 0 28px;
  max-width: 520px;
}

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

.ps-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}

.ps-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-dim);
  font-weight: 500;
}

.ps-hero-trust-item svg { color: var(--color-success); flex-shrink: 0; }

.ps-hero-dots { display: flex; gap: 8px; }

.ps-hero-dot {
  width: 32px; height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.ps-hero-dot.active {
  background: var(--brand-grad-btn);
  width: 48px;
}

/* Hero visual */
.ps-hero-visual { position: relative; }

.ps-hero-mockup {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--color-surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border-strong);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.ps-mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.ps-mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.ps-mockup-dot:nth-child(1) { background: #f87171; }
.ps-mockup-dot:nth-child(2) { background: #fbbf24; }
.ps-mockup-dot:nth-child(3) { background: #34d399; }

.ps-mockup-title {
  margin-left: auto;
  font-size: 11px;
  color: var(--color-text-dim);
  font-weight: 600;
}

.ps-mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.ps-mockup-stat {
  padding: 14px 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  text-align: center;
}

.ps-mockup-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ps-mockup-stat span {
  font-size: 11px;
  color: var(--color-text-dim);
}

.ps-mockup-chart {
  height: 120px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.12), transparent);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.ps-mockup-chart svg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 80%;
}

.ps-float-cards {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

.ps-float-card {
  position: absolute;
  background: var(--color-surface-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: ps-float-card 7s ease-in-out infinite;
}

.ps-float-card-1 { top: -8%; right: -6%; animation-delay: 0s; }
.ps-float-card-2 { bottom: 12%; left: -10%; animation-delay: -2.5s; }

@keyframes ps-float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ps-float-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--brand-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9a8d4;
  flex-shrink: 0;
}

.ps-float-card strong {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 2px;
}

.ps-float-card span {
  font-size: 11px;
  color: var(--color-text-dim);
}

@media (max-width: 960px) {
  .ps-hero { min-height: auto; padding: calc(var(--header-h) + 24px) 0 56px; }
  .ps-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .ps-hero-visual { order: -1; }
  .ps-float-cards { display: none; }
}

/* Sections */
.ps-section {
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
  z-index: 1;
}

.ps-section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.ps-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.ps-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f9a8d4;
  margin-bottom: 12px;
}

.ps-section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.ps-section-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.ps-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.ps-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Features */
.ps-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ps-feature {
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  background: var(--color-surface-glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.ps-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(219, 39, 119, 0.28);
  box-shadow: var(--shadow-md);
}

.ps-feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand-grad-soft);
  border: 1px solid rgba(219, 39, 119, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9a8d4;
  margin-bottom: 18px;
}

.ps-feature h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.ps-feature p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

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

/* Services grid */
.ps-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ps-service {
  padding: 22px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
}

.ps-service:hover {
  transform: translateY(-3px);
  border-color: rgba(219, 39, 119, 0.3);
  background: rgba(219, 39, 119, 0.06);
}

.ps-service-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--brand-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9a8d4;
}

.ps-service-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 900px) { .ps-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .ps-services { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* Steps */
.ps-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.ps-step {
  padding: 26px 20px;
  border-radius: var(--radius-xl);
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  text-align: center;
}

.ps-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--brand-grad-btn);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-glow);
}

.ps-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.ps-step p {
  font-size: 13px;
  color: var(--color-text-dim);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 800px) { .ps-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ps-steps { grid-template-columns: 1fr; } }

/* Stats */
.ps-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ps-stat {
  text-align: center;
  padding: 32px 18px;
  border-radius: var(--radius-xl);
  background: var(--brand-grad-soft);
  border: 1px solid rgba(219, 39, 119, 0.14);
}

.ps-stat-value {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.ps-stat-label {
  font-size: 13px;
  color: var(--color-text-dim);
  margin-top: 8px;
  font-weight: 500;
}

@media (max-width: 700px) { .ps-stats { grid-template-columns: 1fr 1fr; } }

/* FAQ */
.ps-faq { max-width: 720px; margin: 0 auto; }

.ps-faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  background: var(--color-surface-glass);
  overflow: hidden;
}

.ps-faq-q {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ps-faq-q svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-dim);
}

.ps-faq-item.open .ps-faq-q svg { transform: rotate(180deg); }

.ps-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.ps-faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.ps-faq-item.open .ps-faq-a { max-height: 200px; }

/* CTA */
.ps-cta {
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
  border-radius: 28px;
  background: var(--brand-grad-soft);
  border: 1px solid rgba(219, 39, 119, 0.22);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ps-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(219, 39, 119, 0.16), transparent 55%);
  pointer-events: none;
}

.ps-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  position: relative;
}

.ps-cta p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0 0 28px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.ps-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Gizli hayranlar teşvik bandı */
.ps-hook-banner-wrap {
  padding-top: 0;
  padding-bottom: clamp(32px, 5vw, 48px);
}

.ps-hook-banner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 4vw, 32px);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.14), rgba(147, 51, 234, 0.1));
  border: 1px solid rgba(219, 39, 119, 0.28);
  flex-wrap: wrap;
}

.ps-hook-banner-icon {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  flex-shrink: 0;
}

.ps-hook-banner-text {
  flex: 1;
  min-width: 200px;
}

.ps-hook-banner-text h2 {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: #fff;
}

.ps-hook-banner-text p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.ps-float-card-3 { top: 42%; right: -6%; animation-delay: -4s; }

/* Footer */
.ps-footer {
  border-top: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.35);
  padding: 64px 0 28px;
  position: relative;
  z-index: 1;
}

.ps-footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.ps-footer-brand p {
  font-size: 14px;
  color: var(--color-text-dim);
  line-height: 1.65;
  margin: 16px 0 0;
  max-width: 300px;
}

.ps-footer-domain {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #f9a8d4;
}

.ps-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ps-footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin: 0 0 14px;
}

.ps-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ps-footer-col a {
  color: var(--color-text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.ps-footer-col a:hover { color: #fff; text-decoration: none; }

.ps-footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-dim);
}

@media (max-width: 800px) {
  .ps-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .ps-footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .ps-footer-cols { grid-template-columns: 1fr; }
  .ps-footer {
    padding: 40px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  }
  .ps-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ps-footer-bottom span {
    word-break: break-word;
    line-height: 1.45;
  }
}

/* Auth pages */
.ps-auth-page {
  min-height: calc(100dvh - var(--header-h));
  padding: calc(var(--header-h) + 24px) 0 64px;
  display: flex;
  align-items: center;
}

.ps-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ps-auth-showcase {
  padding: 32px 0;
}

.ps-auth-showcase h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 20px 0 14px;
  line-height: 1.15;
}

.ps-auth-showcase p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 420px;
}

.ps-auth-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ps-auth-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.ps-auth-perk-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9a8d4;
  flex-shrink: 0;
}

.ps-auth-card {
  background: var(--color-surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-lg);
}

.ps-auth-head {
  text-align: center;
  margin-bottom: 24px;
}

.ps-auth-head h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 14px 0 6px;
}

.ps-auth-head p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.ps-auth-ig-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  margin: 0 auto;
  background: var(--brand-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: var(--shadow-glow);
}

.ps-auth-note {
  font-size: 12px;
  color: var(--color-text-dim);
  text-align: center;
  margin-top: 16px;
  line-height: 1.55;
}

.ps-auth-note a { color: #f9a8d4; text-decoration: none; }
.ps-auth-note a:hover { text-decoration: underline; }

.ps-login-guide {
  margin-top: 16px;
  padding: 14px 15px;
  border: 1px solid rgba(192, 132, 252, 0.24);
  border-radius: 14px;
  background: rgba(88, 28, 135, 0.12);
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.5;
}
.ps-login-guide > strong {
  display: block;
  margin-bottom: 8px;
  color: #f5e9ff;
  font-size: 13px;
}
.ps-login-guide ol {
  margin: 0;
  padding-left: 18px;
}
.ps-login-guide li + li { margin-top: 5px; }
.ps-login-guide b { color: #fff; font-weight: 650; }
.ps-login-guide code {
  color: #f9a8d4;
  font: inherit;
}
.ps-login-guide p {
  margin: 9px 0 0;
  padding-top: 9px;
  border-top: 1px solid rgba(192, 132, 252, 0.16);
}
.ps-login-guide-compact {
  padding: 12px 13px;
  font-size: 11px;
}
.ps-inline-form { display: inline; margin: 0; padding: 0; }
.ps-link-btn {
  background: none;
  border: none;
  color: #f9a8d4;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: none;
}
.ps-link-btn:hover { text-decoration: underline; }

.ps-flash-wrap { padding-top: calc(var(--header-h) + 12px); }

.ps-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 16px;
  border: 1px solid transparent;
}

.ps-alert-error { background: rgba(248, 113, 113, 0.12); border-color: rgba(248, 113, 113, 0.3); color: #fca5a5; }
.ps-alert-success { background: rgba(52, 211, 153, 0.12); border-color: rgba(52, 211, 153, 0.3); color: #6ee7b7; }
.ps-alert-info { background: rgba(96, 165, 250, 0.12); border-color: rgba(96, 165, 250, 0.3); color: #93c5fd; }

/* Form in auth */
.ps-auth-card .ik-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.ps-auth-card .ik-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

.ps-auth-card .ik-input:focus {
  outline: none;
  border-color: rgba(219, 39, 119, 0.45);
}

.ps-auth-card .ik-btn-primary {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--brand-grad-btn);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: opacity var(--transition);
}

.ps-auth-card .ik-btn-primary:hover { opacity: 0.95; }
.ps-auth-card .ik-btn-primary:disabled { opacity: 0.55; cursor: not-allowed; }

.ps-code-input {
  font-size: 22px !important;
  text-align: center;
  letter-spacing: 0.25em;
  font-weight: 700;
}

.pub-password-wrap { position: relative; margin-bottom: 16px; }
.pub-password-wrap .ik-input,
.pub-password-wrap .ikz-input {
  margin-bottom: 0;
  padding-right: 48px;
}

.pub-password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.55;
  color: #fff;
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pub-password-toggle:hover { opacity: 0.9; }

/* 404 */
.ps-notfound {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 0 64px;
}

.ps-notfound-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.ps-notfound-code {
  font-size: clamp(72px, 14vw, 120px);
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

@media (max-width: 900px) {
  .ps-auth-grid { grid-template-columns: 1fr; }
  .ps-auth-showcase:not(.ps-auth-showcase-v2) { display: none; }
  .ps-auth-showcase-v2 { padding: 0 0 8px; text-align: center; }
  .ps-auth-showcase-v2 h1 { font-size: 26px; margin-top: 12px; }
  .ps-auth-phone-wrap, .ps-auth-stats-row { display: none; }
  .ps-auth-perks { display: none; }
  .ps-auth-lead { font-size: 14px; margin-bottom: 0; }
}

@media (max-width: 767px) {
  .ps-auth-page {
    padding: calc(var(--header-h) + 16px) 0 40px;
    align-items: flex-start;
  }
  .ps-auth-card { padding: 20px 16px; }
  .ps-auth-live-badge { right: 8px; }
  .ikz-input,
  .ik-input,
  .ikz-textarea {
    font-size: 16px;
    min-height: 48px;
  }
  .ikz-btn,
  .ikz-btn-primary,
  .ps-btn,
  .ik-btn-primary {
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .ps-auth-showcase-v2 h1 { font-size: 22px; }
  .ps-login-guide { font-size: 13px; }
  .hp-cta .ps-btn {
    white-space: normal;
    width: 100%;
    min-height: 48px;
  }
  .hp-cta { padding: 28px 16px; }
  .hp-social { flex-wrap: wrap; gap: 10px; }
  .hp-trust {
    font-size: 12px;
    min-height: 36px;
    padding: 8px 12px;
  }
}

/* ═══════════════════════════════════════════
   DISCOVERY REDESIGN — Gizli hayranlar odaklı
   ═══════════════════════════════════════════ */

.ps-hero-discovery { min-height: auto; padding-bottom: 48px; }

.ps-hero-discovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.ps-btn-glow {
  box-shadow: 0 0 32px rgba(219, 39, 119, 0.45), var(--shadow-glow);
  animation: ps-btn-pulse 3s ease-in-out infinite;
}

@keyframes ps-btn-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(219, 39, 119, 0.35), var(--shadow-glow); }
  50% { box-shadow: 0 0 40px rgba(219, 39, 119, 0.55), var(--shadow-glow); }
}

.ps-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.ps-hero-social-proof p {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-dim);
}

.ps-hero-social-proof strong { color: #f9a8d4; }

.ps-hero-avatars {
  display: flex;
  position: relative;
  min-width: 120px;
  height: 36px;
}

.ps-hero-av-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  margin-left: calc(var(--i) * -10px);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.ps-hero-av-img:first-child { margin-left: 0; }

.ps-hero-av-img.is-leaving {
  transform: translateX(-18px) scale(0.7);
  opacity: 0;
}

.ps-hero-av-img.is-entering {
  animation: ps-hero-av-enter 0.4s ease forwards;
}

@keyframes ps-hero-av-enter {
  from { transform: translateX(12px) scale(0.6); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}

.ps-reveal-delay { transition-delay: 0.15s; }

/* Phone stage */
.ps-phone-stage {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.ps-phone-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse, rgba(219, 39, 119, 0.25), transparent 70%);
  filter: blur(40px);
  animation: ps-glow-breathe 4s ease-in-out infinite;
}

@keyframes ps-glow-breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.ps-phone-illus {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  animation: ps-phone-float 6s ease-in-out infinite;
}

/* HTML phone mockup (hero) */
.ps-phone-mockup {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0 auto;
  animation: ps-phone-float 6s ease-in-out infinite;
}

.ps-phone-bezel {
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(145deg, #1a1528, #0d0a14);
  border: 2px solid rgba(244, 114, 182, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 40px rgba(219, 39, 119, 0.15);
}

.ps-phone-notch {
  width: 80px;
  height: 5px;
  border-radius: 3px;
  background: #2a2438;
  margin: 4px auto 10px;
}

.ps-phone-screen {
  border-radius: 24px;
  background: linear-gradient(180deg, #1a1028 0%, #0a0612 100%);
  padding: 16px 14px 20px;
  overflow: hidden;
  min-height: 380px;
}

.ps-phone-header {
  text-align: center;
  margin-bottom: 16px;
}

.ps-phone-me {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 8px;
}

.ps-phone-me-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.ps-phone-me-sub {
  display: block;
  font-size: 11px;
  color: #a78bfa;
  margin-top: 2px;
}

.ps-phone-viewers-mask {
  mask-image: linear-gradient(180deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 6%, #000 94%, transparent);
  height: 280px;
  overflow: hidden;
}

.ps-phone-viewers-scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: ps-phone-scroll 22s linear infinite;
}

.ps-phone-viewers-scroll:hover { animation-play-state: paused; }

@keyframes ps-phone-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.ps-phone-viewer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 114, 182, 0.18);
  flex-shrink: 0;
}

.ps-phone-viewer-row-secret {
  background: rgba(219, 39, 119, 0.08);
  border-color: rgba(219, 39, 119, 0.35);
  border-style: dashed;
}

.ps-phone-viewer-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.ps-phone-viewer-text strong {
  display: block;
  font-size: 12px;
  color: #fff;
}

.ps-phone-viewer-text span {
  font-size: 10px;
  color: var(--color-text-dim);
}

.ps-phone-viewer-badge {
  margin-left: auto;
  font-size: 8px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.ps-phone-viewer-badge-secret {
  background: rgba(219, 39, 119, 0.2);
  color: #f9a8d4;
}

@keyframes ps-phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.ps-notif-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(18, 16, 26, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(244, 114, 182, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: ps-notif-pop 5s ease-in-out infinite;
}

.ps-notif-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(244, 114, 182, 0.35);
}

.ps-notif-float strong {
  display: block;
  font-size: 12px;
  color: #fff;
}

.ps-notif-float span {
  font-size: 10px;
  color: var(--color-text-dim);
}

.ps-notif-float-1 { top: 18%; right: -8%; animation-delay: 0s; }
.ps-notif-float-2 { bottom: 22%; left: -10%; animation-delay: -2.5s; }

@keyframes ps-notif-pop {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-6px) scale(1.02); opacity: 0.95; }
}

.ps-notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  flex-shrink: 0;
  animation: ps-pulse 2s ease infinite;
}

.ps-notif-dot-pink { background: #f472b6; box-shadow: 0 0 8px #f472b6; }

@media (max-width: 960px) {
  .ps-hero-discovery-grid { grid-template-columns: 1fr; }
  .ps-hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .ps-notif-float { display: none; }
}

/* Login section on homepage */
.ps-login-section { padding-top: 0; }

.ps-login-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(219, 39, 119, 0.06));
  border: 1px solid rgba(219, 39, 119, 0.2);
}

.ps-text-left { text-align: left; }

.ps-login-split-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.ps-login-benefits {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-login-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ps-login-benefit-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.ps-login-benefits strong {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}

.ps-login-benefits span {
  font-size: 13px;
  color: var(--color-text-dim);
}

.ps-login-alt-link {
  font-size: 13px;
  color: #f9a8d4;
  text-decoration: none;
  font-weight: 600;
}

.ps-login-alt-link:hover { text-decoration: underline; }

.ps-login-card-home {
  background: var(--color-surface-glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-lg);
}

.ps-login-card-head {
  text-align: center;
  margin-bottom: 20px;
}

.ps-login-card-head h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 12px 0 6px;
}

.ps-login-card-head p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.ps-auth-ig-icon-sm {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  font-size: 22px !important;
}

.ps-btn-full { width: 100%; }

@media (max-width: 900px) {
  .ps-login-split { grid-template-columns: 1fr; }
  .ps-text-left { text-align: center; }
  .ps-login-benefits { text-align: left; }
}

/* Viewer ticker */
.ps-live-preview { overflow: hidden; }

.ps-viewer-ticker-wrap {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-bottom: 28px;
}

.ps-viewer-ticker {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: ps-ticker-scroll 40s linear infinite;
}

.ps-viewer-ticker:hover { animation-play-state: paused; }

@keyframes ps-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ps-viewer-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
  min-width: 220px;
}

.ps-viewer-chip-secret {
  background: rgba(219, 39, 119, 0.08);
  border-color: rgba(219, 39, 119, 0.35);
  border-style: dashed;
}

.ps-viewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(244, 114, 182, 0.35);
  flex-shrink: 0;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.ps-viewer-chip-text strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.ps-viewer-chip-text span {
  font-size: 11px;
  color: var(--color-text-dim);
}

.ps-viewer-tag {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  letter-spacing: 0.05em;
}

.ps-viewer-tag-secret {
  background: rgba(219, 39, 119, 0.2);
  color: #f9a8d4;
}

.ps-live-cta { text-align: center; }

/* Discovery cards */
.ps-discovery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ps-discovery-card {
  border-radius: var(--radius-xl);
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.ps-discovery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(219, 39, 119, 0.3);
  box-shadow: var(--shadow-md);
}

.ps-discovery-card-featured {
  border-color: rgba(219, 39, 119, 0.35);
  background: linear-gradient(180deg, rgba(219, 39, 119, 0.08), var(--color-surface-glass));
}

.ps-discovery-illus {
  padding: 24px 20px 0;
  text-align: center;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ps-discovery-illus img {
  max-width: 100%;
  height: auto;
  max-height: 160px;
}

.ps-discovery-body { padding: 20px 24px 28px; }

.ps-discovery-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f472b6;
  display: block;
  margin-bottom: 8px;
}

.ps-discovery-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.ps-discovery-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0 0 14px;
}

.ps-discovery-link {
  font-size: 13px;
  font-weight: 600;
  color: #f9a8d4;
  text-decoration: none;
}

.ps-discovery-link:hover { text-decoration: underline; }

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

/* Steps v2 */
.ps-steps-3 { grid-template-columns: repeat(3, 1fr); }

.ps-step-v2::before { display: none; }

.ps-step-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}

.ps-stats-discovery .ps-stat-value { font-size: clamp(24px, 3vw, 32px); }

.ps-services-compact .ps-service {
  padding: 16px 12px;
}

.ps-services-compact .ps-service-icon { display: none; }

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

/* CTA discovery */
.ps-cta-discovery {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  text-align: left;
}

.ps-cta-discovery .ps-cta-visual {
  flex-shrink: 0;
  opacity: 0.9;
  animation: ps-phone-float 5s ease-in-out infinite;
}

.ps-cta-discovery .ps-cta-content { flex: 1; position: relative; }

.ps-cta-discovery h2,
.ps-cta-discovery p,
.ps-cta-discovery .ps-cta-actions {
  text-align: left;
  margin-left: 0;
}

@media (max-width: 700px) {
  .ps-cta-discovery { flex-direction: column; text-align: center; }
  .ps-cta-discovery h2,
  .ps-cta-discovery p,
  .ps-cta-discovery .ps-cta-actions { text-align: center; margin-left: auto; margin-right: auto; }
  .ps-cta-discovery .ps-cta-visual { display: none; }
}

/* Auth page v2 */
.ps-auth-page-v2 { position: relative; overflow: hidden; }

.ps-auth-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ps-auth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ps-auth-orb-1 {
  width: 400px; height: 400px;
  background: rgba(219, 39, 119, 0.15);
  top: -100px; right: -80px;
  animation: ps-float 18s ease-in-out infinite;
}

.ps-auth-orb-2 {
  width: 300px; height: 300px;
  background: rgba(124, 58, 237, 0.12);
  bottom: 10%; left: -60px;
  animation: ps-float 22s ease-in-out infinite reverse;
}

.ps-auth-showcase-v2 { position: relative; z-index: 1; }

.ps-auth-lead {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 400px;
}

.ps-auth-phone-wrap {
  position: relative;
  max-width: 280px;
  margin: 0 0 24px;
}

.ps-auth-phone-img {
  width: 100%;
  height: auto;
  animation: ps-phone-float 5s ease-in-out infinite;
}

.ps-auth-live-badge {
  position: absolute;
  top: 12%;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(18, 16, 26, 0.95);
  border: 1px solid rgba(52, 211, 153, 0.35);
  font-size: 12px;
  font-weight: 600;
  color: #6ee7b7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: ps-notif-pop 4s ease-in-out infinite;
}

.ps-auth-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  animation: ps-pulse 2s ease infinite;
}

.ps-auth-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.ps-auth-stat {
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
}

.ps-auth-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ps-auth-stat span {
  font-size: 11px;
  color: var(--color-text-dim);
}

.ps-auth-card-v2 {
  position: relative;
  z-index: 1;
  border-color: rgba(219, 39, 119, 0.25);
}

/* ── Login page (/giris) — single centered composition ── */
.ps-login {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  padding: calc(var(--header-h) + 28px) 0 56px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(225, 48, 108, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 35% at 80% 70%, rgba(247, 119, 55, 0.08), transparent 55%);
}

.ps-login-container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.ps-login-card {
  background: var(--color-surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--shadow-lg);
}

.ps-login-head {
  text-align: center;
  margin-bottom: 22px;
}

.ps-login-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand-grad);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.28);
}

.ps-login-brand {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ps-login-head h1 {
  margin: 0 0 8px;
  font-size: clamp(22px, 5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
}

.ps-login-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.ps-login-form .ikz-label {
  margin-top: 4px;
}

.ps-login-cta {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  font-size: 15px;
}

.ps-login-tip {
  margin: 14px 0 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-dim);
  text-align: center;
}

.ps-login-tip code {
  color: #f9a8d4;
  font: inherit;
}

.ps-login-back {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13px;
}

.ps-login-back a {
  color: var(--color-text-dim);
  text-decoration: none;
}

.ps-login-back a:hover {
  color: #f9a8d4;
}

.ps-verify-info {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-verify-info strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 4px;
}

.ps-verify-info p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.ps-verify-target {
  margin-top: 6px !important;
  font-size: 12px !important;
  color: var(--color-text-dim) !important;
}

@media (max-width: 480px) {
  .ps-login {
    padding: calc(var(--header-h) + 16px) 0 40px;
    align-items: flex-start;
  }
  .ps-login-card {
    padding: 20px 16px;
    border-radius: 18px;
  }
  .ps-login-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* ── Notification approval (mobile-first) ── */
.ps-notif {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ps-notif-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-notif-account-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.ps-notif-account strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  word-break: break-all;
  text-align: right;
}

.ps-notif-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-notif-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.ps-notif-steps b {
  color: #fff;
  font-weight: 650;
}

.ps-notif-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f77737, #e1306c);
}

.ps-notif-wait {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.ps-notif-wait-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ps-notif-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  animation: ps-notif-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}

@keyframes ps-notif-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.ps-notif-wait-text {
  flex: 1;
  min-width: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: #a7f3d0;
}

.ps-notif-timer {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.14);
  padding: 3px 8px;
  border-radius: 999px;
}

.ps-notif-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ps-notif-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #34d399, #6ee7b7);
  transition: width 1s linear;
}

.ps-notif-cta {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  font-size: 15px;
}

.ps-notif-alt {
  border-top: 1px dashed rgba(148, 163, 184, 0.3);
  padding-top: 10px;
  margin-top: 4px;
}

.ps-alt-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ikz-btn-ghost {
  flex: 1 1 auto;
  min-width: 140px;
  min-height: 40px;
  font-size: 13.5px;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: inherit;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ikz-btn-ghost:hover:not(:disabled) {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.7);
}

.ikz-btn-ghost:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .ps-notif {
    gap: 12px;
  }
  .ps-notif-steps li {
    padding: 11px 12px;
    font-size: 12.5px;
  }
  .ps-notif-account {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .ps-notif-account strong {
    text-align: left;
  }
  .ps-notif-wait-top {
    flex-wrap: wrap;
  }
  .ps-notif-wait-text {
    flex-basis: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ps-notif-pulse { animation: none; }
  .ps-notif-bar-fill { transition: none; }
}

.ps-auth-home-link {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
}

.ps-auth-home-link a {
  color: var(--color-text-dim);
  text-decoration: none;
}

.ps-auth-home-link a:hover { color: #f9a8d4; }

.ps-auth-perk strong { color: #fff; }

/* ═══════════════════════════════════════════
   Homepage v2 — mobile-first (hp-*)
   ═══════════════════════════════════════════ */

.hp-page {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.hp-page .ps-btn-full { width: 100%; }

/* Hero */
.hp-hero {
  padding: calc(var(--header-h) + 20px) 0 32px;
}

.hp-hero-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(219, 39, 119, 0.12);
  border: 1px solid rgba(244, 114, 182, 0.25);
  font-size: 12px;
  font-weight: 600;
  color: #f9a8d4;
  margin-bottom: 16px;
}

.hp-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #f472b6;
  box-shadow: 0 0 8px #f472b6;
  animation: ps-pulse 2s ease infinite;
}

.hp-title {
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: #fff;
}

.hp-lead {
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 20px;
  max-width: 520px;
}

.hp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hp-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-dim);
}

.hp-trust svg { color: #6ee7b7; flex-shrink: 0; }

.hp-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-social p {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-dim);
}

.hp-social strong { color: #f9a8d4; }

.hp-avatars {
  display: flex;
  flex-shrink: 0;
}

.hp-avatars .ps-hero-av-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  margin-left: calc(var(--i) * -9px);
  object-fit: cover;
}

.hp-avatars .ps-hero-av-img:first-child { margin-left: 0; }

/* Login / panel card */
.hp-hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-card {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(18, 16, 26, 0.85);
  border: 1px solid rgba(244, 114, 182, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hp-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hp-card-head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.hp-card-head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--color-text-dim);
}

.hp-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}

.hp-card-panel h2 { font-size: 1.15rem; margin: 0 0 8px; color: #fff; }
.hp-card-panel p { margin: 0 0 18px; font-size: 14px; color: var(--color-text-dim); }

.hp-submit {
  min-height: 48px;
  font-size: 15px;
}

.hp-card-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--color-text-dim);
  text-align: center;
  line-height: 1.5;
}

.hp-card-note a { color: #f9a8d4; text-decoration: none; }
.hp-card-note a:hover { text-decoration: underline; }

/* Phone preview — hidden on small mobile */
.hp-phone-preview { display: none; }

.hp-phone {
  border-radius: 24px;
  padding: 12px;
  background: linear-gradient(145deg, #1a1528, #0d0a14);
  border: 2px solid rgba(244, 114, 182, 0.3);
}

.hp-phone-bar {
  width: 64px; height: 4px;
  border-radius: 2px;
  background: #2a2438;
  margin: 4px auto 12px;
}

.hp-phone-head {
  text-align: center;
  margin-bottom: 12px;
}

.hp-phone-head img {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 6px;
}

.hp-phone-head span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.hp-phone-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 85%, transparent);
}

.hp-phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 114, 182, 0.15);
  animation: hp-row-in 0.5s ease both;
}

.hp-phone-row:nth-child(2) { animation-delay: 0.1s; }
.hp-phone-row:nth-child(3) { animation-delay: 0.2s; }
.hp-phone-row:nth-child(4) { animation-delay: 0.3s; }
.hp-phone-row:nth-child(5) { animation-delay: 0.4s; }

@keyframes hp-row-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hp-phone-row img {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hp-phone-row strong {
  display: block;
  font-size: 12px;
  color: #fff;
}

.hp-phone-row span {
  font-size: 10px;
  color: var(--color-text-dim);
}

.hp-phone-row-secret {
  border-style: dashed;
  border-color: rgba(219, 39, 119, 0.35);
  background: rgba(219, 39, 119, 0.06);
}

.hp-tag-new {
  margin-left: auto;
  font-size: 8px;
  font-weight: 800;
  font-style: normal;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
}

/* Visitor strip */
.hp-strip {
  overflow: hidden;
  padding: 8px 0 28px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hp-strip-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ps-ticker-scroll 35s linear infinite;
  padding: 0 20px;
}

.hp-strip-track:hover { animation-play-state: paused; }

.hp-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
  min-width: 200px;
}

.hp-strip-secret {
  background: rgba(219, 39, 119, 0.08);
  border-color: rgba(219, 39, 119, 0.3);
  border-style: dashed;
}

.hp-strip-item img {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.hp-strip-item strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.hp-strip-item span {
  font-size: 11px;
  color: var(--color-text-dim);
}

.hp-pill {
  margin-left: auto;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.hp-pill-green { background: rgba(52, 211, 153, 0.15); color: #6ee7b7; }
.hp-pill-pink { background: rgba(219, 39, 119, 0.2); color: #f9a8d4; }

/* Sections */
.hp-section {
  padding: 48px 0;
}

.hp-section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hp-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.hp-section-title {
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  color: #fff;
}

/* Features */
.hp-features {
  display: grid;
  gap: 14px;
}

.hp-feature {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, transform 0.2s;
}

.hp-feature:hover {
  border-color: rgba(244, 114, 182, 0.3);
  transform: translateY(-2px);
}

.hp-feature-hot {
  background: rgba(219, 39, 119, 0.08);
  border-color: rgba(219, 39, 119, 0.3);
}

.hp-feature-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.hp-feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.hp-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-dim);
}

/* Steps */
.hp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin-inline: auto;
}

.hp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
}

.hp-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-grad-btn);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-step h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.hp-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-dim);
}

/* Stats */
.hp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hp-stat {
  text-align: center;
  padding: 20px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
}

.hp-stat strong {
  display: block;
  font-size: clamp(1.4rem, 5vw, 1.75rem);
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hp-stat span {
  font-size: 12px;
  color: var(--color-text-dim);
  margin-top: 4px;
  display: block;
}

/* CTA */
.hp-cta {
  text-align: center;
  padding: 36px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(219, 39, 119, 0.12));
  border: 1px solid rgba(244, 114, 182, 0.25);
}

.hp-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 800;
  color: #fff;
}

.hp-cta p {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--color-text-dim);
}

/* Mobile sticky bar */
.hp-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(6, 6, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hp-mobile-bar-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.hp-mobile-bar .ps-btn {
  width: 100%;
  min-height: 48px;
  font-size: 15px;
  justify-content: center;
}

/* Tablet+ */
@media (min-width: 768px) {
  .hp-hero { padding: calc(var(--header-h) + 32px + env(safe-area-inset-top, 0px)) 0 40px; }
  .hp-features { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hp-stats { grid-template-columns: repeat(4, 1fr); }
  .hp-mobile-bar { display: none; }
  .hp-page:not(:has(.hp-mobile-bar)) { padding-bottom: 0; }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hp-features { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hp-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .hp-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 40px;
    align-items: center;
  }

  .hp-phone-preview { display: block; }

  .hp-section { padding: 64px 0; }
}

@media (max-width: 767px) {
  .hp-hero {
    padding: calc(var(--header-h) + 16px + env(safe-area-inset-top, 0px)) 0 28px;
  }

  .hp-page:has(.hp-mobile-bar) {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .ps-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hp-hero-grid {
    gap: 20px;
  }

  .hp-title {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    word-break: break-word;
  }

  .hp-lead {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .hp-trust-row { gap: 8px; }
  .hp-trust {
    font-size: 12px;
    padding: 8px 12px;
    min-height: 40px;
  }

  .hp-social {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }

  .hp-social p {
    font-size: 12px;
    line-height: 1.4;
    min-width: 0;
  }

  .hp-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .hp-card-head {
    align-items: flex-start;
    gap: 12px;
  }

  .hp-card-head h2 { font-size: 1.05rem; }

  .ps-login-guide-compact {
    font-size: 12px;
    padding: 12px;
  }

  .ikz-input {
    font-size: 16px;
    min-height: 48px;
  }

  .hp-submit,
  .hp-card .ikz-btn,
  .hp-card .ps-btn {
    width: 100%;
    min-height: 48px;
  }

  .hp-strip {
    padding: 4px 0 20px;
  }

  .hp-strip-item {
    min-width: 168px;
    max-width: 240px;
    padding: 8px 12px;
  }

  .hp-section {
    padding: 40px 0;
    scroll-margin-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 8px);
  }

  .hp-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hp-stat { padding: 14px 10px; }
  .hp-stat strong { font-size: clamp(1.2rem, 5vw, 1.5rem); }

  .hp-cta {
    padding: 28px 16px;
  }

  .hp-cta h2 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .hp-cta .ps-btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
  }

  .ps-faq-q {
    min-height: 48px;
    text-align: left;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Brand / headline first — do not pull login above hero copy */
  .hp-hero-side { order: 0; }

  .ps-header .ikz-logo-text { display: none; }

  .hp-badge {
    font-size: 11px;
    padding: 6px 10px;
    max-width: 100%;
  }

  .hp-feature { padding: 18px 14px; }
  .hp-step { padding: 14px 12px; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .hp-strip-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
  }
}

