/* Root theme vars */
:root{
  --bg:#0b0d10;
  --panel:#12161b;
  --text:#e8edf2;
  --muted:#a8b3bf;
  --brand:#ff4d01;
  --brand-2:#fff;
  --border:#1f2630;
  --viewer-max-w:1090px;
  --viewer-max-h:744px;
  --accent-green:#87d68d; /* shared green for tips/badges */
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  line-height: 1.6;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent); }

.wrap { width: min(1100px, 92%); margin: 0 auto; }

/* Headings - vivid orange */
h1, h2, h3 {
  color: var(--brand);
}

/* Header */
header { position: sticky; top: 0; z-index: 50; background: rgba(11,15,20,.8); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .3px; }
.brand img { width: 36px; height: 36px; border-radius: 50%; box-shadow: var(--shadow); }

.menu { display: flex; align-items: center; gap: 18px; }
.menu a { padding: 8px 10px; border-radius: 10px; color: var(--text); }
.menu a.active, .menu a:hover { background: var(--brand); }

.mobile-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); padding: 8px 10px; border-radius: 10px; }

@media (max-width: 860px) {
  .menu { display: none; position: absolute; top: 62px; right: 4%; flex-direction: column; width: 92%; background: var(--panel-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; }
  .menu.open { display: flex; }
  .mobile-toggle { display: inline-flex; }
}

/* Hero */
.hero { padding: 52px 0 26px; }
.hero .card { background: linear-gradient(180deg, rgba(142,203,255,.08), rgba(142,203,255,0) 60%), var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.eyebrow { color: var(--brand); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; }
h1 { margin: 6px 0 12px; font-size: clamp(1.6rem, 2.4vw + 1rem, 2.4rem); line-height: 1.25; }
.subhead { color: var(--muted); max-width: 72ch; }
.cta-row { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--panel-2); color: var(--text); box-shadow: var(--shadow); font-weight: 600; }
.btn.primary { background: linear-gradient(180deg, #1f3952, #ff4d01); border-color: #21415a; }
.btn.primary:hover {
  background: linear-gradient(180deg, #ff6a00, #ff4d01);
}
/* Grid sections */
section { padding: 26px 0; }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(12, 1fr); }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
@media (max-width: 900px) { .span-4, .span-6, .span-8 { grid-column: span 12; } }

h2 { font-size: clamp(1.2rem, 1.1vw + 1rem, 1.6rem); margin: 0 0 10px; }
h3 { font-size: 1.05rem; margin: 14px 0 8px; }
ul { margin: 0; padding-left: 1.2rem; }
.muted { color: var(--muted); }
.note { border-left: 3px solid var(--brand); padding-left: 12px; color: var(--muted); }
.kbd { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: .92em; background: #0d141b; border: 1px solid var(--border); padding: 1px 6px; border-radius: 6px; }

/* Table */
table { width: 100%; border-collapse: collapse; font-size: .98rem; }
th, td { border: 1px solid var(--border); padding: 10px; text-align: left; }
th { background: #0f1620; }
tbody tr:nth-child(odd) { background: #0d131b; }

/* Footer */
footer { margin-top: 40px; border-top: 1px solid var(--border); background: #0a0e13; }
.footwrap { padding: 22px 0; display: grid; gap: 12px; grid-template-columns: 1fr auto; align-items: center; }
@media (max-width:

/*NEW*/
/* Vivid orange heading color */
h1, h2, h3 {
  color: #ff6a00; /* brand orange */
}

/* Heading links */
h1 a, h2 a, h3 a {
  color: #ff6a00;
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover {
  color: #ff8433; /* brighter orange on hover */
  text-decoration: underline;
}

/* Regular body links */
a {
  color: #ff6a00;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
a:hover {
  color: #ff8433; /* lighter/brighter orange on hover */
  text-decoration: underline;
}

/* Button base */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Primary (orange) button */
.btn.primary {
  background: linear-gradient(180deg, #1f3952, #ff6a00);
  border-color: #21415a;
  color: #fff;
}

/* Hover state for primary button */
.btn.primary:hover {
  background: linear-gradient(180deg, #1f3952, #ff8433);
}

/* Hover state for secondary/dark button */
.btn:hover {
  background: linear-gradient(180deg, #2a2f36, #3a414c);
  color: #ff6a00;
}

/* Ghost (outline) button */
.btn.ghost {
  background: transparent;
  border: 2px solid #ff6a00;
  color: #ff6a00;
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect for ghost button */
.btn.ghost:hover {
  background: rgba(255, 106, 0, 0.1); /* subtle orange veil */
  color: #ff8433;
  border-color: #ff8433;
}
/* Reduce space between hero and the following section */
.hero + section {
  margin-top: -14px; /* pulls the next section up a bit */
}
/* Tighten only the first content section after the hero across FYI pages */
.hero + .hero-intro { padding-top: 8px; }
/*GAP from Hero to the top Navigation Menu*/

/* Remove space between top nav and first hero */
#site-header { margin-bottom: 0 !important; }

/* Make the hero flush with the header */
section.hero {
  padding: 0 !important;   /* overrides global section padding */
  margin-top: 0 !important;
}

/* Safety net in case header.html adds margin on its own wrapper */
header.site-header,
header.global-header,
nav.main-nav {
  margin-bottom: 0 !important;
}



