/* TraderTools.pro — DarkNews-style theme (adapted from AF Themes DarkNews 3.5.4 look) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #000000;
  --surface:   #121212;
  --surface-2: #171717;
  --card:      #1e1e1e;
  --card-2:    #212121;
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.16);
  --text:      #ffffff;
  --text-2:    #b5b5b5;
  --text-3:    #7a7a7a;
  --accent:      #3f6fa8;
  --accent-dark: #2d5480;
  --accent-hi:   #6b9fd4;
  --dw:        #c26565;
  --bts:       #8b7fd4;
  --cs:        #5da28a;
  --ct:        #6a8fc9;
  --sw:        #d0762f;
  --heading:   'Roboto', sans-serif;
  --body:      'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--text); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--heading); color: var(--text); }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Top bar ─────────────────────────────────────────── */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 16px;
}
.topbar-date { color: var(--text-3); letter-spacing: .02em; }
.topbar-tag { color: var(--text-3); display: none; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-right a { color: var(--text-3); font-size: 12px; }
.topbar-right a:hover { color: var(--accent); }
@media (min-width: 800px) { .topbar-tag { display: block; } }

/* ── Header ──────────────────────────────────────────── */
.site-header { background: var(--bg); padding: 26px 0; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 900; font-size: 20px;
  color: #fff; letter-spacing: -1px;
  border-radius: 4px;
}
.logo-text { line-height: 1.15; }
.logo-name {
  font-family: var(--heading); font-weight: 900; font-size: 27px;
  color: var(--text); letter-spacing: -0.5px; text-transform: uppercase;
}
.logo-name em { font-style: normal; color: var(--accent); }
.logo-sub { font-size: 11px; color: var(--text-3); letter-spacing: .12em; text-transform: uppercase; }
.logo:hover .logo-name, .logo:hover .logo-sub { color: var(--text); }
.logo:hover .logo-name em { color: var(--accent); }
.header-tagline { font-size: 13px; color: var(--text-2); font-family: var(--heading); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.header-promo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 22px;
  display: flex; align-items: center; gap: 18px;
  max-width: 480px;
}
.header-promo:hover { border-color: var(--accent); color: inherit; }
.promo-label {
  background: var(--accent); color: #fff;
  font-family: var(--heading); font-weight: 700; font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 2px; flex-shrink: 0;
}
.promo-text { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.promo-text strong { color: var(--text); }

/* ── Nav ─────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.navbar-inner { display: flex; align-items: stretch; justify-content: space-between; }
.nav-links { display: flex; align-items: stretch; overflow-x: auto; }
.nav-links a {
  display: flex; align-items: center;
  padding: 0 18px; height: 52px;
  font-family: var(--heading); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text); white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-cta {
  display: flex; align-items: center; align-self: center;
  background: var(--accent); color: #fff !important;
  font-family: var(--heading); font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 2px;
  margin-left: 16px; flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent-dark); }

/* ── Breaking ticker ─────────────────────────────────── */
.ticker { background: var(--bg); border-bottom: 1px solid var(--border); }
.ticker-inner { display: flex; align-items: center; height: 44px; overflow: hidden; }
.ticker-label {
  background: var(--accent); color: #fff;
  font-family: var(--heading); font-weight: 700; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 2px;
  flex-shrink: 0; margin-right: 18px;
}
.ticker-track { flex: 1; overflow: hidden; position: relative; }
.ticker-move {
  display: inline-flex; gap: 48px;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.ticker-move:hover { animation-play-state: paused; }
.ticker-move span { color: var(--text-2); }
.ticker-move b { color: var(--text); font-weight: 600; }
.ticker-move .t-src { color: var(--accent-hi); font-weight: 700; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Main banner grid ────────────────────────────────── */
.banner { padding: 28px 0 10px; }
.banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
}
.banner-sub { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }

/* Sub story cards — image top, text below, no overlay */
.story {
  display: flex; flex-direction: column;
  border-radius: 4px; overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color .15s;
}
.story:hover { border-color: var(--border-hi); color: inherit; }
.story-img { overflow: hidden; flex-shrink: 0; height: 155px; }
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  display: block; transition: transform .4s ease;
}
.story:hover .story-img img { transform: scale(1.04); }
.story-body { padding: 10px 14px 12px; }
.story-title {
  font-family: var(--heading); font-weight: 700;
  color: var(--text); line-height: 1.3; font-size: 13px;
}
.story:hover .story-title { color: var(--accent-hi); }
.story-meta { margin-top: 4px; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; }

/* Rotating main card — same grid position, 5 slides */
.story-main {
  border-radius: 4px; overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.main-slides { flex: 1; overflow: hidden; }
.main-slide { display: none; }
.main-slide.active { display: block; animation: slideIn .3s ease; }
@keyframes slideIn {
  from { transform: translateX(28px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
.main-slide > a {
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none;
}
.main-slide > a:hover .story-title { color: var(--accent-hi); }
.main-slide .story-img { height: 330px; }
.story-main .story-body { padding: 20px 24px 16px; }
.story-main .story-title { font-size: 24px; line-height: 1.3; color: var(--text); }
.story-excerpt { margin-top: 10px; font-size: 13.5px; color: var(--text-2); }
.story-main .story-meta { margin-top: 8px; font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; }
.main-dots {
  display: flex; gap: 7px; padding: 10px 24px 12px;
  border-top: 1px solid var(--border);
}
.main-dot {
  width: 26px; height: 3px; border-radius: 2px;
  background: var(--border-hi); border: none; cursor: pointer;
  padding: 0; transition: background .2s;
}
.main-dot.active { background: var(--accent); }

/* ── Stats strip ─────────────────────────────────────── */
.stats { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-top: 28px; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 24px 26px; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; }
.stat-product { font-family: var(--heading); font-weight: 700; font-size: 11px; color: var(--accent-hi); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.stat-num { font-family: var(--heading); font-weight: 900; font-size: 27px; color: var(--text); }
.stat-num em { font-style: normal; color: var(--accent-hi); }
.stat-label { font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* ── Sections ────────────────────────────────────────── */
section { padding: 64px 0; }
.section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.section-title {
  font-family: var(--heading); font-weight: 900; font-size: 22px;
  color: var(--text); text-transform: uppercase; letter-spacing: .02em;
  position: relative; padding-left: 14px; flex-shrink: 0;
}
.section-title::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 4px; background: var(--accent); border-radius: 1px;
}
.section-head::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.section-sub { color: var(--text-2); font-size: 15px; max-width: 640px; margin-bottom: 8px; }

/* ── Edge rows ───────────────────────────────────────── */
.edge-rows { margin-top: 36px; border-top: 1px solid var(--border); }
.edge-row {
  display: grid; grid-template-columns: 64px 260px 1fr; gap: 28px;
  padding: 26px 0; border-bottom: 1px solid var(--border); align-items: baseline;
}
.edge-num { font-family: var(--heading); font-weight: 900; font-size: 22px; color: var(--accent-hi); }
.edge-row h3 { font-size: 16px; font-weight: 700; }
.edge-row p { font-size: 14px; color: var(--text-2); }

/* ── Tool cards ──────────────────────────────────────── */
.tools-grid {
  display: flex; flex-direction: column;
  gap: 24px; margin-top: 36px;
}
.tool-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .15s;
  text-decoration: none; color: inherit;
}
.tool-card:hover { border-color: var(--border-hi); color: inherit; }
.tool-thumb { position: relative; aspect-ratio: 16/7; overflow: hidden; background: var(--surface-2); }
.tool-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top left; transition: transform .4s ease; }
.tool-card:hover .tool-thumb img { transform: scale(1.02); }
.tool-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.tool-name { font-family: var(--heading); font-weight: 900; font-size: 20px; color: var(--text); }
.tool-tagline { font-size: 13px; color: var(--accent-hi); font-weight: 600; margin: 2px 0 12px; }
.tool-desc { font-size: 13.5px; color: var(--text-2); flex: 1; margin-bottom: 18px; }
.tool-signals { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.signal-tag {
  background: var(--card-2); border: 1px solid var(--border);
  color: var(--text-3); font-size: 11px;
  padding: 3px 9px; border-radius: 2px;
}
.tool-link {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  background: var(--accent); color: #fff;
  font-family: var(--heading); font-weight: 700; font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 2px;
}
.tool-link:hover { background: var(--accent-dark); color: #fff; }
.coming-badge {
  display: inline-block; width: fit-content;
  background: var(--card-2); border: 1px solid var(--border);
  color: var(--text-3); font-size: 12px;
  padding: 9px 14px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
}

/* ── Bundle grid ─────────────────────────────────────── */
.bundle-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px; margin-top: 36px;
}
.bundle-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  padding: 22px 24px; border-top: 3px solid var(--accent);
}
.bundle-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.bundle-item p { font-size: 13px; color: var(--text-2); }

/* ── Pricing ─────────────────────────────────────────── */
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 36px; max-width: 820px;
}
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 32px 30px; }
.price-card.featured { border-color: var(--accent); position: relative; }
.price-label {
  display: inline-block; font-family: var(--heading); font-weight: 700; font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 2px; margin-bottom: 12px;
  background: var(--card-2); color: var(--text-3); border: 1px solid var(--border);
}
.price-card.featured .price-label { background: var(--accent); color: #fff; border-color: var(--accent); }
.price-name { font-family: var(--heading); font-weight: 900; font-size: 20px; color: var(--text); }
.price-amount { font-family: var(--heading); font-weight: 900; font-size: 46px; color: var(--text); line-height: 1; margin: 14px 0 4px; }
.price-amount sup { font-size: 22px; vertical-align: top; }
.price-amount sub { font-size: 14px; font-weight: 400; color: var(--text-3); }
.price-note { font-size: 12px; color: var(--text-3); margin-bottom: 20px; }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  font-size: 13px; color: var(--text-2); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 10px;
}
.price-features li::before { content: "+"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.price-features li.dim, .price-features li.dim::before { color: var(--text-3); content: none; }
.price-features li.dim::before { content: "·"; }
.btn-plan {
  display: block; text-align: center;
  font-family: var(--heading); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 13px; border-radius: 2px;
}
.btn-plan.solid { background: var(--accent); color: #fff; }
.btn-plan.solid:hover { background: var(--accent-dark); }
.btn-plan.outline { border: 1px solid var(--border-hi); color: var(--text-2); }
.btn-plan.outline:hover { border-color: var(--accent); color: var(--accent); }
.price-lock { text-align: center; margin-top: 12px; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }

/* ── CTA strip ───────────────────────────────────────── */
.cta-strip { text-align: center; padding: 84px 24px; border-top: 1px solid var(--border); }
.cta-strip h2 {
  font-family: var(--heading); font-weight: 900;
  font-size: clamp(24px, 3.4vw, 38px); line-height: 1.25; margin-bottom: 16px;
}
.cta-strip h2 em { font-style: normal; color: var(--accent-hi); }
.cta-strip p { color: var(--text-2); font-size: 15px; max-width: 520px; margin: 0 auto 32px; }
.btn-primary {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-family: var(--heading); font-weight: 700; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 2px;
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.cta-note { margin-top: 16px; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }

/* ── Footer ──────────────────────────────────────────── */
footer { background: var(--surface-2); border-top: 2px solid var(--accent); padding: 48px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px; padding-bottom: 40px;
}
.footer-brand p { font-size: 13px; color: var(--text-3); margin-top: 12px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--heading); font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text);
  margin-bottom: 16px; position: relative; padding-left: 12px;
}
.footer-col h4::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 3px; background: var(--accent); }
.footer-col a { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 9px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { background: var(--bg); border-top: 1px solid var(--border); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; padding: 18px 0;
}
.footer-bottom p { font-size: 12px; color: var(--text-3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: var(--text-3); }
.footer-legal a:hover { color: var(--accent); }

/* ── Article pages ───────────────────────────────────── */
.page-title-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 40px 0 36px; }
.breadcrumb { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; color: var(--accent); }
.page-title-bar h1 {
  font-family: var(--heading); font-weight: 900;
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.2;
  max-width: 860px;
}
.article-wrap { max-width: 780px; margin: 0 auto; padding: 48px 24px 72px; }
.article-wrap h2 {
  font-family: var(--heading); font-weight: 700; font-size: 22px;
  margin: 40px 0 14px; padding-left: 12px; position: relative;
}
.article-wrap h2::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; background: var(--accent); }
.article-wrap h3 { font-family: var(--heading); font-weight: 700; font-size: 17px; margin: 28px 0 10px; }
.article-wrap p { margin-bottom: 16px; color: var(--text-2); }
.article-wrap ul, .article-wrap ol { margin: 0 0 16px 22px; color: var(--text-2); }
.article-wrap li { margin-bottom: 8px; }
.article-wrap a { color: var(--accent-hi); }
.article-wrap a:hover { color: #8fbbe8; }
.article-wrap strong { color: var(--text); }
.tool-highlight {
  background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: 4px; padding: 20px 24px; margin: 24px 0;
}
.tool-highlight h3 { margin-top: 0; }
.cta-box {
  background: var(--card); border: 1px solid var(--accent);
  border-radius: 4px; padding: 28px; margin: 40px 0 8px; text-align: center;
}
.cta-box h2 { padding-left: 0; margin-top: 0; }
.cta-box h2::before { display: none; }
.article-meta { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .banner-grid { grid-template-columns: 1fr; }
  .main-slide .story-img { height: 200px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .edge-row { grid-template-columns: 48px 1fr; }
  .edge-row p { grid-column: 2; }
  .header-promo { display: none; }
}
@media (max-width: 680px) {
  .banner-sub { grid-template-columns: 1fr; grid-template-rows: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-left: none; }
  .stat { padding: 18px 20px; }
  .tools-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  section { padding: 48px 0; }
}

/* ── Article content components ──────────────────────── */
.byline { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 28px; }
.intro { font-size: 16px; color: var(--text-2); margin-bottom: 32px; line-height: 1.8; }
.article-wrap .tool-card {
  display: block; background: var(--card); border: 1px solid var(--border);
  border-left: 4px solid var(--accent); border-radius: 4px;
  padding: 24px 28px; margin: 24px 0; overflow: visible;
}
.article-wrap .tool-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.article-wrap .tool-card p { margin: 0 0 12px; font-size: 14px; }
.article-wrap .tool-card a { font-size: 13px; font-weight: 600; }
.badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: var(--heading); font-weight: 700; font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 2px; margin-bottom: 12px;
}
.warning-box {
  background: var(--card); border: 1px solid var(--border);
  border-left: 4px solid #a86a3f; border-radius: 4px;
  padding: 16px 22px; margin: 24px 0;
}
.warning-box p { margin: 0; font-size: 13.5px; }
.highlight {
  border-left: 4px solid var(--accent); background: var(--card);
  border-radius: 4px; padding: 16px 22px; margin: 24px 0;
  font-style: italic; color: var(--text-2);
}
.highlight p { margin: 0; }
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin: 24px 0; }
.event-item { background: var(--card); border: 1px solid var(--border); border-top: 3px solid var(--accent); border-radius: 4px; padding: 16px 18px; }
.event-item h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.event-item p { font-size: 12.5px; margin: 0; color: var(--text-2); }
.filing-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 13.5px; }
.filing-table th {
  text-align: left; background: var(--card-2); color: var(--text);
  font-family: var(--heading); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 10px 14px; border: 1px solid var(--border);
}
.filing-table td { padding: 10px 14px; border: 1px solid var(--border); color: var(--text-2); }
.filing-table td:first-child { color: var(--accent-hi); font-weight: 700; white-space: nowrap; }
.cta-box p { font-size: 14px; margin-bottom: 20px; }
.cta-box h3 { font-family: var(--heading); font-size: 21px; font-weight: 900; margin: 0 0 10px; }
.cta-box > a {
  display: inline-block; background: var(--accent); color: #fff !important;
  font-family: var(--heading); font-weight: 700; font-size: 13px;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 12px 26px; border-radius: 2px;
}
.cta-box > a:hover { background: var(--accent-dark); }

/* ── Hero Carousel ───────────────────────────────────── */
.hero-carousel { position: relative; padding-bottom: 4px; }
.hero-slide { display: none; }
.hero-slide.active { display: block; }
.hero-slide > a {
  display: block;
  background: var(--card);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .15s;
}
.hero-slide > a:hover { border-color: var(--border-hi); color: inherit; }
.hero-slide-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.hero-slide-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  display: block;
  transition: transform .4s ease;
}
.hero-slide > a:hover .hero-slide-img img { transform: scale(1.02); }
.hero-slide-body {
  padding: 22px 28px 24px;
  border-top: 1px solid var(--border);
}
.hero-slide-title {
  font-family: var(--heading); font-weight: 700; font-size: 24px;
  color: var(--text); line-height: 1.3; margin-bottom: 12px;
}
.hero-slide > a:hover .hero-slide-title { color: var(--accent-hi); }
.hero-slide-excerpt {
  font-size: 14.5px; color: var(--text-2); margin-bottom: 12px; max-width: 840px;
}
.hero-slide-meta {
  font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em;
}
.hero-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 16px;
}
.hero-dot {
  width: 32px; height: 4px; border-radius: 2px;
  background: var(--border-hi); border: none; cursor: pointer;
  padding: 0; transition: background .2s;
}
.hero-dot.active { background: var(--accent); }
@media (max-width: 768px) {
  .hero-slide-img { height: 220px; }
  .hero-slide-title { font-size: 18px; }
  .hero-slide-body { padding: 16px 18px 18px; }
}

