/* ==========================================================================
   Vision Awards 2026 — Refresh stylesheet (default-test.aspx)
   A modern, futuristic layer for the FacilitiesNet Vision Awards home page.
   Brand palette: cyan #0098d5 · navy #004478 · gold #fdbc10
   ========================================================================== */

:root {
  /* Brand */
  --cyan:        #0098d5;
  --cyan-bright: #22c8f5;
  --navy:        #004478;
  --navy-deep:   #002a4d;
  --gold:        #fdbc10;
  --gold-deep:   #d78a03;

  /* Neutrals */
  --ink:      #0b1b2b;
  --text:     #253649;
  --muted:    #5b6b7c;
  --paper:    #ffffff;
  --paper-2:  #dde9f5;
  --line:     rgba(0, 68, 120, .12);

  /* Futuristic "space" surfaces */
  --space-1: #04101f;
  --space-2: #0a2440;
  --space-3: #072744;
  --glass:        rgba(255, 255, 255, .06);
  --glass-strong: rgba(255, 255, 255, .10);
  --glass-line:   rgba(255, 255, 255, .16);

  /* Effects */
  --glow-cyan: 0 0 0 1px rgba(34,200,245,.35), 0 12px 40px -12px rgba(0,152,213,.55);
  --shadow:    0 1px 2px rgba(11,27,43,.05), 0 18px 42px -20px rgba(11,27,43,.28);
  --shadow-sm: 0 1px 2px rgba(11,27,43,.06), 0 8px 20px -12px rgba(11,27,43,.20);

  /* Type */
  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius:    14px;
  --radius-lg: 22px;
  --section-y: clamp(1.5rem, 3vw, 2.5rem);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 .4em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { margin: 0 0 1rem; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: var(--section-y) 0; position: relative; }
/* .section--alt shares the textured background defined below */
.section--tight { padding-top: clamp(0.85rem, 1.75vw, 1.35rem); padding-bottom: clamp(0.25rem, 0.6vw, 0.4rem); }
/* Subtle, slightly-blue geometric texture behind card sections */
.section--alt,
.section--textured {
  background-color: var(--paper-2);
  background-image:
    linear-gradient(rgba(221, 233, 245, 0.88), rgba(221, 233, 245, 0.88)),
    url("https://www.facilitiesnet.com/visionawards/images/gray-geometric-texture.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Page-level textured background (winnersYYYY.aspx content, behind the winner cards) */
body.textured-page {
  background-color: var(--paper-2);
  background-image:
    linear-gradient(rgba(221, 233, 245, 0.88), rgba(221, 233, 245, 0.88)),
    url("https://www.facilitiesnet.com/visionawards/images/gray-geometric-texture.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* Winners pages (Bootstrap grid): trim stacked inline side-paddings on mobile
   so the cards line up with the rest of the site instead of over-insetting. */
@media (max-width: 767px) {
  body.textured-page .container { padding-left: 0 !important; padding-right: 0 !important; }
  body.textured-page [class^="col-"],
  body.textured-page [class*=" col-"] { padding-left: 10px !important; padding-right: 10px !important; }
  body.textured-page .card { padding-left: 14px !important; padding-right: 14px !important; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Section heads ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan); margin: 0 0 .9rem;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}
.section-head { max-width: 760px; margin: 0 0 2.6rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-top: .6rem; }
.lede { font-size: 1.22rem; color: var(--muted); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--cyan);
  position: relative; display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; overflow: hidden; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--cyan); color: #fff; box-shadow: 0 10px 26px -12px rgba(0,152,213,.7); }
.btn--primary:hover { background: var(--navy); color: #fff; }

/* Gold "act now" CTA with animated sheen */
.btn--cta {
  background: linear-gradient(120deg, var(--gold), #ffd45e);
  color: #3a2a00; box-shadow: 0 12px 30px -10px rgba(253,188,16,.7);
}
.btn--cta::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.65) 50%, transparent 70%);
}
.btn--cta:hover { color: #3a2a00; }
.btn--cta:hover::after { transform: translateX(120%); transition: transform .8s ease; }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,152,213,.06); }

.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: var(--glass-line); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; }

.btn--lg { padding: 1rem 2rem; font-size: 1.1rem; }

/* ==========================================================================
   Navigation — glass sticky bar, logo · 2 dropdowns · Enter Now
   ========================================================================== */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background-color .25s ease;
}
header.nav.is-scrolled { box-shadow: 0 6px 24px -14px rgba(11,27,43,.5); background: rgba(255,255,255,.92); }
.nav__inner { display: flex; align-items: center; gap: 1.25rem; height: 74px; }
.nav__logo img { width: 190px; height: auto; }
.nav__menus { display: flex; flex: 1; align-items: center; gap: 1.5rem; }
.nav__cta { margin-left: auto; }
.nav__cta .btn { padding-top: .5rem; padding-bottom: .5rem; font-size: .95rem; }

