:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #7c3aed;
  --accent-secondary: #ec4899;
  --accent-blue: #2563eb;
  --surface: #ffffff;
  --surface-elevated: #fafafa;
  --surface-muted: #f4f4f5;
  --text: #18181b;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --border: #e4e4e7;
  --gradient-1: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #ec4899 0%, #2563eb 100%);
  --gradient-3: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
}

.logo-icon {
  font-size: 24px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  bottom: -100px;
  left: 20%;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-blue);
  top: 40%;
  right: -5%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  max-width: 560px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 24px;
}

.hero-title .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--surface-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface-muted);
}

.btn.large {
  padding: 20px 36px;
  font-size: 16px;
}

.price-note {
  display: flex;
  align-items: center;
  gap: 24px;
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-item strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.price-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.price-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual - Premium 3D */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.scene {
  perspective: 1200px;
}

.phone-wrapper {
  position: relative;
  transform: rotateY(-12deg) rotateX(5deg);
  transform-style: preserve-3d;
}

.phone-frame-3d {
  position: relative;
  transform-style: preserve-3d;
}

.phone-bezel {
  width: 220px;
  height: 460px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0d0d0d 100%);
  border-radius: 40px;
  padding: 8px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  transform: translateZ(20px);
}

.phone-screen-3d {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f0f18 0%, #16162a 100%);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.notch-region {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.notch-content {
  width: 120px;
  height: 32px;
  background: #0f0f18;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.notch-time {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-variant-numeric: tabular-nums;
}

.notch-icons {
  display: flex;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.app-content {
  padding: 56px 16px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lock-ui {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.app-logo-3d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.logo-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.logo-circle span {
  font-size: 24px;
  color: white;
}

.logo-text {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
}

.lock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
}

.status-indicator {
  position: relative;
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #ef4444;
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.status-indicator .status-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
}

.status-text {
  font-size: 10px;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 0.1em;
}

.lock-message {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin: 0 0 6px;
}

.lock-hint-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px;
}

.action-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.action-hint svg {
  animation: scan-pulse 2s ease-in-out infinite;
}

@keyframes scan-pulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(4px); opacity: 0.5; }
}

