:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#667085;
  --line:#e7e9ee;
  --line-soft:#eef0f3;
  --panel:#ffffff;
  --panel-warm:#faf9f7;
  --panel-blue:#f8fbff;
  --indicator:#6f6a56;
  --indicator-soft:#f7f5ef;
  --tv:#5b6b87;
  --tv-soft:#f5f7fb;
  --blue:#0b67f6;
  --blue-2:#2c7df7;
  --green:#18824b;
  --shadow:0 18px 52px rgba(16,24,40,.08);
  --shadow-sm:0 8px 24px rgba(16,24,40,.065);
  --radius:22px;
  --radius-sm:15px;
  --max:1380px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
button{font:inherit}

.wrap{width:min(calc(100% - 48px),var(--max));margin-inline:auto}

.site-header{
  height:76px;
  border-bottom:1px solid rgba(17,24,39,.06);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  position:sticky;
  top:0;
  z-index:50;
}
.nav{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:750;
  font-size:24px;
  letter-spacing:-.03em;
}
.brand-mark{
  width:34px;height:34px;border-radius:11px;
  display:grid;place-items:center;
  color:#0d9488;
  background:linear-gradient(145deg,#e9fbf8,#eef6ff);
  border:1px solid #d9eee9;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.75);
}
.brand span:last-child{color:#0a8f9a}
.nav-links{display:flex;align-items:center;gap:30px;font-size:14px;font-weight:560}
.nav-links a{opacity:.9}
.nav-links a:hover{opacity:1}
.nav-actions{display:flex;align-items:center;gap:18px;font-size:14px}
.btn{
  border:1px solid #d8dde6;
  background:#fff;
  border-radius:11px;
  padding:13px 20px;
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-weight:700;
  transition:.2s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 10px 25px rgba(16,24,40,.08)}
.btn.primary{
  color:#fff;
  border-color:#0b67f6;
  background:linear-gradient(180deg,#1974ff,#075de8);
  box-shadow:0 8px 22px rgba(11,103,246,.22);
}

.hero{
  min-height:610px;
  display:grid;
  grid-template-columns:minmax(330px,.82fr) minmax(640px,1.55fr);
  align-items:center;
  gap:54px;
  padding:26px 0 20px;
}
.hero-copy{padding-left:10px}
.hero h1{
  font-size:52px;
  line-height:1.03;
  letter-spacing:-.05em;
  margin:0 0 26px;
  max-width:560px;
}
.hero p{
  margin:0 0 30px;
  color:#4f5b70;
  line-height:1.75;
  font-size:18px;
  max-width:520px;
}
.hero-cta{display:flex;gap:14px;margin-bottom:34px}
.trust{display:flex;gap:30px;flex-wrap:wrap;color:#4f5b70;font-size:13px}
.trust span{display:flex;align-items:center;gap:8px}
.dot-check{
  width:19px;height:19px;border-radius:50%;
  display:grid;place-items:center;
  background:#eef7f1;color:#458760;
  font-size:12px;font-weight:800;
  border:1px solid #d8ebdf;
}

.product-shot{position:relative;padding:16px 0 8px}
.product-window{
  border:1px solid #e1e5ea;
  border-radius:19px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
}
.product-window img{display:block;width:100%;height:auto}

.section-kicker{
  text-align:center;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:10px;
  font-weight:750;
  color:#5e6672;
  margin-bottom:7px;
}
.section-title{
  text-align:center;
  margin:0 0 18px;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-.035em;
}

.strategy-section{padding:25px 0 10px}
.strategy-shell{
  width:min(calc(100% - 160px),1240px);
  margin-inline:auto;
}
.strategy-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.strategy-card{
  border:1px solid #dfe3e8;
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  transition:.25s ease;
}
.strategy-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(16,24,40,.075);
}
.strategy-head{
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:16px;
  border-bottom:1px solid #e7e9ed;
}
.strategy-icon{
  width:52px;height:52px;border-radius:14px;
  border:1px solid #d9ddd8;
  display:grid;place-items:center;
  flex:none;background:#fbfbfa;color:var(--indicator);
}
.strategy-card.tv .strategy-icon{
  color:var(--tv);
  border-color:#dce3ef;background:#fafbfe;
}
.strategy-name{flex:1}
.strategy-name h3{margin:0 0 4px;font-size:18px;letter-spacing:-.02em;line-height:1.15}
.strategy-name p{margin:0;color:#697180;font-size:12px;line-height:1.45}
.badges{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.badge{
  padding:6px 11px;border:1px solid #dfe3e8;border-radius:999px;
  font-size:11px;font-weight:650;color:#4e5867;background:#fbfcfd
}

.feature-list{padding:0 20px}
.feature-row{
  min-height:64px;
  padding:6px 0;
  display:grid;
  grid-template-columns:30px 40px 1fr;
  gap:10px;
  align-items:center;
  border-bottom:1px solid #eceef1;
}
.feature-row:last-child{border-bottom:0}
.num{
  width:26px;height:26px;border-radius:50%;
  display:grid;place-items:center;
  background:#f7f7f6;border:1px solid #e4e4e1;
  font-size:11px;font-weight:800;color:#4b4b49
}
.ficon{
  width:38px;height:38px;border-radius:10px;
  display:grid;place-items:center;
  background:#fbfbfa;border:1px solid #e2e3df;color:var(--indicator)
}
.tv .ficon{background:#fafbfe;border-color:#dfe5ef;color:var(--tv)}
.feature-copy strong{display:block;font-size:13px;margin-bottom:4px;line-height:1.35}
.feature-copy span{display:block;color:#606a78;font-size:11px;line-height:1.45}
.card-cta{padding:14px 20px 18px}
.card-cta .btn{width:100%;background:#fff;padding:10px 14px;font-size:12px;border-radius:9px}
.card-cta .btn{padding:11px 16px}
.strategy-card:not(.tv) .card-cta .btn{color:#69634d;border-color:#d8d3c3}
.strategy-card.tv .card-cta .btn{color:#52637e;border-color:#cad5e5}

.strip{
  margin-top:18px;
  border:1px solid #e4e6e9;
  border-radius:17px;
  background:#fff;
}
.notify-strip{
  display:grid;
  grid-template-columns:1.25fr .95fr .95fr .95fr .95fr;
  min-height:92px;
  align-items:center;
}
.notify-intro{padding:0 28px}
.notify-intro strong{display:block;font-size:19px;margin-bottom:5px}
.notify-intro span{font-size:13px;color:#697180}
.notify-item{
  min-height:58px;
  padding:0 22px;
  border-left:1px solid #e7e9ed;
  display:flex;align-items:center;gap:16px;
}
.service-icon{
  width:48px;height:48px;border-radius:13px;
  display:grid;place-items:center;
  background:#fbfbfa;border:1px solid #e3e4e3;
}

.service-icon svg{width:24px;height:24px;display:block}
.service-icon.email{color:#475467;background:#fafafa}
.service-icon.telegram{color:#229ED9;background:#f3fbff;border-color:#d9eef8}
.service-icon.x{color:#111;background:#fafafa}
.service-icon.webhook{color:#6b5bd2;background:#f8f6ff;border-color:#e6e0ff}

.notify-item strong{display:block;font-size:14px;margin-bottom:4px}
.notify-item small{font-size:12px;color:#697180}



.capabilities-section{
  padding:26px 0 10px;
}
.capabilities-shell{
  width:min(calc(100% - 160px),1240px);
  margin-inline:auto;
}
.capabilities-panel{
  background:#f7f7f5;
  border-radius:18px;
  padding:26px 28px 20px;
}
.capabilities-head{
  margin-bottom:18px;
}
.capabilities-head h2{
  margin:0 0 6px;
  font-size:24px;
  line-height:1.2;
  letter-spacing:-.025em;
}
.capabilities-head p{
  margin:0;
  color:#667085;
  font-size:12.5px;
  line-height:1.5;
  max-width:720px;
}
.capability-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.capability{
  min-height:104px;
  padding:17px 22px;
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  align-items:start;
  border-right:1px solid #e3e4e1;
  border-bottom:1px solid #e3e4e1;
  background:transparent;
  transition:background .18s ease;
}
.capability:nth-child(3n){border-right:0}
.capability:nth-last-child(-n+3){border-bottom:0}
.capability:hover{background:transparent}
.capability-icon{
  width:34px;height:34px;border-radius:50%;
  display:grid;place-items:center;
  background:#fff;
  border:1px solid #e5e7eb;
  color:#536175;
  font-size:12px;
  font-weight:750;
}
.capability-icon svg{width:17px;height:17px}
.capability:nth-child(1) .capability-icon{color:#3f6fb5;background:#f4f8ff;border-color:#dbe8fb}
.capability:nth-child(2) .capability-icon{color:#3b8b67;background:#f3faf6;border-color:#d9eee2}
.capability:nth-child(3) .capability-icon{color:#6956b8;background:#f7f5ff;border-color:#e4def8}
.capability:nth-child(4) .capability-icon{color:#b8752f;background:#fff8f1;border-color:#f2e1cd}
.capability:nth-child(5) .capability-icon{color:#5a72b7;background:#f5f7fd;border-color:#dee4f4}
.capability:nth-child(6) .capability-icon{color:#b65d68;background:#fff5f6;border-color:#f2dce0}
.capability:nth-child(7) .capability-icon{color:#318a8b;background:#f1fafa;border-color:#d8eeee}
.capability:nth-child(8) .capability-icon{color:#7657b5;background:#f8f5ff;border-color:#e6def6}
.capability:nth-child(9) .capability-icon{color:#3577b8;background:#f3f8fd;border-color:#dce8f3}
.capability strong{
  display:block;
  font-size:12.5px;
  line-height:1.25;
  margin:1px 0 5px;
}
.capability span{
  display:block;
  color:#667085;
  font-size:10.7px;
  line-height:1.45;
}
@media (max-width:1280px){
  .capabilities-shell{width:min(calc(100% - 96px),1240px)}
}
@media (max-width:850px){
  .capability-grid{grid-template-columns:1fr 1fr}
  .capability:nth-child(3n){border-right:1px solid #e3e4e1}
  .capability:nth-child(2n){border-right:0}
  .capability:nth-last-child(-n+3){border-bottom:1px solid #e3e4e1}
  .capability:nth-last-child(-n+2){border-bottom:0}
}
@media (max-width:680px){
  .capabilities-shell{width:min(calc(100% - 28px),1240px)}
  .capabilities-panel{padding:20px 18px 14px}
  .capabilities-head h2{font-size:21px}
}
@media (max-width:520px){
  .capability-grid{grid-template-columns:1fr}
  .capability{border-right:0!important;border-bottom:1px solid #e3e4e1!important;padding-inline:8px}
  .capability:last-child{border-bottom:0!important}
}

.platform-strip{
  margin-top:18px;
  background:#f7f7f5;
  border:none;
  border-radius:0;
  width:100%;
}
.platform-inner{
  width:min(calc(100% - 48px),var(--max));
  margin-inline:auto;
  min-height:120px;
  display:grid;
  grid-template-columns:1.15fr .9fr .9fr;
  align-items:center;
}
.platform-copy h3{font-size:19px;margin:0 0 8px}
.platform-copy p{font-size:13px;color:#697180;line-height:1.55;margin:0;max-width:420px}
.platform{
  display:flex;justify-content:center;align-items:center;gap:14px;
  font-size:26px;font-weight:850;letter-spacing:.02em
}
.binance-mark{
  width:35px;height:35px;position:relative;transform:rotate(45deg);
}
.binance-mark i{
  position:absolute;width:12px;height:12px;background:#f3ba2f;border-radius:2px
}
.binance-mark i:nth-child(1){left:11px;top:0}
.binance-mark i:nth-child(2){left:0;top:11px}
.binance-mark i:nth-child(3){left:22px;top:11px}
.binance-mark i:nth-child(4){left:11px;top:22px}
.binance-mark i:nth-child(5){left:11px;top:11px;transform:scale(.65)}
.kucoin-mark{
  width:38px;height:38px;display:grid;place-items:center;
  color:#21b7a7;font-size:34px;font-weight:900;line-height:1
}

footer{
  background:#f7f7f5;
  padding:42px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .75fr .75fr .75fr 1.2fr;
  gap:40px;
}
.footer-brand p,.footer-col a,.footer-news p{
  color:#657080;font-size:13px;line-height:1.65
}
.footer-col h4,.footer-news h4{font-size:12px;letter-spacing:.08em;text-transform:uppercase;margin:4px 0 13px}
.footer-col a{display:block;margin:8px 0}
.socials{display:flex;gap:9px;margin-top:18px}
.socials span{
  width:32px;height:32px;border-radius:9px;background:white;border:1px solid #e1e3e6;display:grid;place-items:center;font-size:13px
}
.subscribe{display:flex;gap:8px;margin-top:12px}
.subscribe input{
  min-width:0;flex:1;border:1px solid #dcdfe4;border-radius:9px;padding:11px 12px;background:#fff;outline:none
}
.subscribe button{
  border:0;border-radius:9px;padding:0 16px;background:#0b67f6;color:#fff;font-weight:700
}
.copyright{text-align:center;color:#6b7280;font-size:12px;margin-top:34px}

.reveal{opacity:0;transform:translateY(20px);transition:.65s cubic-bezier(.2,.7,.2,1)}
.reveal.visible{opacity:1;transform:none}

@media (max-width:1280px){
  .strategy-shell{width:min(calc(100% - 96px),1240px)}
}
@media (max-width:1050px){
  .nav-links{display:none}
  .hero{grid-template-columns:1fr;padding-top:54px}
  .hero-copy{padding-left:0;text-align:center}
  .hero h1,.hero p{margin-left:auto;margin-right:auto}
  .hero-cta,.trust{justify-content:center}
  .strategy-grid{grid-template-columns:1fr}
  .notify-strip{grid-template-columns:1fr 1fr}
  .notify-intro{grid-column:1/-1;padding:22px 28px}
  .notify-item{border-left:0;border-top:1px solid #e7e9ed}
  .platform-inner{grid-template-columns:1fr 1fr;padding:25px 0}
  .platform-copy{grid-column:1/-1;text-align:center;margin-bottom:14px}
  .footer-grid{grid-template-columns:1.3fr 1fr 1fr}
  .footer-news{grid-column:1/-1}
}
@media (max-width:680px){
  .strategy-shell{width:min(calc(100% - 28px),1240px)}
  .wrap{width:min(calc(100% - 28px),var(--max))}
  .site-header{height:66px}
  .brand{font-size:20px}
  .nav-actions .login{display:none}
  .hero h1{font-size:40px}
  .hero{gap:20px}
  .section-title{font-size:28px}
  .strategy-head{align-items:flex-start}
  .badges{width:100%;justify-content:flex-start}
  .strategy-head{flex-wrap:wrap}
  .feature-row{grid-template-columns:28px 36px 1fr;min-height:62px;padding:6px 0}
  .feature-list{padding:0 16px}
  .card-cta{padding-inline:16px}
  .notify-strip{grid-template-columns:1fr}
  .notify-item{border-left:0}
  .platform-inner{width:min(calc(100% - 28px),var(--max));grid-template-columns:1fr;gap:18px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-brand,.footer-news{grid-column:1/-1}
}


/* =========================================================
   v11 — Gray palette sampled from the user's reference image
   Reference characteristics:
   - Main surface:       #FDFDFD
   - Soft gray surface:  #FBFBFC
   - Section gray:       #F9F9FA
   - Strong border:      #D4D3D8
   - Light divider:      #E6E6E6
   Only surface/border colors changed.
   ========================================================= */
:root{
  --ref-surface:#FDFDFD;
  --ref-soft:#FBFBFC;
  --ref-section:#F9F9FA;
  --ref-footer:#F8F8F9;
  --ref-border:#D4D3D8;
  --ref-divider:#E6E6E6;
}

/* Strategy cards */
.strategy-card{
  background:var(--ref-surface) !important;
  border-color:var(--ref-border) !important;
}
.strategy-head{
  background:var(--ref-soft) !important;
  border-bottom-color:var(--ref-divider) !important;
}
.feature-row{
  border-bottom-color:var(--ref-divider) !important;
}

/* Notification container */
.strip{
  background:var(--ref-surface) !important;
  border-color:var(--ref-border) !important;
}
.notify-item{
  border-left-color:var(--ref-divider) !important;
}

/* Features matrix */
.capabilities-panel{
  background:var(--ref-soft) !important;
  border:1px solid var(--ref-border) !important;
}
.capability{
  border-right-color:var(--ref-divider) !important;
  border-bottom-color:var(--ref-divider) !important;
}
.capability:hover{
  background:transparent !important;
}

/* Platforms section */
.platform-strip{
  background:var(--ref-section) !important;
  border-top:1px solid var(--ref-border) !important;
  border-bottom:1px solid var(--ref-border) !important;
}

/* Footer */
footer{
  background:var(--ref-footer) !important;
  border-top:1px solid var(--ref-border) !important;
}

/* Small surface elements use the same near-white family */
.num,
.badge,
.service-icon,
.capability-icon,
.socials span{
  background:var(--ref-soft) !important;
  border-color:var(--ref-border) !important;
}


/* =========================================================
   v12 — Compact supported-platforms section + no Explore CTAs
   ========================================================= */

/* Strategy cards now end naturally after feature 06 */
.card-cta{display:none !important}
.strategy-card .feature-list{
  padding-bottom:10px;
}
.strategy-card .feature-row:last-child{
  border-bottom:0 !important;
}

/* Compact supported exchanges block */
.platforms-compact{
  padding:20px 0 26px;
}
.platforms-shell{
  width:min(calc(100% - 160px),1240px);
  margin-inline:auto;
}
.platforms-card{
  min-height:108px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:32px;
  align-items:center;
  padding:20px 24px;
  border:1px solid #D4D3D8;
  border-radius:16px;
  background:#FBFBFC;
}
.platforms-kicker{
  margin-bottom:5px;
  font-size:10px;
  font-weight:750;
  letter-spacing:.16em;
  color:#6D7577;
}
.platforms-copy h3{
  margin:0 0 6px;
  font-size:18px;
  line-height:1.2;
  color:#2F3435;
}
.platforms-copy p{
  margin:0;
  max-width:520px;
  color:#667173;
  font-size:12px;
  line-height:1.5;
}
.platforms-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.platform-mini{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:12px 16px;
  border:1px solid #E6E6E6;
  border-radius:12px;
  background:#FDFDFD;
}
.platform-name{
  font-size:20px;
  font-weight:850;
  letter-spacing:.02em;
  color:#111827;
}
.binance-mark{
  width:31px;
  height:31px;
  position:relative;
  transform:rotate(45deg);
  flex:none;
}
.binance-mark i{
  position:absolute;
  width:10px;
  height:10px;
  background:#F3BA2F;
  border-radius:2px;
}
.binance-mark i:nth-child(1){left:10px;top:0}
.binance-mark i:nth-child(2){left:0;top:10px}
.binance-mark i:nth-child(3){left:20px;top:10px}
.binance-mark i:nth-child(4){left:10px;top:20px}
.binance-mark i:nth-child(5){left:10px;top:10px;transform:scale(.64)}
.kucoin-mark{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  color:#22B8A8;
  font-size:29px;
  font-weight:900;
  line-height:1;
  flex:none;
}

@media (max-width:1280px){
  .platforms-shell{
    width:min(calc(100% - 96px),1240px);
  }
}
@media (max-width:850px){
  .platforms-card{
    grid-template-columns:1fr;
    gap:16px;
  }
}
@media (max-width:680px){
  .platforms-shell{
    width:min(calc(100% - 28px),1240px);
  }
  .platforms-card{
    padding:18px;
  }
  .platforms-list{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   v13 — Remove duplicate exchange section + add brand tagline
   ========================================================= */
.brand-tagline{
  display:flex;
  align-items:center;
  gap:9px;
  flex-wrap:wrap;
  margin:0 0 18px;
  color:#34495E;
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.brand-tagline i{
  color:#20AFC0;
  font-style:normal;
  font-size:12px;
  letter-spacing:0;
}

/* The standalone platform block is intentionally retired.
   Binance & KuCoin support remains in the capabilities grid,
   avoiding duplicated marketing content. */
.platforms-compact{display:none !important}

@media (max-width:1050px){
  .brand-tagline{justify-content:center}
}
@media (max-width:680px){
  .brand-tagline{
    gap:7px;
    font-size:9px;
    letter-spacing:.12em;
    margin-bottom:14px;
  }
}


/* =========================================================
   v14 — Hero polish
   1) Keep the brand tagline above the hero heading, but make it
      visually subordinate.
   2) Add a soft professional shadow around the product screenshot.
   ========================================================= */

/* Eyebrow/tagline: correct location, quieter visual weight */
.brand-tagline{
  margin-bottom:16px !important;
  color:#5D6870 !important;
  font-size:10px !important;
  font-weight:750 !important;
  letter-spacing:.14em !important;
}
.brand-tagline i{
  color:#20AFC0 !important;
  font-size:10px !important;
}

/* Product screenshot: soften the hard edge with layered shadow */
.product-window{
  border:1px solid #E0E2E4 !important;
  border-radius:18px !important;
  overflow:hidden !important;
  background:#FFFFFF !important;
  box-shadow:
    0 2px 4px rgba(16,24,40,.04),
    0 10px 24px rgba(16,24,40,.08),
    0 28px 60px rgba(16,24,40,.10) !important;
}

/* Subtle breathing space around the screenshot */
.product-shot{
  padding-top:20px !important;
  padding-bottom:18px !important;
}


/* =========================================================
   v15 — Product-focused Hero messaging
   Content is specific to StratTrade instead of generic SaaS copy.
   ========================================================= */
.hero-benefits{
  gap:22px !important;
}
.hero-benefits span{
  color:#59666C !important;
  font-size:12.5px !important;
  font-weight:560 !important;
}
.hero-benefits .dot-check{
  width:18px !important;
  height:18px !important;
  font-size:11px !important;
}
@media (max-width:680px){
  .hero-benefits{
    gap:12px !important;
  }
}


/* =========================================================
   v17 — Clean footer
   - No GitHub
   - No Newsletter / Stay in the loop
   - One social group only: X, Telegram, YouTube
   - Light gray footer, compact height
   ========================================================= */
.clean-footer{
  background:#F1F2F2 !important;
  border-top:1px solid #D4D3D8 !important;
  padding:34px 0 18px !important;
}

.footer-grid-clean{
  display:grid !important;
  grid-template-columns:1.5fr .75fr .85fr .85fr !important;
  gap:54px !important;
  align-items:start !important;
}

.footer-brand p{
  max-width:360px !important;
  margin:16px 0 0 !important;
  color:#667173 !important;
  font-size:12.5px !important;
  line-height:1.6 !important;
}

.footer-col h4{
  margin:4px 0 14px !important;
  color:#2F3435 !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.09em !important;
  text-transform:uppercase !important;
}

.footer-col a{
  display:block !important;
  margin:8px 0 !important;
  color:#626D70 !important;
  font-size:12.5px !important;
  transition:color .16s ease, transform .16s ease !important;
}

.footer-col a:hover{
  color:#0A8F9A !important;
  transform:translateX(2px) !important;
}

.footer-socials{
  display:flex !important;
  gap:9px !important;
  margin-top:18px !important;
}

.footer-socials a{
  width:34px !important;
  height:34px !important;
  display:grid !important;
  place-items:center !important;
  border:1px solid #D4D3D8 !important;
  border-radius:9px !important;
  background:#FBFBFC !important;
  color:#343A3B !important;
  transition:.16s ease !important;
}

.footer-socials a:hover{
  background:#FFFFFF !important;
  color:#0A8F9A !important;
  border-color:#B9CED0 !important;
  transform:translateY(-2px) !important;
}

.footer-socials svg{
  width:17px !important;
  height:17px !important;
}

.footer-bottom{
  margin-top:28px !important;
  padding-top:16px !important;
  border-top:1px solid #D9DADC !important;
  text-align:center !important;
  color:#747E80 !important;
  font-size:11.5px !important;
}

@media (max-width:900px){
  .footer-grid-clean{
    grid-template-columns:1.4fr 1fr 1fr !important;
    gap:34px !important;
  }
  .footer-brand{
    grid-column:1/-1 !important;
  }
}

@media (max-width:620px){
  .footer-grid-clean{
    grid-template-columns:1fr 1fr !important;
    gap:26px !important;
  }
  .footer-brand{
    grid-column:1/-1 !important;
  }
  .clean-footer{
    padding-top:28px !important;
  }
}


/* =========================================================
   v18 — Real brand-style social icons + remove API Reference
   ========================================================= */
.footer-socials a{
  width:36px !important;
  height:36px !important;
  display:grid !important;
  place-items:center !important;
  background:#FFFFFF !important;
  border:1px solid #D4D3D8 !important;
  border-radius:10px !important;
  padding:0 !important;
}

.footer-socials a svg{
  width:20px !important;
  height:20px !important;
  display:block !important;
}

/* Official recognizable brand colors */
.footer-socials .social-x{
  color:#000000 !important;
}
.footer-socials .social-telegram{
  color:#229ED9 !important;
}
.footer-socials .social-youtube{
  color:#FF0000 !important;
}

.footer-socials a:hover{
  background:#FFFFFF !important;
  border-color:#BFC4C6 !important;
  transform:translateY(-2px) !important;
  box-shadow:0 6px 16px rgba(16,24,40,.08) !important;
}


/* =========================================================
   v19 — Official StratTrade branding
   Replaces the temporary HTML/CSS logo with the user's
   official transparent logo files.
   ========================================================= */
.brand-image-link{
  display:inline-flex !important;
  align-items:center !important;
  gap:0 !important;
  line-height:1 !important;
}

.brand-logo{
  display:block !important;
  width:auto !important;
  object-fit:contain !important;
}

.brand-logo-header{
  height:38px !important;
  max-width:190px !important;
}

.brand-logo-footer{
  height:40px !important;
  max-width:200px !important;
}

/* The old generated mark is no longer used. */
.brand-image-link .brand-mark{
  display:none !important;
}

@media (max-width:680px){
  .brand-logo-header{
    height:32px !important;
    max-width:160px !important;
  }
  .brand-logo-footer{
    height:36px !important;
    max-width:180px !important;
  }
}


/* =========================================================
   v20 FINAL — Approved Footer Model 08: Notion Gray
   ========================================================= */
.clean-footer,
footer{
  background:#F5F7FA !important;
  border-top:1px solid #E2E8F0 !important;
}

.footer-col h4,
.footer-bottom{
  color:#2F3A45 !important;
}

.footer-brand p,
.footer-col a,
.footer-bottom{
  color:#66727E !important;
}

.footer-col a:hover{
  color:#0A8F9A !important;
}

.footer-socials a{
  background:#FFFFFF !important;
  border-color:#E2E8F0 !important;
}

.footer-bottom{
  border-top-color:#E2E8F0 !important;
}


/* =========================================================
   v21 FINAL — Approved Button Model 08: Enterprise
   ========================================================= */
.btn{
  border-radius:6px !important;
  padding:10px 18px !important;
  border-width:1px !important;
  box-shadow:0 1px 2px rgba(16,24,40,.035) !important;
}

.btn.primary,
.site-header .btn.primary{
  border-radius:6px !important;
  box-shadow:0 2px 5px rgba(11,103,246,.12) !important;
}

.btn:hover{
  transform:none !important;
  box-shadow:0 2px 5px rgba(16,24,40,.06) !important;
}

/* Header CTA stays compact and aligned */
.site-header .btn{
  padding-top:10px !important;
  padding-bottom:10px !important;
}

/* Keep play icon visually proportional */
.hero-cta .btn span{
  font-size:.9em !important;
}


/* =========================================================
   v22 — Hero message focused on StratTrade's primary value
   Layout and styling remain based on approved v21.
   ========================================================= */
.hero h1{
  max-width:590px !important;
}
.hero p{
  max-width:570px !important;
}


/* =========================================================
   v23 — Hero polish model
   Focus: cleaner headline wrapping + correct commercial CTA
   ========================================================= */
.hero-copy{
  max-width:620px !important;
}

.hero h1{
  max-width:620px !important;
  font-size:clamp(48px,4.15vw,64px) !important;
  line-height:1.08 !important;
  letter-spacing:-.045em !important;
}

.hero p{
  max-width:585px !important;
  line-height:1.72 !important;
}

@media (max-width:1180px){
  .hero h1{
    font-size:clamp(46px,5vw,58px) !important;
  }
}

@media (max-width:760px){
  .hero h1{
    font-size:clamp(40px,10vw,52px) !important;
    max-width:100% !important;
  }
}


/* =========================================================
   v24 — Hero headline refinement
   Goal: fewer lines, calmer visual weight, same composition
   ========================================================= */
.hero-copy{
  max-width:680px !important;
}

.hero h1{
  max-width:680px !important;
  font-size:clamp(44px,3.65vw,58px) !important;
  line-height:1.07 !important;
  letter-spacing:-.042em !important;
}

@media (max-width:1280px){
  .hero h1{
    max-width:640px !important;
    font-size:clamp(43px,4vw,55px) !important;
  }
}

@media (max-width:980px){
  .hero h1{
    max-width:100% !important;
    font-size:clamp(42px,6vw,52px) !important;
  }
}


/* =========================================================
   v25 — Final hero headline wrap model
   Desktop target:
   Build trading strategies
   visually with
   drag & drop.
   ========================================================= */
.hero-copy{
  max-width:610px !important;
}

.hero h1.hero-headline-final{
  max-width:610px !important;
  font-size:clamp(44px,3.35vw,54px) !important;
  line-height:1.08 !important;
  letter-spacing:-.042em !important;
}

.hero-headline-final > span{
  display:block !important;
  white-space:nowrap !important;
}

@media (max-width:1180px){
  .hero h1.hero-headline-final{
    font-size:clamp(42px,4vw,50px) !important;
  }
}

@media (max-width:900px){
  .hero-headline-final > span{
    white-space:normal !important;
  }
  .hero h1.hero-headline-final{
    max-width:100% !important;
  }
}


/* =========================================================
   v27 — Hero text/image spacing refinement
   Only increases the visual gap between the copy and screenshot.
   ========================================================= */
.hero-grid{
  column-gap:42px !important;
}

@media (max-width:1180px){
  .hero-grid{
    column-gap:34px !important;
  }
}

@media (max-width:900px){
  .hero-grid{
    column-gap:24px !important;
  }
}



/* =========================================================
   v28 — Hero desktop scale refinement
   Goal: make 100% zoom feel visually closer to the user's 90% zoom.
   Changes: slightly reduce headline/body/button weight and screenshot footprint,
   while preserving the approved structure and message.
   ========================================================= */
@media (min-width: 1061px){
  .hero{
    min-height:565px !important;
    grid-template-columns:minmax(320px,.80fr) minmax(580px,1.38fr) !important;
    gap:34px !important;
    padding:18px 0 12px !important;
  }

  .hero-copy{
    max-width:560px !important;
    padding-left:6px !important;
  }

  .hero h1.hero-headline-final{
    max-width:560px !important;
    font-size:clamp(40px,3.05vw,49px) !important;
    line-height:1.09 !important;
    letter-spacing:-.038em !important;
    margin-bottom:22px !important;
  }

  .hero p{
    max-width:540px !important;
    font-size:16px !important;
    line-height:1.68 !important;
    margin-bottom:24px !important;
  }

  .hero-cta{
    gap:12px !important;
    margin-bottom:24px !important;
  }

  .hero-cta .btn{
    padding:12px 18px !important;
  }

  .trust.hero-benefits{
    gap:22px !important;
    font-size:12.5px !important;
  }

  .product-shot{
    display:flex !important;
    justify-content:flex-end !important;
    align-items:center !important;
    padding-top:12px !important;
    padding-bottom:10px !important;
  }

  .product-window{
    width:min(100%, 930px) !important;
    border-radius:17px !important;
  }
}

@media (min-width: 1061px) and (max-width: 1280px){
  .hero{
    gap:28px !important;
  }

  .hero h1.hero-headline-final{
    font-size:clamp(39px,3.2vw,46px) !important;
  }

  .product-window{
    width:min(100%, 885px) !important;
  }
}


/* =========================================================
   v29 — Strategy section refinement
   - Remove 01–06 numbering
   - Give Webhook / Email / Both a very light blue-gray surface
   ========================================================= */

.feature-row{
  grid-template-columns:40px minmax(0,1fr) !important;
  gap:14px !important;
}

/* TradingView signal-source labels: informative tags, not buttons */
.strategy-card.tv .badge{
  background:#F3F7FD !important;
  border:1px solid #DCE5F0 !important;
  color:#405A78 !important;
  border-radius:6px !important;
  padding:6px 11px !important;
  box-shadow:none !important;
}

@media (max-width:680px){
  .feature-row{
    grid-template-columns:36px minmax(0,1fr) !important;
    gap:12px !important;
  }
}


/* =========================================================
   v30 — Hero buttons refinement
   Goal: reduce visual weight while keeping accessibility
   and preserving the approved Enterprise button style.
   ========================================================= */

/* Only the two Hero CTAs are adjusted.
   Header "View Plans" remains unchanged. */
.hero-cta .btn{
  min-height:48px !important;
  height:48px !important;
  padding:0 20px !important;
  font-size:16px !important;
  line-height:1 !important;
  border-radius:6px !important;
}

/* Keep both Hero buttons exactly the same height */
.hero-cta .btn.primary,
.hero-cta .btn:not(.primary){
  min-height:48px !important;
  height:48px !important;
}

/* Keep the play icon proportional after the size reduction */
.hero-cta .btn span{
  font-size:.82em !important;
}

@media (max-width:680px){
  .hero-cta .btn{
    min-height:46px !important;
    height:46px !important;
    padding:0 17px !important;
    font-size:15px !important;
  }
}


/* =========================================================
   v31 — Unified interactive link hover
   Primary interactive hover color across the public site:
   #1267F2
   Brand/social icon colors remain untouched.
   ========================================================= */

/* Header/navigation text links */
.nav-links a:hover,
.nav-actions .login:hover{
  color:#1267F2 !important;
  opacity:1 !important;
}

/* Footer text links */
.footer-col a:hover{
  color:#1267F2 !important;
}

/* Do not recolor official social-brand icons on hover */
.footer-socials a:hover{
  color:inherit !important;
}

/* =========================================================
   v53 — Homepage hero top-gap refinement
   Goal:
   - Reduce the oversized white gap directly below the sticky header.
   - Preserve the approved hero design, screenshot size, typography,
     buttons, grid proportions and responsive layouts.
   - Desktop only; tablet/mobile rules remain untouched.
   ========================================================= */
@media (min-width: 1061px){
  .hero{
    min-height:0 !important;
    align-items:start !important;
    padding-top:10px !important;
    padding-bottom:8px !important;
  }

  .hero-copy{
    align-self:start !important;
    padding-top:40px !important;
  }

  .product-shot{
    align-self:start !important;
    padding-top:12px !important;
    padding-bottom:10px !important;
  }
}

