/* ============================================================
   AWHIN DIGITAL — theme.css
   Dark cinematic. Electric accents. Premium by default.
   Palette: deep black, volt yellow, electric blue, purple.
   ============================================================ */

:root {
  --bg:        #080810;
  --bg-2:      #0d0d1a;
  --bg-card:   #111120;
  --bg-card-2: #16162a;
  --fg:        #f2ede6;
  --fg-muted:  #888099;
  --fg-dim:    #42405a;
  --volt:      #d4ff00;
  --volt-dim:  rgba(212, 255, 0, 0.12);
  --elec:      #2d9cff;
  --elec-dim:  rgba(45, 156, 255, 0.1);
  --purple:    #9b6fff;
  --purple-dim:rgba(155, 111, 255, 0.1);
  --border:    rgba(255, 255, 255, 0.06);
  --border-2:  rgba(255, 255, 255, 0.1);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --max-w: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --radius: 3px;
}

/* ---- RESET + BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---- SHARED COMPONENTS ---- */
.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(212, 255, 0, 0.2);
}

.text-volt { color: var(--volt); }
.text-electric { color: var(--elec); }
.text-purple { color: var(--purple); }

.btn-primary {
  display: inline-block;
  background: var(--volt);
  color: #050508;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: #e8ff1a;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: var(--fg-muted);
}

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  overflow: hidden;
}

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

.hero-glow-a {
  position: absolute; top: -20%; right: -10%;
  width: 75vw; height: 75vw;
  max-width: 800px; max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,0,0.09) 0%, rgba(45,156,255,0.05) 40%, transparent 70%);
  filter: blur(90px);
  pointer-events: none; z-index: 0;
}

.hero-glow-b {
  position: absolute; bottom: -25%; left: -10%;
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,111,255,0.1) 0%, transparent 65%);
  filter: blur(100px);
  pointer-events: none; z-index: 0;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto; width: 100%;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--volt);
  display: inline-block;
  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.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.hero-accent {
  color: var(--volt);
  display: block;
}

.hero-lede {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 44ch;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 5rem;
}

.hero-ticker {
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.ticker-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 1;
}

.hero-scroll-hint span {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(212,255,0,0.6), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  position: relative;
  background: var(--bg-2);
}

.problem::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,255,0,0.25), transparent);
}

.problem-inner { max-width: var(--max-w); margin: 0 auto; }

.problem-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.strike-through {
  text-decoration: line-through;
  text-decoration-color: var(--elec);
  text-decoration-thickness: 4px;
  color: var(--fg-muted);
}

.problem-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 52ch;
  margin-bottom: 4rem;
  line-height: 1.65;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 2rem 2rem 1.75rem;
  display: flex; gap: 1.5rem;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}

.pain-card:hover {
  border-color: rgba(45,156,255,0.25);
  transform: translateY(-3px);
}

.pain-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--fg-dim);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.pain-body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.pain-body p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.problem-statement {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.ps-line {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--fg-muted);
}

.ps-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--volt);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ============================================================
   SYSTEM
   ============================================================ */
.system {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg);
  position: relative;
}

.system-inner { max-width: var(--max-w); margin: 0 auto; }

.system-header {
  margin-bottom: 5rem;
  max-width: 640px;
}

.system-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.system-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.sys-card {
  background: var(--bg-card);
  padding: 2rem;
  position: relative;
  transition: background 0.25s;
  display: flex; flex-direction: column;
}

.sys-card:hover {
  background: var(--bg-card-2);
}

.sys-card:hover .sys-card-num {
  color: var(--volt);
}

.sys-card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  margin-bottom: 1rem;
  transition: color 0.25s;
}

.sys-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--fg);
}

.sys-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.sys-card-tag {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--elec);
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(45,156,255,0.2);
  align-self: flex-start;
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.for-section {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-2);
  position: relative;
}

.for-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,111,255,0.25), transparent);
}

