@import url("./halo-theme.css?v=ink-graphite-20260609");

:root {
  --halo-muted: var(--halo-color-text-secondary);
  --halo-line: var(--halo-color-border-subtle);
  --halo-paper: var(--halo-color-surface-raised);
  --halo-cloud: var(--halo-color-surface-muted);
  --halo-wash: var(--halo-color-surface-page);
  --halo-green: var(--halo-color-status-success);
  --halo-red: var(--halo-color-status-danger);
  --shadow-soft: var(--halo-shadow-soft);
  --shadow-card: var(--halo-shadow-card);
  --radius-sm: var(--halo-radius-sm);
  --radius-md: var(--halo-radius-md);
  --radius-lg: var(--halo-radius-xl);
  --radius-pill: var(--halo-radius-pill);
  --max-page: var(--halo-container);
  --nav-height: 70px;
  --font-sans: var(--halo-font-sans);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--halo-color-text-primary);
  background: var(--halo-paper);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

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

a[href^="http"],
.text-action,
.support-link {
  color: var(--halo-color-link);
}

a[href^="http"]:hover,
.text-action:hover,
.support-link:hover {
  color: var(--halo-color-link-hover);
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--halo-color-focus);
  outline-offset: 3px;
  box-shadow: var(--halo-shadow-focus);
}

.container {
  width: min(var(--max-page), calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--halo-muted);
  font-size: var(--halo-type-caption);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section--wash {
  background: var(--halo-cloud);
}

.section__header {
  display: grid;
  gap: 12px;
  max-width: var(--halo-container-readable);
  margin-bottom: 28px;
}

.section__header.center {
  margin-inline: auto;
  text-align: center;
}

.section__title,
h1,
h2,
h3,
p {
  margin-top: 0;
}

.section__title {
  margin-bottom: 0;
  font-size: var(--halo-type-section);
  line-height: 1;
  letter-spacing: 0;
}

.section__copy {
  color: var(--halo-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--halo-line);
  border-radius: var(--halo-radius-pill);
  background: var(--halo-paper);
  color: var(--halo-color-text-primary);
  font-size: 0.76rem;
  font-weight: 800;
}

.badge--yellow {
  border-color: var(--halo-color-action-primary);
  background: var(--halo-color-action-primary);
  color: var(--halo-color-action-primary-text);
}

.badge--dark {
  border-color: var(--halo-color-surface-dark);
  background: var(--halo-color-surface-dark);
  color: var(--halo-color-text-inverse);
}

.badge--blue {
  border-color: var(--halo-color-status-info-surface);
  background: var(--halo-color-status-info-surface);
  color: var(--halo-color-link-hover);
}

.badge--sale {
  border-color: var(--halo-color-sale-surface);
  background: var(--halo-color-sale-surface);
  color: var(--halo-color-sale);
}

.stack {
  display: grid;
  gap: 16px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--halo-color-action-secondary);
  border-radius: var(--halo-component-button-radius);
  background: var(--halo-color-action-secondary);
  color: var(--halo-color-action-secondary-text);
  font-family: var(--halo-font-live);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    background var(--halo-duration-base) var(--halo-ease-out),
    border-color var(--halo-duration-base) var(--halo-ease-out),
    color var(--halo-duration-base) var(--halo-ease-out),
    transform var(--halo-duration-fast) var(--halo-ease-out);
}

.button:hover {
  border-color: var(--halo-color-action-secondary-hover);
  background: var(--halo-color-action-secondary-hover);
}

.button:active {
  transform: translateY(1px);
}

.button--yellow {
  border-color: var(--halo-color-action-primary);
  background: var(--halo-color-action-primary);
  color: var(--halo-color-action-primary-text);
}

.button--yellow:hover {
  border-color: var(--halo-color-action-primary-hover);
  background: var(--halo-color-action-primary-hover);
}

.button--ghost {
  background: transparent;
  color: var(--halo-color-action-secondary);
}

.button--ghost:hover {
  background: var(--halo-color-surface-muted);
  color: var(--halo-color-action-secondary);
}

.button:disabled,
.button[aria-disabled="true"] {
  border-color: var(--halo-color-action-disabled);
  background: var(--halo-color-action-disabled);
  color: var(--halo-color-action-disabled-text);
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 860px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }
}