:root {
  --black: #050505;
  --black-soft: #0c0c0c;
  --panel: #141414;
  --panel-light: #1b1b1b;
  --orange: #ff7300;
  --orange-light: #ff9d2e;
  --white: #ffffff;
  --gray: #b7b7b7;
  --muted: #8a8a8a;
  --border: rgba(255, 115, 0, 0.42);
  --soft-border: rgba(255, 255, 255, 0.09);
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

::selection {
  color: #050505;
  background: #ff9d2e;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 115, 0, 0.13), transparent 24%),
    radial-gradient(circle at 10% 45%, rgba(255, 115, 0, 0.05), transparent 24%),
    var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid #ffb15c;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}


/* Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.navbar {
  width: min(calc(100% - 40px), var(--content-width));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--orange-light);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 21px;
}

.nav-links > a,
.dropdown-button {
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links > a:hover,
.dropdown-button:hover,
.current-page {
  color: var(--orange-light);
}

.nav-links > .nav-help-link {
  padding: 8px 12px;
  color: #050505;
  background: var(--orange-light);
  border-radius: 6px;
}

.nav-links > .nav-help-link:hover {
  color: #050505;
  background: #ffc06e;
}

.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--orange-light);
}

.nav-dropdown {
  position: relative;
}

.dropdown-button {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.dropdown-arrow {
  color: var(--orange-light);
  transition: transform 0.2s ease;
}

.dropdown-button[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-help-button {
  padding: 8px 12px;
  color: #050505;
  background: linear-gradient(135deg, #ffb15c, #ff7300);
  border-radius: 6px;
}

.nav-help-button:hover,
.nav-help-button[aria-expanded="true"] {
  color: #050505;
  background: linear-gradient(135deg, #ffc67f, #ff8a29);
}

.nav-help-button .dropdown-arrow {
  color: #050505;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 1100;
  width: 270px;
  padding: 10px;
  display: none;
  background: #0b0b0b;
  border: 1px solid var(--border);
  border-radius: 9px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  transform: translateX(-50%);
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.dropdown-menu.open {
  display: grid;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
  transform: none;
}

.dropdown-menu a {
  min-height: 44px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  color: #e4e4e4;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.dropdown-menu a:hover {
  color: var(--orange-light);
  background: rgba(255, 115, 0, 0.08);
}


/* Shared */

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-description {
  max-width: 840px;
  color: var(--gray);
  font-size: 18px;
}

.text-link {
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.primary-button {
  color: var(--black);
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 115, 0, 0.28);
}

.secondary-button {
  color: var(--white);
  background: transparent;
}

.secondary-button:hover {
  color: var(--orange-light);
  background: rgba(255, 115, 0, 0.08);
}

.small-action-button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-action {
  color: var(--black);
  background: var(--orange-light);
  border-color: var(--orange-light);
}

.danger-button {
  padding: 9px 12px;
  color: #ff8e8e;
  background: rgba(255, 60, 60, 0.05);
  border: 1px solid rgba(255, 85, 85, 0.35);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.section {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 32px auto;
  padding: 68px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), transparent 45%),
    var(--panel);
  border: 1px solid var(--soft-border);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.section h2 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
}


/* Homepage hero */

.hero {
  min-height: 680px;
  padding: 80px 20px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(
      135deg,
      rgba(255, 115, 0, 0.08),
      transparent 46%
    );
}

.hero-content {
  width: min(100%, var(--content-width));
  display: grid;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(350px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.hero h1,
.chips-hero h1 {
  margin: 0;
  font-size: clamp(60px, 8.5vw, 112px);
  line-height: 0.94;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.hero-description {
  max-width: 720px;
  margin: 28px 0 0;
  color: #dedede;
  font-size: 21px;
}

.hero-buttons,
.builder-actions,
.meeting-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-buttons {
  margin-top: 32px;
}

.hawk-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 46%,
      rgba(255, 157, 46, 0.24),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 115, 0, 0.045)
    );
  border: 1px solid rgba(255, 157, 46, 0.24);
  border-radius: 22px;
  box-shadow:
    inset 0 0 70px rgba(0, 0, 0, 0.55),
    0 30px 70px rgba(0, 0, 0, 0.45);
}

.hawk-stage::before,
.hawk-stage::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 157, 46, 0.12);
  border-radius: 50%;
}

.hawk-stage::after {
  inset: 62px;
}

.hawk-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 115, 0, 0.11);
  filter: blur(28px);
}

.hero-hawk {
  position: relative;
  z-index: 2;
  width: min(94%, 540px);
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 28px 30px rgba(0, 0, 0, 0.58))
    contrast(1.05)
    saturate(1.05);
}

.hawk-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hawk-caption span {
  padding: 8px 10px;
  color: var(--orange-light);
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}


/* Cards */

.mission-grid,
.platform-grid {
  margin-top: 42px;
  display: grid;
  gap: 18px;
}

.mission-grid {
  grid-template-columns: repeat(3, 1fr);
}

