@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  --ink:#0F1115;
  --ink-raised:#171A1F;
  --ink-raised-2:#1E2127;
  --line:#282C33;
  --ice:#EEF1F5;
  --slate:#8A90A0;
  --accent:#22C3E8;
  --accent-2:#7FE9FF;
}

*{margin:0;padding:0;box-sizing:border-box; border-radius:0 !important;}
html{scroll-behavior:smooth;}
body{
  background:var(--ink);
  color:var(--ice);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
img{max-width:100%; display:block;}
button, input, textarea, select{font-family:inherit;}

.wrap{
    max-width:1240px;
    margin:0 auto;
    width:100%;
    padding:0 32px;
    box-sizing:border-box;
}
.eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--slate);
}

.tag{
  display:inline-flex;
  align-items:center;
  padding:5px 12px;
  border-left:3px solid var(--accent);
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--slate);
  background:var(--ink-raised);
}

/* ---------- ticker ---------- */
.ticker-bar{
  background:var(--ink-raised);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  white-space:nowrap;
  height:34px;
  display:flex;
  align-items:center;
  padding-left:0;
}
.ticker-track{
    display:flex;
    align-items:center;
    gap:36px;
    width:max-content;
    animation:scrollTicker 24s linear infinite;
}
.ticker-track span{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  color:var(--slate);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.ticker-track b{color:var(--ice); font-weight:600;}
.chev{color:var(--accent); font-weight:700;}
@keyframes scrollTicker{
from{
    transform:translateX(100%);
}

    to{
        transform:translateX(-100%);
    }
}

/* ---------- header ---------- */
header{
  border-bottom:1px solid rgba(255,255,255,.08);
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, rgba(15,17,21,.98) 0%, rgba(10,12,16,.97) 100%);
  backdrop-filter:blur(14px);
  box-shadow:0 12px 32px rgba(0,0,0,.22);
  overflow:hidden;
}
header::before,
header::after{
  content:'';
  position:absolute;
  top:-40%;
  width:60px;
  height:220%;
  background:linear-gradient(180deg, var(--accent) 0%, rgba(34,195,232,0) 85%);
  opacity:.16;
  transform:skewX(-18deg);
  pointer-events:none;
  z-index:0;
}
header::before{ right:14%; }
header::after{ right:6%; width:34px; opacity:.1; }
.nav-row{
    display:flex;
    align-items:center;
    min-height:84px;
    padding:12px 0;
    gap:24px;
    position:relative;
    z-index:1;
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

nav.primary{
    flex:1;
    display:flex;
    justify-content:center;
    gap:28px;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  padding:0;
  border:none;
  background:transparent;
  border-radius:0;
  flex-shrink:0;
}
.brand img.mark{height: 38px; width:auto; display:block;}
.wordmark{
  font-family:'Anton',sans-serif;
  font-size:28px;
  letter-spacing:.02em;
  line-height:1;
}

img.markedlogo{height: 180px; width: 250px; display:block;}
.wordmark .apostrophe{color:var(--accent);}
.brand-sub{
  font-family:'IBM Plex Mono',monospace;
  font-size:9.5px;
  letter-spacing:.2em;
  color:var(--slate);
  text-transform:uppercase;
  margin-top:2px;
}

nav.primary{
  display:flex; align-items:center; gap:24px;
  padding:0;
  border:none;
  background:transparent;
  border-radius:0;
  flex:1;
  justify-content:center;
}
nav.primary a{
  font-size:13px;
  font-weight:600;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--ice);
  position:relative;
  padding-bottom:4px;
}
nav.primary a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0%; height:2px;
  background:var(--accent);
  transition:width .2s ease;
}
nav.primary a:hover::after{width:100%;}

.nav-actions{display:flex; align-items:center; gap:12px; flex-wrap:nowrap; flex-shrink:0;}
.icon-btn{
  width:34px; height:34px;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:border-color .2s, color .2s;
  background:transparent;
  color:var(--ice);
}
.icon-btn:hover{border-color:var(--accent); color:var(--accent);}
.admin-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  padding:10px 16px;
  color:var(--ice);
  background:var(--ink-raised);
  border:1px solid var(--line);
  text-decoration:none;
  transition:background .2s, border-color .2s, color .2s;
}
.admin-link:hover{background:var(--ink); border-color:var(--accent); color:var(--accent);}
.subscribe-btn{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  background:var(--ice);
  color:var(--ink);
  padding:10px 18px;
  cursor:pointer; border:none;
  transition:background .2s;
}
.subscribe-btn:hover{background:var(--accent); color:var(--ice);}

