/* ========================================= */
/* Styles from index.html */
/* ========================================= */

html, body { height: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0a0a;
  color: #f0ede6;
  overflow-x: hidden;
}

/* noise + grid overlays */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* glow accent */
.glow {
  position: fixed;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 52px;
  height: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: #f0ede6;
}
.logo span { color: #c9a96e; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 13px;
  color: rgba(240,237,230,0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-link:hover { color: rgba(240,237,230,0.85); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #f0ede6;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a18;
  color: #f5f2eb;
  padding: 15px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  opacity: 0;
  animation: fadeUp 0.7s 0.64s forwards;
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #f0ede6;
  padding: 16px 33px;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  opacity: 0;
  animation: fadeUp 0.7s 0.64s forwards;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); transform: translateY(-2px); }

/* hero */
.hero {
  position: relative;
  z-index: 10;
  padding: 96px 56px 72px;
  max-width: 980px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #c9a96e;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 1.03;
  font-weight: 700;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.22s forwards;
}
h1 em {
  font-style: italic;
  color: #c9a96e;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.72;
  color: rgba(240,237,230,0.6);
  max-width: 540px;
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.7s 0.36s forwards;
}

.platform-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(240,237,230,0.45);
  position: relative;
  overflow: hidden;
}
.pill::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.pill.gpt::before { background: #10a37f; }
.pill.gem::before { background: #4285f4; }
.pill.cop::before { background: #00b4d8; }
.pill.all {
  color: rgba(240,237,230,0.75);
  border-color: rgba(201,169,110,0.28);
  background: rgba(201,169,110,0.05);
}
.pill.all::before { background: #c9a96e; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #c9a96e;
  color: #0a0a0a;
  padding: 17px 34px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.22s;
  opacity: 0;
  animation: fadeUp 0.7s 0.64s forwards;
}
.btn-primary:hover {
  background: #e0c078;
  transform: translateY(-2px);
}
.btn-primary .arr { font-size: 16px; transition: transform 0.2s; }
.btn-primary:hover .arr { transform: translateX(4px); }

/* cards row */
.cards {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.055);
  margin: 0 56px;
  border-top: 1px solid rgba(255,255,255,0.055);
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}

.card {
  background: #0a0a0a;
  padding: 44px 36px;
  transition: background 0.2s;
}
.card:hover { background: #101010; }

.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: rgba(201,169,110,0.18);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1;
}
.card-title {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: #f0ede6;
}
.card-body {
  font-size: 13px;
  line-height: 1.72;
  color: rgba(240,237,230,0.42);
  font-weight: 300;
}

/* divider quote */
.quote-section {
  position: relative;
  z-index: 10;
  margin: 80px 56px;
  padding: 52px 56px;
  border-left: 2px solid #c9a96e;
  background: rgba(201,169,110,0.035);
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.55;
  font-style: italic;
  color: rgba(240,237,230,0.82);
  margin-bottom: 24px;
}
.quote-attr {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a96e;
}

/* reasons section */
.reasons {
  position: relative;
  z-index: 10;
  padding: 0 56px 80px;
}
.reasons-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.35);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.reasons-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.055);
}
.reason {
  background: #0a0a0a;
  padding: 28px 24px;
  transition: background 0.2s;
}
.reason:hover { background: #0f0f0f; }
.reason-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(240,237,230,0.8);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.reason-body {
  font-size: 11px;
  line-height: 1.65;
  color: rgba(240,237,230,0.35);
  font-weight: 300;
}

/* footer */
footer {
  position: relative;
  z-index: 10;
  padding: 32px 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.footer-left { font-size: 13px; color: rgba(240,237,230,0.28); }
.footer-right {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: rgba(240,237,230,0.28);
}
.footer-badge {
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(240,237,230,0.3);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; height: 64px; }
  .nav-link { display: none; }
  .hero { padding: 56px 24px 48px; }
  .cards { margin: 0; grid-template-columns: 1fr; }
  .quote-section { margin: 48px 24px; padding: 36px 28px; }
  .reasons { padding: 0 24px 64px; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 28px 24px; flex-direction: column; gap: 16px; text-align: center; }
}


/* ========================================= */
/* Styles from how-it-works.html */
/* ========================================= */

    /* ── Nav Right ── */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link {
      font-size: 13px;
      color: rgba(240, 237, 230, 0.45);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }

    .nav-link:hover,
    .nav-link.active {
      color: rgba(240, 237, 230, 0.85);
    }

    /* ── Hero ── */
    .hiw-hero {
      position: relative;
      z-index: 10;
      padding: 88px 52px 32px;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 169, 110, 0.1);
      border: 1px solid rgba(201, 169, 110, 0.25);
      color: #c9a96e;
      padding: 7px 18px;
      border-radius: 40px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 0.6s 0.05s forwards;
    }

    .hiw-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 5.8vw, 70px);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.025em;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.6s 0.18s forwards;
    }

    .hiw-hero-sub {
      font-size: 18px;
      line-height: 1.72;
      color: rgba(240, 237, 230, 0.6);
      margin-bottom: 44px;
      font-weight: 300;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      animation: fadeUp 0.6s 0.3s forwards;
    }

    /* ── Content Sections ── */
    .content-section {
      position: relative;
      z-index: 10;
      padding: 40px 52px 80px;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0;
      animation: fadeUp 0.6s 0.4s forwards;
    }

    .step-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 40px;
      margin-bottom: 24px;
    }

    .step-eyebrow {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #c9a96e;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .hiw-h2 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 500;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .hiw-p {
      font-size: 15px;
      line-height: 1.65;
      color: rgba(240, 237, 230, 0.7);
      margin-bottom: 16px;
    }

    .hiw-p:last-child {
      margin-bottom: 0;
    }

    .hiw-ul {
      padding-left: 20px;
      margin-bottom: 0;
      font-size: 15px;
      line-height: 1.65;
      color: rgba(240, 237, 230, 0.7);
    }

    .hiw-li {
      margin-bottom: 8px;
    }

    .hiw-li:last-child {
      margin-bottom: 0;
    }

    .hiw-code {
      font-family: 'DM Sans', monospace;
      background: rgba(255, 255, 255, 0.08);
      padding: 3px 6px;
      border-radius: 4px;
      font-size: 13px;
      color: #c9a96e;
    }

    /* ── FAQ Accordion ── */
    .faq-list {
      margin-top: 8px;
    }

    .hiw-details {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .hiw-details:last-of-type {
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .hiw-summary {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: rgba(240, 237, 230, 0.85);
      padding: 16px 0;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.2s;
    }

    .hiw-summary::-webkit-details-marker {
      display: none;
    }

    .hiw-summary::after {
      content: '+';
      font-size: 18px;
      color: #c9a96e;
      font-weight: 300;
      flex-shrink: 0;
      line-height: 1;
    }

    .hiw-details[open]>.hiw-summary {
      color: #f0ede6;
    }

    .hiw-details[open]>.hiw-summary::after {
      content: '−';
    }

    details .hiw-p {
      padding-bottom: 16px;
      margin: 0;
    }

/* ========================================= */
/* Styles from signup.html */
/* ========================================= */

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body.page-signup {
      font-family: 'DM Sans', sans-serif;
      background: #0a0a0a;
      color: #f0ede6;
      height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* noise + grid overlays */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      opacity: 0.045;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

    /* glow accent */
    .glow {
      position: fixed;
      top: -200px;
      left: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* Top Nav */
    header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 52px;
      height: 80px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 21px;
      letter-spacing: 0.02em;
      text-decoration: none;
      color: #f0ede6;
    }

    .logo span {
      color: #c9a96e;
    }

    .close-btn {
      color: rgba(240, 237, 230, 0.45);
      text-decoration: none;
      font-size: 28px;
      transition: color 0.2s;
      line-height: 1;
      font-family: 'DM Sans', sans-serif;
    }

    .close-btn:hover {
      color: #f0ede6;
    }

    /* Survey Container */
    .survey-container {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 24px;
    }

    /* Question Wrappers */
    .question-wrapper {
      position: absolute;
      opacity: 0;
      pointer-events: none;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      max-width: 680px;
      width: 100%;
    }

    .question-wrapper.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .question-wrapper.done {
      opacity: 0;
      transform: translateY(-30px);
      pointer-events: none;
    }

    /* Typography */
    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4.5vw, 48px);
      font-weight: 700;
      line-height: 1.08;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }

    p.subtitle {
      font-size: 18px;
      color: #c9a96e;
      margin-bottom: 40px;
      line-height: 1.5;
      font-weight: 300;
    }

    .q-number {
      font-size: 11px;
      color: #c9a96e;
      margin-bottom: 16px;
      font-weight: 600;
      letter-spacing: 0.14em;
      display: flex;
      align-items: center;
      gap: 8px;
      text-transform: uppercase;
    }

    .q-number span {
      color: rgba(201, 169, 110, 0.5);
    }

    /* Sub-question label */
    .sub-question {
      font-size: 16px;
      font-weight: 500;
      color: rgba(240, 237, 230, 0.85);
      margin-bottom: 14px;
    }

    .sub-question-block {
      margin-top: 28px;
    }

    /* Inputs & Options */
    .options-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .options-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .option-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 12px 20px;
      border-radius: 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: all 0.2s;
      font-size: 16px;
      font-weight: 500;
    }

    .option-card:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .option-card.selected {
      background: rgba(201, 169, 110, 0.05);
      border-color: #c9a96e;
      box-shadow: inset 0 0 0 1px #c9a96e;
      color: #c9a96e;
    }

    .option-key {
      background: rgba(255, 255, 255, 0.08);
      color: rgba(240, 237, 230, 0.6);
      font-size: 11px;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      font-family: monospace;
      flex-shrink: 0;
    }

    .option-card.selected .option-key {
      background: #c9a96e;
      color: #0a0a0a;
    }

    /* Checkboxes */
    .checkbox-group {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .checkbox-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 10px 16px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: flex-start;
      transition: all 0.2s;
    }

    .checkbox-card:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .checkbox-card.selected {
      background: rgba(201, 169, 110, 0.08);
      color: #c9a96e;
      border-color: #c9a96e;
      font-weight: 500;
    }

    /* Text Inputs */
    select,
    textarea,
    input[type="email"],
    input[type="text"] {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 2px solid rgba(255, 255, 255, 0.1);
      color: #f0ede6;
      font-size: 20px;
      font-family: 'DM Sans', sans-serif;
      padding: 16px 0;
      outline: none;
      transition: border-color 0.3s;
      border-radius: 0;
      -webkit-appearance: none;
      appearance: none;
    }

    select:focus,
    textarea:focus,
    input[type="email"]:focus,
    input[type="text"]:focus {
      border-color: #c9a96e;
    }

    textarea {
      height: 120px;
      resize: none;
      line-height: 1.5;
    }

    select option {
      background: #1a1a18;
      color: #f0ede6;
    }

    /* Controls */
    .controls {
      margin-top: 40px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .btn-next,
    .btn-start {
      background: #c9a96e;
      color: #0a0a0a;
      border: none;
      padding: 16px 32px;
      font-size: 13px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 0;
      cursor: pointer;
      transition: transform 0.2s, background 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-next:hover,
    .btn-start:hover {
      transform: translateY(-2px);
      background: #d4b57a;
    }

    .btn-next:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
      background: rgba(255, 255, 255, 0.1);
      color: rgba(240, 237, 230, 0.5);
    }

    .btn-back {
      background: transparent;
      color: rgba(240, 237, 230, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 16px 24px;
      font-size: 13px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 0;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-back:hover {
      background: rgba(255, 255, 255, 0.05);
      color: #f0ede6;
    }

    .hint {
      color: rgba(240, 237, 230, 0.45);
      font-size: 13px;
    }

    /* Progress Bar */
    .progress-bg {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: rgba(255, 255, 255, 0.05);
    }

    .progress-bar {
      height: 100%;
      background: #c9a96e;
      width: 0%;
      transition: width 0.4s ease;
    }

    hr.separator {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin: 32px 0;
    }
    
    .custom-tooltip-wrapper {
      position: relative;
      display: inline-block;
    }
    
    .custom-tooltip {
      visibility: hidden;
      background-color: #1a1a18;
      color: #f0ede6;
      text-align: center;
      border-radius: 6px;
      padding: 6px 12px;
      position: absolute;
      z-index: 100;
      bottom: 155%;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      max-width: 200px;
      font-size: 13px;
      font-weight: 400;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: normal;
      line-height: 1.4;
      opacity: 0;
      transition: opacity 0.2s, visibility 0.2s;
      border: 1px solid rgba(255, 255, 255, 0.1);
      pointer-events: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    .custom-tooltip-wrapper:hover .custom-tooltip {
      visibility: visible;
      opacity: 1;
    }
