@import url("https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css");

:root {
  --bg: #071117;
  --bg-soft: #0d1b23;
  --surface: rgba(9, 23, 31, 0.84);
  --surface-strong: rgba(4, 12, 17, 0.94);
  --surface-glass: rgba(10, 23, 31, 0.68);
  --line: rgba(221, 194, 149, 0.22);
  --line-strong: rgba(221, 194, 149, 0.5);
  --text: #f5f1ea;
  --muted: rgba(245, 241, 234, 0.76);
  --brand: #d6b279;
  --brand-strong: #f1c577;
  --brand-deep: #a86739;
  --brand-rgb: 214, 178, 121;
  --image-overlay: rgba(4, 12, 17, 0.6);
  --image-overlay-alt: rgba(6, 15, 20, 0.6);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--brand-rgb), 0.85) rgba(4, 12, 17, 0.96);
  overflow-x: hidden;
  overflow-x: clip;
}

::selection {
  background: rgba(214, 178, 121, 0.28);
  color: var(--text);
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(168, 103, 57, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.12), transparent 22%),
    linear-gradient(180deg, #050b0f 0%, var(--bg) 30%, #09151c 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(56px);
  opacity: 0.16;
}

body::before {
  top: -7rem;
  left: -9rem;
  background: radial-gradient(circle, rgba(168, 103, 57, 0.45) 0%, rgba(168, 103, 57, 0) 70%);
}

body::after {
  right: -8rem;
  bottom: 10rem;
  background: radial-gradient(circle, rgba(214, 178, 121, 0.3) 0%, rgba(214, 178, 121, 0) 68%);
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: rgba(4, 12, 17, 0.98);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(214, 178, 121, 0.9) 0%, rgba(168, 103, 57, 0.92) 100%);
  border: 3px solid rgba(4, 12, 17, 0.98);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(241, 197, 119, 0.98) 0%, rgba(200, 123, 69, 0.98) 100%);
}

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

figure {
  margin: 0;
}

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

.row > *,
.navbar-brand,
.navbar-brand span,
.statement-item > :last-child,
.timeline-step > :last-child,
.rule-card > :last-child,
.link-row > :first-child {
  min-width: 0;
}

.announcement-bar,
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.announcement-bar {
  background: linear-gradient(180deg, rgba(2, 8, 12, 0.96) 0%, rgba(5, 14, 19, 0.86) 100%);
  border-bottom: 1px solid rgba(214, 178, 121, 0.14);
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.8rem 0;
}

.announcement-link {
  color: var(--brand-strong);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.scrolled,
.site-header-solid {
  background: rgba(4, 12, 17, 0.94);
  border-bottom: 1px solid rgba(214, 178, 121, 0.12);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.navbar {
  min-height: var(--header-height);
}

.navbar-nav {
  gap: 0.35rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar-brand span {
  color: var(--brand-strong);
}

.navbar-brand:hover,
.navbar-brand:focus-visible {
  color: var(--text);
  background: transparent;
}

.navbar-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.navbar-toggler {
  border-color: rgba(245, 241, 234, 0.2);
  color: var(--text);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler:focus-visible {
  box-shadow: 0 0 0 4px rgba(214, 178, 121, 0.18);
  border-color: rgba(214, 178, 121, 0.42);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: rgba(245, 241, 234, 0.78);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.83rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(214, 178, 121, 0.18);
  box-shadow: 0 0 0 3px rgba(214, 178, 121, 0.12);
}

.navbar .nav-link.active,
.navbar .nav-link.show {
  color: var(--brand-strong) !important;
  background: rgba(214, 178, 121, 0.14);
  border-color: rgba(214, 178, 121, 0.32);
  box-shadow: inset 0 0 0 1px rgba(214, 178, 121, 0.06);
}

.nav-cta {
  min-width: 132px;
}

.hero,
.subhero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-home {
  margin-top: calc(var(--header-height) * -1);
  min-height: calc(100svh + var(--header-height));
  background: linear-gradient(180deg, var(--image-overlay) 0%, var(--image-overlay) 100%);
}

.hero-connect {
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, var(--image-overlay) 0%, var(--image-overlay) 100%);
}

.parallax-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: none;
  background-attachment: fixed;
}

.parallax-content {
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  will-change: transform;
}

.hero-media {
  inset: 0;
}

.hero-media-home {
  background-image:
    linear-gradient(180deg, var(--image-overlay) 0%, var(--image-overlay) 100%),
    url("images/HCRPbanner.png");
  background-position: center 42%;
}

.hero-media-connect {
  background-image:
    linear-gradient(180deg, var(--image-overlay) 0%, var(--image-overlay) 100%),
    url("images/image.png");
  background-position: center 36%;
}

.hero-rules {
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, var(--image-overlay) 0%, var(--image-overlay) 100%);
}

.hero-media-rules {
  background-image:
    linear-gradient(180deg, var(--image-overlay) 0%, var(--image-overlay) 100%),
    url("images/carshow.png");
  background-position: center 44%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 70% 22%, rgba(214, 178, 121, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.75));
  pointer-events: none;
}

