/* ==========================================================================
   Xoro Finance — Portfolio Site
   Monochrome, shadcn-inspired dark design system (mirrors the app itself)
   ========================================================================== */

:root {
  --bg: #09090b;
  --bg-elevated: #0d0d10;
  --fg: #fafafa;
  --card: #131316;
  --card-hover: #17171b;
  --muted: #1c1c20;
  --muted-fg: #a1a1aa;
  --border: #27272a;
  --border-soft: rgba(255, 255, 255, 0.08);
  --primary: #fafafa;
  --primary-fg: #09090b;
  --destructive: #ef4444;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* background mesh */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(650px 400px at 12% -5%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(600px 500px at 100% 10%, rgba(255,255,255,0.045), transparent 55%),
    radial-gradient(700px 500px at 50% 100%, rgba(255,255,255,0.035), transparent 60%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

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

/* scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3f; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-fg);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fg);
  box-shadow: 0 0 0 3px rgba(250,250,250,0.12);
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 18px 0 14px;
}
.section-head p { color: var(--muted-fg); font-size: 17px; }

.gradient-text {
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--fg);
  color: var(--primary-fg);
  box-shadow: 0 0 0 0 rgba(250,250,250,0.4);
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: #46464c;
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}

.btn-sm { height: 40px; padding: 0 18px; font-size: 13.5px; }

.btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-disabled:hover { transform: none; box-shadow: none; }

/* store badge buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.store-btn:hover:not(.btn-disabled) {
  border-color: #46464c;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.store-btn .store-icon { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .store-text { text-align: left; }
.store-btn .store-text small { display: block; font-size: 10.5px; color: var(--muted-fg); letter-spacing: 0.03em; }
.store-btn .store-text strong { display: block; font-size: 16px; font-weight: 600; margin-top: 1px; }
.store-btn .soon-tag {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted-fg);
  background: var(--muted);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 999px;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.35s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(9,9,11,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  color: var(--muted-fg);
  font-weight: 500;
}
.nav-links a { transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--card);
  }
  .nav-burger span { display:block; width: 16px; height: 1.5px; background: var(--fg); position: relative; }
  .nav-burger span::before, .nav-burger span::after { content:''; position:absolute; left:0; width:16px; height:1.5px; background: var(--fg); }
  .nav-burger span::before { top: -5px; }
  .nav-burger span::after { top: 5px; }
  .nav-actions .btn-ghost { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(9,9,11,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 22px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- hero ---------- */
.hero {
  padding: 168px 0 100px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.03;
  margin: 22px 0 22px;
}
.hero p.lead {
  font-size: 18px;
  color: var(--muted-fg);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 24px; font-weight: 700; }
.hero-stat span { font-size: 12.5px; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-blob {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.09), transparent 70%);
  filter: blur(10px);
  animation: floatBlob 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(0,-24px) scale(1.05); }
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(19,19,22,0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  animation: floatBadge 5s ease-in-out infinite;
  z-index: 5;
}
.float-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.badge-1 { top: 8%; left: -6%; animation-delay: 0s; }
.badge-2 { top: 62%; right: -10%; animation-delay: 1.2s; }
.badge-3 { bottom: 4%; left: -2%; animation-delay: 2.4s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- phone mockup ---------- */
.phone {
  width: 288px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55));
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.4deg); }
}
.phone-frame {
  border: 10px solid #000;
  border-radius: 46px;
  background: #000;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.08), 0 0 0 1.5px rgba(255,255,255,0.06);
}
.phone-frame .notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-screen { width: 100%; display: block; background: #09090b; }

/* screenshots grid */
.showcase-scroll {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 20px 4px 30px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.showcase-scroll::-webkit-scrollbar { display: none; }
.showcase-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
  text-align: center;
}
.showcase-item .phone { width: 250px; margin: 0 auto 18px; animation: none; }
.showcase-item .cap { font-size: 13.5px; color: var(--muted-fg); font-weight: 500; }
.showcase-item .cap b { color: var(--fg); font-weight: 600; }

/* ---------- trust strip ---------- */
.trust {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 34px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted-fg); font-size: 13.5px; font-weight: 500; }
.trust-item svg { width: 17px; height: 17px; color: var(--fg); }

