:root {
  --bg: #f6f2ea;
  --surface: #ffffff;
  --text: #0b1220;
  --muted: #6b7280;
  --navy-900: #061528;
  --navy-850: #081a2f;
  --navy-800: #0b2340;
  --navy-700: #0f2c4f;
  --gold: #d6a545;
  --gold-2: #c7963a;
  --border: rgba(15, 35, 64, 0.14);
  --shadow: 0 14px 30px rgba(6, 21, 40, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 40%, #ffffff 100%);
}

/* Stretch main so the footer sits at the bottom of the viewport on short pages */
body main#main {
  flex: 1 1 auto;
  width: 100%;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.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;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
}

.accent {
  color: var(--gold);
}

.section {
  padding: 26px 0;
}

.fidelity {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.fidelity__img {
  position: absolute;
  inset: 0;
  opacity: var(--fidelity-opacity, 0.35);
  background: #fff;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100%;
}
.fidelity__hud {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(6, 21, 40, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(234, 242, 255, 0.92);
  font-size: 12px;
  backdrop-filter: blur(8px);
}
.fidelity__badge {
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(214, 165, 69, 0.18);
  border: 1px solid rgba(214, 165, 69, 0.35);
}
.fidelity__hint {
  opacity: 0.9;
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }
  .section {
    padding: 20px 0;
  }
}

