@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:       #0A0A0A;
  --bg2:      #0D0D0D;
  --card:     #111111;
  --card2:    #161616;
  --gold:     #D4AF37;
  --gold2:    #E6C200;
  --gold-dim: rgba(212,175,55,0.10);
  --gold-mid: rgba(212,175,55,0.28);
  --text:     #F5F5F5;
  --muted:    #A1A1AA;
  --subtle:   #525252;
  --border:   rgba(255,255,255,0.06);
  --border-g: rgba(212,175,55,0.20);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg); color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(10,10,10,0.93);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (max-width: 768px) { .navbar { padding: 0 24px; } }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 600; color: var(--text); letter-spacing: 0.01em;
}

/* ── LOGO MARK — transparent so gold road logo shows as-is ── */
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: transparent;
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.logo-mark svg {
  width: 36px; height: 36px;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 6px 14px; border-radius: 7px;
  color: var(--muted); font-size: 13.5px; font-weight: 400;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--text); }
@media (max-width: 768px) { .nav-links { display: none; } }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none; stroke-width: 2;
  stroke-linecap: round;
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; align-items: center; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 16px 24px 24px;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  display: block;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.btn-ghost {
  padding: 7px 16px; border-radius: 7px; border: none;
  background: transparent; color: var(--muted);
  font-size: 13.5px; font-weight: 400;
  transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.btn-gold {
  padding: 9px 20px; border-radius: 7px; border: none;
  background: var(--gold); color: #0A0A0A;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }

/* ── PAGE ── */
.page-content { position: relative; padding-top: 64px; }

/* ── SECTION HELPERS ── */
.section    { padding: 90px 48px; }
.section-sm { padding: 60px 48px; }
.max-w      { max-width: 1160px; margin: 0 auto; }
@media (max-width: 768px) {
  .section    { padding: 60px 24px; }
  .section-sm { padding: 40px 24px; }
}

.section-kicker {
  font-size: 11.5px; font-weight: 500; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px;
}
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px); font-weight: 600;
  color: var(--text); line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 14px;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-p { font-size: 15px; color: var(--muted); line-height: 1.72; max-width: 480px; }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.card-shine::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}
.card:hover { border-color: var(--border-g); background: #141414; transform: translateY(-3px); }

/* ── BUTTONS ── */
.btn-primary {
  padding: 13px 28px; border-radius: 8px; border: none;
  background: var(--gold); color: #0A0A0A;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-primary:disabled { opacity: 0.5; transform: none; }

.btn-outline {
  padding: 12px 26px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12); background: transparent; color: var(--text);
  font-size: 14px; font-weight: 400;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--border-g); background: rgba(212,175,55,0.04); transform: translateY(-2px); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(212,175,55,0.3); background: rgba(212,175,55,0.06);
  font-size: 11.5px; font-weight: 500; color: #C9A227;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 26px;
}
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ── SECTION DIVIDER ── */
.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: 0 48px;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 640px) { .site-footer { padding: 24px; flex-direction: column; align-items: flex-start; } }
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; color: #444;
  display: flex; align-items: center; gap: 8px;
}
.footer-logo-mark {
  width: 28px; height: 28px; border-radius: 5px;
  background: transparent;
  display: grid; place-items: center;
}
.footer-logo-mark img { width: 28px; height: 28px; object-fit: contain; display: block; }
.footer-logo-mark svg { width: 28px; height: 28px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 12.5px; color: #333; transition: color 0.2s; }
.footer-links a:hover { color: var(--muted); }
.footer-copy { font-size: 12px; color: #2a2a2a; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--card2); border: 1px solid var(--border-g);
  padding: 13px 26px; border-radius: 10px; color: var(--text); font-size: 13.5px;
  z-index: 9999; pointer-events: none; white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  backdrop-filter: blur(16px); box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FEATURES DROPDOWN ── */
.nav-dropdown { position: relative; }

.nav-drop-trigger {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 14px; border-radius: 7px;
  color: var(--muted); font-size: 13.5px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer; user-select: none;
}
.nav-drop-trigger:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 280px;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.nav-drop-menu::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
  border-radius: 14px 14px 0 0;
}

.nav-dropdown:hover .nav-drop-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 9px;
  color: var(--text); text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
}
.nav-drop-item:hover { background: rgba(212,175,55,0.06); }