.nav__list { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--navy); padding: .6rem .9rem; border-radius: 10px; background: none; border: 0; cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.nav__link:hover, .nav__item:hover .nav__link, .nav__link[aria-expanded="true"] { color: var(--cyan); background: rgba(0,152,213,.07); }
.nav__link .caret {
  width: .5em; height: .5em; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .25s ease;
}
.nav__item:hover .caret, .nav__link[aria-expanded="true"] .caret { transform: rotate(-135deg) translateY(-1px); }

.nav__menu {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 250px;
  width: max-content; max-width: min(460px, 92vw);
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 50px -20px rgba(11,27,43,.4); padding: .5rem;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav__menu::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav__item:hover .nav__menu, .nav__item:focus-within .nav__menu, .nav__menu.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu a {
  display: flex; align-items: center; gap: .7rem; padding: .7rem .85rem; border-radius: 10px;
  color: var(--text); font-weight: 500; font-size: .98rem; white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, padding-left .18s ease;
}
.nav__menu a i { color: var(--cyan); width: 20px; text-align: center; font-size: .95rem; }
.nav__menu a:hover { background: var(--paper-2); color: var(--navy); padding-left: 1.1rem; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; align-items: center; justify-content: center; color: var(--navy);
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: currentColor; position: relative; transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after  { position: absolute; top: 7px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero — futuristic dark band with animated orbs + grid
   ========================================================================== */
.hero {
  position: relative; margin-top: 74px; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% -10%, rgba(0,152,213,.35), transparent 60%),
    radial-gradient(900px 520px at 8% 110%, rgba(253,188,16,.14), transparent 55%),
    linear-gradient(160deg, var(--space-1), var(--space-2) 60%, var(--space-3));
  color: #eaf4fb;
  padding: clamp(1.75rem, 3.5vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 45%, transparent 100%);
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; pointer-events: none; }
.hero__orb--1 { width: 380px; height: 380px; top: -80px; right: 6%;  background: radial-gradient(circle, rgba(34,200,245,.7), transparent 70%); animation: float1 14s ease-in-out infinite; }
.hero__orb--2 { width: 320px; height: 320px; bottom: -120px; left: 12%; background: radial-gradient(circle, rgba(253,188,16,.5), transparent 70%); animation: float2 18s ease-in-out infinite; }

.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; padding: .45rem 1rem; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--glass-line); backdrop-filter: blur(6px);
  font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: #bfe6fa; margin-bottom: 1.4rem;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero h1 { color: #fff; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--cyan-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__deadline {
  display: inline-flex; align-items: center; gap: .6rem; margin: .4rem 0 1.3rem;
  font-family: var(--font-display); font-weight: 600; color: #ffe08a; font-size: 1.15rem;
}
.hero__deadline i { color: var(--gold); }
.hero__sub { font-size: 1.18rem; color: #c6dcec; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero__card {
  position: relative; padding: 2.2rem; border-radius: var(--radius-lg);
  background: var(--glass-strong); border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px); box-shadow: var(--glow-cyan); text-align: center;
}
.hero__card img { margin-inline: auto; }
.hero__badge {
  position: absolute; top: -16px; right: -12px; background: linear-gradient(120deg, var(--gold), #ffd45e);
  color: #3a2a00; font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  padding: .45rem .9rem; border-radius: 999px; box-shadow: 0 10px 24px -10px rgba(253,188,16,.8);
}

/* ==========================================================================
   Stats — glass tiles with count-up
   ========================================================================== */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat {
  text-align: center; padding: 1.8rem 1.2rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.stat__chip {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 14px; margin-bottom: .9rem; font-size: 1.35rem; color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  box-shadow: 0 10px 22px -10px rgba(0,152,213,.7);
}
.stat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--navy); line-height: 1; }
.stat__label { display: block; margin-top: .5rem; font-size: .98rem; color: var(--muted); }