.hero-content,
.subhero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 5rem;
}

.hero-home .hero-content {
  padding-top: calc(var(--header-height) + 7rem);
}

.subhero .container {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-layout {
  row-gap: 2rem;
}

[data-aos] {
  will-change: opacity, transform;
  backface-visibility: hidden;
}

body.aos-fallback [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero-visual-cluster {
  position: relative;
  min-height: 34rem;
  padding-bottom: 3rem;
}

.hero-visual {
  position: absolute;
  background: rgba(255, 255, 255, 0.02);
}

.hero-visual-main {
  inset: 0 2rem 5rem 0;
}

.hero-visual-card {
  right: 0;
  bottom: 0;
  width: 62%;
  aspect-ratio: 5 / 4;
}

.hero-visual-main img {
  object-position: center 34%;
}

.hero-visual-card img {
  object-position: center 42%;
}

.hero-signal,
.connect-hero-copy {
  position: absolute;
  left: 0;
  bottom: 0.75rem;
  max-width: 18rem;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(180deg, rgba(8, 20, 27, 0.9) 0%, rgba(8, 20, 27, 0.76) 100%);
  border: 1px solid rgba(214, 178, 121, 0.16);
  border-radius: 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.signal-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-signal strong,
.connect-hero-copy strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.45;
}

.hero-signal strong i,
.connect-hero-copy strong i {
  margin-right: 0.5rem;
  color: var(--brand-strong);
}

.hero-signal strong {
  margin-bottom: 0;
}

.connect-hero-panel {
  position: relative;
  min-height: 26rem;
  aspect-ratio: 4 / 5;
}

.connect-hero-image {
  height: 100%;
}

.connect-hero-image img {
  object-position: center 28%;
}

.hero-home-image img {
  object-position: center 34%;
}

.connect-hero-copy {
  right: 1rem;
  left: 1rem;
  bottom: 1rem;
  max-width: none;
}

.connect-hero-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-title,
.section-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(4rem, 9vw, 8.5rem);
}

.hero-title-small {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.section-title {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.hero-title,
.hero-title-small,
.section-title {
  max-width: none;
  text-wrap: balance;
}

.hero-copy,
.section-copy,
.statement-item p,
.quick-link p,
.timeline-step p,
.accordion-body,
.footer-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-copy {
  max-width: 36rem;
}

.hero-copy {
  max-width: 41rem;
  margin: 1.75rem 0 0;
}

.hero-actions,
.final-actions,
.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.6rem;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-brand {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  border: none;
  color: #081218;
}

.btn-brand::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.42) 50%, transparent 68%);
  transform: translateX(-120%) skewX(-22deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(135deg, #e3bf86 0%, #c87b45 100%);
  color: #081218;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(168, 103, 57, 0.28);
}

.btn-brand:hover::after,
.btn-brand:focus::after {
  transform: translateX(120%) skewX(-22deg);
}

.btn-ghost,
.btn-outline-light,
.btn-copy {
  background: transparent;
  border: 1px solid rgba(245, 241, 234, 0.2);
  color: var(--text);
}

.btn-ghost:hover,
.btn-outline-light:hover,
.btn-copy:hover {
  background: rgba(245, 241, 234, 0.08);
  border-color: rgba(245, 241, 234, 0.34);
  color: var(--text);
  transform: translateY(-2px);
}

.section-shell {
  padding: 6rem 0;
  position: relative;
}

.section-shell > .container {
  position: relative;
  z-index: 2;
}

.section-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92vw, 1380px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(214, 178, 121, 0.08) 20%, rgba(214, 178, 121, 0.18) 50%, rgba(214, 178, 121, 0.08) 80%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.section-shell-image {
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.section-media {
  inset: 0;
  opacity: 1;
  transform: none;
}

.section-media-county {
  background-image:
    linear-gradient(180deg, var(--image-overlay-alt) 0%, var(--image-overlay-alt) 100%),
    url("images/image10.png");
  background-position: center 34%;
}

.section-media-night {
  background-image:
    linear-gradient(180deg, var(--image-overlay-alt) 0%, var(--image-overlay-alt) 100%),
    url("images/image7.png");
  background-position: center 48%;
}

.section-media-strip {
  background-image:
    linear-gradient(180deg, var(--image-overlay-alt) 0%, var(--image-overlay-alt) 100%),
    url("images/Screenshot_2026-02-17_204908.png");
  background-position: center 50%;
}

.section-media-faq {
  background-image:
    linear-gradient(180deg, var(--image-overlay-alt) 0%, var(--image-overlay-alt) 100%),
    url("images/Screenshot_2026-02-17_210443.png");
  background-position: center 50%;
}

.intro-section {
  position: relative;
}

.intro-gallery {
  display: grid;
  gap: 1rem;
}

.intro-gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.intro-gallery-main {
  aspect-ratio: 16 / 9;
}

.intro-gallery-card {
  aspect-ratio: 16 / 10;
  min-height: 240px;
}

.intro-gallery-main,
.intro-gallery-card,
.statement-feature,
.image-strip-frame,
.hero-visual,
.connect-hero-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 178, 121, 0.15);
  box-shadow: var(--shadow);
}

.intro-gallery-main img,
.intro-gallery-card img,
.statement-feature img,
.image-strip-frame img,
.hero-visual img,
.connect-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.intro-gallery figure:hover img,
.statement-feature:hover img,
.image-strip-frame:hover img,
.hero-visual:hover img,
.connect-hero-image:hover img {
  transform: scale(1.06);
}

.intro-gallery-main img {
  object-position: center 52%;
}

.intro-gallery-row .intro-gallery-card:first-child img {
  object-position: center 46%;
}

.intro-gallery-row .intro-gallery-card:last-child img {
  object-position: center 42%;
}

.statement-feature {
  aspect-ratio: 4 / 3;
  min-height: 100%;
  background: rgba(9, 23, 31, 0.72);
}

.statement-section {
  padding-top: 0;
}

.statement-feature img {
  object-position: center 44%;
}

.statement-copy {
  height: 100%;
  padding: clamp(2.5rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, rgba(7, 17, 23, 0.92) 0%, rgba(7, 17, 23, 0.98) 100%);
}

.statement-copy-panel {
  border: 1px solid rgba(214, 178, 121, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.statement-list {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.4rem;
}

.statement-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(214, 178, 121, 0.18);
  transition: transform 0.32s ease, border-color 0.32s ease;
}

.statement-item:hover {
  transform: translateX(8px);
  border-color: rgba(214, 178, 121, 0.34);
}

.statement-item h3,
.quick-link h3,
.timeline-step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.statement-item h3 i,
.timeline-step h3 i {
  margin-right: 0.6rem;
  color: var(--brand-strong);
}

.statement-number,
.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.15rem;
  height: 3.15rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: rgba(214, 178, 121, 0.1);
  border: 1px solid rgba(214, 178, 121, 0.2);
  color: var(--brand);
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.quick-link-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  background: rgba(214, 178, 121, 0.12);
  border: 1px solid rgba(214, 178, 121, 0.22);
  color: var(--brand-strong);
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.info-grid,
.operations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  min-height: 100%;
  padding: 1.55rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 178, 121, 0.14);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(214, 178, 121, 0.05) 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 178, 121, 0.34);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(214, 178, 121, 0.08) 100%);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(214, 178, 121, 0.12);
  border: 1px solid rgba(214, 178, 121, 0.22);
  color: var(--brand-strong);
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.info-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.info-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
}

