: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(54px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.automotive-page .hero h1 {
  font-size: clamp(60px, 7vw, 88px);
  letter-spacing: -3px;
}

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

.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: 17px;
}

.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.webp");
  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 {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 115, 0, 0.15), transparent 48%),
    linear-gradient(135deg, rgba(255, 115, 0, 0.08), rgba(255, 115, 0, 0.015)),
    #0b0b0b;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.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 7px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
}

.wallet-privacy {
  max-width: 590px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.wallet-verification {
  width: min(100%, 340px);
  margin: 0 0 15px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.wallet-verification[hidden] {
  display: none;
}

.wallet-verification-title {
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.wallet-verification-copy {
  margin: 4px 0 11px;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.45;
}

.wallet-turnstile-frame,
.wallet-turnstile {
  width: 100%;
  min-width: 0;
}

.wallet-turnstile-frame {
  min-height: 65px;
  overflow: hidden;
  border-radius: 8px;
}

.wallet-turnstile {
  display: flex;
  justify-content: center;
  min-height: 65px;
}

.wallet-turnstile iframe {
  max-width: 100%;
}

.wallet-verification-status {
  min-height: 17px;
  margin: 8px 0 0;
  color: var(--orange-light);
  font-size: 11px;
  line-height: 1.45;
}

.wallet-button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.google-wallet-button,
.apple-wallet-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  min-height: 50px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease;
}

.apple-wallet-button[hidden] {
  display: none !important;
}

.apple-wallet-button {
  transition: none;
}

.google-wallet-button img,
.apple-wallet-button img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  flex: 0 0 auto;
}

.apple-wallet-art {
  height: 50px;
}

.google-wallet-primary-art {
  width: 283px;
}

.google-wallet-condensed-art {
  display: none !important;
  width: 199px;
}

.google-wallet-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.google-wallet-button:focus-visible,
.apple-wallet-button:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 3px;
}

.google-wallet-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.apple-wallet-button:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.google-wallet-button[aria-busy="true"],
.apple-wallet-button[aria-busy="true"] {
  cursor: progress;
}

.wallet-button-progress {
  display: none;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid #c8c8c8;
  border-top-color: #222222;
  border-radius: 50%;
  animation: wallet-loading-spin 700ms linear infinite;
}

.google-wallet-button[aria-busy="true"] .wallet-button-progress,
.apple-wallet-button[aria-busy="true"] .wallet-button-progress {
  display: block;
}

@keyframes wallet-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

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

.wallet-provider-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.wallet-provider-note[hidden] {
  display: none;
}


/* 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(48px, 5.8vw, 80px);
  line-height: 0.98;
  letter-spacing: -3px;
  text-transform: uppercase;
}

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

.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;
  padding: 0;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.partner-pathway-card:hover,
.partner-pathway-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 157, 46, 0.72);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.partner-pathway-link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  color: var(--white);
  text-decoration: none;
}

.partner-pathway-link:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: -4px;
  border-radius: 10px;
}

.partner-pathway-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.35;
  text-transform: uppercase;
}

.partner-pathway-action > span {
  font-size: 20px;
  line-height: 1;
  transition: transform 160ms ease;
}

.partner-pathway-link:hover .partner-pathway-action > span,
.partner-pathway-link:focus-visible .partner-pathway-action > span {
  transform: translateX(4px);
}

.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%;
  pointer-events: none;
}

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


/* Community support and donation paths */

.support-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.88) 52%, rgba(5, 5, 5, 0.55) 100%),
    url("images/hawknest-entry-cover-clean.webp") center 66% / cover;
  border-color: rgba(255, 157, 46, 0.42);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.support-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 82% 34%, rgba(255, 157, 46, 0.18), transparent 28%);
}

.support-copy,
.support-impact {
  position: relative;
  z-index: 1;
}

.support-actions,
.donate-actions,
.partner-directory-actions,
.donation-other-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.support-impact {
  display: grid;
  gap: 12px;
}

.support-impact article {
  padding: 18px 20px;
  display: grid;
  gap: 4px;
  background: rgba(5, 5, 5, 0.76);
  border: 1px solid rgba(255, 157, 46, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.support-impact strong {
  text-transform: uppercase;
}

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

.partners-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.83) 48%, rgba(5, 5, 5, 0.46) 100%),
    url("images/hawknest-entry-cover-clean.webp") center 58% / cover;
}

