/* =========================================================
   ZiaMap Site-Specific Patterns
   Components and patterns lifted from the live site CSS
   to preserve visual fidelity. Sourced 2026-05-25.
   ========================================================= */

@layer styles {

  /* ---- Container ---- */
  .container,
  .site-container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-lg);
  }

  /* ---- Sticky header with backdrop blur (matches original) ---- */
  .site-header {
    position: sticky;
    top: 0;
    height: var(--height-md);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
    z-index: 40;
    display: flex;
    align-items: center;
  }

  /* ---- Desktop nav ---- */
  .desktop {
    display: flex;
    position: relative;
    align-items: center;
    height: 100%;
    min-height: var(--height-md);
  }

  .desktop .nav-link,
  .desktop .nav-button {
    position: relative;
    font-family: var(--font-heading);
    padding: 0 0.4rem;
    font-size: calc(var(--text-base) - 0.18rem);
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: var(--white);
    font-style: italic;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
  }

  .desktop .nav-button {
    background-color: var(--brand-1);
    color: var(--black);
    transition: background-color 0.3s ease-in-out;
    padding: 0 var(--space-sm);
  }

  .desktop .nav-button:hover {
    background-color: var(--white);
  }

  .desktop .nav-link:hover {
    color: var(--brand-1);
  }

  .desktop .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--brand-1);
  }

  /* ---- ui-button (general button class, matches live site) ---- */
  .ui-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-sm);
    line-height: 2.2;
    box-shadow: var(--shadow-sm);
    background: var(--lighter);
    font-weight: 600;
    color: var(--darker);
    transition: all 200ms ease;
    cursor: pointer;
    text-decoration: none;
    margin: 0;
    border: none;
  }
  .ui-button:hover {
    filter: brightness(1.1);
    box-shadow: var(--shadow);
  }
  .ui-button:active {
    transform: translateY(0.5px);
    box-shadow: none;
  }
  .ui-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .ui-button.ui-brand-1 {
    background: var(--brand-1);
    color: var(--white);
  }

  /* ---- Italic uppercase CTA (the big yellow buttons) ---- */
  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--brand-1);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    transition: background 0.2s ease;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    line-height: 1;
  }
  .btn-cta:hover {
    background: var(--white);
    color: var(--black);
  }
  .btn-cta svg {
    transition: translate 0.2s ease-in-out;
  }
  .btn-cta:hover svg {
    translate: 6px;
  }

  /* ---- Hero with background image + dark overlay + dot pattern ---- */
  .hero-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  .hero-bg__dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
  }
  .hero-bg__dot-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: radial-gradient(#fff 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 20;
  }
  .hero-bg__content {
    position: relative;
    z-index: 30;
    padding-block: var(--space-2xl);
    padding-inline: var(--space-sm);
    width: 100%;
  }

  /* ---- Hero eyebrow (yellow bordered tag) ---- */
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: var(--border-lg) solid var(--brand-1);
    padding: var(--space-sm);
    background: rgba(240, 178, 0, 0.5);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: var(--text-sm);
    text-transform: uppercase;
  }

  /* ---- Eyebrow (small uppercase yellow above heading) ---- */
  .eyebrow {
    color: var(--brand-1);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 0.15em;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    display: block;
  }

  /* ---- Tracking-widest helper ---- */
  .tracking-widest {
    letter-spacing: 0.4em;
  }

  /* ---- Dark bordered card (used across sections) ---- */
  .card-dark {
    background: rgba(39, 39, 42, 0.3);
    border: 0.5px solid var(--dark);
    padding: var(--space-lg);
  }

  /* ---- Section backgrounds ---- */
  .section-dark {
    background: rgba(39, 39, 42, 0.6);
    border-top: 0.5px solid var(--dark);
    border-bottom: 0.5px solid var(--dark);
  }
  .section-darker {
    background: rgba(39, 39, 42, 0.3);
    border-top: 0.5px solid var(--dark);
  }

  /* ---- ROI Stats grid ---- */
  .roi-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  @media (min-width: 768px) {
    .roi-stats-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 1024px) {
    .roi-stats-grid { grid-template-columns: repeat(4, 1fr); }
  }
  .roi-stat__number {
    color: var(--brand-1);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: var(--text-2xl);
    line-height: 1;
    display: block;
  }
  .roi-stat__label {
    margin-top: var(--space-sm);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-style: italic;
    font-size: var(--text-lg);
    line-height: 1;
  }
  .roi-stat__description {
    margin-top: var(--space-sm);
    color: var(--midtone);
    font-size: var(--text-base);
  }

  /* ---- Feature grid ---- */
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    width: 100%;
  }
  @media (min-width: 768px) {
    .feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
    .feature-grid--3 { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 1024px) {
    .feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
  }

  /* ---- Who it's for cards (image background) ---- */
  .who-card {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    display: block;
  }
  .who-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black) 34%, transparent 80%);
    opacity: 0.9;
    z-index: 1;
  }
  .who-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    z-index: 2;
  }

  /* ---- Inline link in body copy ---- */
  .inline-link,
  a.ui-inline-link {
    color: var(--brand-1);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }
  .inline-link:hover,
  a.ui-inline-link:hover {
    border-bottom-color: var(--brand-1);
  }

  /* ---- Callout box (industry data quote) ---- */
  .callout {
    padding: var(--space-lg);
    background: rgba(39, 39, 42, 0.3);
    border: 0.5px solid var(--dark);
  }
  .callout__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: var(--text-lg);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    color: var(--white);
  }
  .callout__bar {
    background: var(--brand-1);
    height: 4px;
    width: 5rem;
    margin-top: var(--space-sm);
  }

  /* ---- Pain point list item ---- */
  .pain-point {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  .pain-point__icon {
    color: var(--brand-1);
    flex-shrink: 0;
    margin-top: var(--space-2xs);
  }
  .pain-point__heading {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: var(--text-base);
    line-height: 1;
    margin-bottom: var(--space-2xs);
    color: var(--white);
  }
  .pain-point__body {
    color: var(--midtone);
    font-size: var(--text-sm);
    line-height: 1.4;
  }

  /* ---- Icon shift on hover (matches original .icon-shift) ---- */
  .icon-shift:hover svg {
    translate: 6px;
    transition: translate 0.2s ease-in-out;
  }

  /* ---- Phone mockup frame (Field Journal section) ---- */
  .phone-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 19.5;
    background: #1a1a1a;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 0 50px rgba(0, 0, 0, 0.5),
      inset 0 0 2px 2px rgba(255, 255, 255, 0.05);
    margin-inline: auto;
  }
  .phone-frame .phone-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
  }
  .phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 8px;
  }

  /* ---- Inline-tag eyebrow (bordered yellow tag, smaller than hero version) ---- */
  .tag-eyebrow {
    display: inline-block;
    border: 1px solid var(--brand-1);
    color: var(--brand-1);
    padding: var(--space-2xs) var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ---- Bullet row with icons (Field Journal feature list) ---- */
  .feature-bullet {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
  }
  .feature-bullet__icon {
    color: var(--brand-1);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }
  .feature-bullet__text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    font-size: var(--text-base);
    letter-spacing: 0.02em;
    line-height: 1;
  }

  /* ---- Octagon badge (Final CTA) ---- */
  .octagon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--brand-1);
    color: var(--black);
    clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
    margin-bottom: var(--space-md);
  }

  /* ---- Simple footer ---- */
  .site-footer {
    background: rgba(39, 39, 42, 0.3);
    border-top: 0.5px solid var(--dark);
    padding-block: var(--space-lg);
    margin-top: var(--space-2xl);
  }
  .site-footer__inner {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }
  @media (min-width: 768px) {
    .site-footer__inner {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }
  .site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  .site-footer__link {
    color: var(--midtone);
    text-decoration: none;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  .site-footer__link:hover {
    color: var(--brand-1);
  }

  /* ---- Lucide icons (default + size variants) ---- */
  .lucide-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .lucide-icon--sm { width: 16px; height: 16px; }
  .lucide-icon--md { width: 20px; height: 20px; }
  .lucide-icon--lg { width: 24px; height: 24px; }
  .lucide-icon--xl { width: 32px; height: 32px; }
  .lucide-icon--2xl { width: 48px; height: 48px; }

  /* ---- Icon cards (3/4/6 grids with icon + heading + body) ---- */
  .icon-card {
    background: rgba(39, 39, 42, 0.3);
    border: 0.5px solid var(--dark);
    padding: var(--space-lg);
    position: relative;
  }
  .icon-card__icon {
    color: var(--brand-1);
    width: 32px;
    height: 32px;
    margin-bottom: var(--space-sm);
  }
  .icon-card__icon-corner {
    color: var(--brand-1);
    width: 20px;
    height: 20px;
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    opacity: 0.6;
  }
  .icon-card__heading {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    font-size: var(--text-base);
    line-height: 1.1;
    margin: 0 0 var(--space-2xs);
  }
  .icon-card__body {
    color: var(--midtone);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
    line-height: 1.4;
  }

  /* ---- Responsive grids ---- */
  .grid-6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  @media (min-width: 768px) { .grid-6 { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .grid-6 { grid-template-columns: repeat(3, 1fr); } }

  .grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  @media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

  /* ---- Comparison table (with-trimble page) ---- */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(39, 39, 42, 0.3);
    color: var(--white);
  }
  .compare-table thead th {
    background: rgba(39, 39, 42, 0.6);
    color: var(--brand-1);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-md);
    text-align: left;
    border-bottom: 0.5px solid var(--dark);
  }
  .compare-table tbody td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 0.5px solid var(--dark);
    color: var(--light);
    font-size: var(--text-base);
  }
  .compare-table tbody tr:last-child td { border-bottom: none; }
  .compare-table td.is-yes { color: var(--brand-1); }
  .compare-table td.is-no  { color: var(--midtone); opacity: 0.6; }

  /* ---- FAQ accordion-style list (CSS only, no JS) ---- */
  .faq-item {
    border-left: 3px solid var(--brand-1);
    padding-left: var(--space-md);
    padding-block: var(--space-md);
    margin-bottom: var(--space-md);
  }
  .faq-item__question {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    font-size: var(--text-xl);
    margin: 0 0 var(--space-sm);
    line-height: 1.1;
  }
  .faq-item__answer {
    color: var(--midtone);
    line-height: 1.5;
    max-width: 60ch;
  }
  .faq-item__answer a {
    color: var(--brand-1);
    border-bottom: 1px solid transparent;
  }
  .faq-item__answer a:hover { border-bottom-color: var(--brand-1); }

  /* ---- Pricing card ---- */
  .price-card {
    background: rgba(39, 39, 42, 0.3);
    border: 0.5px solid var(--dark);
    padding: var(--space-lg);
    position: relative;
  }
  .price-card--featured {
    border: 1px solid var(--brand-1);
    box-shadow: var(--shadow-brand);
  }
  .price-card__badge {
    position: absolute;
    top: calc(var(--space-md) * -0.6);
    left: var(--space-md);
    background: var(--brand-1);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: var(--text-sm);
    padding: var(--space-2xs) var(--space-sm);
    letter-spacing: 0.05em;
  }
  .price-card__price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
    color: var(--brand-1);
    font-size: var(--text-3xl);
    line-height: 1;
    margin-top: var(--space-md);
  }
  .price-card__price-unit {
    color: var(--midtone);
    font-size: var(--text-base);
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    margin-left: var(--space-2xs);
  }
  .price-card__feature {
    display: flex;
    gap: var(--space-2xs);
    align-items: flex-start;
    margin-top: var(--space-sm);
    color: var(--light);
    font-size: var(--text-base);
  }
  .price-card__feature-icon {
    color: var(--brand-1);
    flex-shrink: 0;
    margin-top: 0.2em;
  }

  /* ---- Numbered section (Privacy / Terms) ---- */
  .numbered-section {
    margin-bottom: var(--space-lg);
  }
  .numbered-section__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    font-size: var(--text-xl);
    margin: 0 0 var(--space-sm);
  }
  .numbered-section__heading::before {
    content: attr(data-num) ".";
    color: var(--brand-1);
    margin-right: var(--space-2xs);
  }

  /* ---- Document metadata bar (Terms / Privacy header) ---- */
  .doc-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--midtone);
    font-size: var(--text-sm);
    font-family: var(--font-heading);
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-block: var(--space-sm);
    margin-bottom: var(--space-lg);
  }
  .doc-meta::before {
    content: "";
    display: block;
    width: 4px;
    height: 1.2em;
    background: var(--brand-1);
  }

  /* ---- Team headshot card (about page) ---- */
  .founder-card {
    background: rgba(39, 39, 42, 0.3);
    border: 0.5px solid var(--dark);
    padding: var(--space-lg);
    text-align: center;
  }
  .founder-card__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: var(--space-md);
    border-radius: var(--rounded);
  }
  .founder-card__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    font-size: var(--text-lg);
    margin: 0;
  }
  .founder-card__role {
    color: var(--brand-1);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-2xs);
  }
  .founder-card__bio {
    color: var(--midtone);
    font-size: var(--text-sm);
    margin-top: var(--space-sm);
    line-height: 1.4;
  }

  /* ---- Contact/Intel column ---- */
  .intel-item__label {
    color: var(--brand-1);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2xs);
  }
  .intel-item__value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    font-size: var(--text-xl);
    text-transform: uppercase;
    line-height: 1;
  }
  .intel-item__meta {
    color: var(--midtone);
    font-size: var(--text-sm);
    margin-top: var(--space-2xs);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .transmission-form {
    background: rgba(39, 39, 42, 0.3);
    border: 0.5px solid var(--dark);
    padding: var(--space-lg);
    position: relative;
  }
  .transmission-form__code-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    color: var(--midtone);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 0.1em;
    opacity: 0.6;
  }

  /* ---- Search bar (support page) ---- */
  .search-bar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    border-radius: var(--rounded);
    padding: var(--space-sm) var(--space-md);
    color: var(--black);
    max-width: 32rem;
    width: 100%;
  }
  .search-bar input {
    border: none;
    background: transparent;
    flex: 1;
    color: var(--black);
    font-size: var(--text-base);
    outline: none;
    max-width: none;
  }
  .search-bar__icon { color: var(--midtone); flex-shrink: 0; }

  /* ---- Sidebar with vertical category list (support page) ---- */
  .sidebar-categories__label {
    color: var(--midtone);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
  }
  .sidebar-category {
    display: block;
    padding: var(--space-sm);
    background: rgba(39, 39, 42, 0.3);
    border: 0.5px solid var(--dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-bottom: var(--space-2xs);
    transition: border-color 0.2s ease, color 0.2s ease;
  }
  .sidebar-category:hover,
  .sidebar-category.is-active {
    border-color: var(--brand-1);
    color: var(--brand-1);
  }

  /* ---- Accordion item (support FAQ-style) ---- */
  .accordion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: rgba(39, 39, 42, 0.3);
    border: 0.5px solid var(--dark);
    margin-bottom: var(--space-2xs);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--text-base);
    text-decoration: none;
  }
  .accordion-item:hover { border-color: var(--brand-1); }
  .accordion-item__plus {
    color: var(--brand-1);
    flex-shrink: 0;
  }

  /* ---- Status callout box ---- */
  .status-callout {
    background: rgba(39, 39, 42, 0.3);
    border: 0.5px solid var(--dark);
    padding: var(--space-md);
  }
  .status-callout__label {
    display: flex;
    align-items: center;
    gap: var(--space-2xs);
    color: var(--brand-1);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .status-callout__status {
    margin-top: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--success);
    font-size: var(--text-base);
  }

  /* ---- Skip-to-content (a11y) ---- */
  .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand-1);
    color: var(--black);
    padding: var(--space-xs) var(--space-sm);
    z-index: 100;
    text-decoration: none;
  }
  .skip-link:focus {
    top: 0;
  }
}