/* ==========================================================================
   Info blocks / feature
   ========================================================================== */
.block {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 3rem); box-shadow: var(--shadow);
}
.block + .block { margin-top: 1.5rem; }
.block h3 { color: var(--navy); }
.block .accent-bar { width: 64px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--cyan), var(--gold)); margin: 0 0 1.2rem; }

.exposure-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: 1.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.exposure-logos img { max-height: 62px; width: auto; filter: grayscale(.15); transition: filter .3s ease, transform .3s ease; }
.exposure-logos a:hover img { filter: none; transform: translateY(-3px); }

/* ==========================================================================
   Category / bonus cards (icon grids)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card-grid--bonus { grid-template-columns: repeat(3, 1fr); }
.cat {
  position: relative; display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--glow-cyan); border-color: transparent; }
.cat:hover::before { transform: scaleX(1); }
.cat__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 16px;
  font-size: 1.5rem; color: var(--cyan); margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(0,152,213,.12), rgba(253,188,16,.12));
  border: 1px solid var(--line);
}
.cat h4 { font-size: 1.18rem; color: var(--navy); margin-bottom: .5rem; }
.cat p { font-size: .96rem; color: var(--muted); margin: 0; }
.cat .tag-new {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .1em;
  color: #c30000; background: rgba(195,0,0,.08); padding: .15rem .5rem; border-radius: 6px; margin-right: .4rem; vertical-align: middle;
}
.cat .tag-bonus {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .1em;
  color: #3a2a00; background: rgba(253,188,16,.20); padding: .15rem .5rem; border-radius: 6px; margin-right: .4rem; vertical-align: middle;
}

/* ==========================================================================
   Winners showcase gallery (content imagery)
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.gallery figure::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,42,77,.55));
  opacity: 0; transition: opacity .3s ease;
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure:hover::after { opacity: 1; }

/* ==========================================================================
   Judging criteria
   ========================================================================== */
