/* Micro-Scale Utility — Mini Habit Formation Coaching */

:root {
  --color-base: #FAF9F6;
  --color-primary: #0066FF;
  --color-graphite: #1E1E24;
  --color-mint: #00B574;
  --color-surface: #FFFFFF;
  --color-muted: #6B6B76;
  --color-border: rgba(30, 30, 36, 0.12);
  --color-overlay: rgba(30, 30, 36, 0.55);
  --font-primary: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-micro: 0 1px 3px rgba(30, 30, 36, 0.06);
  --shadow-card: 0 4px 16px rgba(30, 30, 36, 0.08);
  --shadow-elevated: 0 8px 32px rgba(30, 30, 36, 0.12);
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-content: 72rem;
  --card-size: 12.5rem;
  --header-height: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-base);
  color: var(--color-graphite);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-graphite);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-muted);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* ── Header ── */

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand-text {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 700;
  color: var(--color-graphite);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-graphite);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--color-primary);
}

.burger-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  flex-shrink: 0;
  order: 99;
}

.burger-toggle:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.burger-toggle:hover .burger-line {
  background: var(--color-surface);
}

.burger-line {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--color-graphite);
  border-radius: 1px;
  transition: transform var(--transition-fast), opacity var(--transition-fast), background var(--transition-fast);
}

.burger-toggle.is-active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-toggle.is-active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.is-active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay — separate from header */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(30, 30, 36, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(18rem, 85vw);
  height: 100%;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  z-index: 201;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  overflow-y: auto;
}

.nav-panel.is-open {
  transform: translateX(0);
}

.nav-panel-close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--color-graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.nav-panel a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-graphite);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.nav-panel a:hover {
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .burger-toggle {
    display: none;
  }
}

/* ── Main layout ── */

main {
  flex: 1;
}

.section-wrap {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.section-centered {
  text-align: center;
}

.section-header {
  margin-bottom: var(--space-xl);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  margin-top: var(--space-md);
}

/* ── Hero banners (full-width, image under text) ── */

.hero-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(18rem, 50vh, 28rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(250, 249, 246, 0.92) 0%,
    rgba(250, 249, 246, 0.78) 50%,
    rgba(0, 102, 255, 0.15) 100%
  );
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-content);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  width: 100%;
}

.hero-banner-content h1 {
  margin-bottom: var(--space-md);
  color: var(--color-graphite);
}

.hero-banner-content p {
  max-width: 36rem;
  margin: 0 auto var(--space-lg);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

/* ── Buttons ── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.7rem 1.4rem;
  background: var(--color-primary);
  color: var(--color-surface);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  background: #0052cc;
  color: var(--color-surface);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.7rem 1.4rem;
  background: transparent;
  color: var(--color-graphite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ── Micro cards grid ── */

.micro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card-size), 1fr));
  gap: var(--space-md);
  justify-items: center;
}

.micro-card {
  width: 100%;
  max-width: var(--card-size);
  aspect-ratio: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-micro);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.micro-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 102, 255, 0.25);
}

.micro-card-icon {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.micro-card h3 {
  font-size: 0.85rem;
  margin: var(--space-sm) 0;
}

.micro-card p {
  font-size: 0.75rem;
  line-height: 1.45;
}

/* ── Willpower meter ── */

.willpower-meter {
  margin-top: var(--space-sm);
}

.willpower-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--color-muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

.willpower-track {
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.willpower-fill {
  height: 100%;
  width: 1%;
  background: var(--color-mint);
  border-radius: 2px;
}

/* ── Habit formula cards ── */

.formula-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-micro);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-color var(--transition-fast);
}

.formula-card:hover {
  border-color: rgba(0, 102, 255, 0.3);
}

.formula-pillar {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-mint);
}

.formula-text {
  font-size: 0.8rem;
  color: var(--color-graphite);
  line-height: 1.5;
}

.formula-text em {
  font-style: normal;
  color: var(--color-primary);
  font-weight: 500;
}

/* ── Stacker builder ── */

.stacker-module {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  max-width: 36rem;
  margin: 0 auto;
}

