/* ═══════════════════════════════════════════════════════════════════════
   FRAMEWEL · LANDING PAGE
   Editorial hero · warm-cream hero-right · bento categories · stories · CTA · footer
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── PUBLIC SHELL height fix ─────────────────────────────────────────
   app.css sets .public-shell min-height:100vh and .public-main
   min-height:calc(100vh - 62px). Stacking both creates >100vh scroll.
   Override .public-main to auto so only the shell pins the floor.       */
.public-main { min-height: auto; }

/* ─── OTP PAGE SHELL ──────────────────────────────────────────────────
   Replaces the inline style: min-height:calc(100vh - 62px) on the OTP
   page wrapper. Uses --topnav-h token so a banner change only needs one
   CSS edit, not a Razor file change.                                     */
:root { --topnav-h: 62px; }
.otp-page-shell {
  min-height: calc(100vh - var(--topnav-h));
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

/* ─── MOBILE NAV HAMBURGER ────────────────────────────────────────────
   The hamburger button is hidden on desktop; shown only on <768px.
   The mobile drawer slides in below the topnav bar.                     */
.topnav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
  border-radius: var(--r);
  transition: background-color .15s;
}
.topnav-hamburger:hover { background: var(--surface); }
.topnav-hamburger .material-symbols-outlined { font-size: 24px; line-height: 1; display: block; }

.topnav-mobile-drawer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 12px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 199;
  box-shadow: 0 14px 24px -10px rgba(12, 17, 29, .14);
}
.topnav-mobile-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  border-radius: var(--r);
  transition: background-color .15s, color .15s;
}
.topnav-mobile-link:hover { background: var(--surface); color: var(--text); }
.topnav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .topnav-hamburger { display: flex; align-items: center; justify-content: center; }
}

.fw-landing-shell {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── WELCOME BANNER (returning users) ────────────────────────────────── */
.fw-welcome-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.fw-welcome-banner h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.fw-welcome-banner p  { font-size: 0.8rem; color: rgba(255, 255, 255, .8); }
.fw-welcome-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.fw-welcome-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  background: #fff;
  color: var(--primary);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.fw-welcome-banner-cta-secondary {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(8px);
}

/* ─── TOP NAV ─────────────────────────────────────────────────────────── */
.fw-top-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 62px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--border);
}
.fw-top-nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  gap: 16px;
}
.fw-brand-and-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.fw-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--primary);
  text-decoration: none;
}
.fw-brand svg { flex-shrink: 0; }

.fw-main-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fw-main-link {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color .15s, background-color .15s;
}
.fw-main-link:hover { color: var(--text); background: var(--surface); }
.fw-main-link-active { color: var(--primary); font-weight: 700; background: var(--primary-bg); }

.fw-nav-actions { display: flex; align-items: center; gap: 12px; }
.fw-nav-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fw-nav-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: background-color .15s, color .15s;
}
.fw-nav-icons a:hover { background: var(--surface); color: var(--text); }
.fw-nav-icons .material-symbols-outlined { font-size: 18px; }

.fw-pill-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--sh-brand);
  transition: transform .18s, box-shadow .18s, background-color .18s;
}
.fw-pill-button:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(145, 0, 60, .4);
}

/* ─── HERO ────────────────────────────────────────────────────────────── */
/* Editorial pinch: max-width container + asymmetric pull-to-center so
   the typography and the cream stage feel like one composition, not two
   halves stuck to opposite viewport edges. Pad scales with viewport. */
.fw-hero-section {
  min-height: calc(100vh - 62px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) clamp(36px, 5vw, 88px);
  position: relative;
  align-items: stretch;
}
.fw-hero-copy {
  padding: clamp(40px, 6vw, 72px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  justify-self: end;
}
.fw-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-bg);
  border: 1.5px solid rgba(145, 0, 60, .18);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  align-self: flex-start;
}
.fw-eyebrow-pill .material-symbols-outlined { font-size: 14px; }

.fw-hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fw-hero-accent { color: var(--primary); font-style: italic; }

.fw-hero-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: 28px;
}
.fw-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.fw-search-wrap {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 2px solid var(--text);
  border-radius: var(--r-pill);
  padding: 5px 5px 5px 18px;
  gap: 10px;
  box-shadow: var(--sh);
  max-width: 480px;
  flex: 1;
  min-width: 280px;
}
.fw-search-wrap .material-symbols-outlined {
  font-size: 18px;
  color: var(--text-3);
  flex-shrink: 0;
}
.fw-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: transparent;
}
.fw-search-wrap button {
  padding: 9px 22px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background-color .18s;
}
.fw-search-wrap button:hover { background: #1e2435; }
.fw-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background-color .18s;
}
.fw-primary-cta:hover { background: #1e2435; }

.fw-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.fw-avatar-group { display: flex; }
.fw-avatar-group img,
.fw-avatar-group .fw-trust-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}
.fw-avatar-group img:first-child,
.fw-avatar-group .fw-trust-av:first-child { margin-left: 0; }
.fw-trust-row p {
  font-size: 0.82rem;
  color: var(--text-3);
}
.fw-trust-row p strong { color: var(--text); font-weight: 700; }

