/* ================================================================
   style.css — Mordechai Apps | Ultra-Luxury Edition
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:         #C9A84C;
  --gold-lt:      #E8C96A;
  --gold-dim:     rgba(201,168,76,.12);
  --gold-bdr:     rgba(201,168,76,.22);
  --bg:           #07070f;
  --bg2:          #0c0c1a;
  --bg3:          #111122;
  --card:         rgba(255,255,255,.035);
  --glass:        rgba(255,255,255,.055);
  --border:       rgba(255,255,255,.08);
  --border-hover: rgba(201,168,76,.3);
  --text:         #eeeef4;
  --muted:        rgba(238,238,244,.45);
  --muted2:       rgba(238,238,244,.65);
  --serif:        'Cormorant', Georgia, serif;
  --sans:         'DM Sans', system-ui, sans-serif;
  --mono:         'DM Mono', monospace;
  --ease:         cubic-bezier(.25,.46,.45,.94);
  --ease-out:     cubic-bezier(.0,.0,.2,1);
  --r:            14px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── Reveal system ─────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(7,7,15,.9);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 40px; height: 76px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  list-style: none; display: flex; gap: 36px; margin-left: auto;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  letter-spacing: .02em;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 9px 22px; border-radius: 7px;
  background: var(--gold); color: #000;
  font-size: 13px; font-weight: 600;
  letter-spacing: .02em;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  margin-left: auto;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--glass);
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu — full screen slide from right */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 100%;
  height: 100dvh; z-index: 200;
  background: rgba(7,7,15,.99);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  padding: 80px 0 40px;
  transition: right .32s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.5);
}
.mobile-menu-overlay.open { display: block; }
.mob-close {
  position: absolute; top: 20px; left: 20px;
  color: var(--muted2); padding: 8px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--glass);
  transition: color .2s;
}
.mob-close:hover { color: var(--gold); }
.mobile-menu a {
  padding: 20px 36px; font-size: 18px; color: var(--muted2);
  transition: color .2s, background .2s;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-menu a:hover { color: var(--gold); background: var(--gold-dim); }
.mobile-menu .mob-cta {
  margin: 28px 36px 0; padding: 16px 20px;
  background: var(--gold); color: #000; font-weight: 700;
  border-radius: 8px; text-align: center; border: none;
  font-size: 16px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 8px;
  background: var(--gold); color: #000;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .2s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201,168,76,.3);
  opacity: .93;
}
.btn-gold.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--glass); backdrop-filter: blur(12px);
  color: var(--muted2); font-size: 15px;
  transition: border-color .25s, color .25s, transform .25s var(--ease);
}
.btn-outline:hover {
  border-color: var(--gold-bdr); color: var(--text);
  transform: translateY(-1px);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 110px 0 80px;
  overflow: hidden;
}

/* Background */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); will-change: transform;
}
.b1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,.09), transparent 70%);
  top: -250px; right: -200px;
  animation: drift1 18s ease-in-out infinite;
}
.b2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(60,80,200,.07), transparent 70%);
  bottom: -200px; left: -150px;
  animation: drift2 22s ease-in-out infinite 3s;
}
.b3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,100,60,.05), transparent 70%);
  top: 50%; left: 40%;
  animation: drift1 14s ease-in-out infinite 6s;
}
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,-40px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,30px); } }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, #000 20%, transparent 100%);
}

