/* Formosus — production stylesheet
   Source of truth: /Formosus Web Design/formosus-web.css
   Corrections applied:
     1. Hero overlay opacity 0.72 → 0.30
     2. Hero height 900px → 100vh
     3. Showcase grid: first-row thumbs taller (aspect-ratio 4/3 vs 16/9)
   Mobile overrides: converted from .fw-mobile classes to @media queries.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

/* ===== Tokens ===== */
:root {
  --bg:        #F8F5EF;
  --alt:       #F0EBE2;
  --gold:      #C49A2A;
  --gold-deep: #B08A22;
  --text:      #1C1A16;
  --muted:     #7A7060;
  --border:    #DED8CC;
  --error:     #C0442A;
  --white:     #FFFFFF;
  --ink:       #1C1A16;
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  font-weight: 400;
}

button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ===== Header ===== */
.fw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fw-wordmark {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.fw-nav {
  display: flex;
  gap: 32px;
}

.fw-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 120ms ease;
}

.fw-nav a:hover { color: var(--gold); }

/* ===== About ===== */
.fw-about {
  background: var(--alt);
  padding: 100px 48px;
}

.fw-about-inner {
  max-width: 860px;
  margin: 0 auto;
}

.fw-about-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
}

.fw-about-head .fw-h-sub {
  max-width: 540px;
}

.fw-oss-table {
  border-top: 0.5px solid var(--border);
}

.fw-oss-row {
  display: grid;
  grid-template-columns: 160px 100px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border);
}

.fw-oss-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.fw-oss-license {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.fw-oss-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
}

.fw-oss-desc a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
  transition: text-decoration-color 120ms ease, color 120ms ease;
}

.fw-oss-desc a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

@media (max-width: 600px) {
  .fw-oss-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ===== Footer ===== */
.fw-footer { background: var(--ink); }

.fw-footer-top {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fw-footer-brand .fw-wordmark { color: var(--gold); }

.fw-footer-tag {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.fw-footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
}

.fw-footer-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
  margin-bottom: 8px;
}

.fw-footer-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.fw-footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 120ms ease;
}

.fw-footer-links a:hover { color: var(--gold); }

.fw-footer-rule {
  height: 0.5px;
  background: var(--border);
  opacity: 0.2;
}

.fw-footer-bot {
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.fw-footer-bot span {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  opacity: 0.5;
}

/* ===== Section labels & headings ===== */
.fw-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.fw-h1 {
  font-size: 44px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
  text-align: center;
  text-wrap: balance;
}

.fw-h-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.fw-btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  height: 52px;
  padding: 0 32px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  line-height: 52px;
  transition: background 120ms ease, transform 80ms ease;
  white-space: nowrap;
}
.fw-btn-primary:hover { background: var(--gold-deep); }
.fw-btn-primary:active { transform: scale(0.98); }

.fw-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  border: 0.5px solid var(--border);
  background: transparent;
  color: var(--bg);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}
.fw-btn-download:hover { border-color: var(--gold); color: var(--gold); }
.fw-btn-download:hover svg { color: var(--gold); }
.fw-btn-download svg {
  width: 18px;
  height: 18px;
  color: var(--bg);
  flex-shrink: 0;
  transition: color 150ms ease;
}

/* ===== Hero ===== */
/* CORRECTION 2: height 100vh (was 900px) */
.fw-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}

.fw-hero-video {
  position: absolute;
  inset: 0;
}

.fw-hero-video video {
  object-position: center center;
}

/* Directional gradient — readable top-left, clear center/right for video */
.fw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(248,245,239,0.72) 0%, rgba(248,245,239,0.18) 55%, rgba(248,245,239,0.0) 100%);
}

.fw-hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 72px 72px 0;
  max-width: 640px;
}

.fw-hero-wm {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.fw-hero-tagline {
  margin-top: 24px;
  font-size: 72px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
  text-align: left;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  text-wrap: balance;
}

.fw-hero-sub {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  text-align: left;
  line-height: 1.6;
  max-width: 420px;
}

.fw-hero-cta-group {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fw-hero-fine {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-weight: 400;
}

.fw-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.fw-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  opacity: 0.35;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.fw-scroll-chev {
  color: var(--gold);
  opacity: 0.35;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.12); }
}

/* ===== How it works ===== */
.fw-how { background: var(--bg); padding: 120px 48px; }
.fw-how-inner { max-width: 1080px; margin: 0 auto; }

.fw-how-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fw-how-head .fw-h1 { max-width: 600px; }

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