/* ---------- hero ---------- */
.hero{
    padding:60px 0;
    border-bottom:1px solid var(--line);
    position:relative;
    overflow:hidden;
}
.hero::before{
    content:'';
    position:absolute;
    top:-30%;
    right:0;
    width:100px;      /* or keep 140px if it still looks good */
    height:180%;
    background:linear-gradient(
        180deg,
        var(--accent) 0%,
        rgba(34,195,232,0) 80%
    );
    opacity:.08;
    transform:translateX(30px) skewX(-18deg);
    pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:56px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero-eyebrow-row{display:flex; align-items:center; gap:12px; margin-bottom:18px;}
.offseason-dot{
  width:7px; height:7px; background:var(--accent-2);
  display:inline-block;
}
.hero h1{
  font-family:'Anton',sans-serif;
  font-size:clamp(34px, 4.2vw, 56px);
  line-height:1.03;
  text-transform:uppercase;
  margin-bottom:20px;
  color:var(--ice);
}
.hero h1 em{ font-style:normal; color:var(--accent); }
.hero p.dek{
  font-size:16px;
  line-height:1.65;
  color:var(--slate);
  max-width:520px;
  margin-bottom:24px;
}
.byline{
  display:flex; align-items:center; gap:12px;
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  color:var(--slate);
}
.byline b{color:var(--ice); font-weight:500;}

.hero-art{
    overflow:hidden;
    border-radius:0;
}

.hero-art img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.hero-art svg{width:100%; height:100%;}

/* ---------- offseason tracker ---------- */
.tracker{ padding:36px 0; border-bottom:1px solid var(--line); }
.tracker-head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:20px; }
.section-title{
  font-family:'Anton',sans-serif;
  font-size:20px;
  text-transform:uppercase;
}
.see-all{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--slate);
  transition:color .2s;
  cursor:pointer;
  background:none; border:none;
}
.see-all:hover{color:var(--accent);}

.tracker-row{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line);
}
.tracker-card{ background:var(--ink-raised); padding:18px 20px; }
.tracker-card .label{
  font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--slate); margin-bottom:10px;
}
.tracker-card .stat{ font-family:'IBM Plex Mono',monospace; font-size:26px; font-weight:600; color:var(--ice); margin-bottom:6px; }
.tracker-card .stat small{ font-size:13px; color:var(--slate); font-weight:400; }
.tracker-card .note{ font-size:12.5px; color:var(--slate); }

/* ---------- content grid ---------- */
.content{ padding:52px 0 76px; }
.content-grid{ display:grid; grid-template-columns:2fr 1fr; gap:56px; }
.article-list{ display:flex; flex-direction:column; }
.article-row{
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
}
.article-feature{
    aspect-ratio:16 / 9;
    overflow:hidden;
    border-radius:16px;
}

.article-feature img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.article-row:last-child{ border-bottom:1px solid var(--line); }
.thumb{
    width:230px;
    height:130px;
    overflow:hidden;
    border-radius:12px;
    flex-shrink:0;
}

.thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.article-body h3{
  font-family:'Anton',sans-serif; font-size:21px; text-transform:uppercase;
  line-height:1.08; margin:10px 0 8px;
}
.article-body h3:hover{ color:var(--accent-2); cursor:pointer; }
.article-body p{ font-size:14px; color:var(--slate); line-height:1.6; max-width:54ch; margin-bottom:10px; }
.meta-row{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--slate); display:flex; gap:12px; align-items:center; }
.meta-row .dot-sep{color:var(--line);}

/* sidebar */
.sidebar-block{margin-bottom:40px;}
.news-list{border-top:1px solid var(--line);}
.news-item{
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.news-item:last-child{border-bottom:none;}
.news-date{
  font-family:'IBM Plex Mono',monospace;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--slate);
  margin-bottom:8px;
}
.news-item a, .news-headline{
  display:block;
  font-size:15px;
  line-height:1.5;
  color:var(--ice);
}
.news-item a:hover{color:var(--accent-2);}

