/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:root {
  --bg: #09080d;
  --bg-alt: #0d0b13;
  --surface: #15131e;
  --surface-2: #1b1826;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --text: #f7f6fb;
  --text-dim: #b4afc4;
  --text-faint: #837d97;
  --violet: #8b5cf6;
  --violet-2: #a78bfa;
  --pink: #f472b6;
  --cyan: #22d3ee;
  --green: #34d399;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --gradient-text: linear-gradient(135deg, #c4b5fd 0%, #f9a8d4 60%, #67e8f9 100%);
  --gradient-data: linear-gradient(135deg, #22d3ee 0%, #8b5cf6 100%);
  --gradient-soft: linear-gradient(135deg, rgba(124,58,237,0.16), rgba(236,72,153,0.12));
  --radius-lg: 24px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 30px 80px -30px rgba(0,0,0,0.65);
  --shadow-sm: 0 12px 30px -12px rgba(0,0,0,0.5);
  --ease: cubic-bezier(.16,.8,.24,1);
  --maxw: 1200px;
}

html, body { background: var(--bg); color: var(--text); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Outfit', 'Inter', sans-serif; line-height: 1.12; letter-spacing: -0.02em; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--violet); color: #fff; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet-2);
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  padding: 7px 14px 7px 12px;
  border-radius: 100px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gradient); flex: none; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 16px 0 14px; }
.section-head p { color: var(--text-dim); font-size: 17px; max-width: 54ch; }
.section-head.center p { margin-inline: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px; border-radius: 100px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 12px 32px -10px rgba(139,92,246,0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(236,72,153,0.55); }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; }

/* ===== Background FX ===== */
.bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-fx span {
  position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.35;
}
.bg-fx .b1 { width: 560px; height: 560px; top: -180px; left: -120px; background: #7c3aed; }
.bg-fx .b2 { width: 480px; height: 480px; top: 10%; right: -160px; background: #ec4899; opacity: .25; }
.bg-fx .b3 { width: 520px; height: 520px; bottom: -220px; left: 30%; background: #22d3ee; opacity: .18; }
.bg-fx .grain { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 3px 3px; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.scrolled { background: rgba(9,8,13,0.75); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--border); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
@media (max-width: 640px) { .nav-inner { padding: 16px 20px; } }

.logo { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 19px; letter-spacing: -0.02em; flex: none; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; color: #fff;
  box-shadow: 0 8px 20px -6px rgba(139,92,246,0.65);
  flex: none;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 14px; border-radius: 100px; font-size: 14.5px; font-weight: 500; color: var(--text-dim); transition: color .25s, background .25s; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; border: 1px solid var(--border-strong); flex: none; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--text); position: relative; transition: transform .3s, opacity .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--text); transition: transform .3s, top .3s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; gap: 2px; padding: 10px 20px 22px; background: rgba(9,8,13,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-mobile a { padding: 13px 6px; font-size: 15.5px; color: var(--text-dim); border-bottom: 1px solid var(--border); }
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
}

/* ===== Hero ===== */
.hero { padding: 168px 0 120px; }
@media (max-width: 900px) { .hero { padding: 140px 0 80px; } }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 64px; } }

.hero-copy h1 { font-size: clamp(38px, 5.4vw, 68px); margin: 20px 0 22px; }
.hero-copy .eyebrow { margin-bottom: 4px; }
.hero-copy p.lead { font-size: 18.5px; color: var(--text-dim); max-width: 52ch; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-faint); }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--green); flex: none; }

.hero-visual { position: relative; min-height: 420px; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; }
.orb-1 { width: 260px; height: 260px; background: var(--violet); top: -30px; right: 10%; }
.orb-2 { width: 220px; height: 220px; background: var(--cyan); bottom: -20px; left: 0; opacity: .3; }

.hero-card {
  position: relative; z-index: 1; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  backdrop-filter: blur(20px); box-shadow: var(--shadow);
  padding: 22px;
}
.main-card { max-width: 420px; margin-inline: auto; transform: rotate(-2deg); animation: float 7s ease-in-out infinite; }
.card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.card-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.card-title { margin-left: 6px; font-size: 12.5px; color: var(--text-faint); font-weight: 500; }

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.stat-box { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.stat-box .stat-label { display: block; font-size: 12px; color: var(--text-faint); margin-bottom: 6px; }
.stat-box .stat-value { display: block; font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 600; }
.stat-box .stat-delta { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 600; margin-top: 6px; color: var(--green); }

.bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; padding: 0 2px; }
.bars span { flex: 1; border-radius: 6px 6px 2px 2px; background: var(--gradient-data); height: var(--h); opacity: .85; animation: grow .9s var(--ease) both; }

.badge-card {
  position: absolute; bottom: -6%; right: -6%; z-index: 2; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; max-width: 240px; animation: float 8s ease-in-out infinite; animation-delay: -2s;
}
.badge-card .badge-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--gradient); flex: none;
  display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; font-size: 17px;
}
.badge-card strong { display: block; font-size: 13.5px; font-weight: 600; }
.badge-card small { display: block; font-size: 12px; color: var(--text-faint); margin-top: 1px; }

@media (max-width: 980px) { .badge-card { right: 4%; } }
@media (max-width: 540px) { .badge-card { position: static; margin: -30px auto 0; max-width: 260px; transform: none; } .main-card { transform: none; } }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(-1deg); } }
@keyframes grow { from { height: 0; } }

