:root {
  --background: 230 36% 4%;
  --foreground: 220 35% 94%;
  --card: 229 30% 8%;
  --card-foreground: 220 35% 94%;
  --muted: 236 22% 15%;
  --muted-foreground: 223 18% 66%;
  --primary: 233 100% 72%;
  --primary-foreground: 0 0% 100%;
  --accent: 263 92% 72%;
  --accent-foreground: 230 36% 4%;
  --border: 235 32% 24%;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --max-width: 72rem;
  --labyrinth-cycle: 32s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  line-height: 1.5;
  background:
    radial-gradient(circle at 22% 0%, rgba(104, 119, 255, 0.14), transparent 32rem),
    linear-gradient(180deg, rgba(119, 92, 255, 0.08), transparent 18rem),
    hsl(var(--background));
  color: hsl(var(--foreground));
}

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

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

::selection {
  background: hsl(var(--primary) / 0.34);
}

.site {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.labyrinth-aura {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(42vw, 34rem);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.32;
  mask-image: linear-gradient(90deg, #000 0%, #000 42%, rgba(0, 0, 0, 0.45) 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 42%, rgba(0, 0, 0, 0.45) 72%, transparent 100%);
}

.labyrinth-aura-svg {
  position: absolute;
  left: -8%;
  top: 2%;
  width: 135%;
  height: 94vh;
  min-height: 42rem;
  animation: labyrinth-drift var(--labyrinth-cycle) ease-in-out infinite;
}

.labyrinth-field {
  opacity: 0.26;
}

.labyrinth-orbit {
  fill: none;
  stroke-dasharray: 10 18;
  transform-origin: 100px 100px;
  transform-box: view-box;
}

.labyrinth-orbit-a {
  animation: labyrinth-orbit-spin 140s linear infinite;
}

.labyrinth-orbit-b {
  animation: labyrinth-orbit-spin 180s linear infinite reverse;
  opacity: 0.65;
}

.labyrinth-trace {
  stroke-dasharray: 6 12;
  opacity: 0.24;
}

.labyrinth-structure {
  transform-origin: 100px 100px;
}

.labyrinth-ring {
  transform-origin: 100px 100px;
  transform-box: view-box;
  animation: labyrinth-ring-spin var(--ring-duration, 60s) linear infinite;
  animation-direction: var(--ring-direction, normal);
}

.labyrinth-wall {
  fill: none;
}

.labyrinth-hub {
  transform-origin: 100px 100px;
}

.labyrinth-route {
  visibility: hidden;
  pointer-events: none;
}

.labyrinth-wanderer {
  transform-origin: 100px 100px;
}

.labyrinth-wanderer-ball {
  opacity: 0.96;
  animation: labyrinth-ball-pulse 2.4s ease-in-out infinite;
}

@keyframes labyrinth-ball-pulse {
  0%,
  100% {
    opacity: 0.88;
  }

  50% {
    opacity: 1;
  }
}

@keyframes labyrinth-ring-spin {
  from {
    transform: rotate(var(--ring-offset, 0deg));
  }

  to {
    transform: rotate(calc(var(--ring-offset, 0deg) + 360deg));
  }
}

@keyframes labyrinth-orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes labyrinth-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -0.6%, 0) scale(1.004);
  }
}

@media (prefers-reduced-motion: reduce) {
  .labyrinth-aura-svg,
  .labyrinth-orbit,
  .labyrinth-ring {
    animation: none;
  }

  .labyrinth-ring {
    transform: rotate(var(--ring-offset, 0deg));
  }

  .labyrinth-wanderer {
    display: none;
  }

  .labyrinth-wanderer-ball {
    animation: none;
  }

  .labyrinth-field {
    opacity: 0.08;
  }
}

