:root {
  /* ANAX brand */
  --anax-obsidian:  #0C173B;
  --anax-blue:      #0092EB;
  --anax-teal:      #00CED0;

  /* Layout */
  --bg-base:        #0C173B;
  --bg-deep:        #050B1F;
  --bg-surface:     #0F1B47;
  --bg-elevated:    #15224F;
  --bg-hover:       #1B2B62;
  --border:         rgba(255,255,255,0.08);
  --border-strong:  rgba(255,255,255,0.16);
  --text-1:         #FFFFFF;
  --text-2:         #C5CCDC;
  --text-3:         #8893AC;
  --accent-soft:    rgba(0,146,235,0.12);
  --accent-glow:    rgba(0,206,208,0.35);
  --anax-gradient:  linear-gradient(90deg, var(--anax-blue) 0%, var(--anax-teal) 100%);

  /* Helpers */
  --green:          #2ECC8B;
  --red:            #FF5C6C;
  --raw-purple:     #B97AFF;

  /* Type */
  --font-primary:   'Inter', Arial, sans-serif;
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-mono:      'JetBrains Mono', 'Inter', monospace;

  /* Radii */
  --radius-sm:      6px;
  --radius-md:      8px;
  --radius-lg:      10px;
  --radius-xl:      14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  background: var(--bg-base);
  color: var(--text-1);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
body::before {
  content: ''; position: fixed; inset: 0;
  background:
    radial-gradient(1200px 600px at 8% -8%, rgba(0,146,235,0.10), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(0,206,208,0.08), transparent 60%);
  z-index: 0; pointer-events: none;
}
main, header, footer { position: relative; z-index: 1; }

/* === LOGO (actual image) === */
.brand-logo {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
}
.brand-logo img {
  display: block;
  height: 84px;
  width: auto;
  object-fit: contain;
}

/* === HEADER (matches anaxcapital.ae exactly) === */
.topbar {
  background: var(--bg-base);
  position: sticky; top: 0; z-index: 50;
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; gap: 24px;
}
/* Pill-shaped nav container (the rounded box around all nav links) */
.nav-links {
  display: flex; gap: 4px; align-items: center;
  background: rgba(12, 23, 59, 0.4);
  border: 1px solid rgba(0, 146, 235, 0.45);
  border-radius: 100px;
  padding: 6px 12px;
  box-shadow: 0 0 0 1px rgba(0, 146, 235, 0.12) inset;
}
.nav-links > a, .nav-dropdown > .nav-trigger {
  color: var(--text-1);
  font-family: var(--font-primary);
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: all .2s; cursor: pointer;
  background: none; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.nav-links > a:hover, .nav-dropdown:hover > .nav-trigger { color: var(--anax-teal); }
/* ACTIVE state — light blue/cyan background highlight (matches Tools button in screenshot) */
.nav-links > a.active, .nav-dropdown.active > .nav-trigger {
  background: linear-gradient(180deg, rgba(0, 146, 235, 0.45) 0%, rgba(0, 206, 208, 0.35) 100%);
  color: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--bg-elevated); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 8px; min-width: 220px;
  opacity: 0; visibility: hidden;
  transition: all .2s; box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px;
  color: var(--text-2); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  border-radius: var(--radius-sm); transition: all .15s;
}
.nav-dropdown-menu a:hover { background: var(--bg-hover); color: var(--anax-teal); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* Buttons — Login/Register both outlined (matches actual website) */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-primary); font-size: 15px; font-weight: 500;
  text-decoration: none;
  cursor: pointer; transition: all .2s; letter-spacing: 0.01em; white-space: nowrap;
}
/* Header Login + Register: both light blue outlined */
.btn-header-outline {
  background: transparent;
  color: var(--anax-blue);
  border: 1.5px solid var(--anax-blue);
}
.btn-header-outline:hover {
  background: rgba(0,146,235,0.12);
  color: var(--anax-teal);
  border-color: var(--anax-teal);
}
/* Hero CTA buttons keep the gradient style */
.btn-primary {
  background: var(--anax-gradient);
  color: #051028; font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(0,146,235,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0,206,208,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-ghost {
  background: transparent; color: var(--text-1);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-elevated); border-color: var(--anax-teal); color: var(--anax-teal); }
