/* ═══════════════════════════════════════════════════════════════════════
   VPLAYA — Marketing Landing Page
   Cinematic dark luxury + metallic glass aesthetic
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200;300;400;500;600;700&f[]=satoshi@300;400;500;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --bg-deep: #06080d;
  --bg-surface: #0c1018;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover: rgba(255,255,255,0.08);

  --text-primary: #f0ece4;
  --text-secondary: rgba(240,236,228,0.55);
  --text-tertiary: rgba(240,236,228,0.3);

  --accent-warm: #e8924a;
  --accent-copper: #c47a3a;
  --accent-gold: #d4a853;
  --accent-magenta: #c44a8a;
  --accent-blue: #4a7ae8;
  --accent-glow: rgba(232,146,74,0.15);

  --gradient-hero: linear-gradient(135deg, #e8924a 0%, #c44a8a 50%, #4a7ae8 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(232,146,74,0.1) 0%, rgba(196,74,138,0.05) 100%);
  --gradient-metal: linear-gradient(135deg, #2a2018 0%, #1a1520 50%, #101828 100%);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.22, 1.4, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button {
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* ── Scroll-triggered reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Navigation ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(6, 8, 13, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 14px 40px;
  border-bottom: 1px solid var(--glass-border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: transform 0.4s var(--ease-spring);
}

.nav-logo:hover {
  transform: scale(1.1) rotate(-3deg);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-warm);
  transition: width 0.4s var(--ease-out-expo);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transition: all 0.4s var(--ease-out-expo);
}

.nav-cta:hover {
  background: rgba(232, 146, 74, 0.15);
  border-color: var(--accent-warm);
  box-shadow: 0 0 30px rgba(232, 146, 74, 0.1);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  will-change: transform;
}

.hero-glow--warm {
  width: 600px;
  height: 600px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(232,146,74,0.2) 0%, transparent 70%);
  animation: glow-drift 18s ease-in-out infinite alternate;
}

.hero-glow--magenta {
  width: 500px;
  height: 500px;
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(196,74,138,0.15) 0%, transparent 70%);
  animation: glow-drift 22s ease-in-out infinite alternate-reverse;
}

.hero-glow--blue {
  width: 400px;
  height: 400px;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(74,122,232,0.1) 0%, transparent 70%);
  animation: glow-drift 15s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
  100% { transform: translate(10px, 10px) scale(1.05); }
}

/* Noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1;
}

/* Grid lines subtle backdrop */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: badge-enter 1s var(--ease-out-expo) 0.2s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 10px var(--accent-warm);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes badge-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: title-enter 1.2s var(--ease-out-expo) 0.4s both;
}

.hero-title .gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes title-enter {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: subtitle-enter 1.2s var(--ease-out-expo) 0.6s both;
}

@keyframes subtitle-enter {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: actions-enter 1.2s var(--ease-out-expo) 0.8s both;
}

@keyframes actions-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Primary CTA — metallic warm button */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-copper) 100%);
  color: #0a0a0a;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(232, 146, 74, 0.3), 0 0 80px rgba(232, 146, 74, 0.1);
}

.btn-primary:hover::before {
  opacity: 1;
}

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

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out-back);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-out-expo);
}

.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* Hero floating browser mockup */
.hero-visual {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  width: 100%;
  max-width: 1000px;
  animation: visual-enter 1.4s var(--ease-out-expo) 1s both;
}

@keyframes visual-enter {
  from { opacity: 0; transform: translateY(60px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.browser-frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--gradient-metal);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.5),
    0 0 1px rgba(255,255,255,0.1) inset;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--glass-border);
}

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

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: 12px;
  padding: 6px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: var(--font-body);
}

.browser-body {
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Animated UI mockup inside browser */
.mockup-ui {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
}

.mockup-sidebar {
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-sidebar-item {
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: background 0.3s;
}

.mockup-sidebar-item:nth-child(2) {
  background: rgba(232, 146, 74, 0.12);
  border: 1px solid rgba(232, 146, 74, 0.2);
}

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-hero-banner {
  height: 180px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(232,146,74,0.15) 0%, rgba(196,74,138,0.1) 50%, rgba(74,122,232,0.1) 100%);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.mockup-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,8,13,0.8) 0%, transparent 60%);
}