.platform-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mission-card,
.platform-card {
  min-height: 250px;
  padding: 30px;
  background: var(--black-soft);
  border: 1px solid var(--soft-border);
  border-radius: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mission-card:hover,
.platform-card:hover {
  border-color: var(--border);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.card-number {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mission-card h3,
.platform-card h3 {
  margin: 22px 0 12px;
  font-size: 26px;
  text-transform: uppercase;
}

.mission-card p,
.platform-card p {
  color: var(--gray);
}


/* Accordions and resources */

.resource-accordion {
  margin-top: 38px;
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
  background: var(--black-soft);
  border: 1px solid var(--soft-border);
  border-radius: 9px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion-item.is-open {
  border-color: var(--border);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
}

.accordion-button {
  width: 100%;
  min-height: 82px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.accordion-button:hover {
  background: rgba(255, 115, 0, 0.05);
}

.accordion-heading {
  display: grid;
  gap: 2px;
}

.accordion-heading small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.accordion-heading strong {
  font-size: 21px;
  text-transform: uppercase;
}

.accordion-symbol {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--orange-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 22px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.accordion-button[aria-expanded="true"] .accordion-symbol {
  color: var(--black);
  background: var(--orange-light);
  transform: rotate(45deg);
}

.accordion-panel {
  padding: 0 22px 24px;
  color: var(--gray);
  border-top: 1px solid var(--soft-border);
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel > p:first-child {
  max-width: 900px;
  margin: 20px 0 0;
}

.resource-link-grid,
.specialty-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.specialty-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-link-card,
.specialty-card {
  min-height: 126px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 7px;
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      rgba(255, 115, 0, 0.04),
      transparent 60%
    ),
    #111111;
  border: 1px solid var(--soft-border);
  border-radius: 9px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.resource-link-card:hover,
.specialty-card:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  background:
    linear-gradient(
      145deg,
      rgba(255, 115, 0, 0.09),
      transparent 70%
    ),
    #111111;
}

.resource-link-card strong,
.specialty-card strong {
  color: var(--orange-light);
  font-size: 16px;
  line-height: 1.25;
}

.resource-link-card span,
.specialty-card span {
  color: var(--gray);
  font-size: 13px;
}

.state-housing-finder {
  margin-top: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  background: #080808;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.state-housing-finder .form-field {
  margin: 0;
}

.state-housing-finder .status-message {
  grid-column: 1 / -1;
  margin-top: 0;
}

.resource-subgroups {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.resource-subgroup {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--soft-border);
  border-radius: 9px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.resource-subgroup[open] {
  background: rgba(255, 115, 0, 0.025);
  border-color: rgba(255, 115, 0, 0.35);
}

.resource-subgroup summary {
  min-height: 58px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.resource-subgroup summary::-webkit-details-marker {
  display: none;
}

.resource-subgroup summary::after {
  content: "+";
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--orange-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 19px;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.resource-subgroup[open] summary::after {
  color: #050505;
  background: var(--orange-light);
  transform: rotate(45deg);
}

.resource-subgroup summary:hover {
  background: rgba(255, 115, 0, 0.05);
}

.resource-subgroup .resource-link-grid {
  margin: 0;
  padding: 0 16px 17px;
}

.resource-fine-print {
  margin: 0;
  padding: 0 18px 17px;
  color: var(--muted);
  font-size: 11px;
}

.transportation-ask-strip {
  margin-top: 20px;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  background: rgba(255, 115, 0, 0.05);
  border: 1px solid rgba(255, 115, 0, 0.2);
  border-radius: 8px;
  font-size: 11px;
}

.transportation-ask-strip strong {
  margin-right: 4px;
  color: var(--orange-light);
  text-transform: uppercase;
}

.transportation-ask-strip span {
  padding: 5px 8px;
  color: #dedede;
  background: #111111;
  border: 1px solid var(--soft-border);
  border-radius: 999px;
}

.inline-finder {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns:
    minmax(170px, 0.75fr)
    minmax(240px, 1fr)
    auto;
  align-items: end;
  gap: 14px;
  background: #080808;
  border: 1px solid var(--soft-border);
  border-radius: 10px;
}

.inline-finder .form-field {
  margin-bottom: 0;
}

.inline-finder .status-message {
  grid-column: 1 / -1;
}


/* Forms */

.form-row,
.milestone-number-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.milestone-number-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.milestone-presets {
  margin: 0 0 20px;
  padding: 14px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
}

.milestone-presets > span {
  color: var(--orange-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.milestone-preset-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.milestone-preset-buttons button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--gray);
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.milestone-preset-buttons button:hover {
  color: #050505;
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-1px);
}

.form-field {
  margin-bottom: 17px;
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--white);
  background: #080808;
  border: 1px solid var(--soft-border);
  border-radius: 7px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 48px;
  padding: 0 13px;
}

.form-field input[type="file"] {
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 140px;
  padding: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 115, 0, 0.1);
}

.form-field select option {
  color: var(--white);
  background: #080808;
}

.field-help {
  color: var(--muted);
  font-size: 12px;
}

.theme-swatches {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(7, minmax(28px, 1fr));
  gap: 8px;
  background: #080808;
  border: 1px solid var(--soft-border);
  border-radius: 8px;
}

.theme-swatch {
  --swatch-primary: #ff7300;
  --swatch-secondary: #ffb15c;
  position: relative;
  width: 100%;
  min-width: 28px;
  aspect-ratio: 1;
  padding: 0;
  background: linear-gradient(135deg, var(--swatch-secondary) 0 48%, var(--swatch-primary) 52% 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.theme-swatch:hover {
  border-color: rgba(255, 255, 255, 0.72);
  transform: scale(1.08);
}

.theme-swatch.is-selected {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px var(--swatch-primary), inset 0 0 0 2px rgba(0, 0, 0, 0.35);
}

.theme-swatch span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.theme-swatch[data-theme-value="bronze"] { --swatch-primary: #a75e24; --swatch-secondary: #df9a5e; }
.theme-swatch[data-theme-value="silver"] { --swatch-primary: #9098a2; --swatch-secondary: #f3f5f7; }
.theme-swatch[data-theme-value="gold"] { --swatch-primary: #c49313; --swatch-secondary: #ffe985; }
.theme-swatch[data-theme-value="blue"] { --swatch-primary: #185f96; --swatch-secondary: #72c9ff; }
.theme-swatch[data-theme-value="green"] { --swatch-primary: #247d4a; --swatch-secondary: #75d99f; }
.theme-swatch[data-theme-value="purple"] { --swatch-primary: #663a98; --swatch-secondary: #c69cff; }
.theme-swatch[data-theme-value="crimson"] { --swatch-primary: #b52f39; --swatch-secondary: #ff8892; }
.theme-swatch[data-theme-value="teal"] { --swatch-primary: #0c8078; --swatch-secondary: #7ce8db; }
.theme-swatch[data-theme-value="cyan"] { --swatch-primary: #137ea6; --swatch-secondary: #82dcff; }
.theme-swatch[data-theme-value="rose"] { --swatch-primary: #a34069; --swatch-secondary: #ff9fc5; }
.theme-swatch[data-theme-value="midnight"] { --swatch-primary: #334a92; --swatch-secondary: #9fb8ff; }
.theme-swatch[data-theme-value="onyx"] { --swatch-primary: #333840; --swatch-secondary: #e0e2e5; }
.theme-swatch[data-theme-value="coral"] { --swatch-primary: #c84f3d; --swatch-secondary: #ffad8f; }

.consent-field {
  margin: 6px 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray);
  font-size: 13px;
}

.consent-field input {
  margin-top: 4px;
  accent-color: var(--orange);
}

.form-submit {
  width: 100%;
}

.status-message {
  margin: 14px 0 0;
  color: var(--orange-light);
  font-size: 13px;
}


/* Immediate help directory */

.help-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 66, 66, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 115, 0, 0.07), transparent 48%),
    #111111;
  border-color: rgba(255, 142, 71, 0.35);
}

.help-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.help-heading-row > div:first-child {
  min-width: 0;
}

.quick-exit-wrap {
  width: min(100%, 245px);
  flex: 0 0 auto;
  display: grid;
  gap: 8px;
}

.quick-exit-wrap small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.quick-exit-button {
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.quick-exit-button:hover {
  background: #252525;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.urgent-action-panel {
  margin: 34px 0 26px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(115deg, rgba(190, 31, 31, 0.3), rgba(255, 115, 0, 0.1)),
    #0b0b0b;
  border: 1px solid rgba(255, 103, 68, 0.55);
  border-radius: 12px;
  box-shadow: inset 4px 0 0 #ff4f3a;
}

.urgent-action-copy {
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.urgent-action-copy div {
  display: grid;
  gap: 2px;
}

.urgent-action-copy strong {
  font-size: 17px;
  text-transform: uppercase;
}

.urgent-action-copy span:not(.urgent-pulse) {
  color: var(--gray);
  font-size: 12px;
}

.urgent-pulse {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background: #ff4f3a;
  border: 3px solid #ffd2cb;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 79, 58, 0.15);
}

.urgent-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.urgent-button {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #171717;
  border: 1px solid rgba(255, 157, 46, 0.55);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.urgent-button:hover {
  background: rgba(255, 115, 0, 0.18);
  border-color: var(--orange-light);
  transform: translateY(-2px);
}

.urgent-button--emergency {
  color: #ffffff;
  background: #b82828;
  border-color: #ff7777;
}

.urgent-button--emergency:hover {
  background: #d43131;
  border-color: #ffadad;
}

.help-directory-tools {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(260px, 0.58fr);
  align-items: end;
  gap: 22px;
}

.help-filter-group {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.help-filter {
  min-height: 42px;
  padding: 0 14px;
  color: var(--gray);
  background: #090909;
  border: 1px solid var(--soft-border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.help-filter:hover,
.help-filter.is-active {
  color: #050505;
  background: var(--orange-light);
  border-color: var(--orange-light);
}

.help-search-field,
.help-category-select {
  display: grid;
  gap: 7px;
}

.help-search-field span,
.help-category-select span {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.help-search-field input,
.help-category-select select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--white);
  background: #080808;
  border: 1px solid var(--soft-border);
  border-radius: 7px;
}

.help-search-field input:focus,
.help-category-select select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 115, 0, 0.13);
}

.help-category-select option {
  color: var(--white);
  background: #080808;
}

.help-results-status {
  min-height: 21px;
  margin: 13px 0 4px;
  color: var(--muted);
  font-size: 12px;
}

.help-card-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
  align-items: stretch;
  gap: 15px;
}

.help-card {
  min-width: 0;
  padding: 23px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.025), transparent 48%),
    #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.help-card:hover {
  border-color: rgba(255, 157, 46, 0.48);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.help-card--featured {
  background:
    linear-gradient(150deg, rgba(255, 115, 0, 0.15), transparent 58%),
    #0a0a0a;
  border-color: rgba(255, 157, 46, 0.55);
}

.help-card-category {
  width: fit-content;
  margin-bottom: 11px;
  padding: 4px 8px;
  color: var(--orange-light);
  background: rgba(255, 115, 0, 0.09);
  border: 1px solid rgba(255, 115, 0, 0.22);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.help-card h3 {
  margin: 0 0 9px;
  font-size: 21px;
  line-height: 1.2;
  text-transform: uppercase;
}

.help-card > p {
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

.help-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.help-card-actions a {
  min-height: 36px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  color: #f4f4f4;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.help-card-actions a:hover {
  color: #050505;
  background: var(--orange-light);
  border-color: var(--orange-light);
}

.help-card-actions .help-call-link {
  color: #050505;
  background: var(--orange-light);
  border-color: var(--orange-light);
}

.help-card-actions .help-call-link:hover {
  background: #ffc06e;
  border-color: #ffc06e;
}

.help-card > small {
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.help-directory-note {
  margin-top: 22px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  color: var(--gray);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
}

.help-directory-note strong {
  color: var(--orange-light);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.help-directory-note p {
  margin: 0;
  font-size: 12px;
}


/* Contact */

.contact-section {
  display: grid;
  grid-template-columns:
    minmax(260px, 0.8fr)
    minmax(0, 1.2fr);
  gap: 42px;
}

.contact-methods {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.contact-method {
  padding: 20px;
  display: grid;
  gap: 5px;
  background: var(--black-soft);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  text-decoration: none;
}

.contact-method:hover {
  border-color: var(--border);
}

.contact-method span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-method strong {
  overflow-wrap: anywhere;
}

.contact-information-card {
  margin-top: 18px;
  padding: 20px;
  color: var(--gray);
  background: rgba(255, 115, 0, 0.05);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
}

.contact-information-card strong {
  color: var(--orange-light);
  text-transform: uppercase;
}

.contact-information-card p {
  margin: 7px 0 0;
  font-size: 14px;
}

.contact-help-link {
  margin-top: 20px;
  padding: 12px 14px;
  display: inline-flex;
  color: #050505;
  background: var(--orange-light);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-help-link:hover {
  background: #ffc06e;
  transform: translateY(-2px);
}

.contact-form {
  padding: 30px;
  background: var(--black-soft);
  border: 1px solid var(--soft-border);
  border-radius: 10px;
}


/* Chips page */

.chips-hero {
  width: min(calc(100% - 40px), var(--content-width));
  min-height: 500px;
  margin: 38px auto 0;
  padding: 62px;
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 48px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 115, 0, 0.12),
      transparent 55%
    ),
    var(--panel);
  border: 1px solid var(--soft-border);
  border-radius: 16px;
}

.chips-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--gray);
  font-size: 19px;
}

.chips-hero-visual {
  min-height: 380px;
  display: grid;
  place-items: center;
}

.mini-chip {
  width: min(100%, 360px);
  aspect-ratio: 1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 36px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  text-align: center;
  background: #140a03;
  border: 9px solid #ff7300;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.22),
    inset 0 0 40px rgba(0, 0, 0, 0.5),
    0 28px 55px rgba(0, 0, 0, 0.45);
}

.mini-chip::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.12) 38%,
      rgba(0, 0, 0, 0.18) 58%,
      rgba(0, 0, 0, 0.78) 100%
    );
  pointer-events: none;
}

.mini-chip img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.mini-chip-top {
  position: relative;
  z-index: 2;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95);
}

.mini-chip strong {
  position: relative;
  z-index: 2;
  padding: 9px 14px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 18px;
  line-height: 1.15;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 1);
  text-transform: uppercase;
}

.builder-layout {
  margin-top: 38px;
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, 0.85fr);
  align-items: start;
  gap: 28px;
}

.builder-form,
.profile-preview-card,
.chip-preview-area {
  padding: 30px;
  background: var(--black-soft);
  border: 1px solid var(--soft-border);
  border-radius: 12px;
}

.profile-preview-card {
  text-align: center;
}

.profile-preview-photo {
  width: 170px;
  height: 170px;
  margin: 0 auto 25px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--black);
  background:
    linear-gradient(
      135deg,
      var(--orange-light),
      var(--orange)
    );
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 42px;
  font-weight: 900;
}

.profile-preview-photo img,
.chip-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-preview-card h3 {
  margin: 0 0 8px;
  font-size: 30px;
  text-transform: uppercase;
}

.profile-preview-card p {
  color: var(--gray);
}

.preview-fellowship {
  color: var(--orange-light) !important;
  font-weight: 800;
}


/* Live chip */

.chip-preview-area {
  position: sticky;
  top: 105px;
  text-align: center;
}

.digital-chip {
  --chip-primary: #ff7300;
  --chip-secondary: #ffb15c;
  --chip-dark: #351300;

  width: min(100%, 440px);
  aspect-ratio: 1;
  margin: 20px auto;
  padding: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: var(--chip-dark);
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.56) 0%,
      rgba(0, 0, 0, 0.18) 38%,
      rgba(0, 0, 0, 0.28) 62%,
      rgba(0, 0, 0, 0.68) 100%
    ),
    url("images/hawk-realistic.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 8px solid var(--chip-primary);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.22),
    inset 0 0 42px rgba(0, 0, 0, 0.55),
    0 28px 55px rgba(0, 0, 0, 0.48);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.digital-chip[data-theme="bronze"] {
  --chip-primary: #a75e24;
  --chip-secondary: #df9a5e;
  --chip-dark: #3c1d09;
}

.digital-chip[data-theme="silver"] {
  --chip-primary: #9098a2;
  --chip-secondary: #f3f5f7;
  --chip-dark: #30343a;
}

.digital-chip[data-theme="gold"] {
  --chip-primary: #c49313;
  --chip-secondary: #ffe985;
  --chip-dark: #4b3500;
}

.digital-chip[data-theme="blue"] {
  --chip-primary: #185f96;
  --chip-secondary: #72c9ff;
  --chip-dark: #061d34;
}

.digital-chip[data-theme="green"] {
  --chip-primary: #247d4a;
  --chip-secondary: #75d99f;
  --chip-dark: #062816;
}

.digital-chip[data-theme="purple"] {
  --chip-primary: #663a98;
  --chip-secondary: #c69cff;
  --chip-dark: #24103d;
}

.digital-chip[data-theme="crimson"] {
  --chip-primary: #b52f39;
  --chip-secondary: #ff8892;
  --chip-dark: #35090d;
}

.digital-chip[data-theme="teal"] {
  --chip-primary: #0c8078;
  --chip-secondary: #7ce8db;
  --chip-dark: #062c29;
}

.digital-chip[data-theme="cyan"] {
  --chip-primary: #137ea6;
  --chip-secondary: #82dcff;
  --chip-dark: #052a39;
}

.digital-chip[data-theme="rose"] {
  --chip-primary: #a34069;
  --chip-secondary: #ff9fc5;
  --chip-dark: #351020;
}

.digital-chip[data-theme="midnight"] {
  --chip-primary: #334a92;
  --chip-secondary: #9fb8ff;
  --chip-dark: #080e27;
}

.digital-chip[data-theme="onyx"] {
  --chip-primary: #333840;
  --chip-secondary: #e0e2e5;
  --chip-dark: #050607;
}

.digital-chip[data-theme="coral"] {
  --chip-primary: #c84f3d;
  --chip-secondary: #ffad8f;
  --chip-dark: #3b100b;
}

.chip-outer-ring {
  width: 100%;
  height: 100%;
  padding: 14px;
  display: grid;
  place-items: center;
  border: 3px dashed var(--chip-secondary);
  border-radius: 50%;
}

.chip-inner-ring {
  width: 100%;
  height: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.58) 100%
    );
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 0 10px rgba(0, 0, 0, 0.9);
}

.chip-fellowship {
  margin: 0 0 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.chip-photo-frame {
  width: 96px;
  height: 96px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--black);
  background: rgba(255, 255, 255, 0.9);
  border: 4px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.chip-inner-ring h3 {
  max-width: 270px;
  margin: 10px 0 2px;
  overflow: hidden;
  font-size: clamp(18px, 4vw, 28px);
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.chip-milestone {
  margin: 8px 0 0;
  font-size: clamp(25px, 6vw, 42px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.chip-type {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.chip-message {
  max-width: 250px;
  margin: 10px 0 0;
  font-size: 13px;
  font-style: italic;
}

.chip-date {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 800;
}

.privacy-note {
  color: var(--muted);
  font-size: 12px;
}

.wallet-save-panel {
  margin-top: 22px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 115, 0, 0.1), rgba(255, 115, 0, 0.025)),
    #0b0b0b;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.wallet-save-label {
  margin: 0 0 5px;
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wallet-save-panel h3 {
  margin: 0;
  font-size: 20px;
}

.wallet-save-copy {
  margin: 8px 0 16px;
  color: var(--gray);
  font-size: 13px;
}

.wallet-button-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wallet-action-button {
  width: 100%;
  min-height: 52px;
  padding-inline: 16px;
  color: var(--white);
  background: #111111;
  cursor: pointer;
}

.wallet-action-button:hover:not(:disabled),
.wallet-action-button:focus-visible:not(:disabled) {
  color: #050505;
  background: var(--orange-light);
  outline: none;
}

.wallet-action-button:disabled {
  color: #8b8b8b;
  background: #151515;
  border-color: rgba(255, 255, 255, 0.12);
  cursor: not-allowed;
}

.wallet-status {
  min-height: 21px;
  margin: 12px 0 0;
  color: var(--orange-light);
  font-size: 12px;
}


/* Saved items */

.saved-items-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.saved-panel {
  padding: 26px;
  background: var(--black-soft);
  border: 1px solid var(--soft-border);
  border-radius: 12px;
}

.saved-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.saved-panel-heading h3 {
  margin: 0;
  text-transform: uppercase;
}

.saved-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.saved-card {
  padding: 16px;
  display: grid;
  grid-template-columns:
    54px
    minmax(0, 1fr)
    auto;
  align-items: center;
  gap: 14px;
  background: var(--panel-light);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
}

.saved-card-image {
  width: 54px;
  height: 54px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--orange-light);
  border-radius: 50%;
  font-weight: 900;
}

.saved-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.saved-card-copy strong {
  display: block;
  overflow-wrap: anywhere;
}

.saved-card-copy span {
  color: var(--gray);
  font-size: 12px;
}

.saved-card-actions {
  display: grid;
  gap: 6px;
}

.saved-card-actions button {
  padding: 7px 9px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--soft-border);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.empty-message {
  color: var(--muted);
  font-size: 13px;
}


/* Footer */

footer {
  margin-top: 64px;
  background: #020202;
  border-top: 1px solid var(--border);
}

.footer-content {
  width: min(calc(100% - 40px), var(--content-width));
  min-height: 120px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-content strong {
  color: var(--orange-light);
  text-transform: uppercase;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-contact-links a {
  color: var(--gray);
  font-size: 13px;
  text-decoration: none;
}

.footer-contact-links a:hover {
  color: var(--orange-light);
}

.footer-content > p {
  color: #969696;
}


/* The Hawk Nest Partner Network page */

.partners-page {
  background:
    radial-gradient(circle at 88% 7%, rgba(255, 115, 0, 0.2), transparent 24%),
    radial-gradient(circle at 8% 52%, rgba(52, 184, 168, 0.08), transparent 22%),
    var(--black);
}

.partners-hero {
  width: min(calc(100% - 40px), var(--content-width));
  min-height: 590px;
  margin: 38px auto 32px;
  padding: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 115, 0, 0.16), transparent 48%),
    linear-gradient(315deg, rgba(52, 184, 168, 0.08), transparent 46%),
    var(--panel);
  border: 1px solid rgba(255, 157, 46, 0.3);
  border-radius: 18px;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.32);
}

.partners-hero h1 {
  margin: 0;
  font-size: clamp(52px, 6.8vw, 92px);
  line-height: 0.94;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.partners-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: #dedede;
  font-size: 20px;
}

.partners-hero-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.partner-mosaic {
  width: min(100%, 430px);
  aspect-ratio: 1;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 10px;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow:
    inset 0 0 60px rgba(255, 255, 255, 0.03),
    0 30px 60px rgba(0, 0, 0, 0.5);
  transform: rotate(2deg);
}

.partner-piece {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  overflow: hidden;
  color: #050505;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.piece-housing {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
  background: #ff9d2e;
}

.piece-recovery {
  grid-column: 4 / 7;
  grid-row: 1 / 4;
  color: #fff;
  background: #8f58d6;
}

.piece-rides {
  grid-column: 1 / 3;
  grid-row: 3 / 6;
  background: #ffd447;
}

.piece-wellness {
  grid-column: 3 / 4;
  grid-row: 3 / 7;
  padding: 10px;
  color: #fff;
  background: #008f85;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.piece-community {
  grid-column: 4 / 7;
  grid-row: 4 / 6;
  color: #fff;
  background: #d94f5c;
}

.piece-work {
  grid-column: 1 / 3;
  grid-row: 6 / 7;
  background: #70c8f0;
}

.partner-intro-grid,
.partner-pathway-grid,
.partner-standards-grid {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.featured-partner-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  background:
    linear-gradient(125deg, rgba(143, 88, 214, 0.14), transparent 42%),
    linear-gradient(315deg, rgba(255, 157, 46, 0.1), transparent 44%),
    var(--panel);
  border-color: rgba(143, 88, 214, 0.38);
}

.featured-partner-mark {
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(145deg, #8f58d6, #4d267c);
  border: 8px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.18),
    0 24px 48px rgba(0, 0, 0, 0.34);
}

.featured-partner-mark::before,
.featured-partner-mark::after {
  content: "";
  position: absolute;
  width: 56%;
  height: 12%;
  background: rgba(255, 157, 46, 0.82);
  border-radius: 999px;
  transform: rotate(-38deg);
}

.featured-partner-mark::before {
  top: 18%;
  left: -14%;
}

.featured-partner-mark::after {
  right: -14%;
  bottom: 18%;
}

.featured-partner-mark > span,
.featured-partner-mark > strong,
.featured-partner-mark > small {
  position: relative;
  z-index: 1;
}

.featured-partner-mark > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.featured-partner-mark > strong {
  font-size: clamp(31px, 4vw, 52px);
  line-height: 0.88;
  letter-spacing: -2.5px;
  text-align: center;
  text-transform: uppercase;
}

.featured-partner-mark > small {
  color: var(--orange-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.featured-partner-copy h2 {
  margin-bottom: 22px;
}

.featured-partner-products {
  margin-top: 24px;
  padding: 22px;
  background: rgba(5, 5, 5, 0.58);
  border: 1px solid rgba(255, 157, 46, 0.28);
  border-radius: 10px;
}

.featured-partner-products h3 {
  margin: 12px 0 8px;
  font-size: 21px;
  text-transform: uppercase;
}

.featured-partner-products p {
  margin: 0;
  color: var(--gray);
}

.featured-partner-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-purpose-card,
.partner-pathway-card {
  min-width: 0;
  padding: 28px;
  background: var(--black-soft);
  border: 1px solid var(--soft-border);
  border-radius: 11px;
}

.partner-purpose-card {
  border-top: 3px solid var(--orange-light);
}

.partner-purpose-card > span {
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.partner-purpose-card h3,
.partner-pathway-card h3 {
  margin: 14px 0 8px;
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
}

.partner-purpose-card p,
.partner-pathway-card p {
  margin: 0;
  color: var(--gray);
}

.partner-network-section {
  background:
    linear-gradient(145deg, rgba(255, 157, 46, 0.06), transparent 40%),
    #101010;
}

.partner-category-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.partner-category {
  overflow: hidden;
  background: #080808;
  border: 1px solid var(--soft-border);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.partner-category[open] {
  background: #0d0d0d;
  border-color: rgba(255, 157, 46, 0.42);
}

.partner-category summary {
  min-height: 92px;
  padding: 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  list-style: none;
  cursor: pointer;
}

.partner-category summary::-webkit-details-marker {
  display: none;
}

.partner-category summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: var(--orange-light);
  font-size: 23px;
  font-weight: 400;
}

.partner-category[open] summary::after {
  content: "−";
}

.partner-category summary > span:nth-child(2) {
  min-width: 0;
  padding-right: 30px;
}

.partner-category summary strong,
.partner-category summary small {
  display: block;
}

.partner-category summary strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
}

.partner-category summary small {
  margin-top: 4px;
  color: #999;
  font-size: 12px;
  line-height: 1.35;
}

.partner-category-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #050505;
  background: linear-gradient(135deg, #ffd08b, var(--orange));
  border-radius: 8px;
  font-weight: 900;
}

.partner-category-body {
  padding: 0 22px 22px 80px;
  color: var(--gray);
}

.partner-category-body p {
  margin: 0 0 12px;
}

.partner-category-body ul {
  margin: 0;
  padding-left: 19px;
}

.partner-category-body li + li {
  margin-top: 5px;
}

.partner-pathway-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-pathway-card {
  position: relative;
  overflow: hidden;
}

.partner-pathway-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 92px;
  height: 92px;
  border: 18px solid rgba(255, 115, 0, 0.1);
  border-radius: 50%;
}

.partner-pathway-label {
  display: inline-flex;
  padding: 5px 9px;
  color: #050505;
  background: var(--orange-light);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.partner-standards-section {
  background:
    linear-gradient(145deg, rgba(52, 184, 168, 0.07), transparent 45%),
    var(--panel);
}

.partner-standards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-standard {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: rgba(5, 5, 5, 0.68);
  border: 1px solid var(--soft-border);
  border-left: 4px solid #34b8a8;
  border-radius: 9px;
}

.partner-standard strong {
  font-size: 17px;
  text-transform: uppercase;
}

.partner-standard span {
  color: var(--gray);
  font-size: 14px;
}

.partner-cta {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 32px auto 48px;
  padding: 68px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #ff9d2e, #e75a00);
  border-radius: 16px;
  color: #050505;
  box-shadow: 0 26px 60px rgba(255, 115, 0, 0.16);
}

.partner-cta .eyebrow {
  color: #2b1600;
}

.partner-cta h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.partner-cta > div:first-child > p:not(.eyebrow) {
  max-width: 780px;
  font-size: 18px;
}

.partner-steps {
  margin: 34px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.partner-step {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(5, 5, 5, 0.11);
  border: 1px solid rgba(5, 5, 5, 0.17);
  border-radius: 8px;
}

.partner-step span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--orange-light);
  background: #050505;
  border-radius: 50%;
  font-weight: 900;
}

.partner-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.partner-cta-actions .primary-button {
  color: #fff;
  background: #050505;
  border-color: #050505;
}

.partner-cta-actions > a:not(.button) {
  font-weight: 900;
  text-underline-offset: 3px;
}


/* Tablet */

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: #080808;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.55);
    max-height: calc(100vh - 78px);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a,
  .dropdown-button {
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  .nav-links > .nav-help-link {
    margin: 6px 0;
    padding: 12px;
  }

  .dropdown-button {
    justify-content: space-between;
  }

  .nav-help-button {
    margin: 6px 0;
    padding: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    padding: 4px 0 8px 16px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    transform: none;
    max-height: none;
    overflow: visible;
  }

  .hero-content,
  .chips-hero,
  .partners-hero,
  .builder-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .partners-hero-visual {
    min-height: 0;
  }

  .partner-mosaic {
    max-width: 520px;
  }

  .partner-pathway-grid,
  .partner-standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-partner-section {
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
    gap: 34px;
  }

  .hawk-stage {
    min-height: 450px;
  }

  .mission-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .resource-link-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .inline-finder {
    grid-template-columns: 1fr 1fr;
  }

  .inline-finder .small-action-button,
  .inline-finder .status-message {
    grid-column: 1 / -1;
  }

  .chip-preview-area {
    position: static;
  }

  .help-heading-row,
  .urgent-action-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-exit-wrap {
    width: 100%;
  }

  .urgent-action-buttons {
    justify-content: flex-start;
  }

  .help-directory-tools {
    grid-template-columns: 1fr;
  }
}


/* Mobile */

@media (max-width: 650px) {
  .navbar {
    width: calc(100% - 28px);
    gap: 14px;
  }

  .brand {
    font-size: 18px;
    letter-spacing: 0.6px;
  }

  .nav-links {
    padding: 12px 14px 20px;
  }

  .hero {
    min-height: auto;
    padding: 64px 20px;
  }

  .hero h1,
  .chips-hero h1,
  .partners-hero h1 {
    font-size: clamp(52px, 17vw, 80px);
    letter-spacing: -3px;
  }

  .hawk-stage {
    min-height: 340px;
  }

  .hawk-caption {
    flex-wrap: wrap;
  }

  .section,
  .chips-hero,
  .partners-hero,
  .partner-cta {
    width: calc(100% - 28px);
    padding: 38px 22px;
  }

  .section h2 {
    font-size: clamp(32px, 11vw, 48px);
    letter-spacing: -1.2px;
  }

  .section-description {
    font-size: 16px;
  }

  .form-row,
  .milestone-number-grid,
  .saved-items-grid,
  .resource-link-grid,
  .specialty-grid,
  .inline-finder,
  .state-housing-finder,
  .partner-intro-grid,
  .partner-category-grid,
  .partner-pathway-grid,
  .partner-standards-grid,
  .partner-steps {
    grid-template-columns: 1fr;
  }

  .partners-hero {
    gap: 34px;
  }

  .featured-partner-section {
    grid-template-columns: 1fr;
  }

  .featured-partner-mark {
    width: min(72vw, 270px);
    justify-self: center;
  }

  .partners-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .partner-mosaic {
    gap: 7px;
    padding: 9px;
    border-radius: 14px;
    transform: none;
  }

  .partner-piece {
    padding: 9px;
    border-radius: 8px;
    font-size: 9px;
  }

  .partner-category summary {
    min-height: 82px;
    padding: 14px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
  }

  .partner-category-icon {
    width: 42px;
    height: 42px;
  }

  .partner-category-body {
    padding: 0 16px 18px;
  }

  .partner-cta h2 {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: -1.2px;
  }

  .partner-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-cta-actions .button {
    width: 100%;
  }

  .inline-finder .small-action-button,
  .inline-finder .status-message {
    grid-column: auto;
  }

  .builder-form,
  .profile-preview-card,
  .chip-preview-area,
  .contact-form {
    padding: 22px;
  }

  .accordion-button {
    min-height: 74px;
    padding: 15px 16px;
  }

  .accordion-heading strong {
    font-size: 17px;
  }

  .accordion-panel {
    padding: 0 16px 20px;
  }

  .builder-actions,
  .meeting-buttons,
  .hero-buttons {
    flex-direction: column;
  }

  .wallet-button-row {
    grid-template-columns: 1fr;
  }

  .theme-swatches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .theme-swatch {
    min-width: 0;
  }

  .urgent-action-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .urgent-button {
    width: 100%;
  }

  .help-filter-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-filter {
    width: 100%;
    padding-inline: 8px;
  }

  .help-card {
    padding: 20px;
  }

  .help-card-actions a {
    min-height: 44px;
  }

  .urgent-action-panel,
  .state-housing-finder {
    padding: 18px;
  }

  .help-directory-note {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .builder-actions .button,
  .meeting-buttons button,
  .hero-buttons .button,
  .inline-finder .small-action-button,
  .state-housing-finder .small-action-button {
    width: 100%;
  }

  .transportation-ask-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .transportation-ask-strip span {
    width: 100%;
    border-radius: 6px;
  }

  .resource-subgroup summary {
    min-height: 64px;
    padding: 13px 14px;
    font-size: 11px;
  }

  .resource-subgroup .resource-link-grid {
    padding: 0 12px 13px;
  }

  .digital-chip {
    padding: 12px;
  }

  .chip-inner-ring {
    padding: 18px 20px;
  }

  .chip-photo-frame {
    width: 76px;
    height: 76px;
  }

  .saved-card {
    grid-template-columns:
      48px
      minmax(0, 1fr);
  }

  .saved-card-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 0;
  }

  .footer-contact-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* ================================================================
   HAWK NEST ENTRY PAGE
   Responsive artwork with aligned interactive regions
   ================================================================ */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.home-page {
  margin: 0;
  overflow-x: hidden;
  background: #050505;
}

.home-page main {
  width: 100%;
}

.home-page .entry-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #050505;
  border: 0;
}

/* Blurred full-screen fill behind the sharp image.
   This fills unusual screen shapes without stretching the artwork. */
.home-page .entry-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -32px;
  background:
    linear-gradient(rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.18)),
    url("images/hawknest-entry-cover.png") center / cover no-repeat;
  filter: blur(24px);
  transform: scale(1.06);
}

/* Light edge shading keeps buttons readable. */
.home-page .entry-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      transparent 58%,
      rgba(0, 0, 0, 0.34) 100%
    );
}

.home-page .entry-stage {
  position: relative;
  width: min(100vw, 177.683vh);
  width: min(100vw, 177.683svh);
  width: min(100vw, 177.683dvh);
  aspect-ratio: 1672 / 941;
  max-width: 100%;
  max-height: 100vh;
  max-height: 100svh;
  max-height: 100dvh;
  flex: none;
}

.home-page .entry-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 10%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.98) 0%,
    rgba(5, 5, 5, 0.86) 70%,
    transparent 100%
  );
}

.home-page .entry-cover-image {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: contain;
  image-rendering: auto;
}

.home-page .entry-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.home-page .entry-hotspot {
  position: absolute;
  display: block;
  border: 2px solid transparent;
  border-radius: 9px;
  color: transparent;
}

.home-page .entry-hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-page .entry-hotspot:hover,
.home-page .entry-hotspot:focus-visible {
  border-color: #ff7a00;
  background: rgba(255, 122, 0, 0.1);
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.82), 0 0 24px rgba(255, 122, 0, 0.72);
  outline: none;
}

.hotspot-home { left: 31.5%; top: 2.8%; width: 5.2%; height: 7.2%; }
.hotspot-about { left: 37.5%; top: 2.8%; width: 5.8%; height: 7.2%; }
.hotspot-resources { left: 44.3%; top: 2.8%; width: 8.3%; height: 7.2%; }
.hotspot-community { left: 54.6%; top: 2.8%; width: 9.3%; height: 7.2%; }
.hotspot-chip { left: 65.5%; top: 2.8%; width: 9.2%; height: 7.2%; }
.hotspot-contact { left: 75.3%; top: 2.8%; width: 7.2%; height: 7.2%; }
.hotspot-help { left: 85.8%; top: 2.3%; width: 11.5%; height: 6.2%; }
.hotspot-explore { left: 34.7%; top: 69%; width: 19.6%; height: 8.3%; }
.hotspot-create { left: 54.7%; top: 69%; width: 20.3%; height: 8.3%; }

.home-page .entry-mobile-actions {
  display: none;
  position: absolute;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  left: max(12px, env(safe-area-inset-left));
  z-index: 5;
  padding: 8px;
  justify-content: center;
  gap: 10px;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(255, 157, 46, 0.45);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
}

.home-page .entry-mobile-actions .button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 48px;
  padding-inline: clamp(12px, 3vw, 28px);
}

.home-page > .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: block;
}

@media (max-width: 1100px), (max-height: 650px) {
  .home-page .entry-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .entry-stage {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    flex: 1 1 0;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .home-page .entry-hotspots {
    display: none;
  }

  .home-page .entry-mobile-actions {
    display: flex;
    position: static;
    flex: 0 0 auto;
    margin: 0 max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  }
}

@media (max-width: 470px) {
  .home-page .entry-mobile-actions {
    flex-direction: column;
  }

  .home-page .entry-mobile-actions .button {
    width: 100%;
  }

  .help-filter-group,
  .urgent-action-buttons {
    grid-template-columns: 1fr;
  }

  .help-card-actions a,
  .resource-link-card,
  .specialty-card {
    width: 100%;
  }

  .resource-link-card,
  .specialty-card,
  .contact-method {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
