/* ==========================================================================
   ORCHARD V4 - SLEEK PURPLE CLIENT THEME (VAPE V4 ARCHITECTURE)
   Deep matte obsidian + electric violet accents + ambient snowfall behind
   ========================================================================== */

:root {
  --bg-main: #0a0b10;
  --bg-alt: rgba(13, 15, 22, 0.75);
  --bg-card: rgba(18, 21, 31, 0.75);
  --bg-card-hover: rgba(24, 28, 42, 0.85);
  --bg-card-inner: rgba(10, 12, 18, 0.8);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(168, 85, 247, 0.5);

  /* Electric Purple Palette */
  --orchard-purple: #8b5cf6;
  --orchard-purple-hover: #7c3aed;
  --orchard-purple-active: #6d28d9;
  --orchard-purple-glow: rgba(139, 92, 246, 0.25);
  --orchard-purple-subtle: rgba(168, 85, 247, 0.12);

  --text-white: #ffffff;
  --text-primary: #f1f3f9;
  --text-muted: #8d95a5;
  --text-dim: #5a6375;

  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
}

body {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 85% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 40%),
    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: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  color: var(--text-primary);
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* SNOWFALL CANVAS - FIXED STRICTLY BEHIND CONTENT */
.snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0; /* Placed behind all sections & cards */
}

/* Site Wrapper - Sits above snow canvas with translucent cards */
.site-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Buttons (Orchard Purple Solid) */
.btn-purple-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--orchard-purple);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--orchard-purple-glow);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn-purple-solid:hover {
  background-color: var(--orchard-purple-hover);
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.45);
}

.btn-purple-solid:active {
  background-color: var(--orchard-purple-active);
  transform: translateY(1px);
}

.btn-ghost-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.btn-ghost-outline:hover {
  border-color: rgba(168, 85, 247, 0.4);
  background-color: rgba(168, 85, 247, 0.08);
}

.btn-dark-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(28, 33, 48, 0.7);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-light);
  transition: background-color 0.2s ease;
}

.btn-dark-inline:hover {
  background-color: rgba(38, 46, 68, 0.9);
}

.btn-hero {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
}

/* HEADER */
.vape-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}

.logo-bold {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}

.logo-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orchard-purple);
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.header-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* HERO SECTION */
.hero-section {
  padding: 6.5rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #c084fc;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}

.dot-green {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
}

/* Hero Visual Box */
.hero-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--orchard-purple-glow);
}

.card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(12, 14, 22, 0.9);
  border-bottom: 1px solid var(--border-light);
}

.bar-circles {
  display: flex;
  gap: 6px;
}

.bar-circles span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #232838;
}

.bar-title {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.card-bar-logo {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.bar-status {
  font-size: 0.7rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.card-body-preview {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-quick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card-inner);
  border: 1px solid var(--border-light);
  padding: 0.85rem 1rem;
  border-radius: 8px;
}

.mod-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}

.mod-val {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.mod-pill {
  font-size: 0.72rem;
  font-weight: 800;
  color: #c084fc;
  background: rgba(139, 92, 246, 0.18);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* SECTIONS COMMON */
.vape-section {
  padding: 5.5rem 2rem;
  position: relative;
}

.vape-section.dark-alt {
  background-color: var(--bg-alt);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.section-heading {
  margin-bottom: 3.5rem;
}

.section-heading.text-center {
  text-align: center;
}

.sub-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orchard-purple);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.section-heading h2 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* LARGE FEATURE HERO CARD */
.feature-card-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 2rem;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #c084fc;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.card-hero-left h3 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

.card-hero-left p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* CLICKGUI MOCKUP */
.vape-gui-mockup {
  background: rgba(12, 14, 21, 0.85);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.gui-top-nav {
  display: flex;
  background: rgba(16, 19, 29, 0.95);
  border-bottom: 1px solid var(--border-light);
}

.g-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
  border-bottom: 2px solid transparent;
}

.g-tab:hover {
  color: #fff;
}

.g-tab.active {
  color: #c084fc;
  border-bottom-color: var(--orchard-purple);
  background: rgba(139, 92, 246, 0.08);
}

.gui-pane-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.gui-module-row {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
}

.mod-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.mod-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.gui-checkbox {
  width: 18px;
  height: 18px;
  background: #171b26;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.gui-checkbox.checked {
  background: var(--orchard-purple);
  border-color: var(--orchard-purple);
}

.gui-checkbox.checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: #fff;
  font-weight: 900;
}

.slider-item {
  margin-top: 0.5rem;
}

.slider-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
}

.slider-track {
  width: 100%;
  height: 6px;
  background: #10131d;
  border-radius: 3px;
  overflow: hidden;
}

.slider-thumb {
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 3px;
}

/* SPLIT 2-COL BOXES */
.split-box-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.split-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-icon-bubble {
  width: 44px;
  height: 44px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.split-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.split-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* DUAL FEATURE ROWS */
.dual-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.dual-feature-row.reverse {
  direction: rtl;
}

.dual-feature-row.reverse > * {
  direction: ltr;
}

.feat-col-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.feat-col-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.clean-check-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.clean-check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #cfd5e1;
  font-size: 0.95rem;
}

.clean-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orchard-purple);
  font-weight: 800;
}

