:root {
  --navy: #0f2342;
  --navy-soft: #1c3d72;
  --red: #d21f3c;
  --red-deep: #b11931;
  --blue: #2f65d3;
  --blue-soft: #e9f0ff;
  --white: #ffffff;
  --ink: #11243f;
  --ink-soft: #4f627f;
  --panel: rgba(255, 255, 255, 0.9);
  --line: rgba(17, 36, 63, 0.14);
  --radius-lg: 1rem;
  --radius-xl: 1.35rem;
  --radius-2xl: 1.8rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 8% -10%, rgba(210, 31, 60, 0.2), transparent 60%),
    radial-gradient(900px 520px at 92% 2%, rgba(15, 35, 66, 0.18), transparent 56%),
    linear-gradient(180deg, #f9fbff 0%, #eef3fb 60%, #e6edf8 100%);
}

.display {
  font-family: "Newsreader", serif;
  letter-spacing: -0.02em;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(
      -32deg,
      rgba(15, 35, 66, 0.05),
      rgba(15, 35, 66, 0.05) 16px,
      rgba(210, 31, 60, 0.04) 16px,
      rgba(210, 31, 60, 0.04) 32px
    );
  mask-image: radial-gradient(circle at 50% 0%, black 12%, transparent 74%);
  z-index: 0;
}

.bg-orb-red,
.bg-orb-blue {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

.bg-orb-red {
  left: 50%;
  top: -140px;
  width: 380px;
  height: 380px;
  transform: translateX(-50%);
  background: rgba(210, 31, 60, 0.24);
}

.bg-orb-blue {
  right: -100px;
  top: 20px;
  width: 320px;
  height: 320px;
  background: rgba(47, 101, 211, 0.24);
}

.site-main {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem 3.5rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(17, 36, 63, 0.1);
  backdrop-filter: blur(14px);
}

.rounded-2xl {
  border-radius: var(--radius-2xl);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.brand-ribbon {
  background: linear-gradient(135deg, var(--navy) 0%, #14315c 42%, #1d4d89 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 56px rgba(15, 35, 66, 0.3);
  color: #fff;
}

.brand-ribbon::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 0%, #fff 32%, var(--red) 32%, var(--red) 64%, #4e80e1 64%, #4e80e1 100%);
  opacity: 0.9;
}

.icon-badge {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(210, 31, 60, 0.1);
  color: var(--red);
  border: 1px solid rgba(210, 31, 60, 0.2);
}

.icon-badge svg {
  width: 1.2rem;
  height: 1.2rem;
}

.chip-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-decoration: none;
}

.chip-link:hover {
  border-color: rgba(210, 31, 60, 0.45);
  color: var(--red-deep);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 180ms ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(210, 31, 60, 0.24);
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-secondary {
  border: 1px solid #cfd8e6;
  background: #fff;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: #b5c3d9;
}

.opportunity-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.opportunity-btn {
  width: 22rem;
  max-width: 100%;
}

.btn-disabled,
.btn-disabled:hover {
  border-color: #d7deea;
  background: #f2f5fa;
  color: #6f7f97;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
  pointer-events: none;
}

.text-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #5d6f89;
  font-weight: 700;
}

.announcement-bar {
  background: linear-gradient(135deg, #1a3e74 0%, #2a4ea4 58%, #1f4e9f 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 30px rgba(15, 35, 66, 0.2);
}

.announce-icon {
  opacity: 0.9;
}

.new-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.45rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(140deg, #d21f3c 0%, #b11931 100%);
}

.new-pill-light {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.feature-dot {
  position: relative;
  padding-left: 1.05rem;
}

.feature-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--red) 0%, #ffd2da 100%);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.66s ease, transform 0.66s ease;
}

[data-reveal].reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.menu-toggle .bar {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle .bar + .bar {
  margin-top: 4px;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.28s ease;
}

.mobile-panel.is-open {
  max-height: 360px;
  opacity: 1;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-trigger .plus {
  transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded="true"] .plus {
  transform: rotate(45deg);
}

.category-btn {
  border: 1px solid #cfd8e6;
  background: #fff;
  color: #354865;
  border-radius: 999px;
  padding: 0.48rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-btn[data-active="true"] {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .menu-toggle,
  .mobile-panel {
    display: none !important;
  }

  .site-main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-main {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal].reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mobile-panel,
  .menu-toggle .bar,
  .faq-trigger .plus {
    transition: none;
  }
}
