/* Jolt — Website to PWA to APK */
.jolt-page {
  --home-black: #000000;
  --home-gold: #c9a962;
  --home-gold-light: #e8d5a3;
  --home-gold-muted: #8a7344;
  --home-text: #ffffff;
  --home-text-muted: rgba(255, 255, 255, 0.55);
  --home-border: rgba(201, 169, 98, 0.45);
  --home-max: 900px;
  background: var(--home-black);
  color: var(--home-text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.jolt-page a { color: inherit; text-decoration: none; }

.jolt-brand {
  display: block;
  flex-shrink: 0;
}

.jolt-logo-img {
  display: block;
  height: clamp(2.25rem, 4.5vw, 3rem);
  width: auto;
  max-width: min(200px, 50vw);
  object-fit: contain;
}

.jolt-header {
  padding: 2rem clamp(1.25rem, 4vw, 3.5rem) 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.jolt-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 7vw, 5rem);
}

.jolt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.jolt-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.92) 55%, #000 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 169, 98, 0.12), transparent);
}

.jolt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.jolt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.jolt-hero-copy {
  text-align: left;
}

.jolt-hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jolt-hero-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  aspect-ratio: 4 / 5;
  max-height: 220px;
}

.jolt-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jolt-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.jolt-hero-badges li {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--home-gold-light);
  background: rgba(201, 169, 98, 0.08);
}

.jolt-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.jolt-hero h1 .gold {
  background: linear-gradient(135deg, #f0e6c8 0%, #c9a962 45%, #a8843a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jolt-hero-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--home-text-muted);
  max-width: 520px;
  margin: 0;
}

.jolt-hero-copy h1 {
  text-align: left;
}

/* Visual marquee */
.jolt-visual-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #050505;
  overflow: hidden;
  padding: 1rem 0;
}

.jolt-marquee { overflow: hidden; }

.jolt-marquee-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  animation: jolt-marquee 45s linear infinite;
}

.jolt-marquee-track figure {
  margin: 0;
  flex-shrink: 0;
  width: 220px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
}

.jolt-marquee-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes jolt-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Play Store section */
.jolt-playstore {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background:
    linear-gradient(135deg, rgba(201, 169, 98, 0.06) 0%, transparent 50%),
    #0a0a0a;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  border-bottom: 1px solid rgba(201, 169, 98, 0.08);
}

.jolt-playstore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.jolt-playstore-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.jolt-playstore-list li {
  font-size: 0.88rem;
  color: var(--home-text-muted);
  padding: 0.45rem 0 0.45rem 1.25rem;
  position: relative;
  line-height: 1.5;
}

.jolt-playstore-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--home-gold);
}

.jolt-playstore-visual {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.jolt-playstore-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.jolt-img-credit {
  position: absolute;
  bottom: 0.65rem;
  right: 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

/* Showcase mosaic */
.jolt-showcase {
  padding: clamp(3rem, 8vw, 4rem) 0 0;
}

.jolt-showcase .jolt-section-title {
  margin-bottom: 1.5rem;
}

.jolt-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.65rem;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 8vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}

.jolt-mosaic-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.jolt-mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.jolt-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.jolt-mosaic-item:hover img {
  transform: scale(1.04);
}

.jolt-mosaic-tall { grid-row: span 2; }
.jolt-mosaic-wide { grid-column: span 2; }

/* Step images */
.jolt-steps-visual .jolt-step {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.jolt-step-img {
  margin: 0;
  height: 140px;
  overflow: hidden;
}

.jolt-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.jolt-step:hover .jolt-step-img img {
  opacity: 1;
  transform: scale(1.03);
}

.jolt-steps-visual .jolt-step-num,
.jolt-steps-visual .jolt-step h3,
.jolt-steps-visual .jolt-step p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.jolt-steps-visual .jolt-step-num {
  margin-top: 0.85rem;
}

.jolt-steps-visual .jolt-step p {
  padding-bottom: 1.15rem;
}

/* Feature image cards */
.jolt-features-visual {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.jolt-feature-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.jolt-feature-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}

.jolt-feature-card > img.jolt-feature-logo {
  object-fit: contain;
  padding: 2.5rem 2rem 4rem;
  background: #0a0a0a;
}

.jolt-feature-card:hover > img {
  transform: scale(1.05);
}

.jolt-feature-card-body {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 35%);
}

.jolt-feature-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.jolt-feature-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.jolt-preview-play {
  border-color: rgba(201, 169, 98, 0.25);
  background: rgba(201, 169, 98, 0.05);
}

.jolt-form-card {
  max-width: none;
  margin: 0;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2rem);
  text-align: left;
}

.jolt-form-card label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-text-muted);
  margin-bottom: 0.45rem;
}

.jolt-form-card input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: var(--home-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  outline: none;
}

