:root {
  --bg: #0e0e0e;
  --bg-alt: #161616;
  --fg: #f0ede8;
  --fg-muted: #888;
  --accent: #ff5c2e;
  --accent-glow: rgba(255, 92, 46, 0.18);
  --card: #1c1c1c;
  --border: #2a2a2a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 96px 48px 80px;
  min-height: 580px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: #aaa;
  max-width: 440px;
  line-height: 1.65;
  font-weight: 300;
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-mock {
  width: 220px;
  background: #111;
  border-radius: 32px;
  border: 1.5px solid #333;
  padding: 12px;
  box-shadow: 0 0 80px var(--accent-glow), 0 40px 80px rgba(0,0,0,0.6);
  position: relative;
}
.phone-notch {
  width: 70px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}
.video-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
}
.video-thumb {
  height: 140px;
  background: linear-gradient(135deg, #2a1a3a 0%, #1a2a3a 50%, #2a2a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
  position: relative;
}
.play-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.video-meta {
  padding: 12px;
}
.username {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}
.caption {
  display: block;
  font-size: 11px;
  color: #888;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-stats {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: #666;
}

/* MANIFESTO */
.manifesto {
  padding: 72px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-inner h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.2;
}
.manifesto-inner p {
  font-size: 17px;
  color: #888;
  line-height: 1.7;
  font-weight: 300;
}

/* OUTPUT / FEATURES */
.output {
  padding: 80px 48px;
}
.output-header {
  margin-bottom: 48px;
}
.output-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.output-header p {
  color: var(--fg-muted);
  font-size: 15px;
}
.output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.output-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}
.output-card:hover {
  border-color: var(--accent);
}
.output-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.output-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.output-card p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
}

/* PRICING */
.pricing {
  padding: 80px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.pricing-header {
  margin-bottom: 48px;
  text-align: center;
}
.pricing-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pricing-header p {
  color: var(--fg-muted);
  font-size: 15px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}
.pricing-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1;
}
.pricing-amount span {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 13px;
  color: #aaa;
  padding-left: 16px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #111 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.closing-body {
  font-size: 17px;
  color: #888;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.footer-sub {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.footer-copy {
  font-size: 11px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px 40px; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 36px; }
  .output-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .manifesto { padding: 48px 24px; }
  .output { padding: 48px 24px; }
  .pricing { padding: 48px 24px; }
  .closing { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .output-grid { grid-template-columns: 1fr; }
}

/* ── PORTFOLIO ───────────────────────────────── */
.portfolio-hero {
  padding: 80px 48px 56px;
  border-bottom: 1px solid var(--border);
}
.portfolio-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.portfolio-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.05;
  letter-spacing: -1px;
}
.portfolio-hero p {
  font-size: 17px;
  color: #aaa;
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}

.portfolio-grid {
  padding: 64px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.sample-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.sample-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}
.sample-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.sample-body {
  padding: 16px 20px 20px;
}
.sample-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-glow);
  border: 1px solid rgba(255,92,46,0.3);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 8px;
}
.sample-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.sample-desc {
  font-size: 12.5px;
  color: #777;
  line-height: 1.5;
  font-weight: 300;
}
.sample-stats {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  font-size: 11px;
  color: #555;
}
.sample-stats span { display: flex; align-items: center; gap: 4px; }

.portfolio-cta {
  padding: 64px 48px 80px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}
.portfolio-cta h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.portfolio-cta p {
  color: #888;
  font-size: 15px;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.3px;
}
.btn-primary:hover { background: #e04d1e; transform: translateY(-1px); }

@media (max-width: 768px) {
  .portfolio-hero { padding: 60px 24px 40px; }
  .portfolio-grid { padding: 40px 24px; grid-template-columns: 1fr 1fr; gap: 20px; }
  .portfolio-cta { padding: 48px 24px 60px; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}