:root {
  --bg: #0A0A0A;
  --bg-alt: #0F0F0F;
  --bg-card: #161616;
  --bg-card-hover: #1E1E1E;
  --text: #F2EDE8;
  --text-muted: #7A7A7A;
  --accent: #FF6B35;
  --lime: #D4FF2B;
  --border: #222222;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.text-accent { color: var(--accent); }
.text-lime { color: var(--lime); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.hero-orb--secondary {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,255,43,0.08) 0%, transparent 70%);
  top: auto;
  right: auto;
  bottom: -50px;
  left: -100px;
  animation-delay: -4s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.hero-accent {
  background: linear-gradient(135deg, var(--accent), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- NICHES ---- */
.niches {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}

.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.niche-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.niche-card--lg {
  grid-column: span 2;
}

.niche-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.niche-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- PLAYBOOK ---- */
.playbook {
  padding: 6rem 2rem;
}

.playbook-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.playbook-steps {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.step {
  flex: 1;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), rgba(255,107,53,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.step-divider {
  width: 1px;
  min-height: 140px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  flex-shrink: 0;
  margin-top: 1rem;
}

/* ---- NUMBERS ---- */
.numbers {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}

.numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  padding: 2rem 1rem;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 6rem 2rem;
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 3rem;
}

.manifesto-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.point {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.point h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.closing-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 5rem 1.5rem;
  }

  .niches-grid {
    grid-template-columns: 1fr;
  }

  .niche-card--lg {
    grid-column: span 1;
  }

  .playbook-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-divider {
    width: 100%;
    min-height: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 0;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .manifesto-points {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .niches,
  .playbook,
  .numbers,
  .manifesto {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 2.4rem;
  }
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,107,53,0.25);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.35);
}

.btn-primary--lg {
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
}

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

.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* ---- HERO ACTIONS ---- */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---- SECTION TAG ---- */
.section-tag {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ---- CLOSING CTA ---- */
.closing-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- PACKAGES ---- */
.packages {
  padding: 7rem 2rem;
  background: var(--bg-alt);
}

.packages-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.packages-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.package-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}

.package-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--lime));
  z-index: -1;
  opacity: 0.3;
}

.package-header {
  margin-bottom: 2rem;
}

.package-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin: 1rem 0 0.5rem;
}