.menu-toggle { display: none; background: none; border: none; color: var(--text-1); cursor: pointer; padding: 6px; }

/* === HERO (centered like anaxcapital.ae) === */
.hero {
  padding: 56px 32px 48px;
  max-width: 1320px; margin: 0 auto;
  position: relative;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(0,206,208,0.25);
  color: var(--anax-teal);
  padding: 7px 16px; border-radius: 100px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--anax-teal); border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}
.hero h1 {
  font-family: var(--font-primary); font-weight: 700;
  font-size: clamp(36px, 4.8vw, 56px);
  letter-spacing: -0.02em; line-height: 1.18;
  margin: 0 auto 22px; color: var(--text-1);
  max-width: 1100px;
}
.hero h1 .accent {
  font-family: var(--font-primary); font-style: normal; font-weight: 700;
  background: var(--anax-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p.lead {
  font-size: 16px; color: var(--text-2);
  max-width: 920px; line-height: 1.75; font-weight: 400;
  margin: 0 auto;
}
.hero-tagline {
  margin-top: 28px;
  font-family: var(--font-primary); font-style: normal;
  font-size: 14px; color: var(--anax-teal); font-weight: 500;
  display: inline-flex; align-items: center; gap: 14px;
  letter-spacing: 0.02em;
}
.hero-tagline::before {
  content: ''; width: 32px; height: 1px;
  background: var(--anax-gradient);
}
/* Hero CTA buttons (Start Trading + Try Free Demo) */
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px;
}
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: linear-gradient(180deg, #4FB6F2 0%, #2A9DE0 100%);
  color: #FFFFFF; font-weight: 600; font-size: 15px;
  border: none; border-radius: 8px;
  text-decoration: none; cursor: pointer;
  transition: all .2s;
  box-shadow: 0 6px 20px rgba(0,146,235,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  font-family: var(--font-primary);
}
.btn-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,206,208,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-cta-primary .cta-icon {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: #FFFFFF; color: var(--anax-blue);
}
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: #FFFFFF; font-weight: 600; font-size: 15px;
  border: 1.5px solid var(--anax-blue);
  border-radius: 8px;
  text-decoration: none; cursor: pointer;
  transition: all .2s;
  font-family: var(--font-primary);
}
.btn-cta-ghost:hover {
  background: rgba(0,146,235,0.1);
  border-color: var(--anax-teal);
  color: var(--anax-teal);
}
.btn-cta-ghost .cta-icon {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px; border-radius: 4px;
  background: linear-gradient(135deg, var(--anax-blue), var(--anax-teal));
  color: #FFFFFF;
}

.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 44px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
}
.stat { background: var(--bg-surface); padding: 24px 26px; }
.stat-label { font-size: 11px; font-weight: 600; color: var(--text-3); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.stat-value {
  font-family: var(--font-primary); font-size: 32px; font-weight: 700;
  color: var(--text-1); letter-spacing: -0.02em; line-height: 1;
}
.stat-value .unit { font-size: 14px; color: var(--text-3); font-weight: 500; margin-left: 4px; font-family: var(--font-primary); }
.stat-sub { font-size: 12px; color: var(--text-3); margin-top: 8px; }

/* === Controls === */
.controls-section { max-width: 1320px; margin: 24px auto 0; padding: 0 32px; }
.controls-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 18px; }
.account-tabs {
  display: flex; gap: 6px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4px; margin-bottom: 16px;
}
.account-tab {
  flex: 1; padding: 12px 18px;
  background: transparent; border: none;
  border-radius: var(--radius-md);
  color: var(--text-2);
  font-family: var(--font-primary); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.account-tab .tier-badge {
  font-size: 9.5px; padding: 3px 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  color: var(--text-3); font-weight: 700; letter-spacing: 0.06em;
}
.account-tab:hover { color: var(--text-1); }
.account-tab.active {
  background: var(--anax-gradient);
  color: #051028;
  box-shadow: 0 4px 14px rgba(0,146,235,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}
.account-tab.active .tier-badge { background: rgba(5,16,40,0.2); color: rgba(5,16,40,0.85); }

.controls-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.search-wrap { position: relative; flex: 1; min-width: 240px; }
.search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-3); }
.search-input {
 width: 100% !important;
    padding: 12px 14px 12px 42px !important;
    background: var(--bg-deep) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
  color: var(--text-1);
  font-family: var(--font-primary); font-size: 14px;
  transition: border .2s;
}
.search-input::placeholder { color: var(--text-3); }
.search-input:focus { outline: none; border-color: var(--anax-blue); }