.nav-drop-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.15);
  display: grid; place-items: center;
}
.nav-drop-icon svg {
  width: 14px; height: 14px; stroke: var(--gold);
  fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.nav-drop-title { font-size: 13px; font-weight: 500; color: var(--text); }
.nav-drop-sub   { font-size: 11.5px; color: var(--muted); margin-top: 1px; }

/* Dropdown hidden by default, shown when .open is added by JS */
.nav-drop-menu {
  display: none;
}
.nav-drop-menu.open {
  display: block;
}

/* ── SHELL ── */
.footer {
  position: relative;
  background: #0A0A0A;
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 72px 48px 40px;
  overflow: hidden;
}

/* Subtle gold gradient at the very top edge */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,175,55,0.45) 30%,
    rgba(212,175,55,0.65) 50%,
    rgba(212,175,55,0.45) 70%,
    transparent 100%
  );
}

/* Ambient glow blob — bottom center */
.footer::after {
  content: '';
  position: absolute;
  bottom: -160px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 340px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .footer { padding: 56px 24px 36px; }
}

/* ── RULE ── */
.footer-rule {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.06) 20%,
    rgba(255,255,255,0.06) 80%,
    transparent
  );
  margin: 56px 0;
}
@media (max-width: 768px) { .footer-rule { margin: 40px 0; } }

/* TOP BAND */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

/* ── BRAND BLOCK ── */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  text-decoration: none;
  margin-bottom: 18px;
}
.footer-logo-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: transparent;        /* ← remove gold background */
  display: grid; place-items: center;
  flex-shrink: 0;
}
.footer-logo-mark svg { width: 16px; height: 16px; }
.footer-logo-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 9px;
  display: block;
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 28px;
}

/* ── SOCIALS ── */
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  display: grid; place-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social svg { width: 15px; height: 15px; }
.footer-social:hover {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.06);
  color: var(--gold);
  transform: translateY(-2px);
}

/* NEWSLETTER */
.newsletter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.newsletter-sub {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  background: #111;
  overflow: hidden;
  transition: border-color 0.2s;
  max-width: 420px;
}
.newsletter-form:focus-within {
  border-color: rgba(212,175,55,0.35);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--text);
  min-width: 0;
}
.newsletter-input::placeholder { color: var(--subtle); }

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 20px;
  background: var(--gold);
  border: none;
  color: #0A0A0A;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.newsletter-btn svg { width: 13px; height: 13px; }
.newsletter-btn:hover { background: var(--gold2); }

.newsletter-fine {
  font-size: 11.5px;
  color: var(--subtle);
  margin-top: 10px;
}

/* Success state */
.newsletter-success {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  background: rgba(212,175,55,0.06);
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  max-width: 420px;
}
.newsletter-success svg { width: 16px; height: 16px; stroke: var(--gold); }

   /* LINK COLUMNS */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 480px) {
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}
/* Gold underline accent on column titles */
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 20px; height: 1px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-col-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
  padding: 0; margin: 0;
}
.footer-col-list a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s, padding-left 0.18s;
  display: inline-block;
}
.footer-col-list a:hover {
  color: var(--gold);
  padding-left: 4px;
}

   /* BOTTOM BAR */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: var(--subtle);
  line-height: 1.5;
}
.footer-heart {
  color: #e85d4a;
  display: inline;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-made {
  font-size: 12.5px;
  color: var(--subtle);
}

.footer-back-top {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  display: grid; place-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
.footer-back-top svg { width: 14px; height: 14px; }
.footer-back-top:hover {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.06);
  color: var(--gold);
  transform: translateY(-2px);
}

/* =========================================================
   HOME PAGE — home.css  (luxury gold theme)
   ========================================================= */

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 64px);
  padding: 100px 48px 80px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
  max-width: 1160px; margin: 0 auto;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 70px 24px 48px; gap: 52px; }
  .hero-visual { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 34px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 58px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 16px; line-height: 1.75; color: var(--muted);
  max-width: 460px; margin-bottom: 38px; font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-proof { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.proof-avatars { display: flex; }
.proof-av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg); background: #1e1e1e;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 600; color: var(--muted);
  margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.proof-text { font-size: 13px; color: var(--muted); }
.proof-text strong { color: var(--text); font-weight: 500; }
.proof-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.08); }