/* hero right — warm cream panel with floating cards
   Rounded "stage" card; contained within the centered hero container.
   The decorative radial blobs (::before/::after) get clipped to the
   border-radius by the parent overflow:hidden.                       */
.fw-hero-stack-wrap {
  background: radial-gradient(circle at 80% 20%, #F8EFDF 0%, #FAF5EE 60%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  min-height: 600px;
  border-radius: 28px;
  border: 1px solid rgba(201, 169, 97, .22);
  box-shadow:
    0 30px 60px -25px rgba(61, 42, 31, .22),
    0 12px 24px -16px rgba(61, 42, 31, .14);
  align-self: center;
}
.fw-hero-stack-wrap::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, .10), transparent 70%);
  top: -120px; right: -100px;
  pointer-events: none;
}
.fw-hero-stack-wrap::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 0, 60, .06), transparent 70%);
  bottom: -100px; left: -80px;
  pointer-events: none;
}
.fw-stack-card {
  position: absolute;
  width: 200px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #EFE5D2;
  border: 1px solid #C9A961;
  box-shadow: 0 14px 36px -10px rgba(61, 42, 31, .18);
}
.fw-stack-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.fw-stack-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 42, 31, .35), transparent 55%);
  pointer-events: none;
}
.fw-stack-copy {
  position: relative;
  padding: 12px 14px;
  background: rgba(239, 229, 210, .94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}
.fw-stack-copy p {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(61, 42, 31, .65);
  margin: 0 0 2px;
}
.fw-stack-copy h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3D2A1F;
  margin: 0;
}
.fw-stack-card-primary   { top: 8%;  left: 8%;   z-index: 3; transform: rotate(-3deg); }
.fw-stack-card-secondary { top: 30%; right: 5%;  z-index: 2; transform: rotate(2.5deg); }
.fw-stack-card-tertiary  { top: 54%; left: 16%;  z-index: 1; transform: rotate(-1.5deg); }

.fw-floating-badge {
  position: absolute;
  bottom: 16%;
  right: 8%;
  z-index: 10;
  background: #FFFFFF;
  border: 1px solid #EFE5D2;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  box-shadow: 0 6px 16px rgba(61, 42, 31, .15);
  animation: float 3s ease-in-out infinite;
}
.fw-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 106, 98, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4ade80;
}
.fw-floating-badge p {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(61, 42, 31, .65);
  margin-bottom: 2px;
}
.fw-floating-badge h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3D2A1F;
  margin: 0;
}

/* ─── BENTO (categories) ──────────────────────────────────────────────── */
.fw-bento-section {
  padding: 80px 36px;
  max-width: 1260px;
  margin: 0 auto;
}
.fw-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.fw-section-head h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4px;
}
.fw-section-head p {
  font-size: 0.9rem;
  color: var(--text-3);
}
.fw-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s;
}
.fw-text-link:hover { background: var(--primary-bg); }
.fw-text-link .material-symbols-outlined { font-size: 14px; }

.fw-bento-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
}
.fw-bento-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.fw-bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}
.fw-bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fw-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 17, 29, .7), transparent 55%);
  z-index: 1;
}
.fw-bento-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  z-index: 2;
}
.fw-bento-copy h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.fw-bento-copy p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .8);
}
/* Card 0: featured — spans full left column, both rows */
.fw-bento-card-featured {
  grid-column: 1;
  grid-row: 1 / span 2;
}
/* Cards 1–4 fill the 2×2 right area naturally — no explicit placement needed */
.fw-bento-card-wide { grid-column: span 1; }

/* ─── STORIES ─────────────────────────────────────────────────────────── */
.fw-story-section {
  background: var(--surface);
  padding: 80px 36px;
}
.fw-story-head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 560px;
}
.fw-story-head h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.fw-story-head p {
  font-size: 0.95rem;
  color: var(--text-3);
}