.price-dollar {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-per {
  font-size: 1rem;
  color: var(--text-muted);
}

.package-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.package-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.package-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.item-check {
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.package-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.package-compare {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.compare-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.compare-col {
  padding: 1rem;
  border-radius: 8px;
}

.compare-col--bad {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}

.compare-col--good {
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.2);
}

.compare-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.compare-col--good .compare-label {
  color: var(--accent);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.compare-col--good .compare-list {
  color: var(--text);
}

/* ---- NICHE SHOWCASE ---- */
.showcase {
  padding: 7rem 2rem;
}

.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.showcase-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.tab-btn--active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.showcase-panel {
  display: none;
}

.showcase-panel--active {
  display: block;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.showcase-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.showcase-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.concepts-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.concept-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concept {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.concept-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.concept strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.concept p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.showcase-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 100px;
}

.showcase-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}

.showcase-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.showcase-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.showcase-quote {
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 10px;
  padding: 1.5rem;
}

.quote-text {
  font-size: 0.92rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.quote-attr {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

/* ---- CONTACT ---- */
.contact {
  padding: 7rem 2rem;
  background: var(--bg-alt);
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-icon {
  font-size: 1rem;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.form-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: rgba(122,122,122,0.6);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.form-submit:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(212,255,43,0.06);
  border: 1px solid rgba(212,255,43,0.2);
  border-radius: 8px;
  padding: 1.25rem;
}

.success-icon {
  font-size: 1.25rem;
  color: var(--lime);
  flex-shrink: 0;
}

.form-success strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.form-success p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-error {
  font-size: 0.88rem;
  color: #ff6b6b;
  background: rgba(255,107,107,0.06);
  border: 1px solid rgba(255,107,107,0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
}

.form-error a {
  color: var(--accent);
}

/* ---- RESPONSIVE additions ---- */
@media (max-width: 900px) {
  .package-card-wrap {
    grid-template-columns: 1fr;
  }

  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .showcase-stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-quote {
    grid-column: span 2;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-link {
    display: none;
  }

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

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

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

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .showcase-stats {
    grid-template-columns: 1fr;
  }

  .showcase-quote {
    grid-column: span 1;
  }
}

/* ---- SCROLL REVEAL ---- */
.reveal-section,
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-card--delay-1 { transition-delay: 0.12s; }
.reveal-card--delay-2 { transition-delay: 0.24s; }

.reveal-section.revealed,
.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- PORTFOLIO (phone mockups) ---- */
.portfolio {
  padding: 7rem 2rem;
  background: var(--bg-alt);
}

.portfolio-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: end;
  justify-items: center;
}

/* Stagger heights for visual interest */
.phone-wrap:nth-child(2) { margin-top: -2rem; }

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 220px;
}

.phone-frame {
  width: 180px;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 10px;
  border: 2px solid #2a2a2a;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 40px 80px rgba(255,107,53,0.06);
  position: relative;
}

/* Camera notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 6px;
  background: #111;
  border-radius: 10px;
  z-index: 10;
}

.phone-screen {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  background: #111;
}

.phone-screen--restaurant { background: linear-gradient(160deg, #1a0a00 0%, #2d1200 100%); }
.phone-screen--gym        { background: linear-gradient(160deg, #060d1a 0%, #0a1428 100%); }
.phone-screen--barber     { background: linear-gradient(160deg, #0a0a00 0%, #141400 100%); }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.video-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  padding-left: 3px;
  border: 1px solid rgba(255,255,255,0.2);
}

.phone-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px 8px 8px;
}

.phone-badge {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.phone-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Restaurant visual */
.food-hero {
  position: relative;
  width: 80px;
  height: 80px;
}

.food-item {
  position: absolute;
  border-radius: 50%;
}

.food-item--1 {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle at 35% 35%, #ff8c42, #cc4400);
  top: 0;
  left: 0;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}

.food-item--2 {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle at 35% 35%, #ffcc44, #cc8800);
  bottom: 0;
  right: 0;
  box-shadow: 0 4px 16px rgba(255,200,50,0.3);
}

.food-steam {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: rgba(255,200,150,0.4);
  animation: steam 2s ease-in-out infinite;
}

@keyframes steam {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7; transform: translateX(-50%) translateY(-4px); }
}

/* Gym visual */
.transformation-split {
  display: flex;
  align-items: center;
  gap: 6px;
}

.split-before, .split-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.split-label {
  font-size: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

.silhouette {
  width: 28px;
  height: 52px;
  border-radius: 14px 14px 8px 8px;
}

.silhouette--before {
  background: linear-gradient(180deg, rgba(100,100,120,0.6), rgba(60,60,80,0.6));
}

.silhouette--after {
  background: linear-gradient(180deg, rgba(255,107,53,0.8), rgba(212,255,43,0.5));
  box-shadow: 0 0 12px rgba(255,107,53,0.3);
}

.split-arrow {
  font-size: 0.9rem;
  color: var(--lime);
  font-weight: 700;
}

/* Barber visual */
.cut-reveal {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cut-before-after {
  display: flex;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}

.cut-side {
  flex: 1;
  height: 100%;
}

.cut-side--before {
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
}

.cut-side--after {
  background: linear-gradient(180deg, rgba(255,107,53,0.4), rgba(212,255,43,0.3));
}

.cut-line {
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.scissors-icon {
  position: absolute;
  font-size: 1.2rem;
  top: -4px;
  right: -4px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  animation: snip 3s ease-in-out infinite;
}

@keyframes snip {
  0%, 80%, 100% { transform: rotate(0deg); }
  85%, 95%      { transform: rotate(-20deg); }
  90%           { transform: rotate(10deg); }
}

/* Phone caption area */
.phone-caption {
  margin-top: auto;
}

.caption-hook {
  font-size: 0.52rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
}

.caption-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--lime));
  border-radius: 2px;
  margin-bottom: 6px;
}

.phone-stats {
  display: flex;
  gap: 6px;
}

.pstat {
  font-size: 0.45rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.phone-handle {
  width: 60px;
  height: 4px;
  background: #2a2a2a;
  border-radius: 4px;
  margin: 6px auto 0;
}

.phone-label {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.phone-label-type {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.phone-label-result {
  font-size: 0.78rem;
  color: var(--lime);
  font-weight: 600;
}

.portfolio-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .phone-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }

  .phone-wrap:nth-child(2) {
    margin-top: 0;
  }
}