.fw-step-num {
  font-size: 52px;
  font-weight: 500;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.fw-step-rule {
  margin-top: 18px;
  height: 0.5px;
  background: var(--border);
  width: 100%;
}

.fw-step-title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.fw-step-desc {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.75;
}

/* ===== Showcase ===== */
.fw-showcase { background: var(--alt); padding: 120px 48px; }
.fw-showcase-inner { max-width: 1200px; margin: 0 auto; }

.fw-showcase-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.fw-showcase-head .fw-h1 {
  margin-top: 16px;
  max-width: 580px;
}

.fw-showcase-head .fw-h-sub { margin-top: 14px; }

.fw-showcase-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fw-thumb {
  border-radius: 12px;
  border: 0.5px solid var(--border);
  overflow: hidden;
  position: relative;
}

.fw-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

/* CORRECTION 3: first row taller (aspect-ratio 4/3 vs 16/9) */
.fw-showcase-grid .fw-thumb:nth-child(-n+3) {
  aspect-ratio: 4 / 3;
}

.fw-showcase-grid .fw-thumb:nth-child(n+4) {
  aspect-ratio: 16 / 9;
}

.fw-showcase-caption {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ===== Philosophy ===== */
.fw-philosophy { background: var(--bg); padding: 160px 48px; }

.fw-philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fw-quote {
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  text-align: center;
  margin: 0;
  text-wrap: pretty;
}

.fw-quote .accent { font-weight: 500; color: var(--gold); }

.fw-philosophy-rule {
  margin-top: 56px;
  width: 100px;
  height: 0.5px;
  background: var(--border);
}

.fw-philosophy-wm {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== Pricing ===== */
.fw-pricing { background: var(--alt); padding: 120px 48px; }
.fw-pricing-inner { max-width: 1080px; margin: 0 auto; }

.fw-pricing-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fw-pricing-head .fw-h1 { margin-top: 16px; }
.fw-pricing-head .fw-h-sub { margin-top: 16px; max-width: 480px; }

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

.fw-card-wrap { position: relative; padding-top: 40px; }

.fw-pop-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.fw-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}

.fw-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.fw-card-credits {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
}

.fw-card-price {
  margin-top: 28px;
  font-size: 52px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
}

.fw-card-rule {
  margin-top: 28px;
  height: 0.5px;
  background: var(--border);
}

.fw-card-features {
  margin-top: 24px;
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.fw-card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 2;
}

.fw-bullet {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 4px;
}


.fw-pricing-caption {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ===== Download (dark) ===== */
/* ── Free wallpapers ─────────────────────────────────────── */
.fw-free {
  background: var(--bg);
  padding: 120px 48px;
}

.fw-free-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.fw-free-h {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.fw-free-sub {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
}

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

.fw-free-thumb {
  border-radius: 12px;
  border: 0.5px solid var(--border);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}

.fw-free-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.fw-free-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Download ────────────────────────────────────────────── */
.fw-download {
  background: var(--ink);
  padding: 160px 48px;
}

.fw-download-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.fw-download-wm {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.fw-download-h {
  margin-top: 36px;
  font-size: 56px;
  font-weight: 500;
  color: var(--bg);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.fw-download-sub {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
}

.fw-download-row {
  margin-top: 52px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.fw-download-req {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  opacity: 0.55;
}

/* ===== Secondary pages (Privacy, Terms, Contact) ===== */
.fw-doc {
  background: var(--bg);
  padding: 80px 48px;
}

.fw-doc-inner {
  max-width: 680px;
  margin: 0 auto;
}

.fw-breadcrumb {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  padding-top: 24px;
}

.fw-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.fw-breadcrumb a:hover { color: var(--gold); }

.fw-doc-title {
  margin-top: 48px;
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.fw-doc-rule {
  margin-top: 24px;
  height: 0.5px;
  background: var(--border);
}

.fw-doc-body {
  margin-top: 32px;
}

.fw-doc-body p {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 24px 0;
}

.fw-doc-body p:last-child { margin-bottom: 0; }

.fw-doc-body h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin: 32px 0 12px 0;
  letter-spacing: 0.01em;
}

.fw-contact-line {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.85;
}

.fw-contact-email {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
}

.fw-contact-note {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
}

.fw-contact-divider {
  margin: 40px 0;
  height: 0.5px;
  background: var(--border);
}

/* ===== Cinematic gradient wallpapers ===== */
.fw-wp { width: 100%; height: 100%; position: absolute; inset: 0; }

.fw-wp.aqueduct {
  background:
    radial-gradient(120% 70% at 50% 110%, rgba(28,22,16,0.55), transparent 60%),
    radial-gradient(60% 50% at 70% 30%, #E8B266 0%, #C57A3A 40%, transparent 70%),
    linear-gradient(180deg, #2C2018 0%, #6A3F22 45%, #C57A3A 75%, #F2C485 100%);
}

.fw-wp.marble {
  background:
    radial-gradient(80% 60% at 30% 30%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(60% 50% at 80% 80%, rgba(40,30,20,0.35), transparent 70%),
    linear-gradient(135deg, #EFE6D2 0%, #D2B373 50%, #8C6A2F 100%);
}

.fw-wp.forest {
  background:
    radial-gradient(70% 50% at 50% 30%, rgba(196,154,42,0.35), transparent 70%),
    radial-gradient(90% 70% at 50% 100%, rgba(10,12,8,0.7), transparent 60%),
    linear-gradient(180deg, #0F2A1A 0%, #1F4A30 50%, #4E7038 100%);
}

.fw-wp.dunes {
  background:
    radial-gradient(80% 60% at 50% 110%, rgba(40,28,18,0.6), transparent 60%),
    radial-gradient(50% 40% at 70% 25%, #F5D08C 0%, transparent 70%),
    linear-gradient(180deg, #6B3A1E 0%, #B36A30 40%, #E5B26A 100%);
}

.fw-wp.sea {
  background:
    radial-gradient(70% 50% at 30% 30%, rgba(255,235,195,0.45), transparent 70%),
    radial-gradient(100% 70% at 50% 110%, rgba(10,18,22,0.7), transparent 60%),
    linear-gradient(180deg, #1A2C30 0%, #3C5A5E 50%, #B89A6A 100%);
}

.fw-wp.storm {
  background:
    radial-gradient(60% 40% at 50% 40%, rgba(220,180,90,0.4), transparent 70%),
    radial-gradient(120% 80% at 50% 100%, rgba(10,8,6,0.7), transparent 60%),
    linear-gradient(180deg, #1A1612 0%, #3A2E22 50%, #6E5A3A 100%);
}

.fw-wp.temple {
  background:
    radial-gradient(70% 50% at 50% 60%, #C7995A 0%, transparent 60%),
    radial-gradient(90% 70% at 50% 100%, rgba(20,14,8,0.65), transparent 60%),
    linear-gradient(180deg, #2A1E14 0%, #5C3C1E 50%, #B07A36 100%);
}

.fw-wp.cinder {
  background:
    radial-gradient(80% 60% at 70% 30%, #E8C07A 0%, transparent 60%),
    radial-gradient(120% 80% at 30% 100%, rgba(50,20,10,0.75), transparent 60%),
    linear-gradient(135deg, #1C100A 0%, #4A2410 40%, #8E4E1E 80%, #D89048 100%);
}

.fw-wp.olive {
  background:
    radial-gradient(60% 40% at 30% 30%, rgba(220,200,140,0.4), transparent 70%),
    radial-gradient(100% 70% at 50% 100%, rgba(20,18,10,0.55), transparent 60%),
    linear-gradient(180deg, #2C3018 0%, #555830 50%, #9C9560 100%);
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .fw-how-grid { grid-template-columns: 1fr; gap: 40px; }
  .fw-pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .fw-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .fw-showcase-grid .fw-thumb:nth-child(-n+2) { aspect-ratio: 4 / 3; }
  .fw-showcase-grid .fw-thumb:nth-child(n+3)  { aspect-ratio: 16 / 9; }
  .fw-free-grid { grid-template-columns: 1fr; gap: 14px; }
  .fw-h1 { font-size: 34px; }
  .fw-hero-tagline { font-size: 52px; }
}

@media (max-width: 600px) {
  .fw-header { padding: 0 20px; height: 56px; }
  .fw-nav { gap: 18px; }
  .fw-nav a { font-size: 12px; }

  .fw-hero { min-height: 700px; }
  .fw-hero-video video { object-position: 70% center; }
  .fw-hero-content { padding: 40px 24px 0; max-width: 100%; }
  .fw-hero-tagline { font-size: 40px; margin-top: 20px; }
  .fw-hero-sub { font-size: 15px; margin-top: 20px; max-width: 300px; line-height: 1.55; }
  .fw-hero-cta-group { margin-top: 36px; }
  .fw-btn-primary { font-size: 15px; height: 48px; padding: 0 24px; line-height: 48px; }
  .fw-hero-fine { margin-top: 12px; font-size: 11px; }

  .fw-how { padding: 80px 24px; }
  .fw-showcase { padding: 80px 24px; }
  .fw-showcase-grid { grid-template-columns: 1fr; gap: 12px; }
  .fw-showcase-grid .fw-thumb { aspect-ratio: 16 / 9 !important; }
  .fw-philosophy { padding: 100px 24px; }
  .fw-quote { font-size: 22px; }
  .fw-pricing { padding: 72px 24px; }
  .fw-pricing-head .fw-h1 { font-size: 30px; }
  .fw-pricing-head .fw-h-sub { font-size: 14px; }
  .fw-card-wrap { padding-top: 32px; }
  .fw-card { padding: 32px 28px; }
  .fw-card-credits { font-size: 22px; margin-top: 14px; }
  .fw-card-price { font-size: 42px; margin-top: 22px; }
  .fw-download { padding: 100px 24px; }
  .fw-download-h { font-size: 40px; }
  .fw-download-row { flex-direction: column; align-items: center; }

  .fw-footer-top {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 24px;
  }
  .fw-footer-right { text-align: left; }
  .fw-footer-links { justify-content: flex-start; }
  .fw-footer-bot {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 24px;
  }

  .fw-doc { padding: 48px 24px; }
  .fw-doc-title { font-size: 28px; }
}

/* ===== Coming-soon modal ===== */
.fw-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.fw-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.fw-modal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 440px;
  width: calc(100% - 48px);
  text-align: center;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.22s ease;
}
.fw-modal-backdrop.is-open .fw-modal {
  transform: translateY(0) scale(1);
}
.fw-modal-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}
.fw-modal-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.fw-modal-body {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.55;
}
.fw-modal-close {
  display: inline-block;
  padding: 10px 28px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.fw-modal-close:hover { background: var(--gold-deep); }
