/* AlgoSys Marketing — site.css */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; color: #14181f; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --blue:       #0f2e6e;
  --blue-dark:  #0a1f4d;
  --blue-mid:   #1a3f8a;
  --green:      #54bf36;
  --green-dark: #3a7a1e;
  --green-light:#eef7e4;
  --gray-bg:    #f4f6f9;
  --gray-border:#ececf1;
  --text:       #14181f;
  --text-2:     #3a3f52;
  --text-3:     #5b6472;
  --text-4:     #9097a4;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 24px 60px rgba(15,46,110,0.22);
}

/* ── Layout helpers ───────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.sec  { padding: 80px 0; }
.sec-sm { padding: 56px 0; }

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

/* ── Typography ───────────────────────────────────────────── */
.h1-hero { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 60px; line-height: 1.1; color: var(--blue); letter-spacing: -1px; }
.h2-sec  { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 40px; line-height: 1.2; color: var(--blue); letter-spacing: -.5px; }
.h3-card { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px; color: var(--blue); }
.lead    { font-size: 17px; color: var(--text-3); line-height: 1.7; }
.label-up { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-dark); }

/* ── Pill / badge ─────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-light); color: var(--green-dark);
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 10px;
  font-weight: 700; font-size: 15px; line-height: 1;
  transition: opacity .15s, transform .1s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-outline  { border: 2px solid #c5cedf; color: var(--blue); background: transparent; }
.btn-outline:hover { border-color: var(--blue); }
.btn-green  { background: var(--green); color: #06250a; }
.btn-green:hover { background: var(--green-dark); color: #fff; opacity: 1; }
.btn-group  { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ── Nav ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; max-width: 1180px; margin: 0 auto; padding: 0 28px;
}
.nav-logo img { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14.5px; font-weight: 600; color: var(--text-3);
  padding: 6px 12px; border-radius: 8px;
  position: relative; transition: color .15s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 12px; right: 12px;
  height: 2px; border-radius: 2px; background: var(--green);
  transform: scaleX(0); transition: transform .15s;
}
.nav-link:hover { color: var(--blue); }
.nav-link.active { color: var(--blue); }
.nav-link.active::after { transform: scaleX(1); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.nav-caret { width: 12px; height: 12px; transition: transform .2s; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--gray-border);
  border-radius: 14px; box-shadow: 0 18px 44px rgba(15,46,110,0.16);
  min-width: 260px; padding: 8px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .15s, transform .15s;
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dd-item {
  display: block; padding: 10px 12px; border-radius: 8px;
  transition: background .12s;
}
.nav-dd-item:hover { background: var(--gray-bg); }
.nav-dd-label { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--blue); display: block; }
.nav-dd-sub   { font-size: 12.5px; color: var(--text-3); margin-top: 1px; display: block; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-signin { font-size: 14.5px; font-weight: 600; color: var(--text-3); padding: 7px 12px; border-radius: 8px; }
.nav-signin:hover { color: var(--blue); }
.nav-cta { font-size: 14px; font-weight: 700; background: var(--blue); color: #fff; padding: 11px 20px; border-radius: 9px; transition: opacity .15s; }
.nav-cta:hover { opacity: .88; }

/* hamburger */
.nav-burger {
  display: none; width: 42px; height: 42px;
  border-radius: 8px; border: 1px solid var(--gray-border);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }

/* mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200;
  background: #fff; overflow-y: auto; padding: 20px 24px 40px;
}
.nav-mobile-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.nav-mobile-close { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--gray-border); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-3); }
.nav-mobile-link { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--text-2); border-bottom: 1px solid var(--gray-border); }
.nav-mobile-link.active { color: var(--blue); }
.nav-mobile-sub { padding-left: 16px; }
.nav-mobile-sub a { display: block; padding: 10px 0; font-size: 14.5px; font-weight: 500; color: var(--text-3); border-bottom: 1px solid var(--gray-border); }
.nav-mobile-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

body.nav-open .nav-mobile { display: block; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--blue-dark); color: #fff; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
.footer-logo-wrap { background: #fff; display: inline-block; padding: 8px 12px; border-radius: 10px; margin-bottom: 16px; }
.footer-logo-wrap img { height: 28px; }
.footer-tagline { font-size: 13.5px; color: #7e8cb5; line-height: 1.7; max-width: 260px; margin-bottom: 16px; }
.footer-email { font-size: 13.5px; color: #aeb9d6; }
.footer-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; font-weight: 500; color: #c7d0e8; margin-bottom: 9px; transition: color .12s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-disclaimer { font-size: 12px; color: #7e8cb5; line-height: 1.65; max-width: 640px; }
.footer-copy { font-size: 12.5px; color: #7e8cb5; white-space: nowrap; }

/* ── Hero sections ────────────────────────────────────────── */
.hero { padding: 96px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-badge { margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: var(--text-3); line-height: 1.7; margin: 20px 0 32px; max-width: 520px; }
.hero-note { font-size: 13px; color: var(--text-4); margin-top: 14px; }
.hero-note span { margin-right: 10px; }

/* hero card / right panel */
.hero-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius); padding: 32px; color: #fff;
  box-shadow: var(--shadow);
}
.hero-card-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 24px; }