.mockup-posters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  flex: 1;
}

.mockup-poster {
  aspect-ratio: 2/3;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  animation: poster-shimmer 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

@keyframes poster-shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Floating glass reflection on browser */
.browser-frame::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255,255,255,0.03) 45%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.03) 55%,
    transparent 60%
  );
  animation: shine-sweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine-sweep {
  0% { transform: translateX(-30%) translateY(-30%) rotate(25deg); }
  100% { transform: translateX(30%) translateY(30%) rotate(25deg); }
}

/* ── Section shared ─────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 120px 40px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-warm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Features ───────────────────────────────────────────────────────── */
.features {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.feature-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,146,74,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--accent-glow);
  border: 1px solid rgba(232,146,74,0.15);
  transition: all 0.5s var(--ease-out-expo);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 0 30px rgba(232,146,74,0.15);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-warm);
  stroke-width: 1.5;
  fill: none;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Hover glow blob */
.feature-card .glow-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
  transform: translate(-50%, -50%);
}

.feature-card:hover .glow-blob {
  opacity: 1;
}

/* ── Showcase / Screenshots ─────────────────────────────────────────── */
.showcase {
  overflow: hidden;
}

.showcase-header {
  text-align: center;
  margin-bottom: 72px;
}

.showcase-header .section-desc {
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
}

.showcase-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.showcase-card-visual {
  aspect-ratio: 16/10;
  background: var(--gradient-metal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-card-visual .screen-content {
  width: 85%;
  height: 80%;
  border-radius: 8px;
  background: var(--bg-deep);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screen-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,146,74,0.05) 0%, rgba(74,122,232,0.05) 100%);
}

.screen-icon {
  width: 48px;
  height: 48px;
  stroke: var(--text-tertiary);
  stroke-width: 1;
  fill: none;
  opacity: 0.5;
}

.showcase-card-body {
  padding: 28px 32px;
}

.showcase-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.showcase-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Wide card */
.showcase-card--wide {
  grid-column: 1 / -1;
}

.showcase-card--wide .showcase-card-visual {
  aspect-ratio: 21/9;
}

/* ── Devices ────────────────────────────────────────────────────────── */
.devices {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}

.devices-header {
  margin-bottom: 72px;
}

.devices-header .section-desc {
  margin: 0 auto;
}

.devices-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.device-item {
  padding: 48px 24px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  transition: all 0.5s var(--ease-out-expo);
  cursor: default;
}

.device-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.device-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 0.5s var(--ease-out-expo);
}

.device-item:hover .device-icon {
  background: var(--accent-glow);
  border-color: rgba(232,146,74,0.2);
  transform: scale(1.1);
}

.device-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--text-secondary);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.4s;
}

.device-item:hover .device-icon svg {
  stroke: var(--accent-warm);
}

.device-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.device-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 300;
}

/* ── CTA / Final section ────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(232,146,74,0.08) 0%, rgba(196,74,138,0.04) 40%, transparent 70%);
  pointer-events: none;
}

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

.cta-section .section-title {
  margin-bottom: 24px;
}

.cta-section .section-desc {
  margin: 0 auto 48px;
  max-width: 480px;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 48px 40px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 0.3s;
}

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

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mockup-ui {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .hero { padding: 100px 24px 60px; }
  .hero-title { letter-spacing: -1px; }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-visual { margin-top: 48px; }

  .section { padding: 80px 24px; }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card { padding: 32px 24px; }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .devices-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .cta-section { padding: 100px 24px; }
}

@media (max-width: 480px) {
  .devices-row {
    grid-template-columns: 1fr;
  }

  .browser-bar { padding: 10px 14px; }
  .browser-url { display: none; }
}

/* ── Magnetic cursor effect on cards (JS-driven) ────────────────────── */
.magnetic {
  transition: transform 0.4s var(--ease-out-expo);
}

/* ── Scrollbar ──────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}

/* ── Selection ──────────────────────────────────────────────────────── */
::selection {
  background: rgba(232,146,74,0.3);
  color: var(--text-primary);
}
