* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #2a1550, #0c0620 60%);
  color: #f5f5ff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 60%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -10vw;
  left: -5vw;
}

body::after {
  bottom: -15vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.25), transparent 60%);
}

/* macOS-like scrollbar */
::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  border: 4px solid transparent;
  background-clip: padding-box;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.6);
  background-clip: padding-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

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

p {
  line-height: 1.7;
}

button {
  font: inherit;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 12, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-logo-seka {
  font-weight: 700;
  letter-spacing: 0.2em;
  background: linear-gradient(120deg, #c084fc, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-logo-hook {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #cdd0ff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.05rem 0;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(124, 58, 237, 0.7);
}

.nav-actions {
  display: flex;
  gap: 0.6rem;
}

.site-footer {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(5, 5, 12, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #c9ccff;
}

.footer-dev {
  color: #c084fc;
  font-weight: 600;
}

.footer-seka {
  color: #c084fc;
  font-weight: 700;
  letter-spacing: 0.2em;
}


.nav-cta {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(120deg, #7c3aed, #a855f7);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(12px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
}

header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  padding: 2.8rem;
  border-radius: 32px;
  background: rgba(10, 11, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(147, 51, 234, 0.25), transparent 45%),
    radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.25), transparent 50%);
  opacity: 0.9;
  pointer-events: none;
}

.logo {
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.logo span:first-child {
  background: linear-gradient(120deg, #c084fc, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span:last-child {
  background: linear-gradient(120deg, #ffffff, #cfcfcf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.tagline {
  max-width: 600px;
  font-size: 1.05rem;
  color: #c7c9ff;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(120deg, #7c3aed, #9333ea);
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.3);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(124, 58, 237, 0.35);
}

.hero-note {
  font-size: 0.95rem;
  color: #9fa6ff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1rem;
}

.stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.85rem;
  color: #a5abff;
  letter-spacing: 0.05em;
}

.hero-console {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  width: 100%;
}

.hero-console .console-screen {
  max-width: 460px;
}

.console-screen {
  width: 100%;
  background: linear-gradient(135deg, #050713, #0c1222);
  border: 1px solid rgba(15, 23, 42, 0.6);
  border-radius: 28px;
  padding: 0;
  font-family: "Fira Code", "Consolas", "Courier New", monospace;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 0 60px rgba(3, 5, 15, 0.65),
    0 25px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.console-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(90deg, #0f1015, #1c1e29);
  color: #cbd5f5;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.console-title {
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #d7defc;
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.console-dot--red {
  color: #f87171;
}

.console-dot--yellow {
  color: #facc15;
}

.console-dot--green {
  color: #34d399;
}

.console-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 230px;
  position: relative;
  padding: 1.3rem 1.6rem 1.5rem;
}

.console-line {
  color: #cdd4f6;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.console-meta {
  color: #9aa4ca;
}

.console-path {
  color: #a5b4fc;
  margin-right: 0.25rem;
}

.console-user {
  color: #67e8f9;
}

.console-typed {
  color: #fefefe;
  min-height: 1.1em;
  position: relative;
  font-size: 0.9rem;
}

.console-typed::after {
  content: "";
  width: 8px;
  height: 1em;
  background: #fefefe;
  margin-left: 4px;
  display: inline-block;
  animation: blinkCursor 1s steps(2, start) infinite;
}

.console-stage {
  display: block;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.console-stage.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.console-stage.is-hidden {
  display: none;
}

.console-loading {
  color: #9da5d9;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.console-inject {
  color: #a5b4fc;
  letter-spacing: 0.18em;
}

.console-success {
  color: #4ade80;
  letter-spacing: 0.2em;
}

.console-info {
  color: #fbbf24;
  letter-spacing: 0.18em;
}

.console-farewell {
  color: #a5f3fc;
  letter-spacing: 0.15em;
}

.console-progress {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}

.console-progress-track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
  overflow: hidden;
  position: relative;
}

.console-progress-track span {
  position: absolute;
  inset: 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #c084fc, #7c3aed);
  box-shadow: 0 0 14px rgba(192, 132, 252, 0.6);
  transition: width 0.2s ease;
}

.console-progress-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #e2e8f0;
}

.loading-dots {
  display: inline-flex;
  gap: 0.3rem;
  margin-left: 0.5rem;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a855f7;
  opacity: 0.2;
  animation: dotPulse 1.2s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.console-matrix {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(var(--matrix-cols, 12), minmax(0, 1rem));
  gap: 0.18rem;
  font-family: "Fira Code", "Consolas", "Courier New", monospace;
  font-size: 0.65rem;
  padding: 0.2rem;
  border-radius: 12px;
  background: rgba(6, 9, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.45);
}

.matrix-cell {
  color: rgba(255, 255, 255, 0.25);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease;
}

.matrix-cell.is-on {
  color: #c084fc;
  text-shadow:
    0 0 8px rgba(192, 132, 252, 0.8),
    0 0 16px rgba(99, 102, 241, 0.7);
  font-weight: 600;
}

@keyframes blinkCursor {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes dotPulse {
  0% {
    opacity: 0.2;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }
}


.product-section {
  margin-top: 3rem;
}

.why-section {
  margin-top: 4rem;
  padding: 2.5rem 1.8rem;
  border-radius: 32px;
  border: 1px solid rgba(167, 139, 250, 0.18);
  background: rgba(12, 9, 26, 0.9);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(124, 58, 237, 0.25), transparent 55%),
    radial-gradient(circle at bottom, rgba(14, 165, 233, 0.18), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.why-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.why-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.why-heading p {
  color: #cdd0ff;
  line-height: 1.6;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: center;
}

.why-card {
  flex: 0 1 300px;
  max-width: 320px;
  background: rgba(19, 18, 37, 0.9);
  border-radius: 22px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 200px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.6);
  box-shadow: 0 20px 35px rgba(124, 58, 237, 0.35);
}

.why-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.35);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fefefe;
}


.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.why-card p {
  color: #c8cbed;
  font-size: 0.92rem;
  line-height: 1.5;
}


.section-heading {
  max-width: 600px;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.section-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-sub {
  color: #b3b6e4;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.8rem;
  position: relative;
  z-index: 1;
}

.card {
  position: relative;
  background: rgba(18, 19, 42, 0.85);
  border-radius: 22px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.8), rgba(14, 165, 233, 0.7));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 20% 15% auto;
  height: 120px;
  background: radial-gradient(circle, rgba(126, 34, 206, 0.35), transparent 65%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 25px 55px rgba(124, 58, 237, 0.35);
  border-color: rgba(124, 58, 237, 0.6);
}

.card:hover::before {
  background: linear-gradient(120deg, rgba(167, 139, 250, 0.9), rgba(14, 165, 233, 0.9));
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
  position: relative;
  z-index: 1;
}

.status-pill {
  align-self: flex-start;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.card:hover .status-pill {
  box-shadow: 0 0 18px currentColor;
}

.card p {
  color: #b8b9d7;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
}

.buy-btn {
  border: none;
  text-align: center;
  padding: 0.85rem;
  border-radius: 16px;
  background: linear-gradient(120deg, #7c3aed, #a855f7, #9333ea);
  color: #fdfbff;
  font-weight: 700;
  letter-spacing: 0.07em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.45);
}

.buy-btn::after {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.buy-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 35px rgba(124, 58, 237, 0.6);
}

.buy-btn:hover::after {
  opacity: 1;
}

.buy-btn:focus-visible {
  outline: 2px solid #c084fc;
  outline-offset: 3px;
}

.buy-btn.pulse {
  animation: glowPulse 0.6s ease-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(124, 58, 237, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.7);
  }
  100% {
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.45);
  }
}

.feature-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(circle at top, rgba(61, 23, 107, 0.7), rgba(6, 4, 9, 0.85));
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

.feature-modal.is-open {
  overflow: auto;
}

.feature-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.feature-modal-overlay {
  position: absolute;
  inset: 0;
}

.feature-modal-card {
  position: relative;
  width: min(940px, 100%);
  border-radius: 36px;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  color: #fdfbff;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  border: 1px solid rgba(199, 146, 255, 0.4);
  background: rgba(12, 9, 26, 0.92);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.feature-modal-card::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.25), transparent 60%);
  filter: blur(50px);
  opacity: 0.7;
  pointer-events: none;
}