/* ── Broker strip ─────────────────────────────────────────── */
.broker-strip { background: var(--gray-bg); padding: 36px 0; }
.broker-strip-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-4); text-align: center; margin-bottom: 20px; }
.broker-logos { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.broker-chip {
  background: #fff; border: 1px solid var(--gray-border);
  border-radius: 8px; padding: 8px 18px;
  font-size: 14px; font-weight: 700; color: var(--blue);
  display: flex; align-items: center; gap: 6px;
}
.broker-chip .dot { width: 7px; height: 7px; border-radius: 50%; }
.broker-chip .dot-green { background: var(--green); }
.broker-chip .dot-yellow { background: #f5a524; }
.broker-strip-link { text-align: center; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--blue); }
.broker-strip-link a:hover { text-decoration: underline; }

/* ── Cards ────────────────────────────────────────────────── */
.card { background: var(--gray-bg); border-radius: var(--radius); padding: 28px; }
.card-border { background: #fff; border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px; }
.card-dark { background: var(--blue); color: #fff; border-radius: var(--radius); padding: 28px; }
.card-dark .h3-card { color: #fff; }
.card-dark p { color: rgba(255,255,255,.75); }
.card h4, .card-border h4, .card-dark h4, .step-card h4 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.step-card h4 { font-size: 20px; }
.card p { font-size: 14.5px; color: var(--text-3); line-height: 1.65; }
.card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }

/* ── Step cards ───────────────────────────────────────────── */
.step-card { background: var(--gray-bg); border-radius: var(--radius); padding: 28px 24px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; font-size: 13px; font-weight: 800; margin-bottom: 14px; }

/* ── Stats band ───────────────────────────────────────────── */
.stats-band { background: linear-gradient(135deg, #6cc24a 0%, #2f9223 100%); padding: 56px 0; }
.stats-band .grid-4 { gap: 0; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.2); }
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.stat-lbl { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); }

/* ── Testimonial / trust ──────────────────────────────────── */
.trust-sec { padding: 72px 0; background: var(--gray-bg); }
.quote-block { background: #fff; border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 36px; }
.quote-text { font-size: 18px; color: var(--text-2); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
.quote-attr { font-size: 13px; color: var(--text-4); font-weight: 600; }

/* ── Checklist ────────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-2); }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.cross-list li::before { content: '×'; color: var(--text-4); }

/* ── Explore hub cards ────────────────────────────────────── */
.explore-card { background: #fff; border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 24px 22px; transition: box-shadow .15s, border-color .15s; }
.explore-card:hover { border-color: #b4bfd6; box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.explore-card h4 { font-family: 'Sora', sans-serif; font-size: 15.5px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.explore-card p { font-size: 13.5px; color: var(--text-3); line-height: 1.6; }
.explore-card .arrow { margin-top: 14px; font-size: 16px; color: var(--blue); font-weight: 700; }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band { background: var(--blue); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-family: 'Sora', sans-serif; font-size: 44px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.5); }
.cta-deco { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-deco-1 { width: 200px; height: 200px; background: rgba(84,191,54,.12); top: -80px; right: -60px; }
.cta-deco-2 { width: 160px; height: 160px; background: rgba(84,191,54,.08); bottom: -40px; left: 60px; }

/* ── Pricing cards ────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card {
  border: 1px solid var(--gray-border); border-radius: var(--radius);
  padding: 32px; background: #fff; position: relative;
}
.pricing-card.featured {
  border-color: var(--green); border-width: 2px; background: #fff;
  box-shadow: 0 0 0 3px rgba(84,191,54,.12);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #06250a; font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pricing-name { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.pricing-price { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 800; color: var(--blue); line-height: 1; margin: 16px 0 4px; }
.pricing-price sup { font-size: 18px; vertical-align: top; margin-top: 6px; }
.pricing-price sub { font-size: 15px; font-weight: 600; color: var(--text-3); }
.pricing-desc { font-size: 14px; color: var(--text-3); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text-2); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.pricing-note-box { background: var(--gray-bg); border-radius: 10px; padding: 16px 18px; font-size: 13.5px; color: var(--text-3); margin-top: 16px; line-height: 1.6; }
.pricing-note-box strong { color: var(--text-2); }
.indicative-note { background: #fff8ec; border: 1px solid #f5a52440; border-radius: 10px; padding: 14px 18px; font-size: 13px; color: #7a5a10; margin-bottom: 32px; }
.indicative-note a { color: var(--blue); text-decoration: underline; }

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 15.5px; font-weight: 700; color: var(--blue); cursor: pointer; gap: 16px;
}
.faq-q:hover { color: var(--text-2); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--gray-border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-3); transition: transform .2s, border-color .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--blue); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 18px; font-size: 15px; color: var(--text-3); line-height: 1.7; }

/* FAQ grid layout */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.faq-cat { margin-bottom: 48px; }
.faq-cat-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 2px solid var(--green); display: inline-block; }
.faq-jump-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.faq-jump-nav a { font-size: 13.5px; font-weight: 600; color: var(--blue); background: var(--gray-bg); border: 1px solid var(--gray-border); padding: 7px 16px; border-radius: 100px; transition: background .12s; }
.faq-jump-nav a:hover { background: var(--gray-border); }

/* ── Bridge diagram ───────────────────────────────────────── */
.bridge-diagram { background: var(--gray-bg); border-radius: var(--radius); padding: 32px; }
.bridge-row { display: flex; align-items: center; gap: 0; }
.bridge-box {
  background: #fff; border: 1px solid var(--gray-border); border-radius: 10px;
  padding: 16px 20px; flex: 1; text-align: center;
}
.bridge-box h5 { font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.bridge-box p { font-size: 12px; color: var(--text-4); }
.bridge-arrow { padding: 0 12px; color: var(--text-4); font-size: 18px; flex-shrink: 0; }
.bridge-box.center { background: var(--blue); border-color: var(--blue); }
.bridge-box.center h5 { color: #fff; }
.bridge-box.center p { color: rgba(255,255,255,.7); }

/* ── Execution log ────────────────────────────────────────── */
.exec-log { background: #0c1220; border-radius: var(--radius); padding: 24px; font-family: monospace; }
.exec-log-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #4a6fa5; margin-bottom: 16px; }
.log-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 13px; }
.log-row:last-child { border-bottom: none; }
.log-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.log-dot-green { background: #54bf36; }
.log-dot-blue { background: #38bdf8; }
.log-dot-gray { background: #4a5568; }
.log-sym { color: #a0aec0; min-width: 80px; }
.log-action { color: #e2e8f0; flex: 1; }
.log-time { color: #54bf36; font-size: 12px; margin-left: auto; }

/* ── Broker cards (brokers page) ──────────────────────────── */
.broker-card { background: #fff; border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px; text-align: center; }
.broker-card-name { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue); margin: 12px 0 8px; }
.broker-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.status-live { background: var(--green-light); color: var(--green-dark); }
.status-progress { background: #fff8ec; color: #7a5a10; }
.broker-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 22px; font-weight: 800; color: var(--blue); }

/* ── VPS pricing tiers ────────────────────────────────────── */
.vps-tier { border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px; background: #fff; }
.vps-tier h4 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.vps-price { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; color: var(--blue); margin: 12px 0 4px; }
.vps-price sub { font-size: 14px; font-weight: 600; color: var(--text-3); }

/* ── Workflow / pipeline steps ────────────────────────────── */
.pipeline-step { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.pipeline-step:last-child { border-bottom: none; }
.pipeline-num { width: 26px; height: 26px; border-radius: 7px; background: var(--green); color: #06250a; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pipeline-text h5 { font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.pipeline-text p { font-size: 13px; color: rgba(255,255,255,.65); }

/* ── Blog ─────────────────────────────────────────────────── */
.blog-card { border: 1px solid var(--gray-border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.blog-card-img { height: 160px; }
.blog-card-body { padding: 20px; }
.blog-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--green-dark); margin-bottom: 8px; }
.blog-title { font-family: 'Sora', sans-serif; font-size: 16.5px; font-weight: 700; color: var(--blue); margin-bottom: 10px; line-height: 1.4; }
.blog-meta { font-size: 12.5px; color: var(--text-4); }
.blog-coming { pointer-events: none; opacity: .55; position: relative; }
.blog-coming-label { position: absolute; top: 12px; right: 12px; background: #fff8ec; color: #7a5a10; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; z-index: 1; pointer-events: none; }

/* ── Contact form ─────────────────────────────────────────── */
.contact-form-wrap { background: var(--gray-bg); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13.5px; font-weight: 700; color: var(--text-2); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--gray-border); border-radius: 9px;
  padding: 12px 14px; font-size: 15px; color: var(--text);
  background: #fff; transition: border-color .15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-static-note { font-size: 12.5px; color: var(--text-4); margin-top: 10px; }

/* ── Misc helpers ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: #fff; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.muted { color: var(--text-3); }
.gap-16 { gap: 16px; }
.items-start { align-items: flex-start; }
.w-full { width: 100%; }
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.do-dont-col h4 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.section-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green-dark); margin-bottom: 10px; }
.internal-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.int-link { border: 1px solid var(--gray-border); border-radius: 12px; padding: 18px 20px; display: block; transition: border-color .12s; }
.int-link:hover { border-color: var(--blue); }
.int-link h5 { font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.int-link p  { font-size: 13px; color: var(--text-3); }
.int-link .arr { font-size: 15px; color: var(--blue); margin-top: 8px; display: block; }

/* ── SVG chart visual ─────────────────────────────────────── */
.chart-vis { background: #0c1220; border-radius: var(--radius); padding: 20px; overflow: hidden; }
.chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.chart-sym { font-size: 13px; font-weight: 700; color: #e2e8f0; font-family: monospace; }
.chart-price { font-size: 15px; font-weight: 800; color: #54bf36; font-family: monospace; }
.exec-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(84,191,54,.15); border: 1px solid rgba(84,191,54,.3); color: #54bf36; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; margin-right: 6px; margin-top: 8px; }
.exec-status-rail { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); display: flex; flex-wrap: wrap; gap: 6px; }

/* ── AFL code block ───────────────────────────────────────── */
.afl-window { background: #1e2435; border-radius: var(--radius); overflow: hidden; }
.afl-titlebar { background: #2a3045; padding: 10px 14px; display: flex; align-items: center; gap: 8px; }
.afl-dot { width: 12px; height: 12px; border-radius: 50%; }
.afl-pre { padding: 20px; font-size: 13px; font-family: monospace; color: #a0aec0; line-height: 1.6; overflow-x: auto; }
.afl-keyword { color: #63b3ed; }
.afl-comment { color: #4a6fa5; }
.afl-string  { color: #68d391; }
.afl-num     { color: #f6ad55; }
.afl-exec-rail { padding: 12px 16px; border-top: 1px solid rgba(255,255,255,.06); background: #161b28; display: flex; flex-wrap: wrap; gap: 6px; }

/* ── Utility card variants ────────────────────────────────── */
.card-do   { background: #f6fbef; border: 1px solid #d7ecc8; border-radius: var(--radius); padding: 28px; }
.card-dont { background: #fafbfc; border: 1px solid #ececf1; border-radius: var(--radius); padding: 28px; }
.card-do h4, .card-dont h4 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.card-need-yes { background: #f6fbf1; border: 2px solid var(--green); border-radius: var(--radius); padding: 28px; }
.card-need-yes h4 { color: #3a7a1e; margin-bottom: 14px; }
.grid-4-auto { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.faq-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-2col .faq-item { border: 1px solid var(--gray-border); border-radius: 14px; padding: 24px 26px; border-bottom: none; }
.faq-2col .faq-item .faq-q { padding: 0 0 12px; }
.faq-2col .faq-item.open .faq-a { max-height: 400px; }
.scan-table { width: 100%; border-collapse: collapse; font-size: 13px; font-family: monospace; }
.scan-table th { background: rgba(255,255,255,.08); color: #a0aec0; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; padding: 10px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.07); }
.scan-table td { padding: 9px 14px; color: #e2e8f0; border-bottom: 1px solid rgba(255,255,255,.04); }
.scan-table tr:last-child td { border-bottom: none; }
.scan-table .buy  { color: #54bf36; font-weight: 700; }
.scan-table .sell { color: #ef4444; font-weight: 700; }

/* ── 404 page ─────────────────────────────────────────────── */
.not-found { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 0; }
.not-found h1 { font-family: 'Sora', sans-serif; font-size: 96px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 16px; }
.not-found h2 { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--text-2); margin-bottom: 12px; }
.not-found p  { font-size: 15.5px; color: var(--text-3); margin-bottom: 28px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links, .nav-actions .nav-signin, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 860px) {
  .h1-hero { font-size: 38px; }
  .h2-sec  { font-size: 28px; }
  .hero { padding: 60px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .grid-4-auto { grid-template-columns: 1fr 1fr; }
  .faq-2col { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .do-dont  { grid-template-columns: 1fr; }
  .internal-links { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-band .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; padding: 12px; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stat-item:last-child, .stat-item:nth-child(2n) { border-bottom: none; }
  .broker-strip .broker-logos { gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .bridge-row { flex-direction: column; }
  .bridge-arrow { transform: rotate(90deg); }
  .wrap { padding: 0 20px; }
  .cta-band h2 { font-size: 30px; }
}

@media (max-width: 520px) {
  .h1-hero { font-size: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .internal-links { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4-auto { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: 100%; justify-content: center; }
}