.for-inner { max-width: var(--max-w); margin: 0 auto; }

.for-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 4rem;
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.for-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.for-card:hover {
  border-color: rgba(155,111,255,0.3);
  transform: translateY(-4px);
}

.for-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.for-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.for-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg);
  position: relative;
}

.packages::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,255,0,0.2), transparent);
}

.packages-inner { max-width: var(--max-w); margin: 0 auto; }

.packages-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.packages-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 4rem;
  max-width: 48ch;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
  display: flex; flex-direction: column;
}

.tier-card:hover {
  border-color: var(--border-2);
}

.tier-card.featured {
  border-color: var(--volt);
  background: linear-gradient(180deg, rgba(212,255,0,0.06) 0%, var(--bg-card) 50%);
}

.tier-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--volt);
}

.tier-badge {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1rem;
}

.featured-badge { color: var(--volt); }

.tier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.tier-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--volt);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.tier-price-note {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.tier-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}

.tier-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.6rem;
}

.tier-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.45;
}

.tier-list li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--volt);
  font-weight: 700;
  font-size: 0.75rem;
}

.packages-cta { text-align: center; }

/* ============================================================
   TRANSFORMATION
   ============================================================ */
.transformation {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-2);
  position: relative;
}

.transformation::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,156,255,0.25), transparent);
}

.transformation-inner { max-width: var(--max-w); margin: 0 auto; }

.transformation-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.ba-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.before-label { color: var(--fg-dim); }
.after-label { color: var(--volt); }

.ba-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.75rem;
}

.ba-list li {
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  line-height: 1.45;
}

.ba-before li {
  color: var(--fg-muted);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.1);
}

.ba-after li {
  color: var(--fg);
  background: rgba(212,255,0,0.04);
  border: 1px solid rgba(212,255,0,0.15);
}

.ba-divider {
  display: flex; flex-direction: column; align-items: center;
}

.ba-arrow {
  font-size: 2.5rem;
  color: var(--volt);
  opacity: 0.7;
}

.transformation-tagline {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--fg-muted);
  text-align: center;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: clamp(6rem, 12vw, 14rem) var(--gutter);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.philosophy-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 80vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,111,255,0.12) 0%, rgba(45,156,255,0.05) 40%, transparent 70%);
  filter: blur(100px);
  pointer-events: none; z-index: 0;
}

.philosophy-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
}

.philosophy-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.philosophy-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  margin-bottom: 3rem;
}

.philosophy-body {
  display: flex; flex-direction: column; gap: 1.25rem;
  text-align: left;
  margin-bottom: 3rem;
}

.philosophy-body p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.philosophy-body strong {
  color: var(--fg);
  font-weight: 700;
}

.philosophy-kicker {
  color: var(--fg) !important;
  font-weight: 500;
  border-left: 3px solid var(--volt);
  padding-left: 1.25rem;
}

.philosophy-slogans {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ============================================================
   CLOSING / BOOKING
   ============================================================ */
.closing {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-2);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,255,0,0.25), transparent);
}

.closing-glow {
  position: absolute; top: -20%; right: -15%;
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,0,0.07) 0%, transparent 65%);
  filter: blur(100px);
  pointer-events: none;
}

.closing-inner {
  position: relative; z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.closing-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 3rem;
}

.booking-form {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.booking-form input::placeholder { color: var(--fg-dim); }

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--volt);
}

.booking-form select {
  color: var(--fg-dim);
  cursor: pointer;
}

.booking-form select option { background: var(--bg-card); color: var(--fg); }

.form-note {
  font-size: 0.78rem;
  color: var(--fg-dim);
  text-align: center;
  letter-spacing: 0.05em;
}

.closing-direct {
  text-align: center;
  color: var(--fg-dim);
  font-size: 0.9rem;
}

.closing-direct p { margin-bottom: 0.5rem; }

.closing-email {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--elec);
  transition: color 0.2s;
}

