:root {
  --bg: #0D0D0F;
  --bg-2: #141418;
  --fg: #F2F0EB;
  --fg-muted: #8A8A8A;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(242, 240, 235, 0.08);
  --card: #141418;
  --card-hover: #1A1A1F;
  --radius: 8px;
  --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;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 7px 16px;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 6px;
  transition: background 0.15s ease, border-color 0.15s ease;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  min-width: 100px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Phone Frame */
.hero-right {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 220px;
  background: #1C1C22;
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #0D0D0F;
  border-radius: 16px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #111;
  border-radius: 24px;
  aspect-ratio: 9/16;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
}
.play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.video-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
}
.phone-caption {
  text-align: center;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Proof section */
.proof {
  padding: 60px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 32px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.proof-item {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.proof-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 400;
}
.proof-source {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Section shared */
.section-header { margin-bottom: 48px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Niche grid */
.niches {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.niche-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.niche-card:hover {
  background: var(--card-hover);
  border-color: rgba(245, 166, 35, 0.2);
}
.niche-icon { margin-bottom: 16px; }
.niche-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.niche-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Process */
.process {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.process .section-header { max-width: 1200px; margin: 0 auto 48px; }
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  background: var(--bg-2);
  padding: 32px 28px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Pricing */
.pricing {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 40px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0D0D0F;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.per { font-size: 18px; font-weight: 400; color: var(--fg-muted); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}
.pricing-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}
.pricing-cta {
  text-align: center;
  font-size: 16px;
  color: var(--fg-muted);
}
.pricing-cta strong { color: var(--accent); font-weight: 600; }

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 720px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--fg);
  font-style: normal;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

/* Portfolio section */
.portfolio {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-inner { }
.portfolio-eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.portfolio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.portfolio-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-2px);
}
.portfolio-card[data-niche] { }
.video-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141418;
}
.placeholder-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--fg-muted);
  font-size: 13px;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.video-thumb:hover .play-overlay { opacity: 1; }
.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  backdrop-filter: blur(4px);
}
.play-label {
  font-size: 12px;
  color: var(--fg);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.niche-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 13, 15, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.portfolio-card-meta {
  padding: 16px 18px;
}
.portfolio-card-meta h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.portfolio-card-meta p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.portfolio-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* Video modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal[aria-hidden="false"] { display: flex; }
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--fg);
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-content {
  width: 100%;
  max-width: 480px;
  position: relative;
}
#modal-video {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  background: #111;
  display: block;
}
.modal-note {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* Contact / inquiry section */
.contact-section {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.positioning-block { }
.positioning-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.positioning-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.positioning-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.positioning-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.positioning-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.form-block { }
.form-header { margin-bottom: 32px; }
.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.form-sub {
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 300;
}
.inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.optional { font-weight: 400; opacity: 0.6; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-muted); opacity: 0.5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--card-hover);
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8A8A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  background: var(--accent);
  color: #0D0D0F;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease, opacity 0.15s ease;
  letter-spacing: 0.01em;
}
.btn-submit:hover { background: #e8981a; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-loading { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: flex; align-items: center; gap: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin 0.8s linear infinite; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.form-error {
  font-size: 13px;
  color: #e05555;
  background: rgba(224,85,85,0.1);
  border: 1px solid rgba(224,85,85,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.footer-links {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .nav-cta { display: none; }
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 48px;
  }
  .hero-right { order: -1; }
  .phone-frame { width: 160px; }
  .hero-headline { font-size: 36px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .stat { flex-direction: column; gap: 4px; }
  .proof { padding: 48px 24px; }
  .proof-grid { grid-template-columns: 1fr; gap: 12px; }
  .niches { padding: 60px 24px; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .process { padding: 60px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
}
@media (max-width: 768px) {
  .portfolio { padding: 60px 24px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { padding: 60px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .niche-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}