/* Improved recent news compact layout */
.news-list{padding-top:8px;}
.news-item{display:flex; flex-direction:column; gap:6px; padding:12px 0;}
.news-date{font-size:11px; color:var(--slate);}
.news-headline{font-weight:600; transition:color .15s ease;}
.news-item:hover .news-headline{color:var(--accent-2);}

/* News ticker styles (sidebar) */
.news-ticker{ overflow:hidden; background:transparent; padding:6px 0; }
.news-ticker-track{ display:inline-flex; align-items:center; gap:28px; padding-left:100%; animation:scrollNews 0s linear infinite; white-space:nowrap; }
.news-ticker-item{ display:inline-flex; align-items:center; gap:12px; color:var(--ice); font-size:14px; }
.news-ticker .news-date{ font-size:11px; color:var(--slate); opacity:0.95; }
.news-ticker .news-text{ font-weight:600; color:var(--ice); }
.news-ticker .chev{ color:var(--slate); opacity:0.8; }
@keyframes scrollNews{ 0%{transform:translateX(0);} 100%{transform:translateX(-100%);} }

/* reduce motion preference */
@media (prefers-reduced-motion: reduce){ .news-ticker-track{ animation:none; } }

/* ---------- newsletter band ---------- */
.newsletter{ background:var(--ink-raised); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:52px 0; }
.newsletter-inner{ display:flex; justify-content:space-between; align-items:center; gap:40px; flex-wrap:wrap; }
.newsletter h2{ font-family:'Anton',sans-serif; font-size:clamp(24px,2.8vw,34px); text-transform:uppercase; color:var(--ice); line-height:1.05; max-width:480px; }
.newsletter p{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--slate); margin-top:8px; letter-spacing:.02em; }
.form-row{ display:flex; gap:0; min-width:360px; }
.form-row input{ flex:1; background:var(--ink); border:1px solid var(--line); border-right:none; color:var(--ice); padding:0 16px; font-size:14px; height:48px; }
.form-row input::placeholder{color:var(--slate);}
.form-row input:focus{outline:1px solid var(--accent); outline-offset:-1px;}
.form-row button{
  height:48px; padding:0 22px; background:var(--accent); color:var(--ice);
  font-family:'IBM Plex Mono',monospace; font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  border:none; cursor:pointer; transition:background .2s;
}
.form-row button:hover{background:var(--accent-2);}

/* ---------- footer ---------- */
footer{padding:56px 0 36px;}
.footer-top{ display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:40px; padding-bottom:40px; border-bottom:1px solid var(--line); }
.footer-brand .wordmark{margin-bottom:12px;}
.footer-brand p{ font-size:13px; color:var(--slate); line-height:1.6; max-width:280px; }
.foot-col h5{ font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--slate); margin-bottom:14px; }
.foot-col a{ display:block; font-size:13px; color:var(--ice); padding:5px 0; transition:color .2s; }
.foot-col a:hover{color:var(--accent-2);}
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--slate); letter-spacing:.03em; }
.footer-bottom .socials{display:flex; gap:16px;}
.footer-bottom .socials a{color:var(--slate); transition:color .2s;}
.footer-bottom .socials a:hover{color:var(--accent);}

/* ---------- responsive ---------- */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr; gap:36px;}
  .hero-art{max-width:320px; margin:0 auto;}
  .tracker-row{grid-template-columns:repeat(2,1fr);}
  .content-grid{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;}
  .newsletter-inner{flex-direction:column; align-items:flex-start;}
  .form-row{min-width:100%;}
}
@media (max-width:560px){
  .article-row{grid-template-columns:1fr;}
  .wrap{padding:0 20px;}
  .tracker-row{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr;}
  .admin-panel{width:100%;}
  .field-row{grid-template-columns:1fr;}
}
@media (prefers-reduced-motion: reduce){ .ticker-track{animation:none;} }

.ql-toolbar {
    background: var(--ink-raised);
    border: 1px solid var(--line) !important;
}