.feature-modal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(167, 139, 250, 0.7), rgba(59, 130, 246, 0.5));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
}

.feature-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}

.modal-game {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
}

.modal-desc {
  color: #d0d3ff;
  margin-top: 0.1rem;
  max-width: 520px;
}

.modal-status-pill {
  align-self: flex-start;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  order: -1;
  margin-right: 0.6rem;
  margin-top: 0.1rem;
}

.modal-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 1rem;
  background: rgba(12, 10, 26, 0.8);
}

.modal-video {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 7, 18, 0.85);
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.price-card {
  position: relative;
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(21, 18, 39, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(59, 130, 246, 0.25));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.45);
  border-color: rgba(167, 139, 250, 0.4);
  filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.25));
}

.price-card:hover::before {
  opacity: 0.9;
}

.price-card:hover .price-btn {
  box-shadow: 0 18px 35px rgba(244, 114, 182, 0.4);
}

.price-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  background: rgba(250, 204, 21, 0.2);
  color: #fde68a;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.price-value {
  font-size: 1.45rem;
  font-weight: 700;
}

.price-label {
  color: #cfd2ff;
}

.price-locked {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(18, 16, 36, 0.8);
  text-align: center;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0.08em;
}

.price-btn {
  margin-top: 0.6rem;
  border: none;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  background: linear-gradient(120deg, #ec4899, #8b5cf6);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(147, 51, 234, 0.4);
}

.modal-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.modal-features {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-features {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 1rem;
  background: rgba(12, 10, 26, 0.8);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.feature-tab {
  border: 1px solid rgba(167, 139, 250, 0.3);
  background: rgba(17, 14, 31, 0.8);
  color: #d7d8ff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.feature-tab.is-active {
  background: linear-gradient(120deg, #7c3aed, #a855f7);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.feature-content {
  background: rgba(16, 14, 32, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-intro {
  color: #d5d6ff;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.feature-list li {
  background: rgba(7, 6, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-list li span {
  font-weight: 600;
  color: #fefefe;
}

.feature-list li small {
  color: #bfc1dc;
}

.preview-section {
  margin-top: 3rem;
}

.preview-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  background: rgba(12, 10, 26, 0.92);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.preview-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-card h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.preview-card p {
  margin-top: 0.4rem;
  color: #cfd0ff;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.preview-toggle {
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: rgba(17, 14, 31, 0.9);
  color: #e6e7ff;
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.preview-toggle.is-active {
  background: linear-gradient(110deg, #7c3aed, #a855f7);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.35);
}

.preview-video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.preview-video .video-frame {
  width: min(520px, 100%);
  flex-shrink: 0;
}

.meta-item {
  background: rgba(10, 9, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1rem;
}

.meta-label {
  font-size: 0.8rem;
  color: #9ba0d1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.meta-value {
  font-weight: 600;
}

.feature-modal-card button:focus-visible {
  outline: 2px solid #c084fc;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero {
    padding: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 600px) {
  .product-section .section-heading {
    align-items: flex-start;
  }

  .product-section .section-heading .section-pill {
    align-self: flex-start;
  }
}

.buy-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
  filter: saturate(0.2);
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
}
.typed-highlight {
  color: #c084fc;
}
.site-footer {  
  margin-top: 5rem;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: #9fa6ff;
}