.blocked-list {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blocked-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  text-align: center;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.app-icon-3d {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.app-icon-3d svg {
  width: 20px;
  height: 20px;
}

.app-icon-3d.ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.app-icon-3d.ig svg {
  color: white;
}

.app-icon-3d.yt {
  background: #ff0000;
}

.app-icon-3d.yt svg {
  color: white;
}

.app-icon-3d.tt {
  background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
}

.app-icon-3d.tt svg {
  color: white;
}

.app-icon-3d.sc {
  background: linear-gradient(135deg, #FFFC00 0%, #FFFA00 100%);
}

.app-icon-3d.sc svg {
  color: #000000;
}

.app-item span {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.phone-reflection {
  position: absolute;
  top: 0;
  left: -20px;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  border-radius: 40px 0 0 40px;
  transform: rotateY(-90deg) translateZ(110px);
  pointer-events: none;
}

.tag-wrapper-3d {
  position: absolute;
  top: -30px;
  right: -40px;
  transform: translateZ(40px);
  animation: float-tag 4s ease-in-out infinite;
}

@keyframes float-tag {
  0%, 100% { transform: translateZ(40px) translateY(0) rotate(8deg); }
  50% { transform: translateZ(40px) translateY(-12px) rotate(8deg); }
}

.tag-card-3d {
  position: relative;
}

.tag-surface {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: rotate(8deg);
}

.tag-nfc {
  width: 44px;
  height: 44px;
  position: relative;
}

.nfc-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--accent);
  border-radius: 50%;
  animation: nfc-spin 3s linear infinite;
}

@keyframes nfc-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nfc-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
}

.tag-text {
  font-size: 8px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.tag-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}

.phone-frame {
  width: 260px;
  height: 540px;
  background: #0a0a0a;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 10px rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 2;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-speaker::after {
  content: '';
  width: 50px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d0d14 0%, #12121f 50%, #0a0a12 100%);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.app-status {
  padding: 52px 20px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.status-header .time {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-size: 9px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.lock-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lock-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(124, 58, 237, 0.8);
}

.lock-icon svg {
  opacity: 0.8;
}

.lock-msg {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.lock-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.blocked-apps {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-top: 24px;
  margin-top: auto;
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.app-icon:hover {
  transform: scale(1.05);
}

.app-icon svg {
  width: 24px;
  height: 24px;
}

.app-icon.ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.app-icon.yt {
  background: #ff0000;
  color: white;
}

.app-icon.tt {
  background: #000000;
  color: white;
}

.app-icon.sc {
  background: #fffc00;
  color: #000000;
}

.phone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

.tag-visual {
  position: absolute;
  top: 60px;
  right: 20px;
  z-index: 3;
  animation: tagFloat 4s ease-in-out infinite;
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.tag-shape {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.tag-ring {
  width: 60px;
  height: 60px;
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.tag-center {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
}

.tag-label {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Marquee */
.marquee {
  background: var(--primary);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee span {
  padding: 0 32px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Features */
.features {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 40px 32px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 24px;
}

.feature-num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Challenges */
.challenges {
  padding: 120px 24px;
  background: var(--surface-elevated);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.challenge-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.challenge-content > p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 32px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.feature-list svg {
  color: var(--accent);
  flex-shrink: 0;
}

.score-card-glass {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.score-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.score-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.score-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-icon {
  font-size: 20px;
}

.score-title span:not(.score-icon) {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.week-badge {
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.score-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.score-row:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-avatar span:first-child {
  line-height: 1;
}

.status-dots {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.status-dots .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.status-dots .dot.active {
  background: rgba(255, 255, 255, 0.9);
}

.status-dots .dot.warning {
  background: #fbbf24;
}

.status-dots .dot.danger {
  background: #ef4444;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  min-width: 55px;
}

.cheat-meter {
  flex: 1;
  height: 10px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.cheat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 100%);
  border-radius: 10px;
  transition: width 0.5s var(--ease-out);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.cheat-count {
  font-size: 14px;
  font-weight: 800;
  min-width: 24px;
  text-align: right;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}

.cheat-count.warning {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.cheat-count.danger {
  background: rgba(239, 68, 68, 0.25);
  color: #dc2626;
}

.punishment-box {
  margin-top: 20px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.punishment-icon {
  font-size: 24px;
}

.punishment-text {
  display: flex;
  flex-direction: column;
}

.punishment-text span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.punishment-text strong {
  font-size: 14px;
  color: var(--text);
  margin-top: 2px;
}

/* Location Feature */
.location-feature {
  padding: 120px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.location-visual {
  order: 2;
}

.map-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 700;
}

.map-pin.gym {
  top: 25%;
  right: 25%;
}

.map-pin.gym svg {
  color: var(--accent);
}

.map-pin.you {
  bottom: 30%;
  left: 25%;
}

.map-pin.you svg {
  color: var(--accent-secondary);
}

.route-path {
  position: absolute;
  top: 35%;
  left: 35%;
  width: 30%;
  height: 35%;
  border: 3px dashed var(--accent-blue);
  border-left: none;
  border-bottom: none;
  border-radius: 0 100% 0 0;
  transform: rotate(-20deg);
}

.location-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.location-content > p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 32px;
}

/* Product */
.product {
  padding: 120px 24px;
  background: var(--primary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.product::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.3;
}

.product::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: var(--accent-secondary);
  filter: blur(120px);
  opacity: 0.3;
}

.product-content {
  position: relative;
  z-index: 1;
}

.product-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: white;
}

.product-content > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 32px;
}

.price-tag {
  margin-bottom: 32px;
}

.price-tag .amount {
  font-size: 56px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.price-tag .desc {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.product-visual {
  position: relative;
  z-index: 1;
}

.device-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.device-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.device-chip {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 50%;
}

.device-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.device-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient-1);
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
}

/* FAQ */
.faq {
  padding: 120px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 60px 24px;
  background: var(--surface-elevated);
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.footer-email {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .price-note {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .challenges,
  .location-feature,
  .product {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .feature-list {
    align-items: center;
  }
  
  .location-visual {
    order: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .price-note {
    flex-direction: column;
    gap: 16px;
  }
  
  .price-divider {
    display: none;
  }
  
  .features,
  .challenges,
  .location-feature,
  .product,
  .faq {
    padding: 80px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}