.jolt-form-card input:focus {
  border-color: var(--home-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.jolt-form-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  min-height: 1.2em;
}

.jolt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--home-border);
  background: transparent;
  color: var(--home-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.jolt-btn:hover:not(:disabled) {
  border-color: var(--home-gold);
  color: var(--home-gold);
}

.jolt-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.jolt-btn-primary {
  background: linear-gradient(135deg, #f0e6c8 0%, var(--home-gold) 45%, #a8843a 100%);
  color: #000;
  border: none;
  font-weight: 600;
}

.jolt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.jolt-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.jolt-step-num {
  font-family: 'Cinzel', serif;
  color: var(--home-gold);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.jolt-step p {
  font-size: 0.78rem;
  color: var(--home-text-muted);
  line-height: 1.5;
}

.jolt-result {
  display: none;
  max-width: 560px;
  margin: 2rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.jolt-result.show { display: block; }

.jolt-result-card {
  background: #0a0a0a;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 20px;
  padding: 1.75rem;
  text-align: center;
}

.jolt-result-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.jolt-status {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.jolt-status.pwa { background: rgba(201, 169, 98, 0.15); color: var(--home-gold); }
.jolt-status.building { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.jolt-status.ready { background: rgba(110, 231, 160, 0.15); color: #6ee7a0; }
.jolt-status.failed { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.jolt-result-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.jolt-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-text-muted);
}

.jolt-back:hover { color: var(--home-gold); }

/* Nav */
.jolt-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-text-muted);
}

.jolt-nav a:hover { color: var(--home-gold); }

.jolt-form-note {
  font-size: 0.78rem;
  color: var(--home-text-muted);
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.5;
}

.jolt-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.jolt-section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.jolt-section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.jolt-section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 500;
  margin: 0.35rem 0 0.75rem;
}

.jolt-section-title .gold,
.gold {
  background: linear-gradient(135deg, #f0e6c8 0%, #c9a962 45%, #a8843a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jolt-section-lead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--home-text-muted);
  max-width: 560px;
}

.jolt-link {
  color: var(--home-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jolt-steps-wide {
  max-width: none;
  margin-top: 2rem;
  padding: 0;
}

.jolt-step h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

/* Preview */
.jolt-preview-section {
  display: none;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
}

.jolt-preview-section.show { display: block; }

.jolt-preview-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.jolt-preview-head .jolt-section-lead {
  margin: 0 auto;
}

.jolt-preview-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.jolt-phone {
  margin: 0 auto;
  width: min(100%, 300px);
  background: #111;
  border-radius: 36px;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.jolt-phone-notch {
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}

.jolt-phone-screen {
  background: #000;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.jolt-phone-splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  min-height: 140px;
  transition: background 0.3s ease;
}

.jolt-phone-splash img {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.jolt-phone-splash span {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.jolt-phone-screen iframe {
  flex: 1;
  width: 100%;
  min-height: 300px;
  border: none;
  background: #fff;
}

.jolt-phone-nav {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  flex-shrink: 0;
}

.jolt-nav-pill {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--home-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.35rem 0.25rem;
}

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

.jolt-preview-item {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.jolt-preview-icon-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-text-muted);
  margin-bottom: 0.5rem;
}

.jolt-preview-item img {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.jolt-swatch {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.jolt-preview-item small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: var(--home-text-muted);
}

.jolt-preview-url {
  font-size: 0.95rem;
  word-break: break-all;
  color: var(--home-gold-light);
}

.jolt-preview-hint {
  font-size: 0.85rem;
  color: var(--home-text-muted);
  margin: 0;
}

.jolt-preview-item[data-field="name"] strong {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
}

/* Pricing grid (unlocked after preview) */
.jolt-pricing-section {
  display: none;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: rgba(201, 169, 98, 0.03);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.jolt-pricing-section.show { display: block; }

/* Luxury pricing cards */
.jolt-pricing-section,
.jolt-pricing-static {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 98, 0.08), transparent),
    #050505;
}

.jolt-pricing-static-head {
  text-align: center;
  margin-bottom: 2rem;
}

.jolt-pricing-static-head .jolt-section-lead {
  margin: 0 auto;
}

.jolt-price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
  margin-top: 2rem;
  align-items: stretch;
}

.jolt-pricing-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--home-text-muted);
  padding: 2.5rem;
  border: 1px dashed rgba(201, 169, 98, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.jolt-price-card {
  position: relative;
  border-radius: 22px;
  min-height: 100%;
}

.jolt-price-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.45), rgba(255, 255, 255, 0.06) 40%, rgba(201, 169, 98, 0.2));
  opacity: 0.35;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.jolt-price-card:hover .jolt-price-card-glow {
  opacity: 0.75;
}

.jolt-price-card-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.92) 100%),
    #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.jolt-price-card-inner::before,
.jolt-price-card-inner::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(201, 169, 98, 0.35);
  border-style: solid;
  pointer-events: none;
}

.jolt-price-card-inner::before {
  top: 0.65rem;
  left: 0.65rem;
  border-width: 1px 0 0 1px;
}

.jolt-price-card-inner::after {
  bottom: 0.65rem;
  right: 0.65rem;
  border-width: 0 1px 1px 0;
}

.jolt-price-card.featured {
  transform: translateY(-6px);
  z-index: 2;
}

.jolt-price-card.featured .jolt-price-card-glow {
  opacity: 0.85;
  background: linear-gradient(145deg, rgba(240, 230, 200, 0.55), rgba(201, 169, 98, 0.35) 50%, rgba(168, 132, 58, 0.25));
}

.jolt-price-card.featured .jolt-price-card-inner {
  background:
    linear-gradient(180deg, rgba(201, 169, 98, 0.12) 0%, rgba(0, 0, 0, 0.94) 55%),
    #0a0a0a;
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.jolt-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #f0e6c8, var(--home-gold));
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
}

.jolt-price-badge-save {
  color: #6ee7a0;
  background: rgba(110, 231, 160, 0.12);
  border: 1px solid rgba(110, 231, 160, 0.35);
}

.jolt-price-img {
  margin: 0 0 1rem;
  border-radius: 14px;
  overflow: hidden;
  height: 118px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.jolt-price-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.65));
  pointer-events: none;
}

