:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8f0;
  --fg-muted: #8888a0;
  --accent: #ff3366;
  --accent-glow: rgba(255, 51, 102, 0.15);
  --accent-secondary: #7b61ff;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
  --radius: 12px;
}

* {
  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;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 64px fixed nav + 40px breathing room */
  padding: 104px 24px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 51, 102, 0.25);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--fg-muted);
}

/* ---- PROCESS ---- */
.process {
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.process-step {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.2s;
}

.process-step:hover {
  border-color: rgba(255, 51, 102, 0.2);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 51, 102, 0.18);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---- WHO ---- */
.who {
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.who h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 700px;
}

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

.who-card {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.who-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.who-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ---- NUMBERS ---- */
.numbers {
  padding: 80px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.numbers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.stat-label {
  color: var(--fg-muted);
  font-size: 0.9rem;
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

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

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}

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

.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 24px var(--accent-glow);
}

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

.btn-hero-secondary {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ---- PRICING ---- */
.pricing {
  padding: 120px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 64px;
}

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

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: rgba(255, 51, 102, 0.2);
  transform: translateY(-2px);
}

.pricing-card--featured {
  background: var(--bg-card);
  border-color: rgba(255, 51, 102, 0.3);
  box-shadow: 0 0 40px rgba(255, 51, 102, 0.08);
}

.plan-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 51, 102, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.plan-price {
  margin-bottom: 12px;
  line-height: 1;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.price-period {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--fg-muted);
  margin-left: 2px;
}

.plan-tagline {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 28px;
  min-height: 40px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.plan-features li.muted {
  color: var(--fg-muted);
  opacity: 0.5;
}

.check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-btn {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
}

.plan-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.plan-btn--primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.plan-btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.plan-btn--outline:hover {
  border-color: rgba(255, 51, 102, 0.4);
  color: var(--accent);
}

/* ---- PORTFOLIO ---- */
.portfolio {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.portfolio-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.portfolio-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 64px;
  max-width: 540px;
}

.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.portfolio-item {
  display: grid;
  grid-template-columns: 1fr auto 1.6fr;
  gap: 24px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
}

.portfolio-before, .portfolio-after {
  display: flex;
  flex-direction: column;
}

.content-type-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.before-visual {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 20px;
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin-bottom: 16px;
}

.waveform span {
  flex: 1;
  background: rgba(255, 51, 102, 0.3);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}

.waveform span:nth-child(1)  { height: 30%; animation-delay: 0s; }
.waveform span:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.waveform span:nth-child(3)  { height: 45%; animation-delay: 0.2s; }
.waveform span:nth-child(4)  { height: 90%; animation-delay: 0.3s; }
.waveform span:nth-child(5)  { height: 55%; animation-delay: 0.4s; }
.waveform span:nth-child(6)  { height: 80%; animation-delay: 0.5s; }
.waveform span:nth-child(7)  { height: 35%; animation-delay: 0.6s; }
.waveform span:nth-child(8)  { height: 65%; animation-delay: 0.7s; }
.waveform span:nth-child(9)  { height: 50%; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 85%; animation-delay: 0.9s; }
.waveform span:nth-child(11) { height: 40%; animation-delay: 1.0s; }
.waveform span:nth-child(12) { height: 75%; animation-delay: 1.1s; }
.waveform span:nth-child(13) { height: 25%; animation-delay: 0.2s; }
.waveform span:nth-child(14) { height: 60%; animation-delay: 0.4s; }
.waveform span:nth-child(15) { height: 45%; animation-delay: 0.6s; }

.waveform--alt span { background: rgba(123, 97, 255, 0.3); }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

.before-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.before-duration {
  color: var(--fg-muted);
  font-size: 0.8rem;
}

.portfolio-arrow {
  color: var(--accent);
  opacity: 0.6;
  padding: 0 8px;
  flex-shrink: 0;
}

.clips-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.clip {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  cursor: default;
}

.clip:hover {
  transform: scale(1.02);
  border-color: rgba(255, 51, 102, 0.2);
}

.clip-thumb {
  aspect-ratio: 9/16;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

/* Simulated short-form video thumbnails using CSS gradients */
.clip-thumb--1 { background: linear-gradient(160deg, #1a0a14 0%, #2d0d20 40%, #ff3366 100%); }
.clip-thumb--2 { background: linear-gradient(160deg, #0a0d1a 0%, #0d1a2d 40%, #7b61ff 100%); }
.clip-thumb--3 { background: linear-gradient(160deg, #0a150a 0%, #0d2d10 40%, #00cc66 100%); }
.clip-thumb--4 { background: linear-gradient(160deg, #1a110a 0%, #2d1f0d 40%, #ff8833 100%); }
.clip-thumb--5 { background: linear-gradient(160deg, #150a1a 0%, #200d2d 40%, #cc33ff 100%); }
.clip-thumb--6 { background: linear-gradient(160deg, #0a141a 0%, #0d232d 40%, #33aaff 100%); }

.clip-thumb::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}

.clip-info {
  padding: 10px 10px 12px;
}

.clip-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.clip-stats {
  font-size: 0.68rem;
  color: var(--accent);
  font-family: var(--font-display);
}

.portfolio-cta {
  margin-top: 56px;
  text-align: center;
}

.portfolio-cta p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

/* ---- CONTACT ---- */
.contact {
  padding: 120px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-lede {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promise {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--fg-muted);
}

.promise-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238888a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(136, 136, 160, 0.5);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 51, 102, 0.4);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

.submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 24px var(--accent-glow);
  width: 100%;
}

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

.submit-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.form-success {
  background: rgba(0, 204, 102, 0.1);
  border: 1px solid rgba(0, 204, 102, 0.25);
  border-radius: 10px;
  padding: 20px;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #00cc66;
  text-align: center;
  justify-content: center;
}

.success-icon {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-error {
  background: rgba(255, 51, 102, 0.1);
  border: 1px solid rgba(255, 51, 102, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--accent);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .process,
  .who,
  .closing {
    padding: 72px 20px;
  }

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

  .pricing-card--featured {
    order: -1;
  }

  .portfolio-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-arrow {
    transform: rotate(90deg);
    align-self: center;
    justify-self: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .pricing,
  .portfolio,
  .contact {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-tags {
    gap: 8px;
  }

  .tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .clips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clips-grid .clip:last-child {
    display: none;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .hero {
    padding-top: 88px;
  }
}