.cat-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.cat-filter {
  padding: 10px 14px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-2);
  font-family: var(--font-primary); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; gap: 6px;
}
.cat-filter:hover { color: var(--text-1); border-color: var(--border-strong); }
.cat-filter.active { background: var(--accent-soft); color: var(--anax-teal); border-color: rgba(0,206,208,0.35); }
.cat-filter .count { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--text-3); }
.cat-filter.active .count { color: var(--anax-teal); }

/* === Table === */
.table-section { max-width: 1320px; margin: 16px auto 0; padding: 0 32px; }
.table-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.table-wrap { overflow-x: auto; }
table.spec-table { width: 100%; border-collapse: collapse; min-width: 720px; }
table.spec-table thead th {
  text-align: left;
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700;
  color: var(--text-3); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 24px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  white-space: nowrap; position: sticky; top: 0;
}
table.spec-table thead th.sortable { cursor: pointer; user-select: none; }
table.spec-table thead th.sortable:hover { color: var(--text-1); }
table.spec-table thead th .sort-icon { margin-left: 6px; opacity: 0.4; transition: opacity .2s; }
table.spec-table thead th.sorted .sort-icon { opacity: 1; color: var(--anax-teal); }
table.spec-table tbody tr { border-bottom: 1px solid var(--border); transition: background .2s; }
table.spec-table tbody tr:last-child { border-bottom: none; }
table.spec-table tbody tr:hover { background: var(--bg-hover); }
table.spec-table tbody tr.cat-header td {
  background: rgba(255,255,255,0.025);
  padding: 14px 24px;
  font-family: var(--font-primary);
  font-size: 11.5px; font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.14em; text-transform: uppercase;
}
table.spec-table tbody tr.cat-header .cat-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 12px; vertical-align: middle; }
table.spec-table tbody td { padding: 18px 24px; font-size: 14px; color: var(--text-1); }
.symbol-cell { display: flex; align-items: center; gap: 12px; }
.symbol-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-primary); font-size: 11px; font-weight: 700;
  background: var(--bg-elevated); border: 1px solid var(--border);
  flex-shrink: 0;
}
.symbol-name { font-family: var(--font-mono); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; }
.symbol-cat-mini { font-size: 11px; color: var(--text-3); margin-top: 2px; font-family: var(--font-primary); }
.spread-pill {
  display: inline-block; padding: 5px 12px;
  background: rgba(0,146,235,0.1);
  border: 1px solid rgba(0,146,235,0.25);
  border-radius: var(--radius-sm);
  color: #6BB8F4;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
}
.commission-text { font-family: var(--font-mono); font-size: 13px; color: var(--text-2); }
.commission-text.zero { color: var(--green); }
.commission-text.high { color: var(--raw-purple); font-weight: 600; }
.margin-pill {
  display: inline-block; padding: 5px 12px;
  background: rgba(0,206,208,0.1);
  border: 1px solid rgba(0,206,208,0.28);
  border-radius: var(--radius-sm);
  color: var(--anax-teal);
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
}
.margin-pill.dynamic {
  background: rgba(185,122,255,0.12);
  border-color: rgba(185,122,255,0.35);
  color: var(--raw-purple);
  font-family: var(--font-primary); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
}
.margin-bar-cell { display: flex; align-items: center; gap: 14px; min-width: 200px; }
.margin-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 100px; overflow: hidden; position: relative; }
.margin-bar-fill { height: 100%; border-radius: 100px; background: var(--anax-gradient); box-shadow: 0 0 10px var(--accent-glow); }
.margin-pct { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--anax-teal); min-width: 56px; text-align: right; }
.leverage-pill {
  display: inline-block; padding: 5px 12px;
  background: rgba(46,204,139,0.1);
  border: 1px solid rgba(46,204,139,0.25);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
}
.notional-text { font-family: var(--font-mono); font-size: 13px; color: var(--text-2); }
.empty-state { padding: 80px 32px; text-align: center; color: var(--text-3); }
.empty-state svg { margin-bottom: 16px; opacity: 0.4; }
.empty-state h3 { font-size: 18px; color: var(--text-2); margin-bottom: 6px; }

