:root {
    --gold:        #c9a84c;
    --gold-light:  #e8c97a;
    --gold-dim:    #8a6a28;
    --gold-glow:   rgba(201,168,76,0.15);
    --red:         #c0392b;
    --red-light:   #e74c3c;
    --blue:        #1a5fa8;
    --blue-light:  #2980d4;
    --green:       #1e8c5a;
    --green-light: #27ae72;
    --bg:          #000000;
    --bg-2:        #080808;
    --bg-3:        #0e0e0e;
    --bg-4:        #141414;
    --border:      #1e1e1e;
    --border-hi:   #2a2a2a;
    --text:        #f0ece0;
    --text-muted:  #9a9080;
    --text-dim:    #4a4438;
    --mono:        'JetBrains Mono', monospace;
    --serif:       'Playfair Display', serif;
    --sans:        'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ── Subtle grid texture ── */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  /* ════════════════════════════
     HERO
  ════════════════════════════ */
  .hero {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 40px;
    gap: 60px;
    max-width: 1400px; margin: 0 auto;
  }

  .hero-left { display: flex; flex-direction: column; gap: 24px; }

  .hero-eyebrow {
    display: inline-flex; align-items: center;
    font-family: var(--serif); font-size: clamp(18px, 2vw, 28px); font-weight: 400;
    letter-spacing: 0.02em; text-transform: none;
    color: var(--gold); line-height: 1.1;
    white-space: nowrap;
  }
  .hero-eyebrow::before { display: none; }

  .hero-subtitle-line {
    font-family: var(--serif); font-size: clamp(16px, 2vw, 26px); font-weight: 400;
    letter-spacing: 0.04em;
    color: #c8c0b0; margin-bottom: 20px; line-height: 1.2;
  }

  .hero-name {
    font-family: var(--mono);
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 600; line-height: 1.2;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
  }
  .hero-name span { color: var(--text-muted); }

  .hero-title {
    font-family: var(--sans); font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 400; color: var(--text-muted); line-height: 1.75;
    max-width: 520px;
  }

  .hero-stats {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding: 24px 0; border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat { display: flex; flex-direction: column; gap: 2px; }
  .stat-value {
    font-family: var(--serif); font-size: 28px; font-weight: 700;
    color: var(--gold); line-height: 1;
  }
  .stat-label {
    font-family: var(--mono); font-size: 13px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #9aaabb;
  }

  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  .btn-primary {
    font-family: var(--mono); font-size: 15px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #000; background: var(--gold);
    padding: 15px 30px; border-radius: 4px;
    text-decoration: none; transition: background 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--gold-light); }

  .btn-outline {
    font-family: var(--mono); font-size: 15px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border-hi);
    padding: 15px 30px; border-radius: 4px;
    text-decoration: none; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { color: var(--gold); border-color: var(--gold-dim); }

  /* ── Hero service hint ── */
  .hero-service-hint {
    font-family: var(--sans); font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 520px;
  }
  .hero-service-hint strong {
    color: var(--text);
    font-weight: 600;
  }

  .hero-social { display: flex; gap: 16px; align-items: center; }
  .social-link {
    font-family: var(--mono); font-size: 14px; font-weight: 600;
    letter-spacing: 0.08em; color: #8a9aaa;
    text-decoration: none; transition: color 0.2s;
    display: flex; align-items: center; gap: 6px;
  }
  .social-link:hover { color: var(--gold); }

  /* Hero photo */
  .hero-right {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 16px;
    position: relative;
  }
  .hero-photo-wrap {
    position: relative; width: 280px; height: 280px;
  }
  .hero-photo-frame {
    position: absolute; inset: 0;
    border: 1px solid var(--gold-dim);
    border-radius: 4px;
    transform: translate(12px, 12px);
    background: transparent;
  }
  .hero-photo {
    position: relative; z-index: 1;
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    border-radius: 4px;
    filter: grayscale(20%) contrast(1.05);
  }
  .hero-photo-badge {
    position: absolute; bottom: -16px; left: -16px; z-index: 2;
    background: var(--bg-3); border: 1px solid var(--gold-dim);
    border-radius: 4px; padding: 12px 16px;
    display: flex; flex-direction: column; gap: 2px;
  }
  .badge-value {
    font-family: var(--serif); font-size: 22px; font-weight: 700;
    color: var(--gold); line-height: 1;
  }
  .badge-label {
    font-family: var(--mono); font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #e8c97a;
  }

  /* ════════════════════════════
     SECTION COMMON
  ════════════════════════════ */
  section {
    position: relative; z-index: 1;
    padding: 80px 40px;
    max-width: 1400px; margin: 0 auto;
  }

  .section-header {
    display: flex; align-items: baseline; gap: 20px;
    margin-bottom: 32px;
  }
  .section-eyebrow {
    font-family: var(--mono); font-size: 16px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold-light); flex-shrink: 0;
  }
  .section-line {
    flex: 1; height: 1px; background: var(--border);
  }
  .section-title {
    font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; color: var(--text); line-height: 1.15;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: clamp(16px, 1.6vw, 20px); color: var(--text-muted); max-width: 640px; line-height: 1.75;
  }

  /* ════════════════════════════
     NOTABLE CALLS
  ════════════════════════════ */
  .calls-section { background: var(--bg-2); }
  .calls-section > * { max-width: 1400px; margin: 0 auto; }
  .calls-section.full { padding: 80px 40px; }

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

  .call-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 6px; padding: 24px;
    position: relative; overflow: hidden;
    transition: border-color 0.2s;
  }
  .call-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
  }
  .call-card.bullish::before { background: var(--green); }
  .call-card.bearish::before { background: var(--red); }
  .call-card:hover { border-color: var(--border-hi); }

  .call-date {
    font-family: var(--mono); font-size: 14px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #9aaabb; margin-bottom: 8px;
  }
  .call-asset {
    font-family: var(--serif); font-size: 22px; font-weight: 700;
    color: var(--text); margin-bottom: 4px;
  }
  .call-desc {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 14px;
  }
  .call-result {
    font-family: var(--mono); font-size: 13px; font-weight: 700;
    padding: 6px 12px; border-radius: 3px; display: inline-block;
  }
  .call-result.bullish { color: var(--green-light); background: rgba(30,140,90,0.12); }
  .call-result.bearish { color: #e74c3c; background: rgba(192,57,43,0.12); }

  .calls-note {
    margin-top: 20px;
    font-family: var(--mono); font-size: 13px;
    color: #6a7a8a; line-height: 1.6;
    border-left: 2px solid var(--border-hi); padding-left: 14px;
  }

  /* ════════════════════════════
     ABOUT / CREDENTIALS
  ════════════════════════════ */
  .about-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
    align-items: start;
  }
  .about-title {
    font-size: clamp(24px, 2.8vw, 38px); white-space: nowrap;
  }
  .about-text p {
    font-size: 16px; color: var(--text-muted); line-height: 1.85;
    margin-bottom: 18px;
  }
  .about-text p strong { color: var(--text); font-weight: 600; }
  .about-bullets {
    list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px;
  }
  .about-bullets li {
    font-size: 16px; color: var(--text-muted); line-height: 1.85;
    padding-left: 22px; position: relative;
  }
  .about-bullets li::before {
    content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
  }
  .about-bullets li strong { color: var(--text); font-weight: 600; }

  .timeline { display: flex; flex-direction: column; gap: 0; }
  .timeline-item {
    display: flex; gap: 20px; padding-bottom: 28px;
    position: relative;
  }
  .timeline-item::before {
    content: ''; position: absolute;
    left: 40px; top: 32px; bottom: 0; width: 1px;
    background: var(--border);
  }
  .timeline-item:last-child::before { display: none; }
  .timeline-year {
    font-family: var(--mono); font-size: 12px; font-weight: 700;
    color: var(--gold); width: 40px; flex-shrink: 0;
    padding-top: 2px;
  }
  .timeline-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 6px;
    box-shadow: 0 0 8px rgba(201,168,76,0.4);
  }
  .timeline-content { flex: 1; }
  .timeline-title {
    font-size: 16px; font-weight: 600; color: var(--text);
    margin-bottom: 4px;
  }
  .timeline-desc {
    font-family: var(--sans); font-size: 14px; color: #8a9aaa;
    line-height: 1.65;
  }

  /* ════════════════════════════
     SERVICES
  ════════════════════════════ */
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }

  .service-card {
    background: var(--bg-3); border: 1px solid var(--border);
    border-radius: 6px; padding: 32px 28px;
    display: flex; flex-direction: column; gap: 16px;
    position: relative; overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
    cursor: pointer;
  }
  .service-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
  .service-card.active { border-color: rgba(201,168,76,0.3); }
  .service-card.active::after {
    content: 'ACTIVE';
    position: absolute; top: 16px; right: 16px;
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; color: var(--gold);
    background: rgba(201,168,76,0.1); border-radius: 3px;
    padding: 3px 8px;
  }
  .service-card.coming-soon { opacity: 0.55; }
  .service-card.coming-soon::after {
    content: 'COMING SOON';
    position: absolute; top: 16px; right: 16px;
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; color: #8a9aaa;
    background: var(--bg-4); border-radius: 3px;
    padding: 3px 8px;
  }

  .service-icon {
    width: 44px; height: 44px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .service-icon.pulse  { background: rgba(45,138,94,0.1); }
  .service-icon.future { background: rgba(201,168,76,0.07); }

  .service-name {
    font-family: var(--serif); font-size: 22px; font-weight: 700;
    color: var(--text);
  }
  .service-desc {
    font-size: 15px; color: var(--text-muted); line-height: 1.75; flex: 1;
  }
  .service-price {
    font-family: var(--mono); font-size: 15px; font-weight: 700;
    color: var(--gold);
  }
  .service-link {
    font-family: var(--mono); font-size: 14px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #2d8a5e; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 10px; }

  /* ════════════════════════════
     TOOLS / UTILITIES
  ════════════════════════════ */
  .tools-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .tool-card {
    background: var(--bg-3); border: 1px solid var(--border);
    border-radius: 6px; padding: 24px;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column; gap: 10px;
    transition: border-color 0.2s, background 0.2s;
  }
  .tool-card:hover { border-color: var(--gold-dim); background: var(--bg-4); }
  .tool-card.placeholder {
    opacity: 0.3; pointer-events: none;
    border-style: dashed;
  }
  .tool-icon { font-size: 30px; }
  .tool-name {
    font-family: var(--sans); font-size: 18px; font-weight: 700;
    color: var(--text); line-height: 1.3;
  }
  .tool-desc {
    font-size: 16px; color: var(--text-muted); line-height: 1.7;
  }
  .tool-arrow {
    font-family: var(--mono); font-size: 15px; color: var(--gold);
    margin-top: auto;
  }

  /* ════════════════════════════
     NOTABLE FOLLOWERS
  ════════════════════════════ */
  .endorsement-block {
    background: var(--bg-3); border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 4px; padding: 24px 28px;
    margin-bottom: 32px;
  }
  .endorsement-quote {
    font-family: var(--serif); font-size: 18px; font-style: italic;
    color: var(--text); margin-bottom: 10px; line-height: 1.5;
  }
  .endorsement-attr {
    font-family: var(--mono); font-size: 11px; color: var(--gold);
    font-weight: 600; letter-spacing: 0.08em;
  }

  .followers-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  }
  .follower-pill {
    background: var(--bg-3); border: 1px solid var(--border);
    border-radius: 4px; padding: 12px 16px;
    font-family: var(--mono); font-size: 13px; font-weight: 600;
    color: var(--text-muted); text-align: center; line-height: 1.4;
  }
  .follower-pill span { display: block; font-size: 11px; color: #6a7a8a; margin-top: 3px; }

  /* ════════════════════════════
     DIVIDER
  ════════════════════════════ */
  .full-divider { display: none; }

  /* ════════════════════════════
     RESPONSIVE
  ════════════════════════════ */
  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
      padding: 40px 20px 48px;
      text-align: center;
      gap: 40px;
    }
    /* On mobile: photo+name column first (order:1), then left text (order:2) */
    .hero-left { order: 2; }
    .hero-right { order: 1; }
    .hero-name { text-align: center; font-size: 16px; }
    .hero-photo-wrap { width: 200px; height: 200px; }
    .hero-eyebrow { justify-content: center; font-size: clamp(22px, 6.5vw, 32px); white-space: nowrap; text-align: center; }
    .hero-subtitle-line { text-align: center; font-size: clamp(14px, 3.5vw, 20px); }
    .hero-stats { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-social { justify-content: center; flex-wrap: wrap; }

    .about-title { white-space: normal; font-size: clamp(24px, 6vw, 32px); }
    .calls-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr 1fr; }
    .followers-grid { grid-template-columns: 1fr 1fr; }

    section { padding: 60px 20px; }
    .calls-section.full { padding: 60px 20px; }
    footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 480px) {
    .tools-grid { grid-template-columns: 1fr; }
    .followers-grid { grid-template-columns: 1fr 1fr; }
  }