.closing-email:hover { color: var(--volt); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem var(--gutter) 1.5rem;
}

.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-left {}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-right {
  display: flex; gap: 2.5rem;
  align-items: center;
}

.footer-right a {
  font-size: 0.88rem;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--volt); }

.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* ============================================================
   SHARED SECTION CTA
   ============================================================ */
.section-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.transformation-intro {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 3.5rem;
  line-height: 1.65;
}

.ba-arrow-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}

.ba-arrow-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--volt);
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================================
   AUTOMATION
   ============================================================ */
.automation {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.automation::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,255,0,0.2), transparent);
}

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

.automation-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
}

.automation-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.automation-sub {
  color: var(--fg-muted);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  margin-bottom: 4rem;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.auto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex; gap: 1.5rem;
  align-items: flex-start;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.auto-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,255,0,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.auto-card:hover {
  border-color: rgba(212,255,0,0.2);
  background: var(--bg-card-2);
}

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

.auto-pulse {
  position: relative;
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 0.35rem;
  display: flex; align-items: center; justify-content: center;
}

.pulse-ring {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(212,255,0,0.5);
  animation: pulse-ring-anim 2.5s ease-out infinite;
}

.pulse-dot-inner {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--volt);
  position: relative; z-index: 1;
}

@keyframes pulse-ring-anim {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.auto-body { flex: 1; }

.auto-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--volt);
  opacity: 0.7;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.auto-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.auto-card p {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.automation-statement {
  text-align: center;
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
}

.auto-manifesto {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fg-muted);
}

/* ============================================================
   VERTICALS / INDUSTRY DEMOS
   ============================================================ */
.verticals {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-2);
  position: relative;
}

.verticals::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,111,255,0.25), transparent);
}

.verticals-inner { max-width: var(--max-w); margin: 0 auto; }

.verticals-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.verticals-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 4rem;
  line-height: 1.65;
}

.vertical-demos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.vd-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column; gap: 1.25rem;
}

.vd-card:hover {
  border-color: rgba(155,111,255,0.3);
  transform: translateY(-3px);
}

.vd-header {
  display: flex; align-items: flex-start; gap: 1.25rem;
}

.vd-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.vd-industry {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 0.35rem;
}

.vd-result {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.text-elec { color: var(--elec); }

.vd-copy {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

.vd-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}

.vd-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--border);
}

/* ============================================================
   RECURRING PLANS
   ============================================================ */
.recurring {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg);
  position: relative;
}

.recurring::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,156,255,0.25), transparent);
}

.recurring-inner { max-width: var(--max-w); margin: 0 auto; }

.recurring-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.recurring-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 55ch;
  margin-bottom: 4rem;
  line-height: 1.65;
}

.recurring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.rec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color 0.3s;
}

.rec-card:hover { border-color: var(--border-2); }

.rec-card.rec-featured {
  border-color: var(--elec);
  background: linear-gradient(180deg, rgba(45,156,255,0.06) 0%, var(--bg-card) 50%);
}

.rec-card.rec-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--elec);
}

.rec-badge {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--elec);
  margin-bottom: 1rem;
}

.rec-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.rec-per {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.rec-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.rec-tagline {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 2rem;
  font-style: italic;
  flex: 1;
}

.rec-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.55rem;
}

.rec-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.45;
}

.rec-list li::before {
  content: '\2192';
  position: absolute; left: 0;
  color: var(--elec);
  font-size: 0.75rem;
}

.recurring-message {
  text-align: center;
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: clamp(7rem, 14vw, 15rem) var(--gutter);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.manifesto-glow-a {
  position: absolute; top: -20%; left: 10%;
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,0,0.07) 0%, transparent 65%);
  filter: blur(120px);
  pointer-events: none; z-index: 0;
}

.manifesto-glow-b {
  position: absolute; bottom: -20%; right: 5%;
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,156,255,0.08) 0%, transparent 65%);
  filter: blur(100px);
  pointer-events: none; z-index: 0;
}