/* === Notes === */
.notes-section { max-width: 1320px; margin: 56px auto 0; padding: 0 32px; }
.notes-grid { display: grid; gap: 18px; }
.notes-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.notes-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.note-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; position: relative; overflow: hidden; }
.note-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100px; height: 100px; background: radial-gradient(circle at top left, rgba(0,206,208,0.1), transparent 70%); pointer-events: none; }
.note-card h4 { font-family: var(--font-primary); font-size: 16px; font-weight: 700; color: var(--text-1); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; position: relative; letter-spacing: -0.005em; }
.note-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-md);
  background: var(--accent-soft); color: var(--anax-teal);
  display: grid; place-items: center;
  border: 1px solid rgba(0,206,208,0.2);
  flex-shrink: 0;
}
.note-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.7; position: relative; font-weight: 400; }
.note-card ul { list-style: none; padding: 0; margin-top: 16px; position: relative; }
.note-card li { font-size: 13px; color: var(--text-2); padding: 12px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.note-card li:first-child { border-top: none; padding-top: 0; }
.note-card li .lab { color: var(--text-3); }
.note-card li .num { font-family: var(--font-mono); color: var(--text-1); font-weight: 600; }

/* === CTA === */
.cta-section { max-width: 1320px; margin: 72px auto 0; padding: 0 32px; }
.cta-section:last-child { margin-bottom: 64px; }
.cta-card {
  position: relative;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(0,146,235,0.18), transparent 70%),
    var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 60px 44px;
  text-align: center; overflow: hidden;
}
.cta-card * { position: relative; }
.cta-card .cta-eyebrow {
  font-family: var(--font-primary); font-style: normal;
  font-size: 13px; color: var(--anax-teal); margin-bottom: 12px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.cta-card h2 {
  font-family: var(--font-primary); font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.2;
}
.cta-card h2 em {
  font-family: var(--font-primary); font-weight: 700; font-style: normal;
  background: var(--anax-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-card p {
  color: var(--text-2);
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER (matches anaxcapital.ae) === */
footer.site-footer { margin-top: 88px; border-top: 1px solid var(--border); background: var(--bg-base); }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 60px 32px 28px; }
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 44px;
}
.footer-col h5 {
  font-family: var(--font-primary); font-size: 15px; font-weight: 700;
  color: var(--text-1); margin-bottom: 18px; letter-spacing: -0.005em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-2); text-decoration: none; font-size: 13.5px; transition: color .2s; }
.footer-col a:hover { color: var(--anax-teal); }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13px; color: var(--text-2); line-height: 1.55; }
.contact-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--anax-teal); }
.contact-list li a { color: var(--text-2); text-decoration: none; transition: color .2s; }
.contact-list li a:hover { color: var(--anax-teal); }