/* ── Contact page ────────────────────────────────────── */
.contact-cards { display: grid; gap: 16px; margin: 32px 0 48px; }
.contact-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  padding: 22px 26px;
}
.card-icon {
  font-family: var(--heading); font-weight: 900; font-size: 18px;
  color: #fff; background: var(--accent);
  width: 42px; height: 42px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 13.5px; margin-bottom: 8px; }
.contact-card a { color: var(--accent-hi); font-size: 13.5px; font-weight: 600; }
.faq h2 { margin-bottom: 8px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.faq-item p { font-size: 13.5px; margin: 0; }

/* ── Legal pages ─────────────────────────────────────── */
.legal-meta { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 24px; }
.notice {
  background: var(--card); border: 1px solid var(--accent); border-radius: 4px;
  padding: 18px 24px; margin-bottom: 32px;
}
.notice p { font-family: var(--heading); font-weight: 700; color: var(--text); margin-bottom: 6px; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.notice span { font-size: 13.5px; color: var(--text-2); }
.caps { font-size: 13px; line-height: 1.8; }
.contact-box { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 18px 24px; margin-top: 28px; }
.contact-box p { margin: 0; font-size: 13.5px; }

/* ── Page disclaimer strip ───────────────────────────── */
.page-disclaimer { background: var(--card); border-top: 1px solid var(--border); padding: 22px 0; }
.page-disclaimer p { font-size: 11px; color: var(--text-3); line-height: 1.75; margin: 0; }
.page-disclaimer a { color: var(--text-2); text-decoration: underline; }
.page-disclaimer a:hover { color: var(--accent); }