.manifesto-inner {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
}

.manifesto-lines {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 4rem;
}

.mf-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg-muted);
}

.mf-line.mf-accent {
  color: var(--fg);
}

.manifesto-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  margin: 3rem 0;
}

.manifesto-body {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 3rem;
}

.mf-statement {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--fg-muted);
  line-height: 1.5;
}

.mf-statement.mf-bold {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--fg);
  letter-spacing: -0.02em;
}

.mf-statement.mf-electric {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--elec);
  letter-spacing: -0.02em;
}

.manifesto-awhin {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  padding: 3rem;
  text-align: left;
  margin-bottom: 3rem;
}

.awhin-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 0.75rem;
}

.awhin-meaning {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.awhin-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 58ch;
}

.awhin-sub + .awhin-sub {
  margin-top: 1rem;
}

.manifesto-cta {
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .system-grid { grid-template-columns: repeat(2, 1fr); }
  .for-grid { grid-template-columns: repeat(2, 1fr); }
  .automation-grid { grid-template-columns: repeat(2, 1fr); }
  .vertical-demos { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .ba-divider { display: none; }
  .ba-after .ba-label { margin-top: 2rem; }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; }
  .recurring-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-right { flex-wrap: wrap; gap: 1.5rem; }
  .manifesto-awhin { padding: 2rem; }
}

@media (max-width: 640px) {
  .system-grid { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .automation-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-ghost { text-align: center; }
  .br-desk { display: none; }
  .philosophy-slogans { font-size: 0.65rem; gap: 0.75rem; }
  .mf-line { font-size: clamp(1.4rem, 8vw, 2.5rem); }
}

/* ============================================================
   PACKAGES PAGE — /packages standalone
   ============================================================ */

/* Nav */
.pkg-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 1.25rem var(--gutter);
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.pkg-nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.pkg-nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.pkg-nav-dot { color: var(--volt); }
.pkg-nav-links { display: flex; align-items: center; gap: 2rem; }
.pkg-nav-link {
  font-size: 0.88rem;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.pkg-nav-link:hover { color: var(--fg); }

/* Hero */
.pkg-hero {
  position: relative;
  padding: clamp(6rem, 14vw, 12rem) var(--gutter) clamp(5rem, 10vw, 9rem);
  overflow: hidden;
}
.pkg-hero-glow-a {
  position: absolute; top: -30%; right: -10%;
  width: 70vw; height: 70vw;
  max-width: 800px; max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,0,0.1) 0%, rgba(45,156,255,0.04) 45%, transparent 70%);
  filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.pkg-hero-glow-b {
  position: absolute; bottom: -20%; left: -10%;
  width: 55vw; height: 55vw;
  max-width: 650px; max-height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,111,255,0.1) 0%, transparent 65%);
  filter: blur(100px);
  pointer-events: none; z-index: 0;
}
.pkg-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
}
.pkg-hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 2rem;
}
.pkg-hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}
.pkg-hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 3rem;
}
.pkg-hero-jump {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.pkg-jump-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.2s;
  display: flex; align-items: baseline; gap: 0.5rem;
}
.pkg-jump-link:hover { color: var(--fg); }
.pkg-jump-link span { color: var(--fg-dim); font-size: 0.8rem; }
.featured-jump { color: var(--volt); }
.featured-jump:hover { color: #e8ff1a; }
.pkg-jump-sep { color: var(--fg-dim); font-size: 0.75rem; }

/* Package Detail Sections */
.pkg-detail {
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  background: var(--bg);
}
.pkg-detail-inner { max-width: var(--max-w); margin: 0 auto; }

.pkg-tier {
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
}
.pkg-tier-featured {
  position: relative;
  padding-left: 2.5rem;
  border-left: 2px solid var(--volt);
}
.pkg-tier-featured-bar {
  position: absolute; top: 0; left: -1px;
  width: 2px; height: 100%;
  background: linear-gradient(180deg, var(--volt) 0%, rgba(212,255,0,0.3) 100%);
}
.pkg-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}

