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

    :root {
      --bg:        #0a0e17;
      --bg2:       #0d1120;
      --card:      #161b22;
      --card2:     #1c2230;
      --border:    #30363d;
      --border2:   #21262d;
      --gold:      #d4a843;
      --gold-dim:  #a07a28;
      --gold-glow: rgba(212,168,67,0.18);
      --green:     #3fb950;
      --green-dim: #238636;
      --red:       #f85149;
      --blue:      #58a6ff;
      --text:      #e6edf3;
      --text-muted:#8b949e;
      --text-dim:  #6e7681;
    }

    html { scroll-behavior: smooth; }

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

    /* ── Noise texture overlay ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ── Container ── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ══════════════════════════════
       NAVBAR
    ══════════════════════════════ */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10,14,23,0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border2);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo img {
      width: 32px;
      height: 32px;
      object-fit: contain;
    }

    .nav-logo-text {
      font-family: 'Manrope', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .nav-logo-text span {
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 20px;
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
    }

    .btn-gold {
      background: var(--gold);
      color: #0a0e17;
    }

    .btn-gold:hover {
      background: #e6ba55;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(212,168,67,0.35);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-1px);
    }

    .btn-lg {
      padding: 13px 28px;
      font-size: 0.95rem;
      border-radius: 10px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .hero {
      position: relative;
      padding: 100px 0 80px;
      overflow: hidden;
    }

    /* Ambient glow blobs */
    .hero::before {
      content: '';
      position: absolute;
      top: -120px; left: 50%;
      transform: translateX(-60%);
      width: 800px; height: 600px;
      background: radial-gradient(ellipse at center, rgba(212,168,67,0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(ellipse at center, rgba(63,185,80,0.05) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(212,168,67,0.1);
      border: 1px solid rgba(212,168,67,0.25);
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero-badge .dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    .hero h1 {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 20px;
    }

    .hero h1 .highlight {
      background: linear-gradient(135deg, var(--gold) 0%, #f0cc72 50%, var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 36px;
    }

    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* ── Hero SVG Dashboard ── */
    .hero-visual {
      position: relative;
    }

    .dashboard-svg-wrap {
      position: relative;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: var(--card);
      box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
      overflow: hidden;
    }

    .dashboard-svg-wrap::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212,168,67,0.4), transparent);
    }

    /* ══════════════════════════════
       TRUST STRIP
    ══════════════════════════════ */
    .trust-strip {
      padding: 40px 0;
      border-top: 1px solid var(--border2);
      border-bottom: 1px solid var(--border2);
    }

    .trust-inner {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .trust-label {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .trust-divider {
      width: 1px;
      height: 20px;
      background: var(--border);
      flex-shrink: 0;
    }

    .exchange-list {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .exchange-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dim);
      letter-spacing: 0.04em;
      opacity: 0.6;
      transition: opacity 0.2s;
    }

    .exchange-name:hover { opacity: 1; }

    /* ══════════════════════════════
       SECTION HEADERS
    ══════════════════════════════ */
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-eyebrow::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 2px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.7;
    }

    /* ══════════════════════════════
       FEATURES
    ══════════════════════════════ */
    .features {
      padding: 96px 0;
    }

    .features-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .features-header .section-sub {
      margin: 0 auto;
    }

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

    .feature-card {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 16px;
      padding: 32px 28px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .feature-card:hover {
      border-color: rgba(212,168,67,0.3);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .feature-card:hover::before { opacity: 1; }

    .feature-icon {
      width: 48px; height: 48px;
      background: rgba(212,168,67,0.1);
      border: 1px solid rgba(212,168,67,0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      flex-shrink: 0;
    }

    .feature-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .feature-card p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ══════════════════════════════
       HOW IT WORKS
    ══════════════════════════════ */
    .how {
      padding: 96px 0;
      background: var(--bg2);
      border-top: 1px solid var(--border2);
      border-bottom: 1px solid var(--border2);
    }

    .how-inner {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step {
      display: flex;
      gap: 20px;
      position: relative;
    }

    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 19px;
      top: 48px;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, var(--border), transparent);
    }

    .step-num {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--card);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--gold);
      flex-shrink: 0;
      z-index: 1;
      font-family: 'Manrope', sans-serif;
    }

    .step-body {
      padding-bottom: 40px;
    }

    .step-body h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .step-body p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ── Metrics panel (How it Works right side) ── */
    .metrics-showcase {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 48px rgba(0,0,0,0.35);
    }

    .metrics-header {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border2);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .metrics-header span {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .dot-red   { width:10px;height:10px;border-radius:50%;background:#f85149; }
    .dot-yellow{ width:10px;height:10px;border-radius:50%;background:#e3b341; }
    .dot-green { width:10px;height:10px;border-radius:50%;background:#3fb950; }

    .metrics-body {
      padding: 24px 20px;
    }

    .metric-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid var(--border2);
    }

    .metric-row:last-child { border-bottom: none; }

    .metric-label {
      font-size: 0.825rem;
      color: var(--text-muted);
    }

    .metric-value {
      font-size: 0.9rem;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
    }

    .metric-value.up   { color: var(--green); }
    .metric-value.down { color: var(--red); }
    .metric-value.gold { color: var(--gold); }
    .metric-value.blue { color: var(--blue); }

    .metric-bar-wrap {
      width: 100%;
      height: 4px;
      background: var(--border2);
      border-radius: 2px;
      margin-top: 4px;
      overflow: hidden;
    }

    .metric-bar {
      height: 100%;
      border-radius: 2px;
      transition: width 1s ease;
    }

    /* ══════════════════════════════
       SHOWCASE
    ══════════════════════════════ */
    .showcase {
      padding: 96px 0;
    }

    .showcase-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .showcase-text .section-sub {
      margin-bottom: 32px;
    }

    .showcase-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .showcase-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .check-icon {
      width: 20px; height: 20px;
      background: rgba(63,185,80,0.15);
      border: 1px solid rgba(63,185,80,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── Snowflake / spider chart SVG visual ── */
    .snowflake-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 24px 48px rgba(0,0,0,0.3);
    }

    /* ══════════════════════════════
       CTA SECTION
    ══════════════════════════════ */
    .cta-section {
      padding: 80px 0 96px;
    }

    .cta-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 72px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: -200px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(212,168,67,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(212,168,67,0.5) 50%, transparent 100%);
    }

    .cta-card h2 {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.025em;
      color: var(--text);
      margin-bottom: 16px;
    }

    .cta-card p {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 480px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    footer {
      padding: 40px 0;
      border-top: 1px solid var(--border2);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-brand img {
      width: 24px; height: 24px;
      object-fit: contain;
      opacity: 0.7;
    }

    .footer-brand-text {
      font-size: 0.875rem;
      color: var(--text-dim);
    }

    .footer-brand-text strong {
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      font-size: 0.8rem;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    /* ══════════════════════════════
       MOBILE NAV OVERLAY
    ══════════════════════════════ */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(10,14,23,0.97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
      font-family: 'Manrope', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s;
    }

    .mobile-nav a:hover { color: var(--gold); }

    .mobile-nav-close {
      position: absolute;
      top: 20px; right: 20px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.5rem;
      cursor: pointer;
      padding: 8px;
    }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    .platform-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 36px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .hero { padding: 72px 0 60px; }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { order: -1; }

      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .how-inner { grid-template-columns: 1fr; gap: 48px; }
      .showcase-inner { grid-template-columns: 1fr; gap: 48px; }
      .platform-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; gap: 48px; }
      .cta-card { padding: 48px 24px; }

      .trust-inner { gap: 16px; }
      .trust-divider { display: none; }
      .exchange-list { gap: 16px; }
    }

    @media (max-width: 600px) {
      .features-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .hero h1 { font-size: 2rem; }
    }

    /* ── Animations ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }
    .fade-in-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════
   SHARED: brand mark (used when a page has no per-product favicon)
══════════════════════════════ */
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-badge .dot-mono {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ══════════════════════════════
   HUB: product cards
══════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.product-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 40px 36px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover {
  border-color: rgba(212,168,67,0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.product-card:hover::before { opacity: 1; }

.product-card .kicker {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.product-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-card .tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 4px 11px;
}

.product-card .go {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   GOLDENTRADE: heatmap + monitor-table mockups
══════════════════════════════ */
.gt-heatmap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}

.gt-heatmap .cell {
  aspect-ratio: 1;
  border-radius: 2px;
}

/* ══════════════════════════════
   GOLDENTRADE: authentic app-UI recreations
   (real hex values pulled from the live app's own CSS / SwiftUI code,
   scoped under .gt-* so they never collide with the marketing theme)
══════════════════════════════ */
.gt-shot {
  --gb:  #0d1117;
  --gb2: #161b22;
  --gb3: #1c2330;
  --gbd: #283040;
  --gtx: #e6edf3;
  --gm:  #8b949e;
  --gg:  #3fb950;
  --gy:  #d29922;
  --gr:  #f85149;
  --gp:  #a371f7;
  --ga:  #58a6ff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* -- browser chrome (web dashboard) -- */
.gt-browser {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  background: var(--gb, #0d1117);
}
.gt-browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #161b22;
  border-bottom: 1px solid #283040;
}
.gt-browser-bar .gt-dot { width: 9px; height: 9px; border-radius: 50%; }
.gt-browser-body { background: #0d1117; color: #e6edf3; padding: 18px; overflow-x: auto; }

/* -- phone chrome (PWA / iOS) -- */
.gt-phone {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 40px;
  padding: 12px;
  background: #0b0e14;
  border: 1px solid #2a3040;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
  position: relative;
}
.gt-phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #0d1117;
  min-height: 480px;
  position: relative;
}
.gt-phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #0b0e14; border-radius: 0 0 14px 14px; z-index: 5;
}
.gt-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 22px 4px; font-size: 12px; font-weight: 600; color: #e6edf3;
}

/* -- watch chrome -- */
.gt-watch {
  width: 200px;
  margin: 0 auto;
  border-radius: 46px;
  padding: 10px;
  background: #0b0e14;
  border: 1px solid #2a3040;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  position: relative;
}
.gt-watch::before {
  content: '';
  position: absolute; right: -3px; top: 70px;
  width: 4px; height: 34px; background: #2a3040; border-radius: 2px;
}
.gt-watch-screen {
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  min-height: 260px;
  padding: 14px 12px;
}

/* -- shared "app card" pieces used inside the mockups -- */
.gt-card {
  background: #161b22; border: 1px solid #283040; border-radius: 10px; padding: 12px 14px;
}
.gt-label {
  color: #8b949e; font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em;
}
.gt-value {
  font-size: 20px; font-weight: 700; margin-top: 4px; color: #e6edf3; font-variant-numeric: tabular-nums;
}
.gt-value.pos { color: #3fb950; }
.gt-value.neg { color: #f85149; }
.gt-sub { color: #8b949e; font-size: 11px; margin-top: 3px; }
.gt-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gt-dot-sm { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; flex-shrink: 0; }
.gt-table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.gt-table th, .gt-table td { padding: 7px 8px; text-align: right; border-bottom: 1px solid #283040; white-space: nowrap; }
.gt-table th:first-child, .gt-table td:first-child { text-align: left; }
.gt-table th { color: #8b949e; font-weight: 600; font-size: 10.5px; text-transform: uppercase; letter-spacing: .03em; }
.gt-badge { font-size: 9.5px; padding: 1px 6px; border-radius: 999px; background: #1c2330; color: #8b949e; margin-left: 5px; }