.fw-story-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fw-story-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.fw-story-card-offset { transform: translateY(20px); }
.fw-story-card:hover { transform: translateY(16px); box-shadow: var(--sh); }
.fw-story-card-offset:hover { transform: translateY(16px); }
.fw-quote-mark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--primary);
  opacity: .35;
  margin-bottom: 18px;
}
.fw-story-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 22px;
}
.fw-story-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fw-story-person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.fw-story-person h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.fw-story-person p {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ─── VENDOR CTA NETWORK ──────────────────────────────────────────────── */
.fw-vendor-network {
  margin: 80px auto 100px;
  max-width: 1260px;
  width: calc(100% - 72px);
  padding: 56px 56px;
  background: var(--ink);
  border-radius: var(--r-2xl);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.fw-vendor-network::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 0, 60, .18), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.fw-vendor-network-content { position: relative; z-index: 1; }
.fw-vendor-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 14px;
}
.fw-vendor-network h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.fw-vendor-network-content > p {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 28px;
}
.fw-vendor-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.fw-vendor-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(184, 147, 90, .32);
  transition: transform .18s, box-shadow .18s;
}
.fw-vendor-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(184, 147, 90, .42); }
.fw-vendor-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .18);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.fw-vendor-secondary:hover { background: rgba(255, 255, 255, .14); }

.fw-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
  align-self: center;
}
.fw-metric-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fw-metric-value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1;
}
.fw-metric-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.fw-site-footer {
  background: var(--ink);
  padding: 56px 36px 32px;
  color: rgba(255, 255, 255, .7);
}
.fw-footer-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1.5px solid rgba(255, 255, 255, .07);
}
.fw-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, .95);
  text-decoration: none;
  margin-bottom: 12px;
}
.fw-footer-brand svg { flex-shrink: 0; }
.fw-footer-brand-col p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
  max-width: 320px;
  margin-bottom: 20px;
}
.fw-footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fw-footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: background-color .15s;
}
.fw-footer-socials a:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.fw-footer-socials .material-symbols-outlined { font-size: 18px; }

.fw-footer-column h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.fw-footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fw-footer-column a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .15s;
}
.fw-footer-column a:hover { color: #fff; }

.fw-footer-bottom {
  max-width: 1260px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .35);
}

/* ─── HOW IT WORKS (UX-8) ────────────────────────────────────────────── */
/* Assumed markup: <section class="fw-how-section"><div class="fw-how-grid">  */
/* <div class="fw-how-step"><span class="fw-how-num">…</span><h3>…</h3><p>…  */
.fw-how-section {
  padding: 80px 36px;
  background: var(--surface);
}
.fw-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1260px;
  margin: 0 auto;
}
.fw-how-step {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.fw-how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
}
.fw-how-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.fw-how-step-icon .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
}
.fw-how-num {
  display: inline-block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 6px;
}
.fw-how-num::before { content: "STEP "; }
.fw-how-step h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
}
.fw-how-step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-2);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fw-hero-section { grid-template-columns: 1fr; min-height: auto; gap: 24px; padding: 0; }
  .fw-hero-copy    { padding: 48px 32px; max-width: none; justify-self: stretch; width: auto; }
  .fw-hero-stack-wrap { min-height: 480px; padding: 24px; border-radius: 0; border: none; box-shadow: none; margin: 0 16px; }
  .fw-bento-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 180px; }
  .fw-bento-card-featured { grid-column: 1; grid-row: 1 / span 2; }
  .fw-story-grid   { grid-template-columns: 1fr; }
  .fw-story-card-offset { transform: none; }
  .fw-vendor-network { grid-template-columns: 1fr; padding: 36px 28px; }
  .fw-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .fw-top-nav-inner       { padding: 0 14px; gap: 8px; }
  .fw-main-links          { display: none; }
  .fw-brand-and-links     { gap: 12px; }
  .fw-nav-icons           { display: none; }
  .fw-nav-actions         { gap: 8px; }
  .fw-nav-actions .fw-nav-link,
  .fw-nav-actions a:not(.fw-pill-button) { display: none; }
  .fw-brand                { font-size: 1.1rem; }
  .fw-welcome-banner      { padding: 14px 18px; }
  .fw-hero-copy           { padding: 36px 20px; }
  .fw-hero-stack-wrap     { display: none; }
  .fw-hero-actions        { flex-direction: column; align-items: stretch; }
  .fw-search-wrap         { width: 100%; }
  .fw-bento-section       { padding: 56px 18px; }
  .fw-bento-grid          { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .fw-story-section       { padding: 56px 18px; }
  .fw-vendor-network      { margin: 56px 18px 64px; padding: 28px 22px; }
  .fw-metric-grid         { grid-template-columns: repeat(2, 1fr); }
  .fw-footer-grid         { grid-template-columns: 1fr 1fr; gap: 28px; }
  .fw-footer-bottom       { flex-direction: column; gap: 6px; text-align: center; }
  .fw-how-section         { padding: 56px 18px; }
  .fw-how-grid            { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .fw-footer-grid { grid-template-columns: 1fr; }
}