/* Hero layout */
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.eyebrow-tick {
  display: inline-block; width: 28px; height: 1px; background: var(--gold);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.5vw, 5.2rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic; font-weight: 600;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem; color: var(--muted2);
  max-width: 480px; line-height: 1.8;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Metrics */
.hero-metrics {
  display: inline-flex; align-items: center;
  background: var(--glass); border: 1px solid var(--border);
  backdrop-filter: blur(16px); border-radius: 12px;
  padding: 18px 28px; gap: 0;
}
.metric { display: flex; flex-direction: column; align-items: center; padding: 0 22px; }
.metric b { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.metric span { font-size: 11px; color: var(--muted); margin-top: 4px; white-space: nowrap; }
.metric-div { width: 1px; height: 36px; background: var(--border); }

/* Hero card (right side) */
.hero-card-wrap { position: relative; }
.hero-card {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  border-radius: 18px; overflow: hidden;
  position: relative; z-index: 2;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.hc-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.hc-dots { display: flex; gap: 6px; }
.hc-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border);
}
.hc-dots span:nth-child(1) { background: rgba(248,113,113,.5); }
.hc-dots span:nth-child(2) { background: rgba(251,191,36,.5); }
.hc-dots span:nth-child(3) { background: rgba(74,222,128,.5); }
.hc-label {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: .06em; margin-left: auto;
}
.hc-tools { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.hc-tool {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.hc-tool:hover { background: var(--gold-dim); border-color: var(--gold-bdr); }
.hc-tool-img {
  width: 38px; height: 38px; border-radius: 8px;
  overflow: hidden; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.hc-tool-img img { width: 100%; height: 100%; object-fit: cover; }
.hc-tool-info { flex: 1; min-width: 0; }
.hc-tool-name { display: block; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hc-tool-cat { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.hc-tool-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  padding: 3px 8px; border-radius: 100px;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid var(--gold-bdr); white-space: nowrap;
}
.hc-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); text-align: center;
}

/* Floating pills */
.float-pill {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 100px;
  background: var(--bg2); border: 1px solid var(--border);
  font-size: 12px; font-weight: 500; color: var(--muted2);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}
.float-pill svg { stroke: var(--gold); }
.fp1 { top: -18px; left: -30px; animation: floatA 4s ease-in-out infinite; }
.fp2 { bottom: -16px; right: -20px; animation: floatA 4s ease-in-out infinite 2s; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  z-index: 2;
}
.scroll-bar {
  width: 1px; height: 48px; background: linear-gradient(var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; } }

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 14px 0;
}
.ticker-inner {
  display: flex; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted2); padding: 0 6px;
  transition: color .2s;
}
.tick-item:hover { color: var(--gold); }
.tick-sep { color: var(--gold); padding: 0 16px; font-size: 10px; }

/* ── Section shared ─────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -.01em;
}
.section-h2 em { font-style: italic; color: var(--gold); }

/* ── Philosophy ──────────────────────────────────────────────── */
.philosophy-section { padding: 130px 0; background: var(--bg2); }
.phil-intro { margin-bottom: 72px; }
.phil-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden;
}
.phil-card {
  background: var(--bg2); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background .35s;
}
.phil-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.phil-card:hover { background: rgba(201,168,76,.03); }
.phil-card:hover::before { transform: scaleX(1); }
.phil-n {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: .1em; display: block;
  margin-bottom: 24px;
}
.phil-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem; font-weight: 700; line-height: 1.2;
  margin-bottom: 16px;
}
.phil-card p { font-size: .95rem; color: var(--muted2); line-height: 1.8; }

/* ── How It Works ─────────────────────────────────────────────── */
.how-section { padding: 130px 0; }
.how-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.how-left .section-h2 { margin-bottom: 20px; }
.how-p { color: var(--muted2); line-height: 1.8; max-width: 320px; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 28px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  transition: padding-right .3s;
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child { border-bottom: none; }
.how-step:hover { padding-right: 8px; }
.step-n {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: .1em;
  padding-top: 4px; flex-shrink: 0; width: 24px;
}
.step-body h4 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 10px; line-height: 1.2;
}
.step-body p { color: var(--muted2); font-size: .95rem; line-height: 1.8; }

/* ── Tools Section ─────────────────────────────────────────────── */
.tools-section { padding: 130px 0; background: var(--bg2); }
.tools-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.tools-count-label {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  letter-spacing: .06em; padding-bottom: 6px;
}

