/* MakerFlow marketing site */

:root {
  --bg: #0c1118;
  --bg-elevated: #141c27;
  --surface: #1e2a3a;
  --surface-2: #243447;
  --border: #334155;
  --text: #eef2f7;
  --text-muted: #94a3b8;
  --primary: #3b82f6;
  --primary-soft: rgba(59, 130, 246, 0.15);
  --accent: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --link: #67e8f9;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(12, 17, 24, 0.82);
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}

.logo-word {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.logo-maker {
  color: var(--text);
  font-weight: 700;
}

.logo-flow {
  font-weight: 800;
  background: linear-gradient(120deg, #60a5fa 0%, #34d399 55%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a.active {
  color: var(--text);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: white;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: var(--surface);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #059669);
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Hero */

.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(16, 185, 129, 0.12), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, #93c5fd, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 34ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-price strong {
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-price em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 8px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-bullets li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* App mockup frames */

.app-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.app-frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.app-frame-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}

.app-frame-bar span:nth-child(1) { background: #ef4444; }
.app-frame-bar span:nth-child(2) { background: #f59e0b; }
.app-frame-bar span:nth-child(3) { background: #10b981; }

.app-frame-title {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.app-mock {
  display: flex;
  min-height: 380px;
  font-size: 0.72rem;
}

.mock-sidebar {
  width: 148px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 14px 8px;
}

.mock-logo {
  padding: 4px 10px 14px;
  font-size: 0.85rem;
  letter-spacing: -0.04em;
}

.mock-logo-maker {
  color: var(--text);
  font-weight: 700;
}

.mock-logo-flow {
  background: linear-gradient(120deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.mock-nav-item.active {
  background: rgba(59, 130, 246, 0.15);
  color: var(--text);
}

.mock-main {
  flex: 1;
  padding: 16px 18px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.mock-page-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.mock-search {
  width: 100%;
  max-width: 220px;
  padding: 7px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.7rem;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mock-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}

.mock-stat-label {
  color: var(--text-muted);
  font-size: 0.62rem;
  margin-bottom: 4px;
}

.mock-stat-value {
  font-weight: 700;
  font-size: 0.95rem;
}

.mock-stat-value.green { color: var(--accent); }
.mock-stat-value.amber { color: var(--warning); }

.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.68rem;
}

.mock-table th {
  text-align: left;
  color: var(--text-muted);
  font-weight: 500;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}

.mock-table td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.mock-table tr:last-child td {
  border-bottom: none;
}

.mock-table-head,
.mock-table-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px 10px;
  font-size: 0.68rem;
}

.mock-table-head {
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mock-table-row {
  border-bottom: 1px solid rgba(51, 65, 85, 0.4);
}

.mock-table-row:last-child {
  border-bottom: none;
}

.mock-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #6ee7b7;
  font-size: 0.62rem;
  font-weight: 600;
}

.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-btn {
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
}

.mock-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 6px;
}

.mock-stepper button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: default;
}

.mock-assembly {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
}

.mock-assembly h4 {
  font-size: 0.75rem;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
}

.mock-row:first-of-type {
  border-top: none;
}

.mock-pdf {
  background: white;
  color: #1a1a1a;
  border-radius: 6px;
  padding: 14px;
  font-size: 0.62rem;
  line-height: 1.4;
}

.mock-pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.mock-pdf-header strong {
  color: var(--accent);
  font-size: 0.75rem;
}

.mock-pdf-line {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}

/* Sections */

.section {
  padding: 88px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(30, 42, 58, 0.35), transparent);
  border-block: 1px solid rgba(51, 65, 85, 0.35);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  background: var(--primary-soft);
}

.feature-card:nth-child(2) .feature-icon { background: var(--accent-soft); }
.feature-card:nth-child(3) .feature-icon { background: rgba(139, 92, 246, 0.15); }
.feature-card:nth-child(4) .feature-icon { background: rgba(245, 158, 11, 0.12); }
.feature-card:nth-child(5) .feature-icon { background: rgba(103, 232, 249, 0.1); }
.feature-card:nth-child(6) .feature-icon { background: rgba(239, 68, 68, 0.1); }

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Showcase rows */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.showcase:last-child {
  margin-bottom: 0;
}

.showcase.reverse {
  direction: rtl;
}

.showcase.reverse > * {
  direction: ltr;
}

.showcase-copy h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.showcase-copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.showcase-list {
  list-style: none;
}

.showcase-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-grid .pricing-card {
  max-width: none;
  margin: 0;
  height: 100%;
}

.pricing-card-pro {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
}

.pricing-card .price-period {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 16px 0 6px;
}

.pricing-card .price-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paypal-button-mount {
  min-height: 0;
  margin-top: 4px;
}

.paypal-button-mount:empty {
  display: none;
}

.checkout-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.paypal-setup-note {
  max-width: 640px;
  margin: 48px auto 0;
  padding: 20px 24px;
  background: color-mix(in srgb, var(--bg-elevated) 90%, var(--warning));
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.paypal-setup-note.hidden {
  display: none;
}

.paypal-fallback {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.pricing-actions .btn[data-buy] {
  width: 100%;
}

/* FAQ */

.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 28ch;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 10px;
  opacity: 0.85;
  transition: opacity 0.15s, color 0.15s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--link);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Legal pages */

.legal-page {
  padding: 48px 0 80px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-page .updated {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--link);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* Inner pages */

.page-hero {
  padding: 72px 0 48px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: -20% 0 auto;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12), transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.page-content {
  padding-bottom: 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.about-block h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.about-block p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

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

.who-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.who-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.who-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.who-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 56px;
}

.cta-banner h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.home-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-teaser-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.home-teaser-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.home-teaser-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.home-teaser-card a {
  color: var(--link);
  font-size: 0.9rem;
  font-weight: 600;
}

.download-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
}

.download-box .btn {
  margin: 8px 0 20px;
}

.req-list {
  list-style: none;
  text-align: left;
  margin-top: 24px;
}

.req-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.req-list li strong {
  color: var(--text);
  font-weight: 500;
}

.steps-list {
  max-width: 640px;
  margin: 40px auto 0;
  counter-reset: step;
  list-style: none;
}

.steps-list li {
  position: relative;
  padding-left: 52px;
  margin-bottom: 28px;
  color: var(--text-muted);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--primary);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.steps-list li strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Animations */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.pro-upgrade-card {
  max-width: 520px;
  margin: 40px auto;
  text-align: center;
  padding: 32px;
}

/* Coming soon pricing */

.pricing-card-soon {
  opacity: 0.92;
}

.pricing-card-soon .pricing-features,
.pricing-card-soon .price-note {
  opacity: 0.85;
}

.coming-soon-ribbon {
  position: absolute;
  top: 18px;
  right: -38px;
  transform: rotate(45deg);
  background: var(--warning);
  color: #1a1200;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.price-soon-wrap {
  position: relative;
  display: inline-block;
}

.price-muted {
  color: var(--text-muted);
  opacity: 0.55;
  filter: grayscale(0.4);
}

.pricing-card-soon .price-soon-wrap::after {
  content: '';
  position: absolute;
  inset: 45% -8px auto;
  height: 2px;
  background: var(--text-muted);
  transform: rotate(-8deg);
  opacity: 0.6;
}

/* Screenshots page */

.screenshot-gallery {
  display: grid;
  gap: 48px;
}

.screenshot-block h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.screenshot-block > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  max-width: 640px;
}

.app-mock-compact {
  min-height: 220px;
}

.mock-main-full {
  width: 100%;
}

.mock-sidebar-narrow {
  width: 140px;
  min-width: 140px;
}

.mock-stats-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mock-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--link);
  vertical-align: middle;
}

.mock-tier {
  font-size: 0.55rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--text-muted);
  margin-left: 4px;
}

/* PDF previews */

.pdf-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.pdf-preview h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.pdf-page {
  background: #fff;
  color: #1a1a1a;
  border-radius: 8px;
  padding: 24px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  font-size: 0.78rem;
  line-height: 1.45;
}

.pdf-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid #10b981;
  margin-bottom: 12px;
}