.ql-container {
    background: var(--ink-raised-2);
    color: var(--ice);
    border: 1px solid var(--line) !important;
    min-height: 400px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.ql-editor {
    min-height: 400px;
    color: var(--ice);
}

.ql-editor.ql-blank::before {
    color: var(--slate);
    font-style: normal;
}

.ql-snow .ql-stroke{ stroke: var(--slate); }
.ql-snow .ql-fill{ fill: var(--slate); }
.ql-snow .ql-picker{ color: var(--slate); }
.ql-snow .ql-picker-options{ background: var(--ink-raised); border-color: var(--line) !important; }
.ql-toolbar.ql-snow .ql-formats{ margin-right:12px; }
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke{ stroke: var(--accent); }
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill{ fill: var(--accent); }
.ql-snow.ql-toolbar button.ql-active .ql-stroke{ stroke: var(--accent); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-page{
  min-height:100vh;
  padding:48px 0 80px;
}
.admin-shell{
  max-width:900px;
  margin:0 auto;
  padding:0 32px;
}
.admin-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:28px;
  margin-bottom:36px;
  border-bottom:1px solid var(--line);
}
.admin-header .brand{ display:flex; align-items:center; gap:12px; }
.admin-header .wordmark{ font-size:24px; }
.admin-kicker{
  font-family:'IBM Plex Mono',monospace;
  font-size:10.5px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--slate);
  margin-top:2px;
}
.admin-status{
  display:flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--slate);
}
.status-dot{ width:7px; height:7px; background:var(--slate); display:inline-block; }
.status-dot.is-live{ background:var(--accent); }

.admin-card{
  background:var(--ink-raised);
  border:1px solid var(--line);
  padding:40px;
  margin-bottom:24px;
}
.admin-card-narrow{ max-width:420px; margin-left:auto; margin-right:auto; }

.admin-eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent); margin-bottom:10px; display:block;
}
.admin-title{
  font-family:'Anton',sans-serif;
  font-size:clamp(24px,3vw,32px);
  text-transform:uppercase;
  line-height:1.05;
  margin-bottom:8px;
}
.admin-subtitle{
  font-size:14px; color:var(--slate); line-height:1.6; margin-bottom:28px;
}

.field-group{ margin-bottom:20px; }
.field-label{
  display:block;
  font-family:'IBM Plex Mono',monospace;
  font-size:10.5px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--slate); margin-bottom:8px;
}
.admin-input,
.admin-select{
  width:100%;
  background:var(--ink);
  border:1px solid var(--line);
  color:var(--ice);
  height:48px;
  padding:0 16px;
  font-size:14px;
  font-family:'Inter',sans-serif;
  transition:border-color .2s;
}
.admin-select{ appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238A90A0' stroke-width='1.5' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat:no-repeat;
  background-position:right 16px center;
}
.admin-input::placeholder{ color:var(--slate); }
.admin-input:focus,
.admin-select:focus{ outline:none; border-color:var(--accent); }

.field-row{ display:grid; grid-template-columns:1fr 200px; gap:16px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  height:48px; padding:0 24px;
  border:none; cursor:pointer;
  transition:background .2s, color .2s, border-color .2s;
}
.btn-primary{ background:var(--accent); color:var(--ice); }
.btn-primary:hover{ background:var(--accent-2); }
.btn-ghost{ background:transparent; color:var(--ice); border:1px solid var(--line); }
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }
.btn-block{ width:100%; }
.btn-row{ display:flex; gap:12px; }

.admin-dashboard-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:28px; flex-wrap:wrap; gap:16px;
}
.admin-divider{ border:none; border-top:1px solid var(--line); margin:32px 0; }

.editor-card{ margin-top:24px; }
.editor-shell{ border:1px solid var(--line); }

.admin-footer-note{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; color:var(--slate); text-align:center; margin-top:32px;
}
.admin-footer-note a{ color:var(--accent-2); }

.news-headline{
    color: var(--text);
    cursor: default;
}

.news-headline:hover{
    color: var(--text);
}
/* ============================================================
   ARTICLES PAGE
   ============================================================ */
