:root {
  --bg: #06060e;
  --bg-surface: #0d0d1a;
  --bg-card: #111126;
  --fg: #e8e8f0;
  --fg-muted: #8888a8;
  --accent: #00e87b;
  --accent-dim: rgba(0, 232, 123, 0.12);
  --accent-glow: rgba(0, 232, 123, 0.3);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.accent { color: var(--accent); }

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 8px 18px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 48px;
  background: var(--bg-surface);
}

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

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 64px;
  max-width: 700px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s;
}

.problem-card:hover {
  border-color: var(--accent-glow);
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 48px;
}

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

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 64px;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-item {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.service-item:hover {
  border-color: var(--accent-glow);
  background: var(--accent-dim);
}

.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 4px 10px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 4px;
  margin-bottom: 16px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-item p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== TIERS ===== */
.tiers {
  padding: 120px 48px;
  background: var(--bg-surface);
}

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

.tiers h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 64px;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tier-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  transition: border-color 0.3s;
}

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

.tier-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 60px var(--accent-dim);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1;
}

.tier-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}

.tier-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== CLOSING ===== */
.closing {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(100px);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px;
  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-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .problem-grid,
  .services-grid,
  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .problem,
  .services,
  .tiers,
  .closing {
    padding: 80px 24px;
  }

  .problem h2,
  .services h2,
  .tiers h2,
  .closing h2 {
    font-size: 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  body { font-size: 15px; }

  .hero h1 { font-size: 36px; }

  .tier-price { font-size: 36px; }

  .closing h2 { font-size: 28px; }
}
/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 6, 14, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--fg);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: opacity 0.2s, transform 0.15s;
}

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

.nav-cta.active {
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: 0.3s;
}

/* Offset sections for fixed nav */
.hero { padding-top: 160px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-primary.btn-large {
  padding: 18px 48px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}

/* ===== TIER CTAs ===== */
.tier-cta {
  display: block;
  margin-top: 32px;
  padding: 14px 24px;
  text-align: center;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.tier-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.tier-cta-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.tier-cta-featured:hover {
  opacity: 0.9;
  color: var(--bg);
}

/* ===== CLOSING CTA ===== */
.closing-actions {
  margin-top: 48px;
}

/* ===== APPLY PAGE ===== */
.apply-page {
  min-height: 100vh;
  padding: 120px 48px 80px;
}

.apply-inner {
  max-width: 760px;
  margin: 0 auto;
}

.apply-header {
  margin-bottom: 64px;
}

.apply-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.apply-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
}

/* Success state */
.success-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 0 60px var(--accent-dim);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 28px;
}

.success-card h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.success-card p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Error banner */
.form-error-banner {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff8080;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 32px;
  font-size: 14px;
}

/* Form sections */
.form-section {
  margin-bottom: 40px;
}

.form-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

.req {
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 136, 168, 0.5);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

/* Platform checkboxes */
.platform-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: all 0.2s;
  user-select: none;
}

.platform-check:hover {
  border-color: var(--accent-glow);
  color: var(--fg);
}

.platform-check.checked {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.platform-check input {
  display: none;
}

/* Plan selector */
.plan-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.plan-option {
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.2s;
  overflow: hidden;
}

.plan-option:hover {
  border-color: var(--accent-glow);
}

.plan-option.selected {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-dim);
}

.plan-option input {
  display: none;
}

.plan-option-inner {
  padding: 20px;
}

.plan-option-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  text-transform: uppercase;
}

.plan-option-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.plan-option-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Submit */
.form-submit {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.form-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Intake form responsive */
@media (max-width: 700px) {
  .apply-page { padding: 100px 24px 60px; }
  .form-row { grid-template-columns: 1fr; }
  .plan-selector { grid-template-columns: 1fr; }
  .apply-header h1 { font-size: 36px; letter-spacing: -1px; }
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-page { min-height: 100vh; }

.portfolio-hero {
  position: relative;
  padding: 160px 48px 100px;
  overflow: hidden;
}

.portfolio-hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

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

.portfolio-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.portfolio-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* Content styles */
.content-styles {
  padding: 80px 48px 120px;
  background: var(--bg-surface);
}

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

.content-styles h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 56px;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.style-card:hover { border-color: var(--accent-glow); }

/* Style previews — abstract visual representations */
.style-preview {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  position: relative;
  background: var(--bg-surface);
  gap: 16px;
}

.style-preview-label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Hook style preview */
.style-hook { gap: 12px; }
.style-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.bar {
  width: 12px;
  border-radius: 3px;
  background: var(--border);
  animation: barPulse 1.8s ease-in-out infinite;
}
.bar-1 { height: 35%; animation-delay: 0s; }
.bar-2 { height: 70%; animation-delay: 0.2s; background: var(--accent-dim); }
.bar-3 { height: 100%; animation-delay: 0.4s; background: var(--accent); }
.bar-4 { height: 55%; animation-delay: 0.6s; }

@keyframes barPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.style-caption {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  font-style: italic;
}

/* Edu style */
.edu-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 200px;
}
.edu-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.edu-step span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--fg-muted);
}
.edu-step-accent {
  border-color: var(--accent);
  color: var(--accent);
}
.edu-step-accent span { color: var(--accent); }

/* Trend style */
.trend-wave { width: 120px; }
.trend-label {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Brand style */
.brand-blocks {
  display: flex;
  gap: 8px;
}
.brand-block {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.brand-block-1 { background: var(--border); color: var(--fg-muted); }
.brand-block-2 { background: var(--accent-dim); color: var(--accent); }
.brand-block-3 { background: var(--accent); color: var(--bg); }

/* Day style */
.timeline { display: flex; flex-direction: column; gap: 8px; }
.tl-item { display: flex; align-items: center; gap: 10px; }
.tl-time { font-size: 11px; color: var(--fg-muted); width: 32px; letter-spacing: 0.5px; }
.tl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); flex-shrink: 0;
}
.tl-dot-accent { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.tl-label { font-size: 13px; color: var(--fg-muted); }

/* AI style */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 90px;
}
.ai-pixel {
  height: 28px;
  border-radius: 4px;
  background: var(--border);
  animation: aiFlicker 2s ease-in-out infinite;
}
.ai-pixel-accent {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
}
@keyframes aiFlicker {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.ai-label {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* Style info section */
.style-info {
  padding: 28px;
  flex: 1;
}
.style-info h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.style-info p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.style-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.style-platforms span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
}

/* Niches section */
.niches {
  padding: 100px 48px;
}
.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.niches h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 48px;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.niche-item {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.2s;
}
.niche-item:hover {
  border-color: var(--accent-glow);
  transform: translateY(-2px);
}
.niche-icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.niche-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}

/* Portfolio CTA */
.portfolio-cta {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}
.portfolio-cta-glow {
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.portfolio-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.portfolio-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}
.portfolio-cta p {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Portfolio responsive */
@media (max-width: 900px) {
  .styles-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-hero { padding: 120px 24px 80px; }
  .content-styles, .niches, .portfolio-cta { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ===== NAV RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6, 6, 14, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    align-items: flex-start;
  }
}