@media (max-width: 860px) {
  .labyrinth-aura {
    width: min(52vw, 18rem);
    opacity: 0.22;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
}

.header-inner,
.main-inner,
.footer-inner {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: clamp(8.5rem, 14vw, 11rem);
  height: clamp(6.75rem, 11vw, 8.75rem);
  padding: 0.3rem;
  overflow: hidden;
  border-radius: 0.375rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 28px hsl(var(--primary) / 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-name {
  display: block;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: hsl(220 45% 98%);
  text-shadow: 0 0 18px hsl(var(--primary) / 0.45);
}

.brand-name-footer {
  font-size: 1.15rem;
}

.brand-tagline {
  display: block;
  max-width: 22rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  color: hsl(var(--muted-foreground));
}

.site-slogan {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: hsl(var(--primary));
}

.site-slogan-footer {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.hero-company {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: hsl(220 45% 98%);
  text-shadow: 0 0 28px hsl(var(--primary) / 0.4);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220 28% 78%);
  text-shadow: 0 0 12px hsl(var(--primary) / 0.22);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, text-shadow 0.15s ease, box-shadow 0.15s ease;
}

.nav-link:hover {
  border-color: hsl(var(--primary) / 0.35);
  background: hsl(var(--muted) / 0.75);
  color: hsl(220 40% 96%);
  text-shadow: 0 0 14px hsl(var(--primary) / 0.45);
  box-shadow: 0 0 16px hsl(var(--primary) / 0.12);
}

.nav-link-active {
  border-color: hsl(var(--primary) / 0.42);
  background: hsl(var(--muted) / 0.8);
  color: hsl(220 45% 98%);
  text-shadow: 0 0 16px hsl(var(--primary) / 0.5);
  box-shadow: 0 0 18px hsl(var(--primary) / 0.16);
}

.site-main {
  flex: 1;
  padding: 2rem 0 4rem;
}

.main-inner {
  display: grid;
  gap: 2rem;
}

.page-header {
  display: grid;
  gap: 0.65rem;
  max-width: 46rem;
}

.page-header .site-slogan {
  margin-bottom: 0.15rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.page-header h1,
.section-title,
.panel h2,
.panel h3,
.stat-value,
.hero-promise {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-header h1,
.section-title {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-promise {
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: hsl(220 30% 90%);
}

.page-header h1 {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  color: hsl(220 40% 97%);
}

.section-title {
  font-size: 1.25rem;
}

.lead,
.muted,
.panel p,
.panel li,
.stat-label,
.stat-detail,
.footer-copy,
.form-label {
  color: hsl(var(--muted-foreground));
}

.lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.system-line {
  border-top: 1px solid hsl(var(--border));
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.16), transparent);
  height: 1px;
}

.neon-panel,
.panel {
  background: linear-gradient(180deg, hsl(var(--card)), hsl(230 32% 6%));
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 60px rgba(0, 0, 0, 0.22);
}

.panel {
  padding: 1.25rem;
}

.panel-link:hover {
  border-color: hsl(var(--primary));
}

.neon-chip,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.72);
  color: hsl(var(--muted-foreground));
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.neon-button,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 0 22px hsl(var(--primary) / 0.22);
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.button-primary:hover,
.chip:hover {
  filter: brightness(1.05);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
}

.hero .lead {
  max-width: 42rem;
}

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

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-title {
  font-size: 1.15rem;
}

.section-intro {
  margin: 0.35rem 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.grid-2,
.grid-3,
.grid-5,
.stats,
.process,
.detail-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.proof-strip .stat-value {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.card-title {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.card-body {
  margin: 0.75rem 0 0;
  font-size: 0.925rem;
  line-height: 1.65;
}

.card-meta {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

.stat {
  padding: 1rem 1.1rem;
}

.stat-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-value {
  margin-top: 0.55rem;
  font-size: 1.55rem;
  color: hsl(var(--card-foreground));
}

.stat-detail {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
}

.process-step {
  display: grid;
  gap: 0.5rem;
}

.process-index {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.list li {
  display: grid;
  grid-template-columns: 0.5rem 1fr;
  gap: 0.75rem;
  font-size: 0.925rem;
  line-height: 1.65;
}

.list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: hsl(var(--primary));
}

.detail-grid {
  grid-template-columns: 2fr 1fr;
}

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

.status-panel {
  border-color: hsl(var(--primary) / 0.45);
}

.status-panel.error {
  border-color: hsl(0 72% 46% / 0.45);
  background: linear-gradient(180deg, hsl(0 40% 12%), hsl(230 32% 6%));
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  background: hsl(230 28% 6%);
  color: hsl(var(--foreground));
  padding: 0.7rem 0.8rem;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

input:focus,
textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.16);
  outline: none;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid hsl(var(--border));
  padding: 1.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

.footer-copy {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
}

.panel-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.status-chip {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
}

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

.engagement-diagram-panel {
  display: grid;
  gap: 1.25rem;
}

.engagement-diagram {
  overflow-x: auto;
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  background: hsl(230 28% 5% / 0.72);
  padding: 1rem;
}

.engagement-svg {
  display: block;
  width: 100%;
  min-width: 52rem;
  height: auto;
}

.engagement-svg-phase {
  fill: hsl(var(--foreground));
  font-size: 13px;
  font-weight: 700;
}

.engagement-svg-detail,
.engagement-svg-label {
  fill: hsl(var(--muted-foreground));
  font-size: 11px;
}

.engagement-svg-label {
  font-size: 12px;
}

.engagement-legend {
  margin-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1.05fr);
  gap: 1.25rem;
  align-items: start;
}

.twin-console {
  display: grid;
  grid-template-rows: auto auto minmax(22rem, 1fr) auto;
  gap: 0;
  overflow: hidden;
  padding: 0;
  min-height: 32rem;
}

.twin-persona-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.35);
}

.twin-persona-chip {
  cursor: pointer;
  gap: 0.45rem;
  border-color: hsl(var(--border));
  background: hsl(var(--background) / 0.72);
  color: hsl(var(--foreground));
}

.twin-persona-chip.is-active {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.35);
  color: hsl(var(--primary));
}

.twin-persona-chip-label {
  font-weight: 600;
}

.twin-chip-status {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.twin-chip-status-online {
  color: hsl(145 60% 45%);
}

.twin-chip-status-standby {
  color: hsl(var(--muted-foreground));
}

.twin-console-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}

.twin-console-identity,
.twin-message-meta,
.twin-console-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.twin-console-meta {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.twin-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.375rem;
  border: 1px solid hsl(var(--border));
  background: linear-gradient(135deg, hsl(var(--primary) / 0.28), hsl(var(--accent) / 0.2));
  color: hsl(var(--foreground));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.twin-avatar-sm {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 0.62rem;
}

.twin-presence {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}

.twin-presence-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: hsl(38 92% 55%);
  box-shadow: 0 0 10px hsl(38 92% 55% / 0.45);
}

.twin-presence-dot-online {
  background: hsl(142 72% 45%);
  box-shadow: 0 0 10px hsl(142 72% 45% / 0.5);
}

.twin-message-pending .twin-bubble {
  opacity: 0.72;
  font-style: italic;
}

.twin-console-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow-y: auto;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, hsl(230 28% 5% / 0.9), hsl(230 32% 4% / 0.96)),
    hsl(230 28% 5%);
}

.twin-message {
  display: grid;
  gap: 0.4rem;
  max-width: 92%;
}

.twin-message-assistant {
  align-self: flex-start;
}

.twin-message-user {
  align-self: flex-end;
}

.twin-message-user .twin-message-meta {
  justify-content: flex-end;
}

.twin-message-user .twin-bubble {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.28), hsl(var(--accent) / 0.18));
  border-color: hsl(var(--primary) / 0.35);
}