.articles-hero{
  padding:48px 0 32px;
  border-bottom:1px solid var(--line);
}
.articles-hero h1{
  font-family:'Anton',sans-serif;
  font-size:clamp(32px, 4vw, 48px);
  text-transform:uppercase;
  line-height:1.05;
  margin:14px 0 14px;
  color:var(--ice);
}
.hero-copy{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.tag-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:28px 0 32px;
}
.tag-bar .tag{
  cursor:pointer;
  border:1px solid var(--line);
  border-left:3px solid var(--accent);
  transition:background .2s, color .2s, border-color .2s;
}
.tag-bar .tag:hover{ color:var(--ice); }
.tag-bar .tag.active{
  background:var(--accent);
  border-color:var(--accent);
  color:var(--ink);
}

.articles-list{
  padding-bottom:64px;
  display:flex;
  flex-direction:column;
}

.article-tag{
  display:inline-block;
  font-family:'IBM Plex Mono',monospace;
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--accent);
  background:rgba(34,195,232,.12);
  padding:4px 9px;
  margin-bottom:10px;
}
.articles-list .article-row h2{
  font-family:'Anton',sans-serif;
  font-size:22px;
  text-transform:uppercase;
  line-height:1.1;
  margin:0 0 8px;
  color:var(--ice);
}
.articles-list .article-row h2:hover{ color:var(--accent-2); cursor:pointer; }
.meta{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  color:var(--slate);
  margin-bottom:10px;
}
.articles-list .article-row p{
  font-size:14px;
  color:var(--slate);
  line-height:1.6;
  max-width:60ch;
  margin-bottom:12px;
}
.articles-list .article-row > div > a{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  font-weight:600;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--accent);
  transition:color .2s;
}
.articles-list .article-row > div > a:hover{ color:var(--accent-2); }

@media (max-width:560px){
  .articles-list .article-row{ grid-template-columns:1fr; }
}
/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro{
  text-align:center;
  max-width:750px;
  margin:0 auto 60px;
}
.about-intro .eyebrow{ margin-bottom:12px; }

.page-title{
  font-family:'Anton',sans-serif;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.05;
  text-transform:uppercase;
  color:var(--ice);
  margin-bottom:18px;
}

.page-dek{
  font-size:15.5px;
  line-height:1.7;
  color:var(--slate);
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}

.team-card{
  background:var(--ink-raised);
  padding:32px 28px;
  transition:background .2s;
  position:relative;
}
.team-card:hover{ background:var(--ink-raised-2); }
.team-card::before{
  content:'';
  position:absolute;
  top:0; left:0;
  width:0; height:3px;
  background:var(--accent);
  transition:width .25s ease;
}
.team-card:hover::before{ width:100%; }

.team-name{
  font-family:'Anton',sans-serif;
  font-size:20px;
  text-transform:uppercase;
  letter-spacing:.01em;
  color:var(--ice);
  margin-bottom:6px;
}

.team-role{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:14px;
}

.team-bio{
  font-size:13.5px;
  line-height:1.65;
  color:var(--slate);
}

@media (max-width:980px){
  .team-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:560px){
  .team-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   NEWSLETTER PAGE
   ============================================================ */
.newsletter-page{
  max-width:640px;
  margin:0 auto;
  text-align:center;
  padding:72px 0 56px;
}
.newsletter-page .eyebrow{ justify-content:center; margin-bottom:16px; }
.newsletter-page h1{
  font-family:'Anton',sans-serif;
  font-size:clamp(34px, 5vw, 56px);
  text-transform:uppercase;
  line-height:1.05;
  color:var(--ice);
  margin-bottom:18px;
}
.newsletter-copy{
  font-size:16px;
  color:var(--slate);
  line-height:1.6;
  margin-bottom:32px;
}

.newsletter-form{
  display:flex;
  max-width:440px;
  margin:0 auto;
}
.newsletter-form input{
  flex:1;
  min-width:0;
  background:var(--ink-raised);
  border:1px solid var(--line);
  border-right:none;
  color:var(--ice);
  padding:0 16px;
  font-size:14px;
  height:50px;
}
.newsletter-form input::placeholder{ color:var(--slate); }
.newsletter-form input:focus{ outline:1px solid var(--accent); outline-offset:-1px; }
.newsletter-form button{
  height:50px;
  padding:0 26px;
  background:var(--accent);
  color:var(--ink);
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  white-space:nowrap;
  transition:background .2s;
}
.newsletter-form button:hover{ background:var(--accent-2); }

#newsletterMessage{
  margin-top:16px;
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;
  color:var(--accent-2);
  min-height:1em;
}