/* ---------- features ---------- */
.features { padding: 130px 0 110px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: #3a3a40;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--muted);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature-card p { color: var(--muted-fg); font-size: 14.5px; line-height: 1.6; }

/* ---------- philosophy / how it works ---------- */
.philosophy { padding: 110px 0; }
.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.philo-item {
  background: var(--bg-elevated);
  padding: 40px 32px;
  transition: background 0.3s;
}
.philo-item:hover { background: var(--card-hover); }
.philo-num { font-size: 13px; color: var(--muted-fg); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 18px; }
.philo-item h3 { font-size: 20px; margin-bottom: 10px; }
.philo-item p { color: var(--muted-fg); font-size: 14.5px; }

/* ---------- download cta ---------- */
.download {
  padding: 40px 0 130px;
}
.download-panel {
  background: linear-gradient(160deg, var(--card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-panel::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08), transparent 65%);
  pointer-events: none;
}
.download-panel h2 { font-size: clamp(28px, 4vw, 40px); margin: 16px 0 14px; position: relative; }
.download-panel p { color: var(--muted-fg); max-width: 460px; margin: 0 auto 34px; position: relative; }
.store-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ---------- blog ---------- */
.blog-section { padding: 110px 0 130px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); border-color: #3a3a40; box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.blog-thumb {
  height: 160px;
  background: linear-gradient(135deg, #1c1c20, #0d0d10);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.blog-thumb svg { width: 46px; height: 46px; opacity: 0.85; }
.blog-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 60%);
}
.blog-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: 10px; }
.blog-body h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
.blog-body p { color: var(--muted-fg); font-size: 14px; flex: 1; margin-bottom: 18px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--muted-fg); border-top: 1px solid var(--border); padding-top: 14px; }
.blog-meta .read-link { color: var(--fg); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.blog-meta .read-link svg { width: 13px; height: 13px; transition: transform 0.25s; }
.blog-card:hover .read-link svg { transform: translateX(3px); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 34px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.footer-brand { max-width: 280px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted-fg); font-size: 14px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-fg); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--fg); opacity: 0.85; margin-bottom: 12px; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--muted-fg);
  flex-wrap: wrap;
  gap: 14px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.social-row a:hover { border-color: #46464c; background: var(--card); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ---------- blog post page ---------- */
.post-hero { padding: 160px 0 60px; }
.post-hero .eyebrow { margin-bottom: 20px; }
.post-hero h1 { font-size: clamp(32px, 4.6vw, 50px); line-height: 1.1; margin-bottom: 20px; max-width: 780px; }
.post-meta { display: flex; gap: 18px; color: var(--muted-fg); font-size: 14px; flex-wrap: wrap; }
.post-meta span { display: flex; align-items: center; gap: 7px; }
.post-meta svg { width: 15px; height: 15px; }
.post-cover {
  margin: 40px 0 10px;
  height: 340px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #17171b, #0a0a0c);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.post-cover svg { width: 90px; height: 90px; opacity: 0.9; }
.post-cover::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08), transparent 60%); }
.post-body { max-width: 720px; margin: 0 auto; padding: 50px 0 130px; }
.post-body p { color: #d4d4d8; font-size: 17px; margin-bottom: 22px; line-height: 1.8; }
.post-body h2 { font-size: 26px; margin: 44px 0 18px; }
.post-body h3 { font-size: 20px; margin: 32px 0 14px; }
.post-body ul, .post-body ol { margin: 0 0 22px 22px; color: #d4d4d8; font-size: 17px; line-height: 1.8; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 3px solid var(--fg);
  padding: 4px 0 4px 24px;
  margin: 30px 0;
  font-size: 19px;
  font-weight: 500;
  color: var(--fg);
}
.post-body code { background: var(--muted); padding: 2px 7px; border-radius: 6px; font-size: 15px; }
.post-footer-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-soft);
  padding-top: 30px;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- blog listing hero ---------- */
