:root {
  --gng-teal: #ADDEDE; --gng-light: #EFF9F9; --gng-dark: #18161B;
  --gng-orange: #EB590A; --gng-white: #FFFFFF; --ink: #18161B;
  --ink-light: #4a4a4a; --ink-muted: #6e7681; --border: #d8d8d4;
  --font: 'Quicksand', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: var(--font); color: var(--ink); background: var(--gng-light); }
body { min-height: 100vh; display: flex; flex-direction: column; }

.nav {
  background: var(--gng-white); border-bottom: 1px solid var(--border);
  padding: 14px 36px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.nav-left { display: flex; align-items: center; gap: 14px; }
.nav-left img { height: 36px; }
.nav-divider { color: var(--border); }
.nav-client { font-weight: 700; color: var(--gng-dark); font-size: 14px; }
.nav-client a { color: inherit; text-decoration: none; }
.nav-right { font-size: 11px; color: var(--ink-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.hero {
  background: var(--gng-dark); color: var(--gng-white);
  padding: 64px 36px 56px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: auto -100px -200px auto;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--gng-teal) 0%, transparent 70%);
  opacity: 0.18; border-radius: 50%;
}
.hero-inner { max-width: 1080px; margin: 0 auto; position: relative; }
.hero-eyebrow { color: var(--gng-orange); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; font-size: 11px; margin-bottom: 14px; }
.hero h1 { font-size: 40px; font-weight: 700; line-height: 1.1; margin-bottom: 14px; max-width: 800px; }
.hero p.lede { font-size: 16px; color: var(--gng-teal); max-width: 720px; line-height: 1.5; }

footer { background: var(--gng-dark); color: var(--gng-teal); padding: 32px 36px; margin-top: auto; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-text { font-size: 13px; }
.footer-text strong { color: var(--gng-white); }
.footer-badges { display: flex; align-items: center; gap: 14px; }
.footer-badges img { height: 36px; opacity: 0.95; background: white; padding: 2px 6px; border-radius: 4px; }
.footer-tag { font-size: 11px; color: var(--gng-teal); margin-top: 4px; opacity: 0.8; }

@media (max-width: 720px) {
  .hero h1 { font-size: 28px; }
  .hero { padding: 48px 24px 40px; }
  .nav { padding: 12px 24px; flex-wrap: wrap; gap: 8px; }
}