/* Category filter */
.cat-filter {
  display: flex; gap: 8px; flex-wrap: nowrap;
  margin-bottom: 52px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 4px;
}
.cat-filter::-webkit-scrollbar { display: none; }
.cat-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px; border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent; color: var(--muted2);
  font-size: 13px; font-weight: 500;
  font-family: var(--sans);
  white-space: nowrap; flex-shrink: 0;
  transition: all .25s;
}
.cat-btn:hover { border-color: var(--gold-bdr); color: var(--gold); background: var(--gold-dim); }
.cat-btn.active {
  background: var(--gold); border-color: var(--gold);
  color: #000; font-weight: 600;
}

/* Tool cards */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,.5);
  border-color: var(--border-hover);
}
.tool-card.is-featured {
  border-color: rgba(201,168,76,.3);
  background: linear-gradient(150deg, rgba(201,168,76,.05), var(--card));
}
.ed-pick {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--gold); color: #000;
}
.tc-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--bg3); flex-shrink: 0;
}
.tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tool-card:hover .tc-img img { transform: scale(1.05); }
.tc-img-ph {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  font-size: 3rem;
}
.tc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.tc-cat {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
}
.tc-name {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 700; line-height: 1.3;
}
.tc-desc {
  font-size: .92rem; color: var(--muted2); line-height: 1.75;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  line-clamp: 3;
}
.tc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px; padding: 10px 18px; border-radius: 7px;
  border: 1px solid var(--gold-bdr); color: var(--gold);
  font-size: 13px; font-weight: 600;
  align-self: flex-start;
  transition: background .25s, color .25s, transform .2s;
}
.tc-cta:hover { background: var(--gold); color: #000; transform: translateY(-1px); }
.tc-cta svg { transition: transform .25s; }
.tc-cta:hover svg { transform: translate(2px,-2px); }

.empty-state, .no-results {
  text-align: center; padding: 80px 24px;
  color: var(--muted); font-size: 1rem;
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; flex-wrap: wrap;
}
.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700; line-height: 1.12;
  margin-bottom: 16px;
}
.cta-h2 em { font-style: italic; color: var(--gold); }
.cta-p { color: var(--muted2); max-width: 400px; line-height: 1.8; }
.cta-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-note { font-size: 12px; color: var(--muted); font-family: var(--mono); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  position: relative; overflow: hidden;
}
.footer-glow-line {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-main { display: flex; gap: 80px; flex-wrap: wrap; margin-bottom: 60px; }
.footer-brand { flex: 1; min-width: 200px; }
.f-logo { height: 34px; margin-bottom: 18px; }
.footer-brand p { font-size: .93rem; color: var(--muted); line-height: 1.8; }
.footer-links { display: flex; gap: 60px; }
.f-col { display: flex; flex-direction: column; gap: 10px; }
.f-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.f-col a { font-size: .93rem; color: var(--muted); transition: color .2s; }
.f-col a:hover { color: var(--text); }
.footer-btm {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-btm p { font-size: .85rem; color: var(--muted); }
.f-disclosure { font-size: .8rem !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-wrap { display: none; }
  .phil-grid { grid-template-columns: 1fr; }
  .how-layout { grid-template-columns: 1fr; gap: 48px; }
  .how-p { max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-h1 { font-size: 3rem; }
  .hero-metrics { flex-direction: row; gap: 0; padding: 14px 12px; justify-content: center; }
  .metric { padding: 0 12px; }
  .metric b { font-size: 1.4rem; }
  .metric span { font-size: 10px; }
  .metric-div { width: 1px; height: 28px; }
  .philosophy-section, .how-section, .tools-section { padding: 80px 0; }
  .cta-inner { flex-direction: column; gap: 36px; }
  .footer-main { flex-direction: column; gap: 40px; }
  .footer-btm { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-outline { justify-content: center; }
  .tools-hd { flex-direction: column; align-items: flex-start; }
}