.info-list li + li {
  margin-top: 0.55rem;
}

.info-list strong {
  color: var(--text);
  font-weight: 800;
}

.recruiting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.recruiting-card {
  min-height: 100%;
  padding: 1.55rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 178, 121, 0.14);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(214, 178, 121, 0.05) 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.recruiting-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.recruiting-pill,
.recruiting-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruiting-pill.is-open {
  color: #8ce0a2;
  border: 1px solid rgba(91, 197, 121, 0.28);
  background: rgba(91, 197, 121, 0.08);
}

.recruiting-pill.is-closed,
.recruiting-meta {
  color: var(--brand-strong);
  border: 1px solid rgba(214, 178, 121, 0.22);
  background: rgba(214, 178, 121, 0.08);
}

.recruiting-card h3,
.onboarding-step h3 {
  margin-bottom: 0.65rem;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.recruiting-card p,
.onboarding-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.onboarding-checklist {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.onboarding-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(214, 178, 121, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.onboarding-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(214, 178, 121, 0.2);
  background: rgba(214, 178, 121, 0.08);
  color: var(--brand-strong);
}

.onboarding-step.is-complete .onboarding-step-icon {
  border-color: rgba(91, 197, 121, 0.28);
  background: rgba(91, 197, 121, 0.08);
  color: #8ce0a2;
}

.starter-layout {
  display: grid;
  gap: 1rem;
}

.starter-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 178, 121, 0.14);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(214, 178, 121, 0.05) 100%);
}