.twin-message-system {
  align-self: center;
  max-width: 100%;
  width: 100%;
  border: 1px dashed hsl(var(--border));
  border-radius: 0.375rem;
  background: hsl(var(--muted) / 0.35);
  padding: 0.7rem 0.85rem;
}

.twin-message-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.twin-bubble {
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--card));
  padding: 0.8rem 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.twin-bubble p,
.twin-system-text {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.6;
  color: hsl(var(--foreground));
}

.twin-system-text {
  margin-top: 0.25rem;
  color: hsl(var(--muted-foreground));
}

.twin-composer {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.15rem 1.15rem;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}

.twin-composer-field {
  display: block;
}

.twin-composer textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.twin-composer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.twin-composer-note {
  margin: 0;
  font-size: 0.875rem;
}

.twin-composer textarea:disabled,
.twin-composer button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.admin-narrow {
  max-width: 36rem;
}

.admin-row {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.nav-button {
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.danger-chip {
  color: hsl(0 80% 72%);
  border-color: hsl(0 50% 35% / 0.55);
  cursor: pointer;
}

.status-published {
  color: hsl(var(--primary));
}

.status-draft {
  color: hsl(var(--muted-foreground));
}

select {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  background: hsl(230 28% 6%);
  color: hsl(var(--foreground));
  padding: 0.7rem 0.8rem;
  font: inherit;
}

select:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.16);
  outline: none;
}

.checkbox-grid {
  display: grid;
  gap: 0.55rem;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.check-label input {
  width: auto;
}

fieldset.field {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.prose h2,
.prose h3 {
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.prose p,
.prose li {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.prose p {
  margin: 0 0 0.9rem;
}

.prose ul {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
}

.prose a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

input[readonly] {
  opacity: 0.75;
}

@media (max-width: 1100px) {
  .proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .brand-tagline {
    max-width: 16rem;
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .brand-tagline {
    max-width: none;
  }

  .grid-2,
  .grid-3,
  .stats,
  .proof-stats,
  .detail-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