.stacker-field {
  margin-bottom: var(--space-md);
}

.stacker-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: var(--space-xs);
}

.stacker-field select,
.stacker-field input,
.stacker-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  background: var(--color-base);
  color: var(--color-graphite);
  transition: border-color var(--transition-fast);
}

.stacker-field select:focus,
.stacker-field input:focus,
.stacker-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.stacker-output {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.06), rgba(0, 181, 116, 0.06));
  border: 1px dashed rgba(0, 102, 255, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--color-graphite);
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ── Shrinker interface ── */

.shrinker-workflow {
  max-width: 32rem;
  margin: 0 auto;
}

.shrinker-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-micro);
}

.shrinker-step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.shrinker-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  background: var(--color-base);
  resize: vertical;
  min-height: 4rem;
}

.shrinker-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.shrinker-result {
  background: var(--color-graphite);
  color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: var(--space-md);
}

.shrinker-result p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.shrinker-result .atomic-action {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--color-mint);
  margin-top: var(--space-sm);
}

.word-count-display {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: var(--space-xs);
}

/* ── Process steps ── */

.process-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--space-md);
}

.process-step {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.process-step h3 {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 0.8rem;
}

/* ── Split layout ── */

.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  max-width: 22rem;
  margin: 0 auto;
}

.split-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (min-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout.reverse .split-text {
    order: 2;
  }

  .split-layout.reverse .split-visual {
    order: 1;
  }
}

/* ── Products ── */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-lg);
  justify-items: center;
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 18rem;
  width: 100%;
  box-shadow: var(--shadow-micro);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.product-image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: var(--space-md);
}

.product-body h3 {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.product-body p {
  font-size: 0.8rem;
  margin-bottom: var(--space-md);
}

.product-price {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ── Contact ── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-info-item i {
  color: var(--color-primary);
  margin-top: 3px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--color-graphite);
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-graphite);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  background: var(--color-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  min-height: 7rem;
  resize: vertical;
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.consent-group input {
  margin-top: 4px;
  flex-shrink: 0;
}

.consent-group label {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: var(--space-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 16rem;
  border: none;
  display: block;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* ── Thank you & 404 ── */

.status-page {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 32rem;
  margin: 0 auto;
}

.status-icon {
  font-size: 3rem;
  color: var(--color-mint);
  margin-bottom: var(--space-md);
}

.status-page h1 {
  margin-bottom: var(--space-md);
}

.status-page p {
  margin-bottom: var(--space-lg);
}

/* ── Legal pages ── */

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.legal-content h1 {
  margin-bottom: var(--space-sm);
}

.legal-content .date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: var(--space-xl);
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-graphite);
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  list-style: disc;
}

/* ── Footer ── */

.site-footer {
  background: var(--color-graphite);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) var(--space-lg);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
}

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
  color: var(--color-surface);
}

.footer-contact {
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--color-surface);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Privacy popup ── */

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  z-index: 300;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-elevated);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateY(120%);
  transition: transform var(--transition-smooth);
  max-width: 36rem;
  margin: 0 auto;
}

.privacy-popup.is-visible {
  transform: translateY(0);
}

.privacy-popup p {
  font-size: 0.8rem;
  line-height: 1.5;
}

.privacy-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.privacy-popup-actions .btn-primary,
.privacy-popup-actions .btn-secondary {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

@media (min-width: 640px) {
  .privacy-popup {
    flex-direction: row;
    align-items: center;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(120%);
    width: calc(100% - 2rem);
  }

  .privacy-popup.is-visible {
    transform: translateX(-50%) translateY(0);
  }

  .privacy-popup p {
    flex: 1;
  }
}

/* ── Vault pillar tabs ── */

.pillar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.pillar-tab {
  padding: 0.4rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--color-muted);
  transition: all var(--transition-fast);
}

.pillar-tab.is-active,
.pillar-tab:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-surface);
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: var(--space-md);
}

/* ── Utility ── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-graphite {
  color: var(--color-graphite);
}

.bg-alt {
  background: rgba(0, 102, 255, 0.03);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.is-hidden {
  display: none;
}

body.nav-locked {
  overflow: hidden;
}
