/* ============ Tokens ============ */
:root{
  --bg:#FAFAF8;
  --bg-alt:#F2F1EC;
  --ink:#0A0A0A;
  --ink-soft:#5C5C5C;
  --ink-faint:#8A8A8A;
  --line:#E4E3DC;
  --gold:#D4AF37;
  --gold-dim:#B5952C;
  --green:#1E7B34;
  --red:#B3261E;
  --radius:2px;
  --container:1240px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter',Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
.container{max-width:var(--container);margin:0 auto;padding:0 40px;}
.accent{ color:var(--ink); border-bottom:3px solid var(--gold); }

/* ============ Buttons ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:16px 34px;border-radius:var(--radius);font-weight:700;font-size:13px;
  letter-spacing:1px;text-transform:uppercase;border:1.5px solid transparent;cursor:pointer;
  transition:transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--ink);color:#fff;}
.btn-primary:hover{background:var(--gold-dim);}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line);}
.btn-ghost:hover{border-color:var(--ink);}
.btn-line{background:transparent;color:var(--ink);border:none;border-bottom:1.5px solid var(--ink);border-radius:0;padding:0 0 4px;}
.btn-line:hover{color:var(--gold-dim);border-color:var(--gold-dim);}
.btn-lg{padding:18px 40px;font-size:14px;}
.full-width{width:100%;}

/* ============ Ticker ============ */
/* TradingView's Ticker Tape widget renders its own inner layout — this
   wrapper just gives it a black strip to sit in. */
.ticker-bar{
  background:var(--ink);
  overflow:hidden;
  line-height:0;
}
.ticker-bar .tradingview-widget-container{ min-height:40px; }

/* ============ Header ============ */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(250,250,248,0.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; height:82px; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; flex:0 0 auto; }
.brand-logo{ width:38px; height:38px; border-radius:50%; object-fit:contain; }
.brand-word{ color:var(--ink); font-size:15px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; }
.brand-word em{ font-style:normal; border-bottom:2px solid var(--gold); }
.main-nav{ display:flex; gap:32px; flex:1; justify-content:center; }
.main-nav a{ position:relative; color:var(--ink-soft); font-size:13px; font-weight:600; letter-spacing:0.4px; text-transform:uppercase; transition:color .15s ease; padding-bottom:4px; }
.main-nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1.5px;
  background:var(--gold); transition:right .2s ease;
}
.main-nav a:hover{ color:var(--ink); }
.main-nav a:hover::after{ right:0; }
.header-cta{ display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.header-cta .btn{ padding:12px 22px; font-size:12px; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span{ width:22px; height:1.5px; background:var(--ink); display:block; }

/* ============ Hero ============ */
.hero{
  position:relative; overflow:hidden;
  background:var(--bg);
  padding:120px 0 0;
}
.hero-candles{ position:absolute; inset:0; width:100%; height:100%; opacity:0.16; pointer-events:none; }
.hero-inner{ position:relative; padding-bottom:74px; }
.eyebrow{ font-size:12px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--ink-faint); margin-bottom:30px; }
.hero h1{
  font-size:104px; line-height:0.96; font-weight:800; margin:0 0 40px; letter-spacing:-3px;
}
.hero-sub{ font-size:18px; line-height:1.65; color:var(--ink-soft); max-width:540px; margin:0 0 46px; }
.hero-actions{ display:flex; gap:32px; align-items:center; flex-wrap:wrap; }
.hero-stats{ position:relative; border-top:1px solid var(--line); }
.hero-stats-inner{ display:flex; gap:70px; flex-wrap:wrap; padding:44px 0; }
.trust-item{ display:flex; flex-direction:column; gap:6px; }
.trust-item strong{ font-size:24px; color:var(--ink); font-weight:800; }
.trust-item span{ font-size:12px; color:var(--ink-faint); letter-spacing:0.6px; text-transform:uppercase; font-weight:600; }

/* ============ Section shell ============ */
section{ padding:110px 0; }
.section-head{ max-width:640px; margin:0 auto 60px; text-align:center; }
.eyebrow{ text-align:inherit; }
.section-head h2, .about h2{ font-size:42px; font-weight:800; line-height:1.2; margin:0; letter-spacing:-1px; }

/* ============ Services ============ */
.services{ border-top:1px solid var(--line); }
.services-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.service-card{
  padding:36px 30px; border-left:1px solid var(--line);
  transition:background .2s ease;
}
.service-card:last-child{ border-right:1px solid var(--line); }
.service-card:hover{ background:var(--bg-alt); }
.service-num{ display:block; font-size:13px; font-weight:700; color:var(--gold-dim); letter-spacing:1px; margin-bottom:22px; }
.service-card h3{ font-size:18px; font-weight:800; margin:0 0 12px; letter-spacing:-0.2px; }
.service-card p{ font-size:14px; color:var(--ink-soft); line-height:1.65; margin:0; }

/* ============ Live Markets ============ */
.markets{ background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.markets-card{ background:var(--bg); border:1px solid var(--line); }
.markets-card-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 24px; border-bottom:1px solid var(--line);
  font-size:12px; font-weight:700; letter-spacing:0.6px; text-transform:uppercase; color:var(--ink-soft);
}
.live-dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--green); box-shadow:0 0 0 0 rgba(30,123,52,0.5);
  animation:liveDotPulse 2s ease-out infinite;
}
@keyframes liveDotPulse{
  0%{ box-shadow:0 0 0 0 rgba(30,123,52,0.45); }
  70%{ box-shadow:0 0 0 8px rgba(30,123,52,0); }
  100%{ box-shadow:0 0 0 0 rgba(30,123,52,0); }
}
.chart-widget-wrap{ height:440px; }
@media (prefers-reduced-motion:reduce){ .live-dot{ animation:none; } }

