/* ===== Variables — palette matched to logo ===== */
:root {
  --bg-deep: #050508;
  --bg-primary: #0a0614;
  --bg-secondary: #100c1c;
  --bg-elevated: #161024;
  --purple-ink: #1e1035;
  --purple-deep: #3b1578;
  --purple-royal: #5b21b6;
  --purple-core: #6d28d9;
  --purple-vivid: #7c3aed;
  --purple-soft: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-glow: #c4b5fd;
  --lavender: #ddd6fe;
  --text-primary: #ede9fe;
  --text-secondary: #9f8ec8;
  --text-muted: #6b5f8a;
  --border-subtle: rgba(139, 92, 246, 0.12);
  --border-glow: rgba(124, 58, 237, 0.28);
  --shadow-neon: 0 0 24px rgba(109, 40, 217, 0.25), 0 0 60px rgba(91, 33, 182, 0.12);
  --shadow-neon-strong: 0 0 32px rgba(124, 58, 237, 0.35), 0 0 80px rgba(109, 40, 217, 0.15);
  --glass: rgba(16, 12, 28, 0.72);
  --font-main: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Sora', sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(91, 33, 182, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(109, 40, 217, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(76, 29, 149, 0.1), transparent);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

code {
  font-family: 'Consolas', monospace;
  background: rgba(109, 40, 217, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--lavender);
  font-size: 0.85em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--purple-light) 40%, var(--purple-vivid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Background Effects ===== */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 14s ease-in-out infinite;
}

.glow-orb--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.14), transparent 70%);
  top: -8%;
  left: -8%;
}

.glow-orb--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(91, 33, 182, 0.16), transparent 70%);
  bottom: 15%;
  right: -6%;
  animation-delay: -5s;
}

.glow-orb--3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
  top: 55%;
  left: 35%;
  animation-delay: -9s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -18px) scale(1.04); }
  66% { transform: translate(-18px, 25px) scale(0.96); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.nav__logo-img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 0 24px rgba(109, 40, 217, 0.35);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(109, 40, 217, 0.1);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--purple-royal), var(--purple-vivid));
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.3);
}

.nav__link--cta:hover {
  box-shadow: var(--shadow-neon);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn__icon { width: 20px; height: 20px; }

.btn--primary {
  background: linear-gradient(135deg, var(--purple-royal) 0%, var(--purple-vivid) 50%, var(--purple-soft) 100%);
  color: #fff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon-strong);
}

.btn--glow {
  animation: btnPulse 4s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(109, 40, 217, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(124, 58, 237, 0.45), 0 0 60px rgba(91, 33, 182, 0.15); }
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-glow);
}

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: var(--purple-light);
  background: rgba(109, 40, 217, 0.08);
}

.btn--large { padding: 18px 40px; font-size: 1.05rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--purple-glow);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--purple-vivid);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple-vivid);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero__desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__desc strong { color: var(--lavender); }

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat { display: flex; flex-direction: column; }

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--purple-glow);
  text-shadow: 0 0 24px rgba(196, 181, 253, 0.35);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ===== Phone Mockup — Streaming UI ===== */
.hero__visual {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.hero__phone {
  position: relative;
  animation: phoneFloat 7s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotateY(-4deg); }
  50% { transform: translateY(-18px) rotateY(4deg); }
}

.hero__phone-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse, rgba(109, 40, 217, 0.28), transparent 65%);
  border-radius: 50%;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

.hero__phone-frame {
  position: relative;
  width: 272px;
  height: 560px;
  background: linear-gradient(155deg, #1a1030, #0a0614);
  border-radius: 36px;
  border: 1.5px solid rgba(124, 58, 237, 0.25);
  box-shadow: var(--shadow-neon), inset 0 1px 0 rgba(196, 181, 253, 0.08);
  padding: 10px;
  overflow: hidden;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-deep);
  border-radius: 28px;
  overflow: hidden;
}

.app-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px 10px 0;
  gap: 8px;
  background: #12101c;
}

.app-ui__header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-ui__logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--lavender);
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.app-ui__searchbar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  padding: 0 10px;
  background: #1e1a2e;
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.app-ui__searchbar span {
  font-size: 0.58rem;
  color: #6b6580;
}

