/* ─── VestaFide Marketing Pages — Shared Stylesheet ─── */

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

:root {
  --orange:      #d4602a;
  --orange-dark: #b84f1f;
  --white:       #ffffff;
  --black:       #0a0a0a;
  --grey-light:  #b0b0b0;
  --grey-mid:    #888888;
  --grey-dark:   #333333;
  --footer-bg:   #1a1a1a;
  --nav-h:       64px;
}

html, body {
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
}

/* ─── SITE NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--orange);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  z-index: 300;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
}
/* ─── NAV LOGO (circle + wordmark) ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--black); 
  text-shadow: none;
}
.nav-circle {
  width: 25px;
  height: 25px;
  border: 5px solid var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-wordmark {
  display: flex;
  align-items: baseline;
}
.nav-wordmark span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
/*.nav-wordmark .nav-dot { color: var(--black); }*/



/* ─── HAMBURGER ─── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
  transition: opacity 0.3s;
  background: none;
  border: none;
}
.hamburger:hover {
  opacity: 0.8; 
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── SLIDE-OUT MENU ─── */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.menu-backdrop.open { opacity: 1; pointer-events: all; }

.slide-menu {
  position: fixed;
  top: 0; left: 0;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 600;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 8px 0 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.slide-menu.open { transform: translateX(0); }

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.menu-header h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
}
.menu-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  border: none;
  background: none;
  font-size: 20px;
  color: var(--grey-dark);
  transition: background 0.2s;
}
.menu-close:hover { background: #f0f0f0; }

.menu-section { padding: 18px 24px 8px; }
.menu-section-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}
.menu-section a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.menu-section a:hover { background: #f5f5f5; color: var(--orange); }
.menu-section a .icon { width: 18px; text-align: center; font-size: 15px; opacity: 0.6; }
.menu-divider { height: 1px; background: #eee; margin: 8px 24px; }

/* ─── PAGE CONTENT ─── */
.page-content {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 80px 32px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.page-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 640px;
}

/* ─── SECTIONS ─── */
.page-section {
  padding: 60px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-section + .page-section {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-body {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.75;
  max-width: 720px;
}
.section-body p + p { margin-top: 16px; }

/* ─── CARD GRID ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--orange); transform: translateY(-2px); }
.card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}
.card h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.65;
}
.card-meta {
  margin-top: 18px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-mid);
}

/* ─── ORANGE DIVIDER BAR ─── */
.orange-bar {
  height: 4px;
  background: var(--orange);
  width: 48px;
  border-radius: 2px;
  margin: 24px 0;
}

/* ─── SITE FOOTER ─── */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 52px 32px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}
.footer-brand .footer-logo span { color: var(--orange); }
.footer-brand p {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey-light);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey-mid);
  text-decoration: none;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #555;
  letter-spacing: 0.5px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: 60px 20px 40px; }
  .page-section { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .slide-menu { width: 260px; }
  .nav-inner { padding: 0 16px; }
}