.starter-note-icon,
.starter-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(214, 178, 121, 0.12);
  border: 1px solid rgba(214, 178, 121, 0.22);
  color: var(--brand-strong);
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.starter-note strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.starter-note p {
  color: var(--muted);
  line-height: 1.7;
}

.starter-highlight,
.starter-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 178, 121, 0.14);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(12, 28, 36, 0.92) 0%, rgba(7, 17, 23, 0.98) 100%);
  box-shadow: var(--shadow);
}

.starter-highlight::before,
.starter-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(241, 197, 119, 0.34) 20%, rgba(241, 197, 119, 0.7) 50%, rgba(241, 197, 119, 0.34) 80%, transparent 100%);
  pointer-events: none;
}

.starter-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: start;
  padding: clamp(1.35rem, 3vw, 1.9rem);
}

.starter-highlight-copy h3,
.starter-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.starter-highlight-copy p,
.starter-card p,
.starter-list {
  color: var(--muted);
  line-height: 1.75;
}

.starter-eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.starter-key-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.starter-key-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  min-height: 78px;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: rgba(6, 18, 24, 0.58);
  border: 1px solid rgba(214, 178, 121, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.starter-key-item:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 178, 121, 0.28);
  background: rgba(8, 21, 29, 0.84);
}

.starter-key-item kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.35rem;
  height: 2.65rem;
  padding: 0 0.8rem;
  border-radius: 0.9rem;
  background: rgba(245, 241, 234, 0.08);
  border: 1px solid rgba(245, 241, 234, 0.16);
  box-shadow: none;
  color: var(--text);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.starter-key-item span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.starter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.starter-card {
  padding: 1.45rem 1.5rem;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.starter-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 178, 121, 0.34);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(14, 32, 41, 0.96) 0%, rgba(7, 17, 23, 0.99) 100%);
}

.starter-card-icon {
  margin-bottom: 1rem;
}

.starter-list {
  margin: 0.85rem 0 0;
  padding-left: 1.05rem;
}

.starter-list li + li {
  margin-top: 0.45rem;
}

.starter-command-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1rem;
}

.starter-command-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(214, 178, 121, 0.12);
  border: 1px solid rgba(214, 178, 121, 0.18);
  color: var(--brand-strong);
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}

.starter-card-note {
  color: var(--muted);
  line-height: 1.7;
}

.rule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.rule-card {
  min-height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.55rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 178, 121, 0.14);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(214, 178, 121, 0.05) 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.rule-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 178, 121, 0.34);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(214, 178, 121, 0.08) 100%);
}

.rule-card-wide {
  grid-column: auto;
}

.rule-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.35rem;
  height: 3.35rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(214, 178, 121, 0.12);
  border: 1px solid rgba(214, 178, 121, 0.24);
  color: var(--brand-strong);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rule-body h3 {
  margin-bottom: 0.7rem;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rule-deeplink {
  float: right;
  margin-left: 0.75rem;
  color: var(--brand-strong);
  font-weight: 800;
}

.rule-body p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.78;
}

.rule-sublist {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.72;
}

.rule-sublist li + li {
  margin-top: 0.45rem;
}