.newsletter-features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin-bottom:56px;
}
.feature-card{
  background:var(--ink-raised);
  padding:36px 30px;
  text-align:center;
  font-size:30px;
  line-height:1;
  position:relative;
  overflow:hidden;
}
.feature-card::before{
  content:'';
  position:absolute;
  top:0; left:0;
  width:0; height:3px;
  background:var(--accent);
  transition:width .25s ease;
}
.feature-card:hover::before{ width:100%; }
.feature-card h3{
  font-family:'Anton',sans-serif;
  font-size:18px;
  text-transform:uppercase;
  color:var(--ice);
  margin:16px 0 8px;
}
.feature-card p{
  font-size:13.5px;
  color:var(--slate);
  line-height:1.6;
}

@media (max-width:768px){
  .newsletter-features{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .newsletter-form{ flex-direction:column; max-width:100%; }
  .newsletter-form input{ border-right:1px solid var(--line); height:48px; }
  .newsletter-form button{ height:48px; }
}

.search-container{
    display:flex;
    align-items:center;
    gap:8px;
}

.search-input{
    width:0;
    opacity:0;
    overflow:hidden;

    padding:10px 12px;

    border:1px solid var(--line);
    background:#111;

    color:white;

    transition:all .25s ease;
}

.search-container.open .search-input{
    width:260px;
    opacity:1;
}

.search-container{
    position:relative;
}

.search-results{
    position:absolute;
    top:52px;
    left:0;

    width:320px;

    background:#11161d;
    border:1px solid var(--line);

    display:none;

    border-radius:8px;

    overflow:hidden;

    z-index:1000;
}

.search-results.show{
    display:block;
}

.search-result{
    display:block;

    padding:12px 16px;

    color:white;

    text-decoration:none;

    border-bottom:1px solid var(--line);
}

.search-result:last-child{
    border-bottom:none;
}

.search-result:hover{
    background:#1b2430;
}

.search-result-title{
    font-weight:700;
}

.search-result-meta{
    font-size:12px;
    color:var(--slate);
    margin-top:4px;
}

.newsletter-form-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
}

#newsletterMessage{
    margin-top:14px;
    text-align:center;
}

.page-header{
    padding:70px 0 40px;
    text-align:center;
}

.page-header h1{
    font-size:2.8rem;
    margin-bottom:10px;
}

.page-header p{
    color:#aaa;
}

.power-rankings{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:70px;
}

.ranking-card{
    display:flex;
    align-items:center;
    gap:25px;

    background:#141414;

    border:1px solid #222;

    border-radius:16px;

    padding:24px;

    transition:.25s;
}

.ranking-card:hover{
    border-color:#00b7ff;
    transform:translateY(-2px);
}

.rank{
    font-size:42px;
    font-weight:800;
    color:#00b7ff;
    width:60px;
}

.team-info{
    display:flex;
    align-items:center;
    gap:18px;
    min-width:300px;
}

.team-info img{
    width:60px;
    height:60px;
}

.team-info h2{
    margin:0;
}

.team-info p{
    color:#00b7ff;
    margin-top:4px;
}

.reason{
    color:#cfcfcf;
    line-height:1.6;
}

.power-rankings{

    display:flex;
    flex-direction:column;
    gap:14px;

    margin:50px auto 80px;
}

.ranking-card{

    display:grid;

    grid-template-columns:
        70px
        1fr
        140px
        70px;

    align-items:center;

    background:#141414;

    border:1px solid #222;

    border-radius:14px;

    padding:18px 25px;

    transition:.25s;
}

.ranking-card:hover{

    border-color:#00bfff;

    transform:translateY(-2px);
}

.rank-number{

    font-size:32px;

    font-weight:700;

    color:#00bfff;
}

.team-name{

    font-size:22px;

    font-weight:600;
}

.team-record{

    color:#b8b8b8;

    text-align:center;
}