.beautiful-minds-section {
  background:
    linear-gradient(125deg, rgba(52, 184, 168, 0.15), transparent 44%),
    linear-gradient(315deg, rgba(255, 157, 46, 0.1), transparent 44%),
    var(--panel);
  border-color: rgba(52, 184, 168, 0.42);
}

.pearly-gator-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(203, 213, 107, 0.14), transparent 26%),
    linear-gradient(125deg, rgba(223, 105, 52, 0.14), transparent 48%),
    #101510;
}

.pearly-gator-mark {
  color: #f3eddf;
  background:
    radial-gradient(circle at 76% 18%, rgba(203, 213, 107, 0.24), transparent 24%),
    linear-gradient(145deg, #253b2f, #17261f 58%, #0d1712);
  border-color: rgba(203, 213, 107, 0.38);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.pearly-gator-mark::after {
  background: #cbd56b;
}

.pearly-gator-section .eyebrow,
.pearly-gator-section .partner-link-note a {
  color: #cbd56b;
}

.pearly-gator-section .partner-service-tags li {
  color: #edf1c8;
  background: rgba(203, 213, 107, 0.1);
  border-color: rgba(203, 213, 107, 0.34);
}

.beautiful-minds-mark {
  padding: 28px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(145deg, #0c8e83, #064c52);
}

.beautiful-minds-mark > strong {
  font-size: clamp(28px, 3.5vw, 46px);
}

.beautiful-minds-mark > small {
  max-width: 78%;
  line-height: 1.35;
  letter-spacing: 1px;
  text-align: center;
}

.beautiful-minds-mark::before,
.beautiful-minds-mark::after {
  background: rgba(255, 157, 46, 0.9);
}

.miss-v-section {
  background:
    linear-gradient(125deg, rgba(187, 87, 137, 0.16), transparent 44%),
    linear-gradient(315deg, rgba(52, 184, 168, 0.1), transparent 44%),
    var(--panel);
  border-color: rgba(187, 87, 137, 0.44);
}

.miss-v-mark {
  padding: 28px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(145deg, #9b456f, #4d2340);
}

.miss-v-mark > strong {
  font-size: clamp(34px, 4vw, 54px);
}

.miss-v-mark > small {
  max-width: 80%;
  color: #dffaf6;
  line-height: 1.35;
  letter-spacing: 1px;
  text-align: center;
}

.miss-v-mark::before,
.miss-v-mark::after {
  background: rgba(52, 184, 168, 0.9);
}

.partner-service-tags {
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.partner-service-tags span,
.partner-service-tags li {
  padding: 7px 10px;
  color: #dffaf6;
  background: rgba(52, 184, 168, 0.12);
  border: 1px solid rgba(52, 184, 168, 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.partner-link-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.partner-link-note a {
  color: var(--cream);
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.partner-directory-actions {
  justify-content: center;
}

.partner-support-button {
  color: #050505;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(5, 5, 5, 0.2);
}

.donate-page {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 115, 0, 0.18), transparent 25%),
    radial-gradient(circle at 12% 58%, rgba(52, 184, 168, 0.08), transparent 25%),
    var(--black);
}

.donate-hero {
  width: min(calc(100% - 40px), var(--content-width));
  min-height: 650px;
  margin: 38px auto 32px;
  padding: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.78) 56%, rgba(5, 5, 5, 0.44) 100%),
    url("images/hawknest-entry-cover-clean.webp") center 63% / cover;
  border: 1px solid rgba(255, 157, 46, 0.44);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.donate-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.donate-hero-copy > p:not(.eyebrow):not(.donation-security-note) {
  max-width: 720px;
  margin: 20px 0 0;
  color: #e1e1e1;
  font-size: 18px;
}

.donation-security-note {
  max-width: 680px;
  margin: 18px 0 0;
  color: #bdbdbd;
  font-size: 12px;
}

.donation-checkout-card {
  padding: 34px;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(255, 157, 46, 0.4);
  border-radius: 16px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(12px);
}

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

.donation-checkout-card h2 {
  margin: 14px 0 10px;
  font-size: 34px;
  text-transform: uppercase;
}

.donation-checkout-card p,
.donation-checkout-card li {
  color: var(--gray);
}

.donation-checkout-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.donation-impact-section {
  background:
    linear-gradient(145deg, rgba(255, 157, 46, 0.08), transparent 44%),
    var(--panel);
}

.donation-impact-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.donation-impact-grid article {
  min-height: 230px;
  padding: 28px;
  background: rgba(5, 5, 5, 0.76);
  border: 1px solid var(--soft-border);
  border-top: 3px solid var(--orange-light);
  border-radius: 11px;
}

.donation-impact-grid span {
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.donation-impact-grid h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  text-transform: uppercase;
}

.donation-impact-grid p {
  margin: 0;
  color: var(--gray);
}

.donation-other-ways {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  background:
    linear-gradient(125deg, rgba(52, 184, 168, 0.1), transparent 48%),
    var(--black-soft);
}

.donation-other-actions {
  max-width: 360px;
  justify-content: flex-end;
}


/* 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-save-panel {
    padding: 18px;
  }

  .google-wallet-button,
  .apple-wallet-button {
    width: fit-content;
  }

  .google-wallet-primary-art {
    display: none !important;
  }

  .google-wallet-condensed-art {
    display: block !important;
  }

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

@media (max-width: 380px) {
  .wallet-save-panel {
    width: calc(100% + 20px);
    margin-inline: -10px;
    padding: 14px;
  }

  .wallet-verification {
    padding: 10px;
  }

  .google-wallet-button,
  .apple-wallet-button {
    padding: 0;
  }
}

/* ================================================================
   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-clean.webp") center / cover no-repeat;
  filter: blur(24px);
  transform: scale(1.06);
}

/* Light edge shading keeps the artwork 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-stage picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 700px) {
  .home-page > .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .home-page .entry-hero {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    padding-top: calc(78px + env(safe-area-inset-top));
    box-sizing: border-box;
  }

  .home-page .entry-stage::before {
    display: none;
  }

  .home-page .entry-cover-image {
    object-fit: cover;
    object-position: center top;
  }
}

.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: 80%; width: 19.6%; height: 8.3%; }
.hotspot-create { left: 54.7%; top: 80%; width: 20.3%; height: 8.3%; }

/* The clean desktop artwork no longer contains baked-in controls, so the
   entry actions must remain visibly rendered over their intended areas. */
.home-page .entry-hotspot.hotspot-explore {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080808;
  background: linear-gradient(135deg, #ffb23f, #ff7600);
  border-color: #ffc36a;
  box-shadow:
    0 0 0 3px rgba(5, 5, 5, 0.76),
    0 14px 34px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(255, 122, 0, 0.34);
  font-weight: 900;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

.home-page .entry-hotspot.hotspot-create {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(5, 5, 5, 0.9);
  border-color: #ff7a00;
  box-shadow:
    0 0 0 3px rgba(5, 5, 5, 0.76),
    0 14px 34px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(255, 122, 0, 0.22);
  font-weight: 900;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

.home-page .entry-hotspot.hotspot-explore span,
.home-page .entry-hotspot.hotspot-create span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.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: 950px) and (max-height: 500px) and (orientation: landscape) {
  .home-page > .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .home-page .entry-hero {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    padding-top: calc(78px + env(safe-area-inset-top));
    box-sizing: border-box;
  }

  .home-page .entry-stage::before {
    display: none;
  }

  .home-page .entry-cover-image {
    object-fit: cover;
    object-position: center 45%;
  }

  .home-page .entry-mobile-actions {
    gap: 8px;
    padding: 6px;
    margin: 0 max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }
}

@media (max-width: 470px) {
  .home-page .entry-mobile-actions {
    flex-direction: column;
    gap: 8px;
    padding: 7px;
    margin: 0 max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }

  .home-page .entry-mobile-actions .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 12px;
    font-size: clamp(12px, 3.7vw, 14px);
    letter-spacing: 0.3px;
  }

  .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 (max-width: 980px) {
  .support-section,
  .donate-hero,
  .donation-other-ways {
    grid-template-columns: 1fr;
  }

  .donate-hero {
    min-height: 0;
  }

  .donation-checkout-card,
  .donation-other-actions {
    max-width: none;
  }

  .donation-other-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .support-section,
  .donate-hero {
    width: calc(100% - 28px);
    padding: 38px 22px;
    gap: 30px;
  }

  .support-section {
    background:
      linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.72)),
      url("images/hawknest-entry-cover-mobile.webp") center 42% / cover;
  }

  .donate-hero {
    background:
      linear-gradient(rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.68)),
      url("images/hawknest-entry-cover-mobile.webp") center 38% / cover;
  }

  .donate-hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    letter-spacing: -2px;
  }

  .donate-hero-copy > p:not(.eyebrow):not(.donation-security-note) {
    font-size: 17px;
  }

  .support-actions,
  .donate-actions,
  .partner-directory-actions,
  .donation-other-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .support-actions .button,
  .donate-actions .button,
  .partner-directory-actions .button,
  .donation-other-actions .button {
    width: 100%;
  }

  .donation-impact-grid {
    grid-template-columns: 1fr;
  }

  .donation-impact-grid article {
    min-height: 0;
  }

  .donation-checkout-card {
    padding: 24px;
  }

  .partner-service-tags span,
  .partner-service-tags li {
    flex: 1 1 100%;
  }
}

/* Keep the primary navigation behind the menu button at every screen size. */
.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;
}

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

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


/* 2026 review preview: shared information architecture, trust, and safety */

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: #050505;
  background: #ffb15c;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.nav-links > a[aria-current="page"] {
  color: var(--orange-light);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav-links > .nav-help-link[aria-current="page"] {
  color: #050505;
}

.home-page .entry-hero-message {
  position: absolute;
  z-index: 3;
  top: 15%;
  left: clamp(20px, 5vw, 78px);
  width: min(600px, 52%);
  padding: clamp(18px, 2.2vw, 26px);
  color: #fff;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.65));
  border: 1px solid rgba(255, 157, 46, 0.5);
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.home-page .entry-hero-message h1 {
  margin: 7px 0 12px;
  max-width: none;
  font-size: clamp(29px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: -2px;
}

.home-page .entry-hero-message > p:last-child {
  margin: 0;
  color: #e2e2e2;
  font-size: clamp(15px, 1.5vw, 19px);
}

.compact-page-intro,
.trust-hero,
.not-found-panel {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 42px auto 24px;
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 115, 0, 0.16), transparent 52%),
    var(--panel);
  border: 1px solid rgba(255, 157, 46, 0.32);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.compact-page-intro h1,
.trust-hero h1,
.not-found-panel h1 {
  margin: 8px 0 18px;
  max-width: 900px;
  font-size: clamp(40px, 5.5vw, 74px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.compact-page-intro > p:not(.eyebrow),
.trust-hero > p:not(.eyebrow),
.not-found-panel > p {
  max-width: 820px;
  color: #d8d8d8;
  font-size: clamp(17px, 2vw, 21px);
}

.page-intro-actions,
.not-found-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-document {
  width: min(calc(100% - 40px), 960px);
  margin: 32px auto 80px;
  display: grid;
  gap: 18px;
}

.trust-document > section {
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid var(--soft-border);
  border-radius: 14px;
}

.trust-document h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

.trust-document p,
.trust-document li {
  color: #d0d0d0;
}

.trust-document a,
.help-access-link {
  color: #ffc06e;
}

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

.summary-action-card {
  min-height: 210px;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 115, 0, 0.13), transparent 55%),
    #151515;
  border: 1px solid rgba(255, 157, 46, 0.35);
  border-radius: 15px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.summary-action-card:hover,
.summary-action-card:focus-visible {
  border-color: #ffb15c;
  transform: translateY(-3px);
}

.summary-action-card > span {
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.summary-action-card > strong {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

.summary-action-card > small {
  color: #c6c6c6;
  font-size: 14px;
}

.summary-action-card-urgent {
  background:
    linear-gradient(145deg, rgba(207, 54, 45, 0.28), transparent 58%),
    #151515;
  border-color: rgba(255, 120, 98, 0.5);
}

.help-scope-note,
.help-privacy-note {
  margin: 18px 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--soft-border);
  border-radius: 10px;
}

.help-privacy-note {
  border-color: rgba(255, 177, 92, 0.32);
}

.help-scope-note strong,
.help-privacy-note strong {
  color: var(--orange-light);
}

.help-scope-note p,
.help-privacy-note p {
  margin: 5px 0 0;
  color: #cfcfcf;
}

.help-heading-row h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.help-access-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
}

.source-review {
  margin: 18px 0 0;
  padding-top: 12px;
  display: block;
  color: #a9a9a9;
  border-top: 1px solid var(--soft-border);
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.review-needed {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 177, 92, 0.13), transparent 60%),
    #1a1510 !important;
  border: 1px dashed #ffb15c !important;
}

.review-needed code,
.review-needed dd {
  color: #ffd39c;
  overflow-wrap: anywhere;
}

.partner-review-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 10px;
}

.partner-review-card p {
  margin: 7px 0 0;
}

.payment-review-card {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 14px;
}

.disclosure-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.disclosure-list > div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.disclosure-list dt {
  color: #fff;
  font-weight: 900;
}

.disclosure-list dd {
  margin: 0;
}

.wallet-coming-soon {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  gap: 4px;
  color: #fff;
  background: rgba(255, 157, 46, 0.09);
  border: 1px solid rgba(255, 157, 46, 0.38);
  border-radius: 10px;
}

.wallet-coming-soon span {
  color: #c7c7c7;
}

.footer-content {
  min-height: 0;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1.65fr);
  align-items: start;
}

.footer-contact-links {
  justify-content: flex-start;
}

.footer-safety-note {
  grid-column: 1 / -1;
  max-width: 850px;
  margin: 4px 0 0;
}

.footer-content > p:last-child {
  grid-column: 1 / -1;
  margin: 0;
}

.noscript-note {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto 24px;
  padding: 15px 18px;
  color: #fff;
  background: #4f2300;
  border-radius: 8px;
}

@media (max-width: 1100px), (max-height: 650px) {
  .home-page .entry-hero-message {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 18px;
  }

  .home-page .entry-hero-message h1 {
    max-width: 22ch;
    font-size: clamp(25px, 5vw, 42px);
  }
}

@media (max-width: 720px) {
  .compact-page-intro,
  .trust-hero,
  .not-found-panel {
    width: calc(100% - 28px);
    margin-top: 20px;
    padding: 30px 22px;
  }

  .compact-page-intro h1,
  .trust-hero h1,
  .not-found-panel h1 {
    font-size: clamp(38px, 13vw, 60px);
    letter-spacing: -2px;
  }

  .trust-document {
    width: calc(100% - 28px);
  }

  .summary-action-grid,
  .disclosure-list > div {
    grid-template-columns: 1fr;
  }

  .summary-action-card {
    min-height: 170px;
  }

  .footer-content {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .footer-contact-links {
    justify-content: flex-start;
  }

  .footer-safety-note,
  .footer-content > p:last-child {
    grid-column: 1;
  }

  .page-intro-actions,
  .not-found-actions {
    flex-direction: column;
  }

  .page-intro-actions .button,
  .not-found-actions .button {
    width: 100%;
  }
}


/* My Nest account and privacy */

.account-page {
  background:
    radial-gradient(circle at 86% 7%, rgba(255, 115, 0, 0.2), transparent 24%),
    radial-gradient(circle at 8% 56%, rgba(52, 184, 168, 0.09), transparent 24%),
    var(--black);
}

.account-hero {
  width: min(calc(100% - 40px), var(--content-width));
  min-height: 660px;
  margin: 38px auto 32px;
  padding: clamp(46px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 115, 0, 0.17), transparent 48%),
    linear-gradient(315deg, rgba(52, 184, 168, 0.09), transparent 46%),
    var(--panel);
  border: 1px solid rgba(255, 157, 46, 0.32);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.account-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(54px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.account-hero-lead {
  max-width: 700px;
  margin: 0;
  color: #d1d1d1;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
}

.account-hero .hero-buttons,
.account-guest-cta .hero-buttons {
  margin-top: 34px;
}

.account-trust-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-trust-row span {
  padding: 9px 13px;
  color: #d9d9d9;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--soft-border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nest-preview-card {
  position: relative;
  min-height: 470px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 157, 46, 0.32), transparent 26%),
    linear-gradient(165deg, #242424, #101010);
  border: 1px solid rgba(255, 157, 46, 0.36);
  border-radius: 24px;
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nest-preview-kicker,
.account-card-label {
  color: var(--orange-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.nest-preview-kicker {
  position: absolute;
  top: 28px;
  left: 30px;
}

.nest-preview-mark {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  color: #080808;
  background:
    radial-gradient(circle at 40% 35%, #ffd199, var(--orange-light) 45%, #d75d00 100%);
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 157, 46, 0.65),
    0 24px 46px rgba(255, 115, 0, 0.24);
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -3px;
}

.nest-preview-card h2 {
  margin: 190px 0 10px;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.nest-preview-card p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.nest-preview-card ul {
  margin: 22px 0 0;
  padding: 18px 0 0;
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--soft-border);
  color: #d9d9d9;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}

.nest-preview-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--orange-light);
}

.account-open-section {
  background:
    linear-gradient(145deg, rgba(255, 115, 0, 0.06), transparent 45%),
    var(--panel);
}

.account-open-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--soft-border);
  border-radius: 12px;
  overflow: hidden;
}

.account-open-grid a {
  min-height: 210px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: rgba(255, 255, 255, 0.012);
  border-right: 1px solid var(--soft-border);
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.account-open-grid a:last-child {
  border-right: none;
}

.account-open-grid a:hover {
  background: rgba(255, 115, 0, 0.07);
  transform: translateY(-3px);
}

.account-open-grid span {
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 900;
}

.account-open-grid strong {
  margin-top: auto;
  font-size: 19px;
  text-transform: uppercase;
}

.account-open-grid small {
  margin-top: 8px;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.6;
}

.account-access-section {
  padding: clamp(38px, 6vw, 68px);
}

.account-section-heading {
  max-width: 800px;
}

.account-section-heading > p:last-child {
  max-width: 700px;
  color: var(--gray);
  font-size: 17px;
}

.account-access-shell {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.account-auth-card,
.account-privacy-card,
.dashboard-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 48%),
    #101010;
  border: 1px solid var(--soft-border);
  border-radius: 14px;
}

.account-auth-card,
.account-privacy-card {
  padding: clamp(26px, 4vw, 42px);
}

.account-auth-card h3,
.account-privacy-card h3,
.account-dashboard-header h3,
.dashboard-panel h3 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}

.account-auth-card > p,
.account-privacy-card > p,
.dashboard-panel-heading p {
  color: var(--gray);
}

.account-auth-card form {
  margin-top: 28px;
}

.account-auth-card label:not(.account-consent-check) {
  display: block;
  margin-bottom: 9px;
  color: #d8d8d8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.account-email-row input {
  min-height: 54px;
  width: 100%;
  padding: 0 16px;
  color: var(--white);
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
}

.account-email-row input:focus {
  border-color: var(--orange-light);
}

.account-consent-check {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #bcbcbc;
  font-size: 12px;
  line-height: 1.55;
}

.account-consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange-light);
}