.app-ui__searchbar svg {
  width: 12px;
  height: 12px;
  color: #6b6580;
  flex-shrink: 0;
}

.app-ui__filters {
  display: flex;
  gap: 6px;
}

.app-ui__filter {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.58rem;
  font-weight: 600;
  background: #1e1a2e;
  color: #8a849c;
  border: 1px solid rgba(139, 92, 246, 0.08);
}

.app-ui__filter svg {
  width: 10px;
  height: 10px;
}

.app-ui__filter--active {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(109, 40, 217, 0.35);
}

.app-ui__releases {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.app-ui__releases-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: #e8e4f0;
  padding-left: 1px;
}

.app-ui__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  flex: 1;
}

.app-ui__card {
  border-radius: 8px;
  overflow: hidden;
  animation: cardReveal 0.6s ease backwards;
}

.app-ui__card:nth-child(1) { animation-delay: 0.05s; }
.app-ui__card:nth-child(2) { animation-delay: 0.1s; }
.app-ui__card:nth-child(3) { animation-delay: 0.15s; }
.app-ui__card:nth-child(4) { animation-delay: 0.2s; }
.app-ui__card:nth-child(5) { animation-delay: 0.25s; }
.app-ui__card:nth-child(6) { animation-delay: 0.3s; }

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-ui__card-poster {
  aspect-ratio: 3 / 4.2;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.app-ui__card-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 20, 0.92) 0%, rgba(12, 10, 20, 0.4) 35%, transparent 60%);
  pointer-events: none;
}

.app-ui__card-poster--1 {
  background: linear-gradient(160deg, #2d1f5e 0%, #5b3a8c 40%, #8b5a6b 70%, #3d2a5c 100%);
}
.app-ui__card-poster--2 {
  background: linear-gradient(160deg, #1a2848 0%, #3d5a8c 35%, #c47a8a 65%, #2a2048 100%);
}
.app-ui__card-poster--3 {
  background: linear-gradient(160deg, #1e3a30 0%, #4a8a6b 40%, #8ac4a0 60%, #1a3028 100%);
}
.app-ui__card-poster--4 {
  background: linear-gradient(160deg, #3a1a2a 0%, #7a3a5a 40%, #c45a7a 65%, #2a1520 100%);
}
.app-ui__card-poster--5 {
  background: linear-gradient(160deg, #2a1a3a 0%, #5a3a7a 45%, #9a6aaa 70%, #1a1028 100%);
}
.app-ui__card-poster--6 {
  background: linear-gradient(160deg, #1a2a3a 0%, #3a5a7a 40%, #6a9aba 65%, #101a28 100%);
}

.app-ui__card-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 5px 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-ui__card-name {
  font-size: 0.48rem;
  font-weight: 700;
  color: #f0ecf8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.app-ui__card-ep {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.42rem;
  color: #9a94ac;
  line-height: 1;
}

.app-ui__card-ep i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  flex-shrink: 0;
  position: relative;
}

.app-ui__card-ep i::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.5);
  clip-path: polygon(40% 30%, 40% 70%, 65% 50%);
}

.app-ui__nav {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 6px 2px 8px;
  margin: 0 -10px;
  background: #16131f;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.app-ui__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #6b6580;
}

.app-ui__nav-item svg {
  width: 15px;
  height: 15px;
}

.app-ui__nav-item em {
  font-style: normal;
  font-size: 0.42rem;
  font-weight: 500;
}

.app-ui__nav-item--active {
  color: #a78bfa;
}

.app-ui__nav-item--active svg {
  filter: drop-shadow(0 0 4px rgba(167, 139, 250, 0.4));
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple-vivid), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section__tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: 1.02rem;
}

/* ===== About — glass panels ===== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about__card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-vivid), var(--purple-light), transparent);
  opacity: 0;
  transition: var(--transition);
}

.about__card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-neon);
  transform: translateY(-4px);
}

.about__card:hover::before { opacity: 1; }

.about__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.2), rgba(59, 21, 120, 0.1));
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  margin-bottom: 20px;
}

.about__card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--purple-light);
}

.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about__card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== Content — bento grid ===== */
.content__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.content__tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  min-height: 200px;
}

.content__tile--wide {
  grid-column: span 2;
}

.content__tile:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
}