/* ===== Marquee ===== */
.marquee-section { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-label { text-align: center; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 22px; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; align-items: center; flex: none; padding-right: 56px; animation: scroll 32s linear infinite; }
.marquee-track span { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 500; color: var(--text-faint); white-space: nowrap; opacity: .8; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Features ===== */
.features { padding: 130px 0 100px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--gradient-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--violet-2); stroke-width: 1.6; }
.feature-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.feature-card p { color: var(--text-dim); font-size: 15px; }

/* ===== Analytics ===== */
.analytics { padding: 100px 0; }
.analytics-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .analytics-inner { grid-template-columns: 1fr; gap: 48px; } }
.analytics-points { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.analytics-point { display: flex; gap: 14px; }
.analytics-point .pt-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--gradient-soft); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex: none; margin-top: 2px; }
.analytics-point .pt-icon svg { width: 15px; height: 15px; color: var(--cyan); }
.analytics-point strong { display: block; font-size: 15.5px; margin-bottom: 3px; }
.analytics-point span { color: var(--text-dim); font-size: 14.5px; }

.chart-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.chart-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 10px; }
.chart-card-head h4 { font-size: 15px; font-weight: 600; }
.chart-legend { display: flex; gap: 16px; }
.chart-legend span { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-faint); }
.chart-legend i { width: 8px; height: 8px; border-radius: 2px; }
.chart-svg { width: 100%; height: auto; }
.chart-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.chart-stats div { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; }
.chart-stats .cs-label { display: block; font-size: 11.5px; color: var(--text-faint); margin-bottom: 4px; }
.chart-stats .cs-value { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 600; }

/* ===== Rights ===== */
.rights { padding: 100px 0; }
.rights-card {
  background: radial-gradient(120% 140% at 50% 0%, rgba(139,92,246,0.14), transparent 60%), var(--surface);
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 72px 40px; text-align: center;
}
.rights-card h2 { font-size: clamp(30px, 4.6vw, 50px); max-width: 16ch; margin: 0 auto 20px; }
.rights-card > p { color: var(--text-dim); font-size: 17.5px; max-width: 60ch; margin: 0 auto 44px; }
.rights-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 820px; margin: 0 auto; }
@media (max-width: 760px) { .rights-points { grid-template-columns: 1fr; } }
.rights-point { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: left; }
.rights-point svg { width: 20px; height: 20px; color: var(--green); margin-bottom: 12px; }
.rights-point strong { display: block; font-size: 15px; margin-bottom: 6px; }
.rights-point span { color: var(--text-dim); font-size: 14px; }

/* ===== How it works ===== */
.how { padding: 100px 0; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .how-grid { grid-template-columns: 1fr; } }
.how-step { position: relative; padding-top: 8px; }
.how-num { font-family: 'Outfit', sans-serif; font-size: 42px; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .55; margin-bottom: 14px; }
.how-step h3 { font-size: 17px; margin-bottom: 8px; }
.how-step p { color: var(--text-dim); font-size: 14.5px; }
.how-connector { display: none; }
@media (min-width: 901px) {
  .how-step:not(:last-child)::after { content: ''; position: absolute; top: 26px; left: calc(100% + 12px); width: calc(24px - 12px); height: 1px; background: var(--border-strong); }
}

/* ===== Suite band ===== */
.suite-band { padding: 70px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.suite-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.suite-copy h3 { font-size: 24px; max-width: 20ch; margin-bottom: 8px; }
.suite-copy p { color: var(--text-dim); font-size: 15px; max-width: 42ch; }
.suite-list { display: flex; gap: 28px; flex-wrap: wrap; }
.suite-list div { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-dim); font-weight: 500; }
.suite-list svg { width: 17px; height: 17px; color: var(--violet-2); }

/* ===== CTA band ===== */
.cta-band { padding: 90px 0; }
.cta-card {
  background: var(--gradient); border-radius: var(--radius-lg); padding: 64px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,0.25), transparent 70%); }
.cta-card h2 { position: relative; font-size: clamp(26px, 4vw, 40px); color: #fff; max-width: 20ch; margin: 0 auto 14px; }
.cta-card p { position: relative; color: rgba(255,255,255,0.9); font-size: 16.5px; max-width: 50ch; margin: 0 auto 32px; }
.cta-card .btn-ghost { position: relative; background: #fff; color: #18122b; border: none; }
.cta-card .btn-ghost:hover { background: #f2eefe; }

/* ===== Contact ===== */
.contact { padding: 100px 0 130px; }
.contact-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
@media (max-width: 940px) { .contact-inner { grid-template-columns: 1fr; gap: 48px; } }

.contact-info p.lead { color: var(--text-dim); font-size: 16px; margin: 16px 0 32px; max-width: 44ch; }
.contact-detail { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: 1px solid var(--border); }
.contact-detail .cd-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-detail .cd-icon svg { width: 18px; height: 18px; color: var(--violet-2); }
.contact-detail strong { display: block; font-size: 14px; color: var(--text-faint); font-weight: 500; margin-bottom: 3px; }
.contact-detail a, .contact-detail span.val { font-size: 15.5px; font-weight: 500; }
.contact-detail a:hover { color: var(--violet-2); }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--text-dim); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border-strong); color: var(--text);
  border-radius: var(--radius-sm); padding: 13px 14px; font: inherit; font-size: 14.5px; transition: border-color .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); background: rgba(139,92,246,0.06); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23837d97' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field-hint { font-size: 12.5px; color: var(--text-faint); margin-top: 14px; text-align: center; }
.form-note { display: none; margin-top: 16px; padding: 12px 14px; border-radius: var(--radius-sm); background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: var(--green); font-size: 13.5px; }
.form-note.show { display: block; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--text-faint); font-size: 14px; max-width: 32ch; }
.footer-col h5 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: var(--text-dim); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 13px; color: var(--text-faint); }
.footer-mark { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-faint); }
.footer-mark .logo-mark { width: 20px; height: 20px; font-size: 11px; border-radius: 6px; }
