/* AW Media Client Portal — Shared Styles
   Aligned with the AW Media LinkedIn / Prompt Vault brand system:
   dark layered bg, pink #F92672 accent, Rethink Sans + JetBrains Mono,
   grid + radial pink + noise background, hairline borders. */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Backgrounds — three elevation tiers */
  --bg:        #0A0A0A;
  --bg-soft:   #141414;
  --bg-card:   #161616;
  --bg-elev:   #1C1C1C;

  /* Text */
  --fg:            #EDEDED;
  --muted:         #8A8A8A;
  --muted-strong:  #B8B8B8;

  /* Brand pink + glows */
  --pink:        #F92672;
  --pink-mid:    #C91E5A;
  --pink-dark:   #C91E5A;        /* legacy alias */
  --pink-soft:   rgba(249, 38, 114, 0.22);
  --pink-glow:   rgba(249, 38, 114, 0.55);
  --pink-veil:   rgba(249, 38, 114, 0.06);

  /* Hairlines */
  --hairline:         rgba(255, 255, 255, 0.08);
  --hairline-strong:  rgba(255, 255, 255, 0.14);

  /* Status */
  --success: #22C55E;
  --danger:  #EF4444;
  --warning: #F59E0B;

  /* Type */
  --mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Layout */
  --max:        1240px;
  --max-narrow: 520px;
  --max-guide:  780px;

  /* Legacy aliases — keep existing markup working */
  --card-bg:     var(--bg-card);
  --card-border: var(--hairline);
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Rethink Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overscroll-behavior-x: none;        /* stop sideways drift, keep vertical pull-to-refresh */
  -webkit-text-size-adjust: 100%;     /* stop iOS auto-resizing text */
}
body { overflow-x: hidden; position: relative; }

a { color: var(--pink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--pink-mid); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

/* ============================== BACKGROUND TREATMENT ============================== */
/* Fixed grid + dual radial pink (mirrors the LinkedIn / Prompt Vault landing) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 88% 0%, rgba(249, 38, 114, 0.15), transparent 55%),
    radial-gradient(circle at 8% 100%, rgba(249, 38, 114, 0.08), transparent 60%);
  background-size: 60px 60px, 60px 60px, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: -2;
}
/* Subtle film grain — fractal noise SVG */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

/* Old orb divs in header.php — superseded by the bg treatment above */
.orb { display: none; }

/* ============================== LAYOUT ============================== */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 80px 24px 60px;
}

.wide {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 32px 96px;
}
@media (max-width: 720px) {
  .wide { padding: 32px 20px 64px; }
}

/* ============================== HEADER / BRAND ============================== */
.brand-bar {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--hairline);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand-mark {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  filter: drop-shadow(0 0 16px rgba(249, 38, 114, 0.25));
  transition: filter .2s;
}
.brand-mark:hover {
  filter: drop-shadow(0 0 22px rgba(249, 38, 114, 0.45));
}
.brand-mark .dot { color: var(--pink); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.2px;
  position: relative;
  padding: 4px 0;
  transition: color .15s;
}
.nav-links a.active, .nav-links a:hover { color: #fff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink-glow);
}
.nav-links .logout {
  font-size: 13px;
  color: var(--muted);
  border-left: 1px solid var(--hairline);
  padding-left: 24px;
}

/* ============================== STAMPS / BADGES / PILLS ============================== */

/* Mono-uppercase label, lifted from the LinkedIn brand */
.stamp {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
}
.stamp b, .stamp strong { color: var(--pink); font-weight: 800; }

.badge {
  display: inline-block;
  background: var(--pink-veil);
  border: 1px solid rgba(249, 38, 114, 0.3);
  color: var(--pink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.badge-success { background: rgba(34,197,94,.08);  border-color: rgba(34,197,94,.3);  color: var(--success); }
.badge-warning { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.3); color: var(--warning); }
.badge-muted   { background: rgba(255,255,255,.04); border-color: var(--hairline); color: var(--muted); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.status-pill.green { background: rgba(34,197,94,.08);  border-color: rgba(34,197,94,.35); color: var(--success); }
.status-pill.amber { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.4);  color: var(--warning); }
.status-pill.red   { background: rgba(239,68,68,.08);  border-color: rgba(239,68,68,.4);   color: var(--danger);  }
.status-pill.muted { background: rgba(255,255,255,.04); border-color: var(--hairline);     color: var(--muted);   }

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: currentColor;
  flex-shrink: 0;
}
.pulse-dot.pulsing::before,
.pulse-dot.pulsing::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: currentColor;
  animation: blob-pulse 1.8s ease-out infinite;
  pointer-events: none;
}
.pulse-dot.pulsing::after { animation-delay: .9s; }
@keyframes blob-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  80%  { transform: scale(2.8); opacity: 0;  }
  100% { transform: scale(2.8); opacity: 0;  }
}

