@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

    :root {
      --bg: #09090b;
      --card: #15151b;
      --card-light: #1b1b23;
      --line: #2a2a34;
      --text: #f7f7f7;
      --muted: #9999a5;
      --green: #b8ff5a;
      --yellow: #ffd56a;
      --red: #ff9292;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at 50% 0, #25252e, transparent 42%),
        var(--bg);
      color: var(--text);
      font: 15px/1.5 'Inter', system-ui, -apple-system, sans-serif;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(
        420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(184, 255, 90, 0.07),
        transparent 70%
      );
      z-index: -1;
    }

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

    button,
    input {
      font: inherit;
    }

    .wrap {
      max-width: 1120px;
      width: calc(100% - 36px);
      margin: auto;
    }

    .nav {
      height: 64px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 1.2rem;
      font-weight: 900;
      letter-spacing: -0.07em;
      cursor: pointer;
      user-select: none;
    }

    .logo i {
      font-style: normal;
      color: var(--green);
    }

    .links {
      display: flex;
      gap: 24px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .links a {
      transition: color 0.2s ease;
    }

    .links a:hover {
      color: white;
    }

    .hero {
      text-align: center;
      padding: 70px 0 60px;
    }

    .eyebrow,
    .label {
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.75rem;
      font-weight: 800;
    }

    .hero h1,
    .title {
      letter-spacing: -0.08em;
      line-height: 0.92;
    }

    .hero h1 {
      font-size: clamp(3rem, 9vw, 6.5rem);
      margin: 16px 0 20px;
    }

    .hero h1 em {
      color: var(--green);
      font-style: normal;
    }

    .lead {
      font-size: 1.15rem;
      margin: 0 0 6px;
    }

    .muted {
      color: var(--muted);
    }

    .hero-copy {
      max-width: 420px;
      margin: 0 auto 24px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .buttons {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 13px 19px;
      border: 1px solid var(--line);
      border-radius: 8px;
      font-weight: 800;
      transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-3px);
    }

    .primary {
      background: var(--green);
      border-color: var(--green);
      color: #111;
    }

    .primary:hover {
      box-shadow: 0 0 25px rgba(184, 255, 90, 0.25);
    }

    section {
      border-top: 1px solid var(--line);
      padding: 60px 0;
    }

    .title {
      font-size: clamp(2.1rem, 4.6vw, 3.8rem);
      margin: 8px 0 26px;
    }

    .dashboard {
      display: grid;
      grid-template-columns: 1.35fr 0.9fr;
      gap: 14px;
    }

    .card {
      background: linear-gradient(145deg, #191920, #111116);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 20px;
      transition:
        transform 0.25s ease,
        border-color 0.25s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: #4b4b58;
    }

    .wealth {
      font-size: clamp(2.6rem, 6.5vw, 4.8rem);
      font-weight: 900;
      letter-spacing: -0.1em;
      line-height: 1;
      color: var(--green);
      margin-top: 8px;
    }

    .wealth-note {
      min-height: 25px;
      font-size: 0.85rem;
      color: var(--muted);
      margin-top: 8px;
    }

    .bar {
      height: 9px;
      background: #303038;
      border-radius: 9px;
      margin: 22px 0 12px;
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      width: 4px;
      background: var(--green);
      box-shadow: 0 0 18px var(--green);
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .metric {
      font-size: 1.1rem;
      font-weight: 850;
      margin-top: 6px;
    }

    .steps {
      max-width: 780px;
    }

    .step {
      display: flex;
      gap: 18px;
      border-bottom: 1px solid var(--line);
      padding: 16px 0;
    }

    .step b {
      min-width: 65px;
      color: var(--green);
      font-size: 0.8rem;
    }

    .step span {
      font-size: clamp(1.25rem, 2.4vw, 1.9rem);
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .projection {
      margin-top: 28px;
      color: var(--muted);
      font-size: 1rem;
    }

    .projection strong {
      display: block;
      color: white;
      font-size: 1.5rem;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .milestone {
      min-height: 130px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .amount {
      font-size: 1.4rem;
      color: var(--green);
      font-weight: 900;
    }

    .name {
      font-weight: 750;
      font-size: 1.1rem;
    }

    .forbes {
      margin-top: 18px;
      display: flex;
      justify-content: space-between;
      align-items: end;
    }

    .rank {
      font-size: clamp(2.2rem, 6vw, 4.6rem);
      font-weight: 900;
      letter-spacing: -0.1em;
      line-height: 1;
    }

    .up {
      color: var(--green);
      font-weight: 800;
    }

    .quote {
      min-height: 145px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      font-size: 0.98rem;
    }

    .stars {
      color: var(--yellow);
      letter-spacing: 0.15em;
    }

    .quote cite {
      color: var(--muted);
      font-size: 0.9rem;
      font-style: normal;
    }

    .leaderboard {
      max-width: 720px;
    }

    .leader {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
      font-size: 1rem;
    }

    .leader:last-child {
      border-bottom: 0;
    }

    .leader-name {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 800;
    }

    .leader-amount {
      color: var(--green);
      font-weight: 800;
    }

    .calculator {
      max-width: 850px;
    }

    .calculator-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: center;
    }

    .slider-label {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 12px;
    }

    .slider-value {
      color: var(--green);
      font-weight: 900;
    }

    input[type="range"] {
      width: 100%;
      accent-color: var(--green);
      cursor: pointer;
    }

    .calc-result {
      font-size: clamp(1.9rem, 4.8vw, 3.6rem);
      line-height: 0.95;
      letter-spacing: -0.08em;
      font-weight: 900;
    }

    .calc-result span {
      color: var(--green);
    }

    .calc-message {
      margin-top: 15px;
      color: var(--muted);
    }

    .cta {
      text-align: center;
      padding-bottom: 70px;
    }

    .cta .title {
      max-width: 800px;
      margin: 14px auto;
    }

    .cta p {
      max-width: 580px;
      margin: 0 auto 30px;
      color: var(--muted);
    }

    .ending {
      text-align: center;
      padding: 64px 0;
    }

    .ending h2 {
      font-size: clamp(1.9rem, 5vw, 3.8rem);
      letter-spacing: -0.08em;
      line-height: 0.95;
      margin: 15px 0;
    }

    .ending h2 span {
      color: var(--red);
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 20px 0;
      color: var(--muted);
      font-size: 0.8rem;
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    .loading-screen {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--bg);
      display: grid;
      place-items: center;
      transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
    }

    .loading-screen.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loading-content {
      width: min(440px, calc(100% - 40px));
    }

    .loading-logo {
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: -0.08em;
      margin-bottom: 30px;
    }

    .loading-logo span {
      color: var(--green);
    }

    .loading-status {
      color: var(--muted);
      min-height: 27px;
      transition: opacity 0.25s ease;
    }

    .loading-bar {
      height: 5px;
      background: #292930;
      border-radius: 10px;
      overflow: hidden;
      margin-top: 20px;
    }

    .loading-bar span {
      display: block;
      width: 0;
      height: 100%;
      background: var(--green);
      animation: loadingProgress 3.8s ease forwards;
    }

    @keyframes loadingProgress {
      to {
        width: 100%;
      }
    }

    .notification {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 500;
      width: min(360px, calc(100% - 44px));
      background: linear-gradient(135deg, rgba(184, 255, 90, 0.14), rgba(25, 25, 32, 0.98) 42%);
      border: 1px solid rgba(184, 255, 90, 0.28);
      border-radius: 18px;
      padding: 18px 20px 18px 22px;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
      transform: translateY(20px) scale(0.98);
      opacity: 0;
      pointer-events: none;
      transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .notification.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

.notification-title {
      font-weight: 850;
    }

.notification-kicker {
      display: flex;
      align-items: center;
      gap: 7px;
      margin: 0 0 8px;
      color: #d6ff9c;
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

.notification-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(184, 255, 90, 0.12);
    }

.notification .notification-title {
      margin: 0;
      color: #fff;
      font-size: .98rem;
      line-height: 1.45;
    }

@media (prefers-reduced-motion: reduce) {
  .notification { transition: none; }
}

    .notification-amount {
      margin-top: 4px;
      color: var(--green);
      font-weight: 800;
    }

    .toast {
      position: fixed;
      bottom: 28px;
      left: 50%;
      z-index: 600;
      transform: translate(-50%, 30px);
      opacity: 0;
      background: var(--green);
      color: #111;
      padding: 15px 22px;
      border-radius: 10px;
      text-align: center;
      font-weight: 900;
      transition: 0.3s;
      pointer-events: none;
      white-space: nowrap;
    }

    .toast.show {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: 0.7s;
    }

    .reveal.on {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 720px) {
      .links {
        gap: 10px;
        font-size: 0.72rem;
      }

      .hero {
        padding: 50px 0;
      }

      .dashboard,
      .grid,
      .calculator-box {
        grid-template-columns: 1fr;
      }

      .metrics {
        gap: 10px;
      }

      .forbes {
        display: block;
      }

      .forbes .muted {
        margin-top: 18px;
      }

      footer {
        display: block;
      }

      footer div + div {
        margin-top: 10px;
      }

      .notification {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
      }

      .toast {
        white-space: normal;
        width: calc(100% - 40px);
      }
    }

    /* ============================================
       DONATION MODAL — modernized
       ============================================ */

    .donation-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(6, 6, 9, 0.78);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .donation-modal.show {
      opacity: 1;
      visibility: visible;
    }

    .donation-card {
      position: relative;
      width: min(560px, 100%);
      max-height: calc(100vh - 48px);
      overflow-y: auto;
      background:
        radial-gradient(circle at 15% 0%, rgba(184, 255, 90, 0.07), transparent 45%),
        linear-gradient(180deg, #17171f, #101015);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
      transform: translateY(14px) scale(0.97);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .donation-modal.show .donation-card {
      transform: translateY(0) scale(1);
    }

    .donation-card::-webkit-scrollbar {
      width: 8px;
    }

    .donation-card::-webkit-scrollbar-thumb {
      background: var(--line);
      border-radius: 8px;
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: var(--card-light);
      color: var(--text);
      font-size: 16px;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .modal-close:hover {
      background: #22222b;
      border-color: #4b4b58;
      transform: rotate(90deg);
    }

    .donation-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 30px;
      padding-right: 30px;
    }

    .donation-icon {
      flex: none;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      font-size: 22px;
      border-radius: 12px;
      background: rgba(184, 255, 90, 0.12);
      border: 1px solid rgba(184, 255, 90, 0.25);
    }

    .donation-header h2 {
      font-size: 1.55rem;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin: 0;
    }

    .donation-header h2 span {
      color: var(--green);
    }

    .donation-header p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .donation-header strong {
      color: var(--text);
    }

    .donation-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-bottom: 22px;
    }

    .field label {
      display: flex;
      align-items: baseline;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .field label small {
      font-weight: 500;
      color: var(--muted);
      font-size: 0.78rem;
    }

    .field > small {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 0.78rem;
    }

    .field input[type="text"],
    .field input[type="number"],
    .field textarea {
      width: 100%;
      background: #101014;
      border: 1px solid var(--line);
      border-radius: 10px;
      color: var(--text);
      font-size: 0.95rem;
      padding: 12px 14px;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .field textarea {
      height: 78px;
      resize: none;
      font-family: inherit;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(184, 255, 90, 0.14);
    }

    .field + .field {
      margin-top: 22px;
    }

    .amount-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 10px;
    }

    .amount-button {
      height: 52px;
      border-radius: 10px;
      background: var(--card-light);
      border: 1px solid var(--line);
      color: var(--text);
      font-size: 1.05rem;
      font-weight: 800;
      cursor: pointer;
      transition: 0.18s ease;
    }

    .amount-button:hover {
      border-color: #4b4b58;
      transform: translateY(-2px);
    }

    .amount-button.active {
      background: var(--green);
      border-color: var(--green);
      color: #111;
      box-shadow: 0 0 22px rgba(184, 255, 90, 0.28);
    }

    #customAmount {
      grid-column: 1 / -1;
      height: 48px;
      margin-top: 4px;
    }

    .payment-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 10px;
    }

    .payment-card {
      display: flex;
      align-items: center;
      gap: 12px;
      text-align: left;
      background: var(--card-light);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 14px 16px;
      color: var(--text);
      cursor: pointer;
      transition: 0.18s ease;
    }

    .payment-card::before {
      content: "";
      flex: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid var(--line);
      transition: 0.18s ease;
    }

    .payment-card:hover {
      border-color: #4b4b58;
    }

    .payment-card strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 800;
    }

    .payment-card span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 0.78rem;
    }

    .payment-card.selected {
      border-color: var(--green);
      box-shadow: 0 0 0 1px var(--green) inset;
    }

    .payment-card.selected::before {
      border-color: var(--green);
      background: var(--green);
      box-shadow: inset 0 0 0 3px var(--card-light);
    }

    .continue-button {
      width: 100%;
      height: 54px;
      margin-top: 30px;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 800;
      color: #111;
      background: var(--green);
      cursor: pointer;
      transition: 0.2s ease;
    }

    .continue-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(184, 255, 90, 0.22);
    }

    .continue-button:disabled {
      opacity: 0.55;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .donation-error {
      margin-top: 12px;
      font-size: 0.82rem;
      color: var(--red);
      text-align: center;
      min-height: 18px;
    }

    @media (max-width: 560px) {
      .donation-card {
        padding: 26px 20px;
      }

      .donation-header h2 {
        font-size: 1.3rem;
      }

      .donation-grid,
      .payment-grid {
        grid-template-columns: 1fr;
      }

      .amount-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  

/* ============================================
   PREDICTIONS PAGE
   ============================================ */

.predict-card {
  max-width: 700px;
  margin: 30px auto 0;
}

.predict-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.predict-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 16px;
  border-radius: 12px;
  background: var(--card-light);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: 0.18s ease;
}

.predict-btn:hover {
  border-color: #4b4b58;
  transform: translateY(-2px);
}

.predict-btn:disabled {
  cursor: not-allowed;
}

.predict-btn:disabled:hover {
  transform: none;
}

.predict-btn-label {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.predict-btn-percent {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--muted);
}

.predict-btn.selected {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green) inset;
}

.predict-btn.selected .predict-btn-percent {
  color: var(--green);
}

.predict-bar {
  height: 12px;
  border-radius: 12px;
  margin: 22px 0 12px;
  overflow: hidden;
  background: var(--red);
}

.predict-bar span {
  display: block;
  height: 100%;
  background: var(--green);
  transition: width 0.4s ease;
}

.predict-comment-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.predict-comments {
  max-width: 700px;
  margin: 24px auto 0;
}

.predict-comment {
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
}

.predict-comment:last-child {
  border-bottom: 0;
}

.predict-comment p {
  font-style: italic;
  color: var(--text);
}

@media (max-width: 560px) {
  .predict-options {
    grid-template-columns: 1fr;
  }

  .predict-comment-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .predict-comment-actions .btn {
    width: 100%;
    text-align: center;
  }
}
/* =========================
   Footer Links
========================= */

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 14px 0;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s ease;
}

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

/* ============================================
   V2 POLISH: consistent navigation, footer, and content pages
   ============================================ */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 5000; padding: 10px 14px; background: var(--green); color: #111; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 12px; }
.accent, .metric-green { color: var(--green); }
.hero-punchline { max-width: 500px; margin: 0 auto 26px; font-weight: 700; }
.hero-disclaimer, .cta-note { margin-top: 16px !important; font-size: .82rem; }
.hero h1 .accent { font-style: normal; }
.wealth-card { min-height: 260px; }
.split-card { max-width: 790px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.split-card-title { font-size: 1.35rem; font-weight: 850; margin: 0 0 8px; letter-spacing: -.03em; }
.milestone-grid .milestone { min-height: 150px; }
.site-footer { border-top: 1px solid var(--line); margin-top: 20px; background: rgba(0, 0, 0, .12); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 32px; padding: 32px 0; color: var(--muted); font-size: .85rem; }
.footer-grid .logo { color: var(--text); }
.footer-grid p { margin: 10px 0 0; }
.footer-grid a:hover { color: var(--green); }
.footer-links, .footer-legal { display: flex; flex-wrap: wrap; align-content: start; gap: 10px 18px; margin: 0; justify-content: flex-start; }
.footer-legal { flex-direction: column; gap: 8px; }
.modal-open { overflow: hidden; }
.page-hero { padding: 68px 0 36px; border-top: 0; }
.page-hero .title { margin-bottom: 14px; }
.page-intro { max-width: 650px; margin: 0; font-size: 1.02rem; }
.content-section { padding-top: 32px; }
.content-card { max-width: 800px; }
.content-card h2 { font-size: 1.25rem; margin: 28px 0 8px; letter-spacing: -.03em; }
.content-card h2:first-child { margin-top: 0; }
.content-card p { max-width: 700px; }
.faq-list { display: grid; gap: 12px; max-width: 800px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 20px; font-weight: 800; list-style-position: inside; }
.faq-item summary:hover { color: var(--green); }
.faq-item p { padding: 0 20px 20px; margin: 0; }
.timeline { max-width: 800px; }
.timeline .step { padding: 20px 0; }
.contact-card { border-color: rgba(184, 255, 90, .35); background: linear-gradient(145deg, rgba(184,255,90,.1), #111116 55%); }
.contact-email { color: var(--green); font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 900; word-break: break-word; }
@media (max-width: 720px) {
  .nav { height: auto; min-height: 64px; padding: 14px 0; gap: 14px; align-items: flex-start; }
  .links { justify-content: flex-end; flex-wrap: wrap; row-gap: 7px; }
  .split-card { display: block; }
  .split-card .btn { margin-top: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-legal { flex-direction: row; }
}