.movement{

    text-align:right;

    font-size:22px;

    font-weight:bold;
}

.up{

    color:#22c55e;
}

.down{

    color:#ef4444;
}

.same{

    color:#888;
}

.article-link{
    display:block;
    color:inherit;
    text-decoration:none;
}

.article-link:hover h2{
    color:#66c8ff;
}

.hamburger{
    display:none;
    font-size:2.4rem;
    color:#fff;
    background:none;
    border:none;
    cursor:pointer;
    padding:8px;
}
/* =========================
   Mobile Header
========================= */
@media (max-width:768px){

    nav.primary{
        display:none !important;
    }

    .nav-actions{
        display:none !important;
    }

    .hamburger{
        display:block;
    }

    .nav-row{
        justify-content:space-between;
        gap:0;
    }

    /* Newsletter */

    .newsletter-form{
        max-width:100%;
        width:100%;
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .newsletter-form input{
        width:100%;
        height:58px;
        border-right:1px solid var(--line);
        font-size:16px;
        border-radius:8px;
    }

    .newsletter-form button{
        width:100%;
        height:58px;
        border-radius:8px;
        font-size:14px;
    }

    /* Articles */

    .article-row{
        display:flex;
        flex-direction:column;
        gap:18px;
        align-items:stretch;
    }

    .thumb img{
        width:100%;
        height:auto;
        aspect-ratio:16/9;
        object-fit:cover;
    }

    .article-row h2{
        font-size:2rem;
        line-height:1;
        margin:12px 0;
    }

    .article-row{
        flex-direction:column;
        align-items:stretch;
    }


    .thumb{
        width:100%;
        height:auto;
    }

}

.mobile-menu{

    display:none;

    flex-direction:column;

    background:#0d0f14;

    border-top:1px solid rgba(255,255,255,.08);

}

.mobile-menu a{

    color:white;

    text-decoration:none;

    padding:18px 28px;

    font-weight:700;

    letter-spacing:.06em;

    transition:.2s;

}

.mobile-menu a:hover{

    background:#131824;

    color:#6dcff6;

}

.mobile-menu hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.08);

    margin:10px 0;

}

.mobile-menu{

    display:none;

}

.mobile-menu.active{

    display:flex;

}

.featured-grid img{

    width:100%;

    height:auto;

    display:block;

}
/* ============================================================
   SOCIAL FEED
============================================================ */

.social-page{
    padding:24px 0 80px;
}

#socialFeed{
    max-width:1000px;
}
.social-card{
    background:var(--ink-raised);
    border:1px solid var(--line);
    padding:22px;
    margin-bottom:18px;
    transition:.22s;
}

.social-card.clickable{
    cursor:pointer;
}

.social-card.clickable:hover{
    border-color:var(--accent);
    transform:translateY(-2px);
}

.social-header{
    display:flex;
    gap:16px;
    align-items:flex-start;
}

.social-avatar{
    width:64px;
    height:64px;
    background:black;
    border:1px solid var(--line);
    overflow:hidden;
    flex-shrink:0;
}

.social-avatar img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:5px;
}

.social-account{
    flex:1;
}

.social-account-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.social-account h3{
    font-family:'Inter',sans-serif;
    font-size:20px;
    font-weight:700;
    color:var(--ice);
    margin:0;
}

.social-username{
    display:block;
    margin-top:4px;
    font-size:14px;
    color:var(--slate);
}

.social-time{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    color:var(--slate);
    white-space:nowrap;
}

.social-content{
    margin:18px 0 0;
    font-size:17px;
    line-height:1.7;
    color:var(--ice);
    white-space:pre-line;
}

.social-image{
    margin:18px auto 0;
    width:100%;
    max-width:420px;
    display:block;
    border:1px solid var(--line);
}

.social-link{
    display:inline-block;
    margin-top:16px;
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--accent);
}

.social-link:hover{
    color:var(--accent-2);
}

.verified{
    color:var(--accent);
    margin-left:6px;
}

.social-page .articles-hero{
    padding-top:20px;
    padding-bottom:36px;
    border-bottom:1px solid var(--line);
    margin-bottom:24px;
}

.social-page .tag-bar{
    padding-bottom:16px;
}