.tag-soon {
  font-size: 0.55rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-left: 2px;
}

/* --- Section Shared --- */
.section { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; color: var(--text-dim); text-align: center;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.section-title {
  font-size: 1.8rem; font-weight: 700; text-align: center;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.section-desc {
  text-align: center; color: var(--text-secondary);
  font-size: 0.9rem; margin-bottom: 50px;
}

/* --- Features --- */
.features-section { background: var(--bg-alt); border-top: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.card-led {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.led {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block;
}
.led-active {
  background: var(--accent);
  box-shadow: 0 0 6px rgba(99, 102, 241, 0.4);
}
.card-slot {
  font-size: 0.6rem; color: var(--text-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.feature-title {
  font-size: 1rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.feature-desc {
  font-size: 0.8rem; color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Gallery --- */
.gallery-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}
.gallery-item {
  position: relative;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(99, 102, 241, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(99, 102, 241, 0.06), rgba(255,255,255,0.02)),
    var(--surface);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.25s;
}
.gallery-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.gallery-item-primary {
  grid-row: span 2;
  align-self: start;
}
.gallery-item-secondary {
  align-self: start;
}
.gallery-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.02));
}
.gallery-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.gallery-caption {
  max-width: 320px;
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--text-secondary);
  text-align: right;
}
.gallery-img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  transition: border-color 0.3s;
}
.gallery-placeholder:hover {
  border-color: var(--border-hover);
}
.gallery-placeholder svg { opacity: 0.3; }
.gallery-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* --- Pricing --- */
.pricing-section { background: var(--bg); border-top: 1px solid var(--border); }
.pricing-card {
  max-width: 920px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(360px, 1.05fr);
  gap: 0;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.1), 0 0 40px rgba(99, 102, 241, 0.04);
}
.pricing-column {
  padding: 20px 24px;
}
.pricing-column-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(99, 102, 241, 0.12);
}
.pricing-column-features {
  display: flex;
  align-items: center;
}
.pricing-badge {
  display: inline-block;
  font-size: 0.65rem; color: var(--accent);
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.pricing-price {
  font-size: 3rem; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pricing-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-price-old {
  font-size: 0.95rem;
  color: var(--text-dim);
  text-decoration: line-through;
  letter-spacing: 0.06em;
}
.dollar { color: var(--text-muted); font-weight: 400; font-size: 0.5em; vertical-align: super; }
.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 5px 10px;
  font-size: 0.73rem;
  color: rgba(232, 224, 212, 0.82);
  margin-bottom: 18px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  background: rgba(99, 102, 241, 0.05);
}
.pricing-summary {
  max-width: 320px;
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.pricing-cta-group {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pricing-features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; color: var(--text-secondary);
  min-width: 0;
}
.pricing-features li svg { color: var(--accent); flex-shrink: 0; }
.pricing-trial {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem; color: var(--accent);
  font-weight: 500; transition: color 0.2s;
}
.pricing-trial:hover { color: var(--accent-light); }

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.footer p {
  font-size: 0.75rem; color: var(--text-dim);
}
.footer-heart {
  color: #ff7b92;
  text-shadow: 0 0 14px rgba(255, 123, 146, 0.25);
}

/* =============================================
   Success Page
   ============================================= */
.success-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  background: var(--bg);
}
.success-card {
  max-width: 520px; width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
}
.success-check {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}
.success-check::before {
  content: ''; position: absolute; inset: -1px;
  border: 1px solid var(--accent);
  opacity: 0.3;
}
.success-check svg { color: var(--accent); width: 28px; height: 28px; }
.success-title {
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); margin-bottom: 24px;
  line-height: 1.4;
}
.success-order {
  font-size: 0.7rem; color: var(--text-dim);
  margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.license-section {
  background: #0d0b09;
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}
.license-section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.license-label {
  font-size: 0.65rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.license-key-display {
  font-size: 0.85rem;
  color: var(--accent);
  word-break: break-all;
  user-select: all;
  cursor: text;
  padding: 8px 0;
}
.license-actions {
  display: flex; gap: 8px; margin-bottom: 24px;
}
.copy-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; font-size: 0.75rem;
  font-family: inherit; font-weight: 500;
  background: var(--surface2); color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s;
}
.copy-btn:hover { border-color: var(--border-hover); background: var(--surface); }
.copy-btn.copied { border-color: var(--accent); color: var(--accent); }
.download-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; font-size: 0.75rem;
  font-family: inherit; font-weight: 600;
  background: var(--accent); color: #fff;
  border: none; cursor: pointer; transition: all 0.2s;
}
.download-btn:hover { background: var(--accent-light); }
.email-note {
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.activation-section {
  text-align: left;
  margin-bottom: 28px;
}
.activation-title {
  font-size: 0.7rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.activation-steps {
  display: flex; flex-direction: column; gap: 6px;
}
.activation-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; color: var(--text-secondary);
  line-height: 1.5;
}
.step-num {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text-muted);
  flex-shrink: 0;
}
.step-num.active { border-color: var(--accent); color: var(--accent); }
.troubleshooting {
  text-align: left;
  padding: 16px;
  background: rgba(99, 102, 241, 0.03);
  border: 1px solid var(--border);
  margin-top: 24px;
}
.troubleshooting summary {
  font-size: 0.7rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer;
}
.troubleshooting details[open] summary { margin-bottom: 12px; color: var(--text-muted); }
.troubleshooting p {
  font-size: 0.75rem; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 8px;
}
.troubleshooting p:last-child { margin-bottom: 0; }
.back-link {
  display: inline-block; margin-top: 20px;
  font-size: 0.75rem; color: var(--text-muted);
  transition: color 0.2s;
}
.back-link:hover { color: var(--text-secondary); }

/* --- No Order State --- */
.no-order {
  text-align: center;
}