/* ── HERO VISUAL ── */
.hero-visual { position: relative; }

.hero-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.hc-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px;
}
.hc-title { font-size: 11.5px; font-weight: 500; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.hc-badge {
  padding: 4px 10px; border-radius: 100px;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25);
  font-size: 11px; font-weight: 600; color: #C9A227;
}

.score-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.score-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 600; color: var(--gold); line-height: 1;
}
.score-info-label { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.score-info-sub { font-size: 12px; color: var(--muted); }

.match-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.match-row { display: flex; align-items: center; gap: 12px; }
.match-name { font-size: 13px; color: var(--text); font-weight: 400; min-width: 130px; }
.bar-bg { flex: 1; height: 4px; background: rgba(255,255,255,0.07); border-radius: 100px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #8B6914, var(--gold)); }
.bar-pct { font-size: 12px; font-weight: 500; color: #C9A227; min-width: 30px; text-align: right; }

.hc-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 16px 0; }
.skills-label { font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.skills-row { display: flex; flex-wrap: wrap; gap: 7px; }
.skill-tag {
  padding: 5px 11px; border-radius: 5px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  font-size: 12px; color: #D4D4D8; font-weight: 400;
}
.skill-tag.gap {
  background: rgba(212,175,55,0.07); border-color: rgba(212,175,55,0.2); color: #9A7E2A;
}
.skills-legend { margin-top: 10px; font-size: 11px; color: var(--subtle); }

/* Floating notification */
.float-widget {
  position: absolute; bottom: -16px; left: -18px;
  background: var(--card2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6); min-width: 210px;
  position: absolute; bottom: -14px; left: -16px;
}
.float-widget::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}
.float-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2);
  display: grid; place-items: center; flex-shrink: 0;
}
.float-icon svg { width: 15px; height: 15px; }
.float-title { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 1px; }
.float-sub   { font-size: 11.5px; color: var(--muted); }

/* ── FEATURES ── */
.features-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px;
}
@media (max-width: 860px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  padding: 26px; cursor: default;
}
.feat-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at 30% 0%, rgba(212,175,55,0.05), transparent 60%);
  transition: opacity 0.3s;
}
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.18);
  display: grid; place-items: center; margin-bottom: 18px;
}
.feat-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feat-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 9px; letter-spacing: -0.01em; }
.feat-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.05);
  border-radius: 16px; overflow: hidden; margin-top: 52px;
}
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--bg2); padding: 36px 32px; position: relative;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background 0.3s;
}
.step-card:hover::before { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 600; color: rgba(212,175,55,0.18); line-height: 1; margin-bottom: 20px;
}
.step-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.step-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── STATS ── */
.stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
@media (max-width: 640px) { .stats-strip { grid-template-columns: 1fr 1fr; } }

.stat-cell {
  background: var(--card); padding: 36px 28px;
  border-right: 1px solid var(--border); transition: background 0.2s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: #141414; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 600; color: var(--gold);
  letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1;
}
.stat-lbl { font-size: 12.5px; color: var(--muted); font-weight: 400; line-height: 1.4; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px;
}
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card { padding: 26px; }
.testi-quote {
  font-size: 30px; color: rgba(212,175,55,0.28);
  font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 14px;
}
.testi-card blockquote {
  font-size: 13.5px; color: #B0B0B5; line-height: 1.7; margin-bottom: 20px;
  font-style: italic; border: none; padding: 0;
}
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 600; color: #C9A227; flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--card); border: 1px solid var(--border-g);
  border-radius: 20px; padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 220px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px); font-weight: 600;
  color: var(--text); letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.2;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p { font-size: 15px; color: var(--muted); max-width: 420px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── HERO ── */
.about-hero {
  padding: 110px 48px 70px; text-align: center;
}
@media (max-width: 768px) { .about-hero { padding: 80px 24px 50px; } }

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 600;
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text); margin: 14px 0 22px;
}
.about-hero h1 em { font-style: italic; color: var(--gold); }
.about-hero p { font-size: 16px; color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ── MISSION CARDS ── */
.mission-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 0 48px 80px;
}
@media (max-width: 900px) { .mission-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 60px; } }
@media (max-width: 520px) { .mission-grid { grid-template-columns: 1fr; } }