.pdf-page-header strong {
  font-size: 0.95rem;
}

.pdf-page-header span,
.pdf-meta {
  color: #64748b;
  font-size: 0.72rem;
}

.pdf-meta {
  margin-bottom: 12px;
}

.pdf-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

.pdf-table th,
.pdf-table td {
  text-align: left;
  padding: 6px 8px;
  border-bottom: 1px solid #e2e8f0;
}

.pdf-table th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.pdf-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 2px solid #1e293b;
  margin-top: 8px;
}

.pdf-total strong {
  font-size: 1rem;
}

.pdf-foot {
  margin-top: 12px;
  font-size: 0.68rem;
  color: #94a3b8;
}

/* Download notices */

.notice {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}

.notice-warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fcd34d;
}

.notice-info {
  background: var(--primary-soft);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: var(--text);
}

.download-version {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.download-filename {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.download-help {
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.download-help a {
  color: var(--link);
}

.hero-price em {
  font-style: normal;
  color: var(--warning);
  font-size: 0.88em;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid,
  .showcase,
  .feature-grid,
  .about-grid,
  .who-grid,
  .home-teaser {
    grid-template-columns: 1fr;
  }

  .showcase.reverse {
    direction: ltr;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero {
    padding-top: 56px;
  }

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

  .mock-stats,
  .mock-stats-4 {
    grid-template-columns: 1fr 1fr;
  }

  .pdf-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

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

  .app-mock {
    min-height: 320px;
  }

  .mock-sidebar {
    width: 110px;
  }

  .mock-nav-item span:last-child {
    display: none;
  }
}