.content__tile-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  opacity: 0.35;
  transition: var(--transition);
  pointer-events: none;
}

.content__tile:hover .content__tile-art { opacity: 0.55; }

.content__tile[data-genre="anime"] .content__tile-art {
  background: radial-gradient(ellipse at 80% 30%, #7c3aed, transparent 65%),
              linear-gradient(225deg, rgba(109, 40, 217, 0.4), transparent);
}
.content__tile[data-genre="dorama"] .content__tile-art {
  background: radial-gradient(ellipse at 75% 40%, #6d28d9, transparent 60%),
              linear-gradient(225deg, rgba(91, 33, 182, 0.35), transparent);
}
.content__tile[data-genre="movies"] .content__tile-art {
  background: radial-gradient(ellipse at 80% 35%, #5b21b6, transparent 65%),
              linear-gradient(225deg, rgba(124, 58, 237, 0.3), transparent);
}
.content__tile[data-genre="series"] .content__tile-art {
  background: radial-gradient(ellipse at 78% 30%, #8b5cf6, transparent 60%),
              linear-gradient(225deg, rgba(76, 29, 149, 0.35), transparent);
}
.content__tile[data-genre="cartoons"] .content__tile-art {
  background: radial-gradient(ellipse at 82% 35%, #a78bfa, transparent 65%),
              linear-gradient(225deg, rgba(109, 40, 217, 0.3), transparent);
}

.content__tile-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content__tile-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.content__tile-icon svg {
  width: 100%;
  height: 100%;
}

.content__tile h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.content__tile p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 90%;
}

/* ===== Features — timeline style ===== */
.features__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.features__list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--purple-vivid), var(--purple-deep), transparent);
  opacity: 0.4;
}

.features__item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 28px 24px 0;
  margin-left: 0;
  transition: var(--transition);
  position: relative;
}

.features__item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 32px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--purple-vivid);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
  z-index: 1;
}

.features__item:hover .features__body {
  background: rgba(109, 40, 217, 0.06);
  border-color: var(--border-glow);
}

.features__number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple-light);
  width: 56px;
  flex-shrink: 0;
  text-align: center;
  padding-top: 6px;
  opacity: 0.7;
}

.features__body {
  flex: 1;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.features__body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.features__body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Devices ===== */
.devices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.devices__card {
  position: relative;
  text-align: center;
  padding: 36px 24px;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  transition: var(--transition);
  overflow: hidden;
}

.devices__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-vivid), transparent);
  opacity: 0;
  transition: var(--transition);
}

.devices__card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-neon);
}

.devices__card:hover::after { opacity: 1; }

.devices__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(109, 40, 217, 0.18), rgba(30, 16, 53, 0.5));
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
}

.devices__icon svg {
  width: 32px;
  height: 32px;
  color: var(--purple-light);
}

.devices__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.devices__card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.devices__badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(109, 40, 217, 0.12);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-glow);
}

/* ===== Download ===== */
.download__box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.download__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.08), rgba(59, 21, 120, 0.04));
  border-radius: var(--radius-lg);
}

.download__inner {
  position: relative;
  text-align: center;
  padding: 56px 40px;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.download__logo {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-neon);
}

.download__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.download__desc {
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 30px;
  font-size: 0.98rem;
}

.download__info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.download__info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.download__info-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.download__info-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--purple-glow);
}

.download__note {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.download__note.hidden { display: none; }

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 36px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer__brand img { border-radius: 9px; }

.footer__copy {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--purple-light); }

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }

  .hero__phone-frame {
    width: 240px;
    height: 480px;
  }

  .about__grid,
  .devices__grid {
    grid-template-columns: 1fr;
  }

  .content__bento {
    grid-template-columns: 1fr;
  }

  .content__tile--wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--border-subtle);
    transition: right 0.3s ease;
    gap: 4px;
  }

  .nav__menu.open { right: 0; }

  .nav__link {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav__burger {
    display: flex;
    z-index: 1001;
  }

  .features__list::before { left: 20px; }
  .features__item::before { left: 14px; }
  .features__number { width: 40px; }

  .features__item {
    flex-direction: column;
    gap: 8px;
    padding-left: 36px;
  }

  .download__inner { padding: 36px 22px; }
  .download__info { gap: 20px; }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