/* ============ IPO Watch ============ */
.ipo-watch{ background:var(--ink); color:#fff; }
.ipo-watch .eyebrow{ color:#8A8A8A; }
.ipo-watch .accent{ color:#fff; }
.ipo-card{ max-width:860px; margin:0 auto; border:1px solid rgba(255,255,255,0.16); padding:38px; }
.ipo-card-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; flex-wrap:wrap; gap:14px; }
.ipo-name{ font-size:19px; font-weight:800; }
.ipo-status{ margin-top:6px; font-size:13.5px; color:#9A9A9A; }
.ipo-badge{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid var(--red); color:#FF8A80; padding:8px 18px;
  font-weight:700; font-size:12px; letter-spacing:1px; text-transform:uppercase;
}
.ipo-badge::before{
  content:""; width:7px; height:7px; border-radius:50%; background:#FF8A80;
  animation:liveDotPulseRed 1.6s ease-out infinite;
}
@keyframes liveDotPulseRed{
  0%{ box-shadow:0 0 0 0 rgba(255,138,128,0.5); }
  70%{ box-shadow:0 0 0 7px rgba(255,138,128,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,138,128,0); }
}
.ipo-stats{ display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,0.14); }
.ipo-stat{ padding:22px 4px 0; display:flex; flex-direction:column; gap:8px; border-right:1px solid rgba(255,255,255,0.1); }
.ipo-stat:last-child{ border-right:none; }
.ipo-stat .label{ font-size:11px; letter-spacing:1px; text-transform:uppercase; color:#8A8A8A; font-weight:700; }
.ipo-stat .value{ font-size:20px; font-weight:800; }
.ipo-stat .value.up{ color:#5FD186; }
.ipo-note{ margin-top:24px; font-size:12.5px; color:#7A7A7A; line-height:1.6; }

/* ============ Insights ============ */
.insights-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.insight-card{ background:var(--bg); padding:36px; transition:background .2s ease; }
.insight-card:hover{ background:var(--bg-alt); }
.insight-tag{ display:inline-block; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gold-dim); margin-bottom:18px; }
.insight-card h3{ font-size:18px; font-weight:800; margin:0 0 12px; line-height:1.4; letter-spacing:-0.2px; }
.insight-card p{ font-size:14px; color:var(--ink-soft); line-height:1.65; margin:0; }

/* ============ About ============ */
.about{ border-top:1px solid var(--line); }
.about-inner{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:70px; align-items:center; }
.about-copy p{ font-size:16px; line-height:1.8; color:var(--ink-soft); margin:22px 0 28px; }
.about-list{ margin:0 0 32px; display:flex; flex-direction:column; gap:13px; }
.about-list li{ position:relative; padding-left:26px; font-size:14.5px; color:var(--ink); }
.about-list li::before{ content:"\2713"; position:absolute; left:0; top:0; color:var(--gold-dim); font-weight:800; }
.about-stats{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); }
.stat-box{ background:var(--bg); padding:30px 22px; text-align:center; }
.stat-num{ font-size:26px; font-weight:800; color:var(--ink); }
.stat-label{ margin-top:8px; font-size:11.5px; letter-spacing:0.6px; color:var(--ink-faint); text-transform:uppercase; font-weight:700; }

/* ============ CTA band ============ */
.cta-band{ background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:70px 0; }
.cta-band-inner{ display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-band h2{ font-size:28px; font-weight:800; margin:0 0 8px; letter-spacing:-0.5px; }
.cta-band p{ margin:0; color:var(--ink-soft); font-size:15px; }

/* ============ Contact ============ */
.contact-inner{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px; }
.contact-line{ display:flex; gap:14px; align-items:flex-start; margin:24px 0; }
.contact-line svg{ width:20px; height:20px; flex:0 0 auto; margin-top:2px; }
.contact-line p{ margin:0; font-size:15px; line-height:1.6; color:var(--ink-soft); }
.contact-form{ border:1px solid var(--line); padding:38px; display:flex; flex-direction:column; gap:16px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-form input, .contact-form select, .contact-form textarea{
  width:100%; padding:15px 16px; border:1.5px solid var(--line); border-radius:var(--radius);
  font-family:inherit; font-size:14.5px; color:var(--ink); background:var(--bg);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus{ outline:none; border-color:var(--gold-dim); box-shadow:0 0 0 3px rgba(212,175,55,0.15); }
.form-note{ font-size:12px; color:var(--ink-faint); margin:0; text-align:center; }

/* ============ Footer ============ */
.site-footer{ background:var(--ink); color:#B4B4B4; }
.footer-inner{ display:flex; justify-content:space-between; gap:40px; padding:64px 0 44px; flex-wrap:wrap; }
.footer-brand{ display:flex; gap:14px; align-items:center; }
.footer-logo{ width:44px; height:44px; border-radius:50%; background:#fff; object-fit:contain; }
.footer-word{ color:#fff; font-size:17px; font-weight:800; }
.footer-tag{ font-size:12.5px; color:var(--gold); margin-top:3px; }
.footer-links{ display:flex; gap:64px; flex-wrap:wrap; }
.footer-links h4{ color:#fff; font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin:0 0 18px; }
.footer-links a{ display:block; font-size:14px; color:#8A8A8A; margin-bottom:11px; }
.footer-links a:hover{ color:var(--gold); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner{ display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; padding:24px 0; font-size:12px; color:#6E6E6E; }
.footer-bottom p{ margin:0; }
.disclaimer{ max-width:640px; }

/* ============ Scroll reveal ============ */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ============ Responsive ============ */
@media (max-width:980px){
  .about-inner, .contact-inner{ grid-template-columns:1fr; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .service-card{ border-top:1px solid var(--line); }
  .insights-grid{ grid-template-columns:1fr; }
  .ipo-stats{ grid-template-columns:repeat(2,1fr); }
  .ipo-stat{ border-bottom:1px solid rgba(255,255,255,0.1); padding-bottom:18px; }
  .about-stats{ margin-top:10px; }
  .hero h1{ font-size:72px; }
}
@media (max-width:760px){
  .main-nav, .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .main-nav.open{
    display:flex; position:absolute; top:82px; left:0; right:0; background:var(--bg);
    flex-direction:column; padding:20px 32px; gap:18px; border-bottom:1px solid var(--line);
  }
  .services-grid{ grid-template-columns:1fr; }
  .service-card{ border-left:none; border-top:1px solid var(--line); }
  .service-card:last-child{ border-right:none; }
  .form-row{ grid-template-columns:1fr; }
  .hero{ padding:80px 0 0; }
  .hero h1{ font-size:52px; letter-spacing:-2px; }
  .hero-sub{ font-size:16px; }
  section{ padding:72px 0; }
  .cta-band-inner{ text-align:center; justify-content:center; }
  .footer-inner{ flex-direction:column; }
  .chart-widget-wrap{ height:320px; }
  .hero-stats-inner{ gap:36px; padding:32px 0; }
}