.jolt-price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #0a0a0a;
  transition: transform 0.6s ease;
}

.jolt-price-card:hover .jolt-price-img img {
  transform: scale(1.06);
}

.jolt-price-tier {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--home-gold-muted);
  margin-bottom: 0.3rem;
}

.jolt-price-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.28rem;
  font-weight: 500;
  margin: 0 0 0.45rem;
  line-height: 1.25;
}

.jolt-price-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--home-text-muted);
  margin: 0 0 0.85rem;
  flex: 1;
}

.jolt-price-amount-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.35rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.jolt-price-amount {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  color: var(--home-gold-light);
  letter-spacing: 0.02em;
}

.jolt-price-was {
  font-size: 0.75rem;
  color: var(--home-text-muted);
  text-decoration: line-through;
}

.jolt-price-save {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6ee7a0;
  margin-bottom: 0.65rem;
}

.jolt-price-card .home-checklist {
  margin: 0.5rem 0 1.15rem;
}

.jolt-price-card .home-checklist li {
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}

.jolt-price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: linear-gradient(135deg, #f0e6c8 0%, var(--home-gold) 45%, #a8843a 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jolt-price-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.25);
}

.jolt-price-cta-ghost {
  color: var(--home-gold-light);
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.4);
}

.jolt-price-cta-ghost:hover {
  background: rgba(201, 169, 98, 0.08);
  box-shadow: none;
}

/* Features */
.jolt-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.jolt-feature {
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.jolt-feature h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.jolt-feature p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--home-text-muted);
  margin: 0;
}

/* Static pricing table */
.jolt-pricing-table {
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.jolt-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.jolt-price-row:last-child { border-bottom: none; }

.jolt-price-row em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6ee7a0;
  margin-top: 0.15rem;
}

.jolt-price-row strong {
  font-family: 'Cinzel', serif;
  color: var(--home-gold-light);
  white-space: nowrap;
}

/* FAQ */
.jolt-faq { max-width: 680px; }

.jolt-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

.jolt-faq-item summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}

.jolt-faq-item summary::-webkit-details-marker { display: none; }

.jolt-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  color: var(--home-gold);
}

.jolt-faq-item[open] summary::after { content: '−'; }

.jolt-faq-item p {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--home-text-muted);
}

/* Success page */
.jolt-success-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(3rem, 10vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
}

.jolt-success-card {
  text-align: center;
  background: #0a0a0a;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 20px;
  padding: 2rem;
}

.jolt-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(110, 231, 160, 0.15);
  color: #6ee7a0;
  font-size: 1.5rem;
  line-height: 56px;
}

.jolt-success-card h1 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 1200px) {
  .jolt-price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jolt-price-card.featured {
    transform: none;
  }
}

@media (max-width: 960px) {
  .jolt-hero-inner { grid-template-columns: 1fr; }
  .jolt-hero-copy { text-align: center; }
  .jolt-hero-copy h1 { text-align: center; }
  .jolt-hero-lead { margin: 0 auto; }
  .jolt-hero-badges { justify-content: center; }
  .jolt-hero-photo { display: none; }
  .jolt-playstore-grid { grid-template-columns: 1fr; }
  .jolt-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .jolt-mosaic-wide { grid-column: span 2; }
  .jolt-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .jolt-preview-layout { grid-template-columns: 1fr; }
  .jolt-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .jolt-steps { grid-template-columns: 1fr; }
  .jolt-nav { gap: 0.75rem 1rem; }
  .jolt-mosaic { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .jolt-mosaic-tall,
  .jolt-mosaic-wide { grid-column: span 1; grid-row: span 1; }
  .jolt-marquee-track figure { width: 180px; height: 115px; }
  .jolt-price-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .jolt-marquee-track { animation: none; }
}