.social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.social-row a {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text-2);
  display: grid; place-items: center; transition: all .2s;
}
.social-row a:hover { color: var(--anax-teal); border-color: var(--anax-teal); background: var(--accent-soft); }

.disclaimer { padding-top: 28px; border-top: 1px solid var(--border); }
.disclaimer p { font-size: 11.5px; color: var(--text-3); line-height: 1.75; margin-bottom: 14px; text-align: justify; }
.disclaimer p strong { color: var(--text-2); font-weight: 600; }

.footer-bottom {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-myanax {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-1); text-decoration: none;
  font-size: 13px; font-weight: 600; transition: color .2s;
}
.footer-myanax:hover { color: var(--anax-teal); }
.footer-myanax svg { color: var(--anax-teal); }
.copyright-text { font-size: 12px; color: var(--text-3); }

/* Floating phone widget — full "800 MYANAX" pill (matches anaxcapital.ae) */
.floating-phone {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, #4FB6F2 0%, #2A9DE0 100%);
  color: #FFFFFF;
  padding: 12px 18px 12px 22px;
  border-radius: 10px 0 0 10px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), -2px 0 12px rgba(0,146,235,0.3);
  z-index: 35;
  transition: all .25s;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}
.floating-phone:hover {
  background: linear-gradient(180deg, #00CED0 0%, #0092EB 100%);
  padding-left: 28px;
}
.floating-phone svg { flex-shrink: 0; }

/* Floating WhatsApp icon (bottom-right) */
.floating-whatsapp {
  position: fixed; right: 22px; bottom: 22px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 36;
  transition: all .25s;
  color: #FFFFFF;
}
.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}

/* Back-to-top */
.back-to-top {
  position: fixed; bottom: 86px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border-strong);
  color: var(--text-1); cursor: pointer;
  display: grid; place-items: center;
  z-index: 40; opacity: 0; visibility: hidden;
  transition: all .3s; box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--anax-gradient); color: #051028; border-color: transparent; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 1100px) {
  .footer-top-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-col:nth-child(1) { grid-column: span 3; }
  .footer-col:nth-child(2) { grid-column: span 3; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
}
@media (max-width: 980px) {
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .notes-grid.cols-3, .notes-grid.cols-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta .btn-header-outline:first-of-type { display: none; }
  .hero { padding: 36px 20px 36px; }
  .controls-section, .table-section, .notes-section, .cta-section { padding: 0 20px; }
  .footer-inner { padding: 44px 20px 24px; }
  .topbar-inner { padding: 14px 20px; }
  .account-tabs { flex-direction: column; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-col:nth-child(1), .footer-col:nth-child(2) { grid-column: span 2; }
  .footer-col:nth-child(2) { border-bottom: none; padding-bottom: 0; }
  .brand-logo img { height: 60px; }
}
@media (max-width: 560px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-col:nth-child(1), .footer-col:nth-child(2) { grid-column: span 1; }
  .cta-card { padding: 40px 20px; }
  table.spec-table thead th, table.spec-table tbody td { padding: 14px 16px; }
  .symbol-icon { width: 32px; height: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .back-to-top { bottom: 76px; right: 16px; width: 40px; height: 40px; }
  .brand-logo img { height: 50px; }
  .floating-whatsapp { width: 46px; height: 46px; right: 16px; bottom: 16px; }
  .floating-phone { font-size: 12.5px; padding: 10px 14px 10px 18px; }
}

.reveal { opacity: 0; transform: translateY(12px); animation: reveal .6s ease forwards; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
.reveal:nth-child(1) { animation-delay: .05s; }
.reveal:nth-child(2) { animation-delay: .12s; }
.reveal:nth-child(3) { animation-delay: .19s; }
.reveal:nth-child(4) { animation-delay: .26s; }
.reveal:nth-child(5) { animation-delay: .33s; }


[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: unset;
    }
    table td, table th {
    border: unset;}