.pkg-tier-label {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.tier-level {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-dim);
}
.tier-level-featured { color: var(--volt); }
.tier-level-premium { color: var(--purple); }
.tier-line {
  flex: 1; height: 1px;
  background: var(--border);
  max-width: 80px;
}
.tier-line-featured { background: rgba(212,255,0,0.25); }
.tier-tagline {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-dim);
}

.pkg-tier-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.pkg-tier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.pkg-tier-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.pkg-price-unit {
  font-size: 0.45em;
  color: var(--fg-muted);
  font-weight: 600;
  vertical-align: super;
}
.pkg-tier-note {
  font-size: 0.78rem;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.pkg-tier-pitch {
  color: var(--fg-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 36ch;
}
.pkg-tier-cta { width: 100%; text-align: center; }

/* Feature groups */
.pkg-feature-group {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.pkg-feature-group:last-of-type { border-bottom: none; margin-bottom: 1rem; }

.pkg-feature-label {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--elec);
  margin-bottom: 1rem;
}
.pkg-feature-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.pkg-feature-list li {
  font-size: 0.92rem;
  color: var(--fg-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.pkg-feature-list li::before {
  content: '\2192';
  position: absolute; left: 0;
  color: var(--volt);
  font-size: 0.8rem;
}
.pkg-feature-list-volt li { color: var(--fg-dim); font-size: 0.86rem; }
.pkg-feature-list-volt li::before { color: var(--fg-dim); }

.pkg-result-bar {
  background: rgba(212,255,0,0.04);
  border: 1px solid rgba(212,255,0,0.12);
  padding: 1.25rem 1.5rem;
  display: flex; gap: 0.75rem; align-items: baseline;
  margin-top: 1.5rem;
}
.pkg-result-bar-volt { border-color: rgba(212,255,0,0.2); background: rgba(212,255,0,0.06); }
.pkg-result-bar-purple { border-color: rgba(155,111,255,0.2); background: rgba(155,111,255,0.04); }
.pkg-result-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--volt);
  flex-shrink: 0;
}
.pkg-result-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.5;
  font-style: italic;
}

/* Comparison Table */
.pkg-compare {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-2);
  position: relative;
}
.pkg-compare::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,255,0,0.2), transparent);
}
.pkg-compare-inner { max-width: var(--max-w); margin: 0 auto; }
.pkg-compare-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}
.pkg-table-wrap { overflow-x: auto; }
.pkg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.pkg-table th, .pkg-table td {
  padding: 0.85rem 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
}
.pkg-table td:first-child { text-align: left; color: var(--fg-muted); }
.pkg-th-feature { min-width: 220px; }
.pkg-th-tier {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  background: var(--bg-card);
  text-align: center;
}
.pkg-th-tier span { display: block; font-weight: 600; font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.2rem; }
.pkg-th-featured { background: rgba(212,255,0,0.06); border-color: rgba(212,255,0,0.2) !important; }
.pkg-th-premium { background: rgba(155,111,255,0.04); }
.pkg-td-group {
  background: var(--bg);
  text-align: left !important;
  font-family: var(--font-body);
  font-size: 0.68rem !important;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--elec) !important;
  padding: 1rem 1.25rem 0.5rem !important;
}
.pkg-table .check { color: var(--volt); font-size: 1rem; }
.pkg-table .featured-check { color: var(--volt); background: rgba(212,255,0,0.04); }
.pkg-table .dash { color: var(--fg-dim); }
.pkg-table tbody tr:hover td { background: rgba(255,255,255,0.01); }

