:root {
  --pmf-bg: #0a0a0a;
  --pmf-panel: #141414;
  --pmf-panel-2: #1a1a1a;
  --pmf-border: #2a2a2a;
  --pmf-text: #f5f5f0;
  --pmf-muted: #c0c0c0;
  --pmf-soft: #888;
  --pmf-accent: #c8ff00;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pmf-bg);
  color: var(--pmf-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  margin: 0;
}

::selection {
  background: var(--pmf-accent);
  color: var(--pmf-bg);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

.mt-3 {
  margin-top: 12px;
}

.mb-2 {
  margin-bottom: 8px;
}

.justify-center {
  justify-content: center;
}

.text-title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 850;
}

.text-body {
  font-size: 16px;
  line-height: 1.65;
}

.pmf-muted-text {
  color: var(--pmf-muted);
}

.pmf-shell {
  min-height: 100vh;
  color: var(--pmf-text);
}

.pmf-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.pmf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--pmf-border);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
}

.pmf-nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pmf-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pmf-text);
}

.pmf-logo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}

.pmf-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pmf-links a {
  color: var(--pmf-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.pmf-links a:hover {
  color: var(--pmf-text);
}

.pmf-mobile-links {
  display: none;
}

.pmf-hero {
  padding: 88px 0 72px;
}

.pmf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 48px;
  align-items: center;
}

.pmf-kicker {
  color: var(--pmf-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.pmf-h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 900;
  max-width: 760px;
}

.pmf-h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.pmf-lead {
  margin-top: 24px;
  color: var(--pmf-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  max-width: 680px;
}

.pmf-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.pmf-button,
.pmf-button-secondary {
  min-height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pmf-button {
  background: var(--pmf-accent);
  color: var(--pmf-bg);
}

.pmf-button-secondary {
  border: 1px solid var(--pmf-border);
  color: var(--pmf-text);
  background: transparent;
}

.pmf-button:hover,
.pmf-button-secondary:hover {
  transform: translateY(-1px);
}

.pmf-button:hover {
  background: #a8d900;
}

.pmf-button-secondary:hover {
  background: var(--pmf-text);
  color: var(--pmf-bg);
}

.pmf-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pmf-badge {
  border: 1px solid var(--pmf-border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--pmf-muted);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.02);
}

.pmf-hero-card {
  border: 1px solid var(--pmf-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.pmf-hero-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  background: #0f0f0f;
}

.pmf-card-caption {
  padding: 16px 18px 18px;
  color: var(--pmf-muted);
  font-size: 14px;
}

.pmf-section {
  padding: 72px 0;
  border-top: 1px solid var(--pmf-border);
}

.pmf-section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.pmf-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.pmf-card {
  border: 1px solid var(--pmf-border);
  background: var(--pmf-panel);
  border-radius: 18px;
  padding: 22px;
}

.pmf-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pmf-card p,
.pmf-card li {
  color: var(--pmf-muted);
  line-height: 1.62;
}

.pmf-card ul {
  list-style: disc;
  padding-left: 20px;
}

.pmf-step-number {
  color: var(--pmf-accent);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 18px;
}

.pmf-example {
  overflow: hidden;
  padding: 0;
}

.pmf-example img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pmf-example div {
  padding: 18px;
}

.pmf-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pmf-photo-card {
  border: 1px solid var(--pmf-border);
  background: var(--pmf-panel);
  border-radius: 18px;
  overflow: hidden;
}

.pmf-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.pmf-photo-card div {
  padding: 18px;
}

.pmf-faq details {
  border-top: 1px solid var(--pmf-border);
  padding: 20px 0;
}

.pmf-faq summary {
  cursor: pointer;
  color: var(--pmf-text);
  font-weight: 760;
  font-size: 18px;
}

.pmf-faq p {
  margin-top: 10px;
  color: var(--pmf-muted);
  line-height: 1.62;
}

.pmf-footer {
  border-top: 1px solid var(--pmf-border);
  padding: 40px 0;
  color: var(--pmf-soft);
}

.pmf-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pmf-footer a {
  color: var(--pmf-muted);
}

.pmf-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pmf-copy {
  max-width: 760px;
  color: var(--pmf-muted);
  line-height: 1.72;
  font-size: 17px;
}

.pmf-copy h2 {
  color: var(--pmf-text);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 850;
  margin: 32px 0 12px;
}

.pmf-copy p,
.pmf-copy ul {
  margin: 0 0 16px;
}

.pmf-copy ul {
  list-style: disc;
  padding-left: 24px;
}

@media (max-width: 860px) {
  .pmf-links {
    display: none;
  }

  .pmf-mobile-links {
    display: inline-flex;
  }

  .pmf-hero {
    padding-top: 56px;
  }

  .pmf-hero-grid,
  .pmf-grid-3,
  .pmf-grid-2,
  .pmf-photo-grid {
    grid-template-columns: 1fr;
  }

  .pmf-h1 {
    font-size: clamp(44px, 14vw, 72px);
  }
}