.blog-page-hero { padding: 160px 0 70px; text-align: center; }
.blog-page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin: 20px 0 16px; }
.blog-page-hero p { color: var(--muted-fg); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* ---------- phone screen mock content ---------- */
.mock-screen { padding: 40px 16px 16px; height: 100%; color: var(--fg); font-family: var(--font); }
.mock-topbar { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: var(--muted-fg); padding: 0 4px 10px; }
.mock-monthbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock-monthbar .mm-label { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.mock-monthbar .mm-gear { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.mock-monthbar .mm-gear svg { width: 13px; height: 13px; color: var(--muted-fg); }
.mock-balance-label { font-size: 10.5px; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.mock-balance { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.mock-subrow { display: flex; gap: 16px; margin-bottom: 22px; }
.mock-subrow div { font-size: 11px; color: var(--muted-fg); }
.mock-subrow b { display: block; font-size: 13px; color: var(--fg); font-weight: 600; margin-top: 2px; font-variant-numeric: tabular-nums; }
.mock-section-label { font-size: 10px; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.06em; margin: 14px 0 8px; }
.mock-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mock-row:last-child { border-bottom: none; }
.mock-icon { width: 30px; height: 30px; border-radius: 999px; background: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-icon svg { width: 14px; height: 14px; color: var(--fg); }
.mock-row-body { flex: 1; min-width: 0; }
.mock-row-title { font-size: 12.5px; font-weight: 500; }
.mock-row-sub { font-size: 10.5px; color: var(--muted-fg); }
.mock-row-amt { font-size: 12.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
.mock-row-amt.neg { color: var(--fg); }
.mock-row-amt.pos { color: var(--fg); }
.mock-fab {
  position: absolute; bottom: 78px; right: 16px;
  width: 46px; height: 46px; border-radius: 999px;
  background: var(--fg); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400; box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}
.mock-navbar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 62px; border-top: 1px solid var(--border);
  background: rgba(9,9,11,0.9);
  display: flex; align-items: center; justify-content: space-around;
  padding-bottom: 8px;
}
.mock-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8.5px; color: var(--muted-fg); }
.mock-nav-item.active { color: var(--fg); }
.mock-nav-item svg { width: 17px; height: 17px; }

.mock-cat-row { margin-bottom: 16px; }
.mock-cat-top { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; }
.mock-cat-top .name { font-weight: 500; }
.mock-cat-top .pct { color: var(--muted-fg); }
.mock-bar-track { height: 6px; border-radius: 999px; background: var(--muted); overflow: hidden; }
.mock-bar-fill { height: 100%; border-radius: 999px; background: var(--fg); width: 0; transition: width 1s cubic-bezier(0.16,1,0.3,1); }
.mock-bar-fill.over { background: var(--destructive); }
.mock-budget-row { border: 1px solid var(--border); border-radius: 12px; padding: 12px; margin-bottom: 10px; }
.mock-budget-top { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 8px; }
.mock-budget-top .name { font-weight: 600; }
.mock-budget-top .nums { color: var(--muted-fg); font-variant-numeric: tabular-nums; }
.mock-over-tag { font-size: 10px; color: var(--destructive); margin-top: 6px; font-weight: 500; }
.mock-chip { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border); font-size: 11px; margin: 0 6px 6px 0; color: var(--muted-fg); }
.mock-chip.active { background: var(--fg); color: var(--bg); border-color: var(--fg); font-weight: 600; }
.mock-chip-row { display: flex; flex-wrap: wrap; margin-bottom: 16px; }
.mock-onboard { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; padding: 40px 24px; }
.mock-onboard .oc-icon { width: 74px; height: 74px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; animation: floatSlow 3s ease-in-out infinite; }
.mock-onboard .oc-icon svg { width: 32px; height: 32px; }
@keyframes floatSlow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.mock-onboard h4 { font-size: 17px; margin-bottom: 8px; }
.mock-onboard p { font-size: 12px; color: var(--muted-fg); max-width: 200px; margin-bottom: 26px; }
.mock-dots { display: flex; gap: 6px; margin-bottom: 26px; }
.mock-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--muted); }
.mock-dot.active { width: 18px; background: var(--fg); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .philo-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
}
@media (max-width: 620px) {
  .hero { padding: 140px 0 70px; }
  .feature-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .download-panel { padding: 50px 24px; }
  .badge-1, .badge-2, .badge-3 { display: none; }
  .trust-inner { justify-content: flex-start; }
  .footer-cols { gap: 36px; }
}