/* Monthly Plans on packages page */
.pkg-recurring {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg);
  position: relative;
}
.pkg-recurring::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,156,255,0.25), transparent);
}
.pkg-recurring-inner { max-width: var(--max-w); margin: 0 auto; }
.pkg-recurring-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.pkg-recurring-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 55ch;
  margin-bottom: 4rem;
  line-height: 1.65;
}
.pkg-rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pkg-rec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color 0.3s;
}
.pkg-rec-card:hover { border-color: var(--border-2); }
.pkg-rec-card.pkg-rec-featured {
  border-color: var(--elec);
  background: linear-gradient(180deg, rgba(45,156,255,0.06) 0%, var(--bg-card) 50%);
}
.pkg-rec-card.pkg-rec-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--elec);
}
.pkg-rec-badge {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--elec); margin-bottom: 0.75rem;
}
.pkg-rec-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.pkg-rec-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pkg-rec-per {
  font-size: 1rem; font-weight: 600;
  color: var(--fg-muted);
}
.pkg-rec-tagline {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  font-style: italic;
  flex: 1;
}
.pkg-rec-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.55rem;
  margin-bottom: 2rem;
}
.pkg-rec-list li {
  font-size: 0.87rem;
  color: var(--fg-muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.45;
}
.pkg-rec-list li::before {
  content: '\2192';
  position: absolute; left: 0;
  color: var(--elec);
  font-size: 0.75rem;
}
.pkg-rec-cta { width: 100%; text-align: center; }
.pkg-rec-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--fg-dim);
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.pkg-rec-note a { color: var(--volt); transition: opacity 0.2s; }
.pkg-rec-note a:hover { opacity: 0.8; }

/* Inquiry Form */
.pkg-inquiry {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-2);
  position: relative;
}
.pkg-inquiry::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,255,0,0.25), transparent);
}
.pkg-inquiry-glow {
  position: absolute; top: -10%; right: -15%;
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,0,0.06) 0%, transparent 65%);
  filter: blur(100px);
  pointer-events: none;
}
.pkg-inquiry-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}
.pkg-inquiry-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.pkg-inquiry-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 3rem;
}
.pkg-form {
  display: flex; flex-direction: column; gap: 1.25rem;
  margin-bottom: 3rem;
}
.pkg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.pkg-form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.pkg-form-field-full { grid-column: 1 / -1; }
.pkg-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.pkg-form input,
.pkg-form select,
.pkg-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  resize: vertical;
}
.pkg-form input::placeholder,
.pkg-form textarea::placeholder { color: var(--fg-dim); }
.pkg-form input:focus,
.pkg-form select:focus,
.pkg-form textarea:focus { border-color: var(--volt); }
.pkg-form select { color: var(--fg-dim); cursor: pointer; }
.pkg-form select option { background: var(--bg-card); color: var(--fg); }
.pkg-submit { width: 100%; }
.pkg-form-note {
  font-size: 0.78rem;
  color: var(--fg-dim);
  text-align: center;
  letter-spacing: 0.05em;
}
.pkg-inquiry-direct {
  text-align: center;
  color: var(--fg-dim);
  font-size: 0.9rem;
}
.pkg-inquiry-direct p { margin-bottom: 0.5rem; }
.pkg-email-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--elec);
  transition: color 0.2s;
}
.pkg-email-link:hover { color: var(--volt); }

/* Packages page responsive */
@media (max-width: 900px) {
  .pkg-tier-body { grid-template-columns: 1fr; }
  .pkg-tier-pitch { max-width: 100%; }
  .pkg-tier-cta { max-width: 300px; }
  .pkg-tier-featured { padding-left: 0; border-left: none; border-top: 2px solid var(--volt); padding-top: 2.5rem; }
  .pkg-rec-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 700px) {
  .pkg-nav-links { gap: 1rem; }
  .pkg-form-row { grid-template-columns: 1fr; }
  .pkg-hero-jump { flex-direction: column; gap: 0.75rem; }
  .pkg-jump-sep { display: none; }
  .pkg-table { font-size: 0.8rem; }
  .pkg-table th, .pkg-table td { padding: 0.65rem 0.75rem; }
}