.mockup-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1rem;
}

.tag-verified, .tag-active {
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(139, 92, 246, 0.18);
  color: #c084fc;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.profile-item {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-light);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.profile-item.active-item {
  border-color: rgba(168, 85, 247, 0.4);
}

.p-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.p-author {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.p-stats {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.inv-hotbar-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
}

.inv-slot {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-light);
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.inv-slot.active-slot {
  border-color: var(--orchard-purple);
  background: rgba(139, 92, 246, 0.12);
}

.item-name {
  font-size: 0.65rem;
  color: #fff;
  font-weight: 600;
}

.slot-num {
  font-size: 0.6rem;
  color: var(--text-dim);
}

/* 6-CARD GRID (Take A Closer Look) */
.vape-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.grid-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.grid-card:hover {
  border-color: rgba(168, 85, 247, 0.35);
  transform: translateY(-2px);
}

.grid-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.grid-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.grid-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* SHOWCASE SECTION */
.showcase-video-wrapper {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px var(--orchard-purple-glow);
}

.video-frame-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-frame-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.75rem;
  background: rgba(12, 14, 21, 0.95);
  border-top: 1px solid var(--border-light);
}

.caption-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.caption-tag {
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(139, 92, 246, 0.18);
  color: #c084fc;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

/* TUTORIAL / HOW TO USE SECTION */
#tutorial .section-container {
  max-width: 1240px;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.tutorial-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease;
}

.tutorial-step-card.highlight-step {
  border-color: rgba(168, 85, 247, 0.45);
}

.step-badge {
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #c084fc;
  background: rgba(139, 92, 246, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 1.25rem;
}

.tutorial-step-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.tutorial-step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.step-code-box {
  margin-top: auto;
  background: rgba(10, 12, 18, 0.85);
  border: 1px solid var(--border-light);
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
}

.step-code-box code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #c084fc;
}

.os-path-list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.os-path-item {
  background: rgba(10, 12, 18, 0.85);
  border: 1px solid var(--border-light);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.os-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #c084fc;
  text-transform: uppercase;
}

.os-path-item code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #cbd5e1;
  word-break: break-all;
}

.step-tip {
  margin-top: auto;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  font-size: 0.82rem;
  color: #e2e8f0;
}

kbd {
  background: #1e2433;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #fff;
}

/* DOWNLOAD / PRICING SECTION */
.pricing-card-wrapper {
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-focus);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px var(--orchard-purple-glow);
}

.pricing-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orchard-purple);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px var(--orchard-purple-glow);
}

.plan-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.plan-price .duration {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-left: 0.4rem;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pricing-checklist {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.pricing-checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.pricing-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orchard-purple);
  font-weight: 800;
}

.download-action-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.download-action-group .btn-pricing {
  flex: 1;
  padding: 0.9rem;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.payment-badges {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* FOOTER */
.vape-footer {
  background: rgba(7, 8, 12, 0.9);
  border-top: 1px solid var(--border-light);
  padding: 4.5rem 2rem 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.download-card-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0.5rem auto 1rem;
  display: block;
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.7));
}

.f-brand-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

.f-brand .f-logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  display: inline-block;
}

.f-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 320px;
}

.f-links-group {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.f-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.f-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.15s ease;
}

.f-col a:hover {
  color: var(--orchard-purple);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.f-disclaimer {
  max-width: 500px;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-container,
  .feature-card-hero,
  .dual-feature-row,
  .split-box-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .header-nav {
    display: none;
  }

  .f-disclaimer {
    text-align: left;
  }
}