.account-consent-check a,
.account-privacy-card a {
  color: var(--orange-light);
}

.finish-email-form {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--soft-border);
}

.account-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 13px;
}

.account-status[data-tone="success"] {
  color: #8ee6ba;
}

.account-status[data-tone="error"] {
  color: #ff9f9f;
}

.account-status[data-tone="info"] {
  color: #ffd19b;
}

.account-privacy-card {
  border-color: rgba(52, 184, 168, 0.28);
}

.account-privacy-card .account-card-label {
  color: #68d8cb;
}

.account-privacy-card ul {
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.account-privacy-card li {
  position: relative;
  padding-left: 24px;
  color: #c8c8c8;
  font-size: 13px;
}

.account-privacy-card li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: #68d8cb;
  font-size: 22px;
  line-height: 1;
}

.account-dashboard {
  margin-top: 48px;
}

.account-dashboard-header {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 115, 0, 0.12), transparent 50%),
    #0f0f0f;
  border: 1px solid rgba(255, 157, 46, 0.3);
  border-radius: 14px 14px 0 0;
}

.account-dashboard-header p {
  margin: 0;
  color: var(--gray);
}

.account-tabs {
  position: sticky;
  top: 79px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #090909;
  border: 1px solid var(--soft-border);
  border-top: 0;
}