.quick-link {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(214, 178, 121, 0.06) 100%);
  border: 1px solid rgba(214, 178, 121, 0.14);
  border-radius: var(--radius-md);
  display: grid;
  gap: 1.2rem;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.quick-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.08) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.85s ease;
  pointer-events: none;
}

.quick-link:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 178, 121, 0.38);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(214, 178, 121, 0.1) 100%);
}

.quick-link:hover::before {
  transform: translateX(120%);
}

.quick-link:hover .quick-link-index {
  transform: scale(1.08) rotate(6deg);
  border-color: rgba(214, 178, 121, 0.44);
  background: rgba(214, 178, 121, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  color: var(--brand-strong);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.final-cta-panel,
.sticky-summary,
.link-surface,
.connect-hero-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 27, 35, 0.84) 0%, rgba(7, 17, 23, 0.98) 100%);
  border: 1px solid rgba(214, 178, 121, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.final-cta-panel::before,
.sticky-summary::before,
.link-surface::before,
.connect-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(241, 197, 119, 0.34) 20%, rgba(241, 197, 119, 0.7) 50%, rgba(241, 197, 119, 0.34) 80%, transparent 100%);
  pointer-events: none;
}

.final-cta-panel {
  padding: clamp(2rem, 5vw, 3rem);
}

.sticky-summary {
  position: sticky;
  top: 7.5rem;
  padding: 2rem;
}

.connect-access-section {
  padding-top: 0;
  margin-top: -3.5rem;
  z-index: 4;
}

.connect-access-section::before {
  display: none;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(214, 178, 121, 0.16);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-step:first-child {
  padding-top: 0;
  border-top: none;
}

.timeline-step:hover {
  transform: translateX(8px);
  border-color: rgba(214, 178, 121, 0.36);
}

.image-strip-section {
  padding-top: 0;
}

.image-strip-frame {
  aspect-ratio: 4 / 5;
  position: relative;
}

.image-strip-section .col-md-4:nth-child(2) .image-strip-frame {
  aspect-ratio: 1 / 1.12;
  transform: translateY(2rem);
}

.image-strip-section .col-md-4:nth-child(3) .image-strip-frame {
  aspect-ratio: 4 / 5.4;
}

.image-strip-section .col-md-4:nth-child(1) img {
  object-position: center 30%;
}

.image-strip-section .col-md-4:nth-child(2) img {
  object-position: center 34%;
}

.image-strip-section .col-md-4:nth-child(3) img {
  object-position: center 26%;
}

.image-strip-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 14, 19, 0) 15%, rgba(5, 14, 19, 0.14) 100%);
  pointer-events: none;
}

.link-surface {
  padding: 1.2rem;
}