.m-card { padding: 30px 26px; }
.m-icon { font-size: 1.8rem; margin-bottom: 16px; }
.m-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.m-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── PROBLEM / SOLUTION ── */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } }

.problem-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 34px); font-weight: 600;
  color: var(--text); line-height: 1.2; letter-spacing: -0.02em; margin: 14px 0 18px;
}
.problem-text h2 em { font-style: italic; color: var(--gold); }
.problem-text p { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.problem-text em { color: var(--gold); font-style: normal; }

.bullets { margin-top: 24px; display: flex; flex-direction: column; gap: 11px; }
.bullet  { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.bullet-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Code block */
.code-panel {
  background: #080808; border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px; overflow: hidden;
}
.code-header {
  display: flex; align-items: center; gap: 7px; padding: 11px 16px;
  background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.code-dot { width: 11px; height: 11px; border-radius: 50%; }
.code-dot.r { background: #ff5f57; }
.code-dot.y { background: #febc2e; }
.code-dot.g { background: #28c840; }
.code-file { margin-left: 8px; font-size: 12px; color: var(--subtle); font-family: monospace; }
.code-body { padding: 22px 20px; font-family: 'Courier New', monospace; font-size: 13px; line-height: 1.85; }
.cl { display: block; }
.cl.i1 { padding-left: 18px; }
.cl.i2 { padding-left: 36px; }
.cc { color: #3D5060; }
.ck { color: #ff79c6; }
.cf { color: #50fa7b; }
.cp { color: #f1fa8c; }

/* ── STATS ROW ── */
.about-stats-wrap { padding: 0 48px 80px; }
@media (max-width: 768px) { .about-stats-wrap { padding: 0 24px 60px; } }

.about-stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
@media (max-width: 640px) { .about-stats-strip { grid-template-columns: 1fr; } }
.a-stat {
  background: var(--card); padding: 38px 24px; text-align: center;
  border-right: 1px solid var(--border); transition: background 0.2s;
}
.a-stat:last-child { border-right: none; }
.a-stat:hover { background: #141414; }
.a-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 600; color: var(--gold); line-height: 1; display: block; margin-bottom: 7px;
}
.a-stat-lbl { font-size: 12.5px; color: var(--muted); display: block; line-height: 1.4; }

/* ── TECH STACK ── */
.tech-rows { display: flex; flex-direction: column; gap: 26px; margin-top: 40px; }
.tech-row-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.tech-group-label { width: 100px; flex-shrink: 0; font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--subtle); }
.tech-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 7px 16px; border-radius: 7px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  transition: transform 0.2s;
}
.chip:hover { transform: translateY(-2px); }
.chip-gold   { background: rgba(212,175,55,0.08);  border: 1px solid rgba(212,175,55,0.22); color: #C9A227; }
.chip-green  { background: rgba(80,250,123,0.07);  border: 1px solid rgba(80,250,123,0.18); color: #50fa7b; }
.chip-muted  { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--muted); }

/* ── PHASES ── */
.phases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px;
}
@media (max-width: 860px) { .phases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .phases-grid { grid-template-columns: 1fr; } }

.phase-card { padding: 26px 24px; display: flex; gap: 16px; align-items: flex-start; }
.phase-num-badge {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.22);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; color: var(--gold);
}
.phase-card h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.phase-card p  { font-size: 12.5px; color: var(--muted); line-height: 1.6; }