.account-tabs a {
  padding: 14px 18px;
  color: #d4d4d4;
  border-right: 1px solid var(--soft-border);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.account-tabs a:hover {
  color: var(--orange-light);
  background: rgba(255, 115, 0, 0.07);
}

.dashboard-panel {
  margin-top: 20px;
  padding: 30px;
  scroll-margin-top: 145px;
}

.dashboard-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.dashboard-panel-heading > div {
  max-width: 720px;
}

.dashboard-panel-heading p {
  margin-bottom: 0;
}

.account-chip-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.chip-account-callout {
  margin: 26px 0 32px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(52, 184, 168, 0.1), transparent 60%),
    #101010;
  border: 1px solid rgba(52, 184, 168, 0.28);
  border-radius: 10px;
}

.chip-account-callout strong,
.chip-account-callout span {
  display: block;
}

.chip-account-callout strong {
  color: #8be7dc;
  font-size: 14px;
  text-transform: uppercase;
}

.chip-account-callout span {
  max-width: 760px;
  margin-top: 5px;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.65;
}

.account-chip-card {
  min-height: 98px;
  padding: 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--soft-border);
  border-radius: 10px;
}

.account-chip-selector {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.account-chip-selector input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange-light);
}

.account-chip-swatch {
  width: 54px;
  height: 54px;
  display: block;
  background:
    radial-gradient(circle at 38% 32%, #ffd19b, #ff7300 58%, #9b3c00);
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.account-chip-swatch[data-theme="bronze"] { background: radial-gradient(circle at 38% 32%, #df9a5e, #a75e24 62%, #5c3015); }
.account-chip-swatch[data-theme="silver"] { background: radial-gradient(circle at 38% 32%, #f3f5f7, #9098a2 62%, #454a52); }
.account-chip-swatch[data-theme="gold"] { background: radial-gradient(circle at 38% 32%, #ffe985, #c49313 62%, #775500); }
.account-chip-swatch[data-theme="blue"] { background: radial-gradient(circle at 38% 32%, #72c9ff, #185f96 62%, #0c3152); }
.account-chip-swatch[data-theme="green"] { background: radial-gradient(circle at 38% 32%, #75d99f, #247d4a 62%, #113e25); }
.account-chip-swatch[data-theme="purple"] { background: radial-gradient(circle at 38% 32%, #c69cff, #663a98 62%, #351b53); }
.account-chip-swatch[data-theme="crimson"] { background: radial-gradient(circle at 38% 32%, #ff8892, #b52f39 62%, #61131a); }
.account-chip-swatch[data-theme="teal"] { background: radial-gradient(circle at 38% 32%, #7ce8db, #0c8078 62%, #04413d); }
.account-chip-swatch[data-theme="cyan"] { background: radial-gradient(circle at 38% 32%, #82dcff, #137ea6 62%, #07425a); }
.account-chip-swatch[data-theme="rose"] { background: radial-gradient(circle at 38% 32%, #ff9fc5, #a34069 62%, #572037); }
.account-chip-swatch[data-theme="midnight"] { background: radial-gradient(circle at 38% 32%, #9fb8ff, #334a92 62%, #18244d); }
.account-chip-swatch[data-theme="onyx"] { background: radial-gradient(circle at 38% 32%, #e0e2e5, #333840 62%, #111318); }
.account-chip-swatch[data-theme="coral"] { background: radial-gradient(circle at 38% 32%, #ffad8f, #c84f3d 62%, #6d2319); }

.account-chip-card strong,
.account-chip-card small {
  display: block;
}

.account-chip-card strong {
  font-size: 14px;
}

.account-chip-card small {
  margin-top: 4px;
  color: var(--gray);
  font-size: 11px;
}

.account-chip-actions {
  display: grid;
  gap: 7px;
  justify-items: end;
}

.text-button {
  padding: 7px 9px;
  color: var(--orange-light);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.payment-panel {
  border-color: rgba(255, 157, 46, 0.28);
}

.payment-safety-grid,
.data-control-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.payment-safety-grid article,
.data-control-grid article {
  min-height: 170px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--soft-border);
  border-radius: 10px;
}

.payment-safety-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-light);
  font-size: 12px;
  text-transform: uppercase;
}

.payment-safety-grid span,
.data-control-grid p {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.7;
}

.payment-readiness-card {
  margin-top: 16px;
  padding: 18px 20px;
  background: rgba(52, 184, 168, 0.08);
  border: 1px solid rgba(52, 184, 168, 0.22);
  border-radius: 8px;
}

.payment-readiness-card strong,
.payment-readiness-card span {
  display: block;
}

.payment-readiness-card strong {
  color: #f2f2f2;
  font-size: 13px;
  text-transform: uppercase;
}

.payment-readiness-card span {
  margin-top: 8px;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.6;
}

.data-control-grid h4 {
  margin: 0 0 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.data-control-grid p {
  min-height: 72px;
}

.data-control-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.data-control-grid .button {
  min-height: 43px;
  padding: 0 15px;
  font-size: 10px;
}

.file-button {
  cursor: pointer;
}

.data-control-grid .danger-zone {
  border-color: rgba(255, 85, 85, 0.24);
}

.account-guest-cta {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 32px auto;
  padding: clamp(38px, 6vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 42px;
  background:
    linear-gradient(135deg, rgba(52, 184, 168, 0.13), transparent 52%),
    var(--panel);
  border: 1px solid rgba(52, 184, 168, 0.25);
  border-radius: 14px;
}

.account-guest-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
}

.account-guest-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--gray);
}

.button:disabled,
button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.privacy-page {
  background:
    radial-gradient(circle at 82% 6%, rgba(255, 115, 0, 0.16), transparent 24%),
    var(--black);
}

.privacy-hero,
.privacy-document {
  width: min(calc(100% - 40px), 980px);
  margin-right: auto;
  margin-left: auto;
}

.privacy-hero {
  padding: clamp(64px, 10vw, 120px) 0 60px;
  border-bottom: 1px solid var(--border);
}

.privacy-hero h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(58px, 8vw, 100px);
  line-height: 0.88;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.privacy-hero > p:not(.eyebrow):not(.privacy-effective-date) {
  max-width: 760px;
  color: #d2d2d2;
  font-size: 20px;
}

.privacy-effective-date {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.privacy-document {
  padding: 58px 0 20px;
}

.privacy-document section {
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: 50px;
  border-bottom: 1px solid var(--soft-border);
}

.privacy-document h2 {
  margin: 0;
  color: var(--orange-light);
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.privacy-document p,
.privacy-document ul {
  margin: 0;
  color: #c7c7c7;
  font-size: 15px;
  line-height: 1.85;
}

.privacy-document section p + p {
  margin-top: 16px;
}

.privacy-document section > p,
.privacy-document section > ul {
  grid-column: 2;
}

.privacy-document a {
  color: var(--orange-light);
}

.privacy-note-box {
  margin-top: 42px;
  padding: 24px;
  background: rgba(255, 115, 0, 0.07);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.privacy-note-box strong {
  color: var(--orange-light);
  font-size: 11px;
  text-transform: uppercase;
}

.privacy-note-box p {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .account-hero,
  .account-access-shell {
    grid-template-columns: 1fr;
  }

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

  .account-open-grid a:nth-child(2) {
    border-right: none;
  }

  .account-open-grid a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--soft-border);
  }

  .account-chip-list,
  .payment-safety-grid,
  .data-control-grid {
    grid-template-columns: 1fr;
  }

  .data-control-grid p {
    min-height: 0;
  }

  .account-guest-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .account-hero,
  .account-open-section,
  .account-access-section,
  .account-guest-cta {
    width: calc(100% - 28px);
    padding: 38px 22px;
  }

  .account-hero {
    margin-top: 18px;
  }

  .account-hero h1 {
    font-size: clamp(54px, 17vw, 76px);
    letter-spacing: -3px;
  }

  .nest-preview-card {
    min-height: 430px;
    padding: 26px;
  }

  .account-open-grid {
    grid-template-columns: 1fr;
  }

  .account-open-grid a,
  .account-open-grid a:nth-child(2) {
    min-height: 160px;
    border-right: none;
    border-bottom: 1px solid var(--soft-border);
  }

  .account-open-grid a:last-child {
    border-bottom: none;
  }

  .account-email-row,
  .account-dashboard-header,
  .dashboard-panel-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-email-row .button,
  .account-dashboard-header .button,
  .dashboard-panel-heading .button {
    width: 100%;
  }

  .account-tabs {
    top: 78px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .account-tabs a {
    border-bottom: 1px solid var(--soft-border);
  }

  .dashboard-panel {
    padding: 22px;
  }

  .account-chip-card,
  .account-chip-selector {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .account-chip-selector input {
    grid-row: 1 / span 2;
  }

  .account-chip-card > .account-chip-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
  }

  .account-chip-actions button {
    width: 100%;
  }

  .account-trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-guest-cta .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .account-guest-cta .button {
    width: 100%;
  }

  .chip-account-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .chip-account-callout .button {
    width: 100%;
  }

  .privacy-hero,
  .privacy-document {
    width: calc(100% - 36px);
  }

  .privacy-hero {
    padding-top: 64px;
  }

  .privacy-hero h1 {
    font-size: clamp(52px, 16vw, 74px);
    letter-spacing: -3px;
  }

  .privacy-document section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .privacy-document section > p,
  .privacy-document section > ul {
    grid-column: 1;
  }
}