.criteria-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.criteria {
  display: flex; align-items: center; gap: 1.1rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.criteria:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.criteria__num {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.2rem;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
}
.criteria h4 { margin: 0; font-size: 1.15rem; color: var(--navy); }

/* ==========================================================================
   Steps (How to enter)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 1.4rem 1.5rem; text-align: left;
}
.step__badge {
  position: absolute; top: -18px; left: 1.4rem; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #3a2a00;
  background: linear-gradient(120deg, var(--gold), #ffd45e); box-shadow: 0 10px 22px -10px rgba(253,188,16,.8);
}
.step p { margin: 0; font-size: 1rem; color: var(--text); }

/* ==========================================================================
   CTA band + Fees (dark futuristic)
   ========================================================================== */
.cta-band {
  position: relative; overflow: hidden; color: #eaf4fb; text-align: center;
  background:
    radial-gradient(700px 380px at 80% -20%, rgba(0,152,213,.4), transparent 60%),
    radial-gradient(600px 360px at 10% 120%, rgba(253,188,16,.16), transparent 55%),
    linear-gradient(150deg, var(--space-1), var(--space-3));
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 6vw, 4.5rem);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c6dcec; max-width: 60ch; margin-inline: auto; }
.cta-band .price {
  font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 1.15rem;
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.8rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--space-1); color: #9fb6cb; text-align: center; padding: 2.6rem 0;
}
.footer img { width: 170px; margin: 0 auto 1.2rem; opacity: .95; }
.footer p { font-size: .9rem; margin: 0; color: #9fb6cb; }

/* ==========================================================================
   Back-to-top sticky button
   ========================================================================== */
.to-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer; z-index: 90;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  box-shadow: 0 12px 28px -10px rgba(0,152,213,.8);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .2s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: linear-gradient(135deg, var(--cyan-bright), var(--cyan)); transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Winner Resources page (winners-resources.aspx)
   ========================================================================== */
.res-offset { margin-top: 74px; }
.resources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.res-col__title { text-align: center; color: var(--ink); font-size: clamp(1.35rem, 2.4vw, 1.9rem); margin-bottom: 1rem; }
.res-preview {
  display: grid; place-items: center; border-radius: var(--radius-lg);
  border: 1px solid var(--line); padding: 2.25rem; min-height: 250px; margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.res-preview--light { background: #fff; }
.res-preview--dark { background: linear-gradient(150deg, var(--space-1), var(--space-3)); border-color: transparent; }
.res-preview img { width: 100%; max-width: 330px; height: auto; }
.file-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.35rem; margin-bottom: .9rem;
}
.file-card h4 { font-size: 1.05rem; color: var(--navy); margin: 0 0 .45rem; font-family: var(--font-display); }
.file-card__links { display: flex; flex-wrap: wrap; gap: .3rem 1.4rem; margin: 0; }
.file-card__links a { font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: .45rem; }
.file-card__links a::before { content: "\f019"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .78rem; opacity: .65; }
.file-card__links a:hover { color: var(--navy); }
.file-card--na { background: var(--paper-2); border-style: dashed; }
.file-card--na h4 { color: var(--muted); margin-bottom: 0; }
.file-card__na { color: var(--muted); font-size: .92rem; }

@media (max-width: 760px) { .resources-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Entry form modernization (EntryForm-test.aspx) — scoped to form classes,
   CSS-only, no markup/logic changes. Overrides the old va-styles.css look.
   ========================================================================== */
.form-style-7 { width: 100% !important; max-width: 640px !important; margin: 0 auto !important; padding: 0 !important; background: transparent !important; }
.form-style-7 h1 { font-family: var(--font-display); color: var(--ink); font-size: clamp(1.7rem, 3.2vw, 2.4rem); text-align: center; margin: 0 0 1rem; }
.form-style-7 p { font-family: var(--font-body); color: var(--text); }
.form-style-7 label { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .98rem; text-align: left; margin: 0 0 .4rem; }
.form-style-7 .form-field { border: 0 !important; margin-bottom: 1.15rem; }
.form-style-7 input[type="text"],
.form-style-7 input[type="email"],
.form-style-7 input[type="date"],
.form-style-7 input[type="datetime"],
.form-style-7 input[type="number"],
.form-style-7 input[type="search"],
.form-style-7 input[type="time"],
.form-style-7 input[type="url"],
.form-style-7 input[type="password"],
.form-style-7 select,
.form-style-7 textarea {
  border: 1px solid var(--line) !important; border-radius: 10px !important;
  height: auto !important; padding: .8rem 1rem !important; width: 100%;
  font-family: var(--font-body); font-size: 1rem; color: var(--text); background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-style-7 textarea { min-height: 180px; resize: vertical; }
.form-style-7 input:focus, .form-style-7 select:focus, .form-style-7 textarea:focus {
  border-color: var(--cyan) !important; box-shadow: 0 0 0 3px rgba(0,152,213,.18) !important; outline: none;
}
.form-style-7 .form-label { background: transparent !important; color: var(--muted); font-size: .82rem; padding: .35rem 0 0 !important; margin: 0; }
.form-style-7 select.va-dropdown { background-position: right 1rem center; background-size: 12px auto; padding-right: 2.4rem !important; }
.form-style-7 input[type="submit"],
.form-style-7 input[type="submit"].large-submit {
  background: linear-gradient(120deg, var(--gold), #ffd45e) !important; color: #3a2a00 !important;
  border: 0 !important; border-radius: 999px !important; padding: .95rem 2rem !important;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; cursor: pointer; width: auto;
  box-shadow: 0 12px 30px -10px rgba(253,188,16,.7); transition: transform .2s ease, background-color .2s ease;
}
.form-style-7 input[type="submit"]:hover, .form-style-7 input[type="submit"].large-submit:hover { transform: translateY(-2px); background: linear-gradient(120deg, #ffd45e, var(--gold)) !important; }
/* Verify step (view2) table */
.contact-info td { border: 0 !important; padding: .5rem 0 !important; font-family: var(--font-body); color: var(--text); }
.va-link { color: var(--cyan); font-family: var(--font-body); font-weight: 600; }
.va-link:hover { color: var(--navy); }
/* Animated logo above the entry form */
.entry-logo { text-align: center; margin: 0 auto 2.5rem; }
.entry-logo a { display: inline-block; }
.entry-logo img { display: block; width: 360px; max-width: 100%; height: auto; }

/* Simplified nav (single button, no dropdowns) — keep button visible at all widths */
@media (max-width: 1024px) {
  .nav--simple .nav__menus {
    position: static; inset: auto; display: flex; flex-direction: row; align-items: center;
    background: transparent; border: 0; box-shadow: none; padding: 0;
  }
  .nav--simple .nav__cta { margin: 0; }
  .nav--simple .nav__cta .btn { width: auto; }
}

/* ==========================================================================
   Interior page header (winnersYYYY.aspx) + legacy Bootstrap-content fixes
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden; margin-top: 74px; color: #eaf4fb; text-align: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) 1.25rem;
  background:
    radial-gradient(700px 380px at 78% -20%, rgba(0,152,213,.35), transparent 60%),
    radial-gradient(600px 360px at 10% 120%, rgba(253,188,16,.14), transparent 55%),
    linear-gradient(155deg, var(--space-1), var(--space-2) 60%, var(--space-3));
}
.page-hero__logo { display: block; max-width: 300px; width: 70%; margin: 0 auto 1.25rem; height: auto; }
.page-hero h1 { color: #fff; margin: 0; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-hero p { color: #c6dcec; margin: .65rem auto 0; max-width: 60ch; }
/* Keep legacy center-aligned images centered under va-refresh's img { display:block } */
[align="center"] img { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Reveal-on-scroll (JS adds .reveal-ready to <html>)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1); }
  html.reveal-ready .reveal.is-in { opacity: 1; transform: none; }
  html.reveal-ready .reveal--d1 { transition-delay: .08s; }
  html.reveal-ready .reveal--d2 { transition-delay: .16s; }
  html.reveal-ready .reveal--d3 { transition-delay: .24s; }
  html.reveal-ready .reveal--d4 { transition-delay: .32s; }
  html.reveal-ready .reveal--d5 { transition-delay: .40s; }
  html.reveal-ready .reveal--d6 { transition-delay: .48s; }
}

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-28px, 30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(24px, -26px); } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; margin-inline: auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .card-grid--bonus { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav__toggle { display: inline-flex; margin-left: auto; }
  .nav__menus {
    position: fixed; inset: 74px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: center; gap: 0; padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 24px 40px -20px rgba(11,27,43,.4);
    display: none;
  }
  .nav.is-open .nav__menus { display: flex; }
  .nav__list { flex-direction: column; align-items: center; gap: .25rem; width: 100%; }
  .nav__item--drop { width: 100%; text-align: center; }
  .nav__link { width: 100%; justify-content: center; font-size: 1.1rem; }
  .nav__menu {
    position: static; width: auto; max-width: none; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-radius: 0; margin: 0; text-align: center;
    max-height: 0; overflow: hidden; padding: 0; transition: max-height .3s ease;
  }
  .nav__menu a { justify-content: center; white-space: normal; }
  .nav__item.is-open .nav__menu { max-height: 520px; padding: .25rem 0 .5rem; }
  .nav__cta { margin: .9rem 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .stat-grid, .card-grid, .card-grid--bonus, .criteria-grid, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  body { font-size: 17px; }
}