.status-pill-lg {
  padding: 14px 24px;
  font-size: 15px;
  letter-spacing: 1.5px;
  gap: 14px;
}
.status-pill-lg .pulse-dot { width: 14px; height: 14px; }

/* ============================== TYPOGRAPHY ============================== */
h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}
h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 12px;
}
h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.lede {
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 720px;
}
.muted { color: var(--muted); }

/* ============================== CARDS ============================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px;
  transition: border-color .2s, transform .2s, background .2s;
}
.card + .card { margin-top: 20px; }

.card-pink-glow {
  border: 1px solid rgba(249, 38, 114, 0.35);
  background: linear-gradient(180deg, rgba(249,38,114,0.06), var(--bg-card));
  box-shadow: 0 0 60px -20px var(--pink-glow);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }

/* ============================== DEADLINE HERO ============================== */
.deadline-card {
  text-align: center;
  padding: 56px 32px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
}
.deadline-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--muted);
  margin-bottom: 14px;
}
.deadline-date {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.deadline-days {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.deadline-days.urgent { color: var(--warning); }
.deadline-days.overdue { color: var(--danger); }

/* ============================== FORMS ============================== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
input[type=text], input[type=email], input[type=password], input[type=url], input[type=date], select, textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--fg);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px var(--pink-veil);
}
textarea { min-height: 100px; resize: vertical; }

/* ============================== BUTTONS ============================== */
.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  letter-spacing: 0.2px;
  box-shadow: 0 0 30px -10px var(--pink-glow);
  transition: background .15s, transform .1s, box-shadow .2s;
}
.btn:hover { background: var(--pink-mid); color: #fff; box-shadow: 0 0 36px -8px var(--pink-glow); }
.btn:active { transform: translateY(1px); }
.btn.block { display: block; width: 100%; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--fg);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--bg-soft); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-danger { background: var(--danger); box-shadow: 0 0 30px -10px rgba(239,68,68,0.5); }
.btn-danger:hover { background: #B91C1C; }

/* ============================== ALERTS ============================== */
.alert {
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.alert-error   { background: rgba(239,68,68,.08);  border-color: rgba(239,68,68,.3);  color: #FCA5A5; }
.alert-success { background: rgba(34,197,94,.08);  border-color: rgba(34,197,94,.3);  color: #86EFAC; }
.alert-info    { background: rgba(249,38,114,.06); border-color: rgba(249,38,114,.25); color: #FBCFE8; }

/* ============================== RESOURCE TILES ============================== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .resource-grid { grid-template-columns: 1fr; } }

.resource-tile {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px;
  color: var(--fg);
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s, background .2s, box-shadow .2s;
}
.resource-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(249,38,114,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.resource-tile:hover {
  border-color: rgba(249, 38, 114, 0.4);
  background: var(--bg-elev);
  color: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -20px var(--pink-glow);
}
.resource-tile:hover::before { opacity: 1; }
.resource-tile .tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--pink-veil);
  border: 1px solid rgba(249,38,114,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: 0 0 24px -8px var(--pink-glow);
}
.resource-tile h3 { margin-bottom: 6px; }
.resource-tile p  { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ============================== ADMIN TABLE ============================== */
table.admin {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  overflow: hidden;
}
table.admin th, table.admin td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--hairline);
}
table.admin th {
  background: var(--bg-soft);
  color: var(--muted);
  text-transform: uppercase;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
}
table.admin tr:last-child td { border-bottom: none; }
table.admin tr:hover td { background: var(--bg-soft); }

/* ============================== GUIDE PAGES ============================== */
.guide {
  max-width: var(--max-guide);
  margin: 0 auto;
  padding: 48px 24px 96px;
}
.guide-hero {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
.guide-hero .crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.guide-hero .crumb a { color: var(--muted); }
.guide-hero .crumb a:hover { color: var(--pink); }
.guide-hero h1 { font-size: 46px; margin: 12px 0 12px; }
.guide-hero .subtitle {
  font-size: 18px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.guide h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.guide h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.guide h3 { font-size: 18px; margin-top: 28px; margin-bottom: 10px; }
.guide p  { color: #CFCFCF; font-size: 16px; margin-bottom: 16px; }
.guide ul, .guide ol { margin: 0 0 20px 22px; color: #CFCFCF; }
.guide li { margin-bottom: 8px; }
.guide strong { color: #fff; }

.guide .pull {
  background: linear-gradient(180deg, rgba(249,38,114,0.06), rgba(249,38,114,0.02));
  border: 1px solid rgba(249,38,114,0.25);
  border-left: 4px solid var(--pink);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 16px;
  color: #FBCFE8;
}

.guide .steps {
  counter-reset: step;
  list-style: none;
  margin-left: 0;
}
.guide .steps > li {
  counter-increment: step;
  padding-left: 56px;
  position: relative;
  min-height: 40px;
  margin-bottom: 20px;
}
.guide .steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  background: var(--pink-veil);
  border: 1px solid rgba(249,38,114,.4);
  border-radius: 50%;
  color: var(--pink);
  font-family: var(--mono);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.guide .check { list-style: none; margin-left: 0; }
.guide .check li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
}
.guide .check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.4);
  border-radius: 6px;
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.guide .cross li::before {
  content: '×';
  background: rgba(239,68,68,.12);
  border-color: rgba(239,68,68,.4);
  color: var(--danger);
}

.guide code, .guide pre { font-family: var(--mono); font-size: 13px; }
.guide code {
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  padding: 2px 8px;
  border-radius: 6px;
  color: #FBCFE8;
}
.guide pre {
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 20px;
  overflow-x: auto;
  color: #CFCFCF;
  font-size: 13px;
  line-height: 1.6;
  margin: 20px 0;
  white-space: pre-wrap;
}
.guide pre code { background: none; border: none; padding: 0; }

.guide-nav {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================== TOOL PAGES ============================== */
.tool-header {
  text-align: center;
  margin-bottom: 48px;
}
.tool-header h1 { font-size: 38px; margin: 18px 0 14px; }
.tool-header p {
  color: var(--muted-strong);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

.tool-body {
  max-width: 820px;
  margin: 0 auto;
}

.prompt-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 16px;
  transition: border-color .15s, background .15s;
}
.prompt-card:hover { border-color: rgba(249,38,114,0.4); background: var(--bg-elev); }
.prompt-card .num {
  display: inline-block;
  background: var(--pink-veil);
  border: 1px solid rgba(249,38,114,.3);
  color: var(--pink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.prompt-card h3 { font-size: 20px; margin-bottom: 6px; }
.prompt-card .desc { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

.prompt-box {
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 13px;
  color: #CFCFCF;
  line-height: 1.6;
  white-space: pre-wrap;
  max-height: 260px;
  overflow-y: auto;
}

.copy-btn {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 12px;
  transition: all .15s;
}
.copy-btn:hover { border-color: var(--pink); color: var(--pink); }
.copy-btn.copied { background: var(--success); color: #fff; border-color: var(--success); }

.result-box {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 28px;
  margin-top: 24px;
  min-height: 120px;
}
.result-box.loading { opacity: .6; }
.result-box h3 { margin-bottom: 12px; }

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}
@media (max-width: 600px) { .score-grid { grid-template-columns: repeat(2, 1fr); } }
.score-tile {
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}
.score-tile .score-val {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}
.score-tile .score-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* ============================== MOBILE NAV ============================== */
.nav-toggle, .nav-refresh { display: none; }

@media (max-width: 760px) {
  .brand-bar { flex-wrap: wrap; padding: calc(16px + env(safe-area-inset-top, 0px)) 20px 16px; }

  .nav-refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: auto;
  }
  .nav-refresh:active { transform: rotate(120deg); transition: transform .2s; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 6px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 12px;
    border-top: 1px solid var(--hairline);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 14px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-links a.active { color: var(--pink); }
  .nav-links a.active::after { display: none; }
  .nav-links .logout {
    border-left: none;
    padding-left: 4px;
    border-bottom: none;
    color: var(--pink);
  }

  /* Headings ease down on small screens */
  h1 { font-size: 32px; }
  .tool-header h1, .guide-hero h1 { font-size: 30px; }
  .deadline-date { font-size: 34px; }
}

/* ============================== FOOTER ============================== */
.foot {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 64px;
  padding-bottom: 40px;
}
