/* Vincere Finance: marketing landing */

:root {
  --bg: #0a0b0e;
  --bg2: #0e1015;
  --card: #14161c;
  --card2: #1a1d25;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f3f5f9;
  --muted: #98a1b1;
  --faint: #5a6373;
  --brand: #3b82f6;
  --brand2: #2f6bff;
  --brand-soft: rgba(59, 130, 246, 0.13);
  --brand-soft-strong: rgba(59, 130, 246, 0.18);
  --pos: #22c55e;
  --pos-soft: rgba(34, 197, 94, 0.13);
  --neg: #f4737c;
  --neg-soft: rgba(244, 115, 124, 0.13);
  --max: 1160px;
  --header-h: 76px;
  --font-body: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
  margin: 0;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 15% -10%, var(--brand-soft), transparent 55%),
    radial-gradient(ellipse 55% 35% at 95% 15%, var(--pos-soft), transparent 50%);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.15rem;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(150deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(59, 130, 246, 0.7);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  background: var(--card2);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-secondary:hover {
  background: #21252f;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
  border-radius: 13px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
  padding: 0 1.25rem;
  background: rgba(10, 11, 14, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-right: auto;
}

.brand img {
  border-radius: 11px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.85rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--card2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9px;
  cursor: pointer;
}

.menu-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: #0d0f14;
  border-bottom: 1px solid var(--border);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.85rem 0.25rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a.btn {
  margin-top: 0.5rem;
  border-bottom: none;
  text-align: center;
}

.mobile-nav .lang-toggle {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--brand);
  margin: 0 0 1.25rem;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pos);
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 3.25rem);
  line-height: 1.06;
  white-space: pre-line;
}

.hero h1 .highlight {
  background: linear-gradient(120deg, var(--brand), var(--pos));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 1.25rem 0 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--faint);
}

.hero-trust svg {
  flex: none;
}

/* Hero phone mockup */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 70%);
  filter: blur(24px);
}

.float-card {
  position: absolute;
  z-index: 3;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.7);
  animation: vFloat 6s ease-in-out infinite;
}

.float-card.top {
  left: -6px;
  top: 6%;
}

.float-card.bottom {
  right: -8px;
  bottom: 12%;
  animation-name: vFloat2;
  animation-duration: 7s;
}

.float-card .label {
  font-size: 0.65rem;
  color: var(--muted);
}

.float-card .value {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-top: 0.2rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
}

.float-card.top .value {
  color: var(--pos);
}

.float-card .value small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
}

@keyframes vFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes vFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.phone {
  position: relative;
  width: 260px;
  height: 530px;
  border-radius: 42px;
  background: #000;
  border: 1px solid var(--border-strong);
  padding: 8px;
  box-shadow: 0 40px 80px -28px rgba(0, 0, 0, 0.85), inset 0 0 0 2px #1a1a1a;
  z-index: 2;
}

.phone::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.phone-topbar {
  padding: 40px 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.phone-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--brand), var(--brand2));
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
}

.phone-greeting {
  font-size: 0.62rem;
  color: var(--muted);
}

.phone-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
}

.phone-gear {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--card2);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.75rem;
}

.phone-period {
  margin: 6px 14px 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.6rem;
  text-align: center;
}

.phone-balance {
  margin: 10px 14px 0;
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(155deg, #10654a, #0a3527);
  border: 1px solid rgba(52, 211, 153, 0.28);
  box-shadow: 0 0 26px -8px rgba(34, 197, 94, 0.45);
}

.phone-balance .label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
}

.phone-balance .amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-top: 2px;
}

.phone-balance .bar {
  height: 5px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.25);
  margin-top: 10px;
  display: flex;
  overflow: hidden;
}

.phone-balance .bar span:first-child {
  width: 65%;
  background: #34d399;
}

.phone-balance .bar span:last-child {
  flex: 1;
  background: #f4737c;
}

.phone-balance .split {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.phone-balance .split div:last-child {
  text-align: right;
}

.phone-balance .split .k {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
}

.phone-balance .split .v {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
}

.phone-tabs {
  display: flex;
  gap: 4px;
  margin: 10px 14px 0;
  background: var(--card);
  padding: 3px;
  border-radius: 10px;
}

.phone-tabs span {
  flex: 1;
  text-align: center;
  padding: 6px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.6rem;
  color: var(--muted);
}

.phone-tabs span.active {
  background: var(--brand);
  color: #fff;
}

.phone-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 15px 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
}

.phone-history-head span:last-child {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  color: var(--brand);
}

.phone-tx {
  margin: 0 14px;
  padding: 9px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.phone-tx .icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--neg-soft);
  display: grid;
  place-items: center;
  color: var(--neg);
  font-size: 0.8rem;
  flex: none;
}

.phone-tx .meta {
  flex: 1;
  min-width: 0;
}

.phone-tx .name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
}

.phone-tx .sub {
  font-size: 0.55rem;
  color: var(--muted);
}

.phone-tx .amount {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--neg);
}

/* Section shell */
.section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
}

.section-eyebrow {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-eyebrow.pos {
  color: var(--pos);
}

.section h2 {
  font-weight: 700;
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  line-height: 1.18;
  margin-top: 0.85rem;
}

/* Features */
.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

.feature-card {
  padding: 1.4rem;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--brand);
}

.feature-icon.pos {
  background: var(--pos-soft);
  color: var(--pos);
}

.feature-card h3 {
  font-weight: 600;
  font-size: 1.05rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  line-height: 1.55;
}

/* Health spotlight */
.health {
  background: radial-gradient(110% 100% at 90% 0%, var(--pos-soft), transparent 55%);
}

.health .wrap {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.health-checks {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.health-checks div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.check-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--pos-soft);
  display: grid;
  place-items: center;
  color: var(--pos);
  flex: none;
  font-size: 0.8rem;
}

.health-card {
  justify-self: center;
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.7);
}

.health-ring {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.health-ring svg {
  transform: rotate(-90deg);
}

.health-ring-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.health-ring-value .score {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--pos);
  line-height: 1;
}

.health-ring-value .label {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--pos);
  margin-top: 0.15rem;
}

.health-card-title {
  text-align: center;
  margin-top: 1.1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
}

.health-card-sub {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.health-card-split {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.health-card-split div {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  border-radius: 12px;
  background: var(--bg2);
}

.health-card-split .v {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}

.health-card-split .v.pos {
  color: var(--pos);
}

.health-card-split .v.neg {
  color: var(--neg);
}

.health-card-split .k {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* FAQ */
.faq h2 {
  text-align: center;
  margin: 0 auto 2rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--brand);
  font-size: 1.25rem;
  flex: none;
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Footer CTA */
.cta-final {
  text-align: center;
  padding: 4.5rem 0;
  background: radial-gradient(100% 120% at 50% 100%, var(--brand-soft-strong), transparent 60%);
}

.cta-mark {
  width: 60px;
  height: 60px;
  border-radius: 17px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(150deg, var(--brand), var(--brand2));
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px -10px rgba(59, 130, 246, 0.6);
}

.cta-final h2 {
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.1;
  max-width: 560px;
  margin-inline: auto;
}

.cta-final p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 1rem auto 0;
  max-width: 440px;
}

.cta-final .hero-cta {
  justify-content: center;
  margin-top: 1.85rem;
}

/* Footer */
.site-footer {
  padding: 1.75rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: var(--faint);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

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

/* Responsive */
@media (min-width: 720px) {
  .nav-links,
  .header-actions {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .hero .wrap {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .health .wrap {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .wrap {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 900px) {
  .card-grid.three {
    gap: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-card {
    animation: none;
  }
}