.link-surface-priority {
  padding: clamp(1.4rem, 3vw, 2rem);
  background:
    radial-gradient(circle at top right, rgba(214, 178, 121, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(12, 28, 36, 0.94) 0%, rgba(7, 17, 23, 0.98) 100%);
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(214, 178, 121, 0.12);
  border-radius: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

.link-row:first-child {
  padding-top: 0;
  border-top: none;
}

.link-row:hover {
  transform: translateX(8px);
  margin-inline: -0.75rem;
  padding-inline: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(214, 178, 121, 0.34);
}

.link-row-actions {
  padding-bottom: 0;
  align-items: stretch;
}

.link-label {
  margin-bottom: 0.45rem;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
}

.link-label i {
  margin-right: 0.5rem;
}

.link-value {
  color: var(--text);
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.faq-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(214, 178, 121, 0.14);
  --bs-accordion-color: var(--text);
  --bs-accordion-btn-color: var(--text);
  --bs-accordion-active-color: var(--text);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-3px);
}

.accordion-button {
  padding: 1.35rem 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(214, 178, 121, 0.1);
  background: linear-gradient(180deg, rgba(5, 14, 19, 0.15) 0%, rgba(5, 14, 19, 0.42) 100%);
}

.back-to-top {
  position: fixed;
  inset-inline-end: max(1rem, env(safe-area-inset-right));
  inset-block-end: max(1rem, env(safe-area-inset-bottom));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  overflow: hidden;
  isolation: isolate;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #081218;
  box-shadow: 0 18px 34px rgba(168, 103, 57, 0.26);
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  contain: layout paint;
}

.back-to-top::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.42) 50%, transparent 68%);
  transform: translateX(-120%) skewX(-22deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: linear-gradient(135deg, #e3bf86 0%, #c87b45 100%);
  color: #081218;
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(168, 103, 57, 0.28);
}

.back-to-top:hover::after,
.back-to-top:focus-visible::after {
  transform: translateX(120%) skewX(-22deg);
}

.back-to-top:focus-visible {
  outline: none;
  box-shadow:
    0 18px 34px rgba(168, 103, 57, 0.28),
    0 0 0 3px rgba(214, 178, 121, 0.18);
}

.footer-brand {
  margin-bottom: 0.35rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.footer-credit {
  margin-top: 0.55rem;
  color: rgba(245, 241, 234, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-credit a {
  color: var(--brand-strong);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-credit a:hover {
  color: var(--brand-strong);
}

.copy-success {
  border-color: rgba(214, 178, 121, 0.6);
  color: var(--brand-strong);
  box-shadow: 0 0 0 1px rgba(214, 178, 121, 0.2);
}

@media (max-width: 1199.98px) {
  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .starter-highlight,
  .starter-grid {
    grid-template-columns: 1fr;
  }

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

  .rule-card-wide {
    grid-column: auto;
  }

  .hero-visual-main {
    inset: 0 1rem 5rem 0;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 78px;
  }

  .navbar-brand {
    max-width: calc(100% - 4.75rem);
  }

  .statement-item:hover,
  .timeline-step:hover,
  .link-row:hover {
    transform: none;
  }

  .link-row:hover {
    margin-inline: 0;
    padding-inline: 0;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(4, 12, 17, 0.94);
    border: 1px solid rgba(214, 178, 121, 0.12);
    border-radius: 1.25rem;
  }

  .hero-home {
    min-height: 100svh;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .hero-home .hero-content {
    padding-top: calc(var(--header-height) + 7rem);
  }

  .connect-access-section {
    margin-top: -2.5rem;
  }

  .parallax-media {
    background-attachment: scroll;
  }

  .section-media {
    opacity: 1;
  }

  .intro-gallery-row {
    grid-template-columns: 1fr;
  }

  .intro-gallery-main,
  .intro-gallery-card,
  .statement-feature {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .sticky-summary {
    position: static;
  }

  .starter-note {
    margin-top: 1.35rem;
  }

  .link-row,
  .link-row-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .link-row-actions .btn {
    width: 100%;
  }

  .image-strip-section .col-md-4:nth-child(2) .image-strip-frame {
    transform: none;
  }

  .rule-card {
    grid-template-columns: 1fr;
  }

  .rule-code {
    width: fit-content;
  }
}

@media (max-width: 767.98px) {
  body::before,
  body::after {
    display: none;
  }

  .announcement-bar {
    font-size: 0.88rem;
  }

  .section-shell {
    padding: 4.5rem 0;
  }

  .connect-access-section {
    margin-top: -2rem;
  }

  .hero-copy,
  .section-copy,
  .statement-item p,
  .quick-link p,
  .timeline-step p,
  .accordion-body,
  .footer-copy {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero-actions,
  .final-actions,
  .summary-actions {
    flex-direction: column;
  }

  .navbar-brand {
    max-width: 220px;
    gap: 0.65rem;
  }

  .navbar-brand span {
    font-size: 0.98rem;
    line-height: 1;
  }

  .hero-actions .btn,
  .final-actions .btn,
  .summary-actions .btn {
    width: 100%;
  }

  .timeline-step,
  .statement-item {
    grid-template-columns: 1fr;
  }

  .image-strip-frame {
    aspect-ratio: 16 / 11;
  }

  .image-strip-section .col-md-4:nth-child(2) .image-strip-frame,
  .image-strip-section .col-md-4:nth-child(3) .image-strip-frame {
    aspect-ratio: 16 / 11;
  }

  .starter-highlight,
  .starter-card,
  .starter-note,
  .sticky-summary,
  .link-surface-priority {
    padding-inline: 1.2rem;
  }

  .starter-key-grid {
    grid-template-columns: 1fr;
  }

  .starter-key-item {
    min-height: 0;
  }

  .starter-command-list span {
    font-size: 0.86rem;
  }

  .link-row:hover {
    margin-inline: 0;
    padding-inline: 0;
  }

  .back-to-top {
    width: 3rem;
    height: 3rem;
  }

  .site-footer .container {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .parallax-media {
    background-attachment: scroll !important;
    transform: none !important;
  }

  .parallax-content {
    transform: none !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
