@font-face {
  font-family: "JetBrains Mono Variable";
  src: url("../fonts/jetbrains-mono-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}

:root,
:root[data-theme="dark"] {
  color-scheme: dark;
  --canvas: #121411;
  --surface: #050605;
  --surface-raised: #0d0f0d;
  --ink: #ffffff;
  --muted: #a4a4a4;
  --subtle: #737373;
  --line: #4b4b4b;
  --strong-line: #ffffff;
  --inverse: #050605;
  --positive: #b8ff9f;
  --warning: #ffe08a;
  --danger: #ffb3aa;
  --wash: rgba(255, 255, 255, 0.055);
  --header-height: 84px;
  --section-menu-height: 49px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --canvas: #f2f1ec;
  --surface: #ffffff;
  --surface-raised: #f7f6f2;
  --ink: #11110f;
  --muted: #5d5d57;
  --subtle: #76766f;
  --line: #aaa9a1;
  --strong-line: #11110f;
  --inverse: #ffffff;
  --positive: #1d5f16;
  --warning: #705200;
  --danger: #8f271d;
  --wash: rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--canvas);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--section-menu-height) + 16px);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(var(--wash) 1px, transparent 1px),
    linear-gradient(90deg, var(--wash) 1px, transparent 1px),
    var(--canvas);
  background-size: 28px 28px;
  font-family:
    "JetBrains Mono Variable", "JetBrains Mono", "SFMono-Regular", Consolas,
    "Liberation Mono", Menlo, monospace;
  font-size: 14px;
  line-height: 1.62;
  text-rendering: geometricPrecision;
}

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

a,
button {
  color: inherit;
}

.lucide {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.button .lucide,
.inline-link .lucide,
.table-action .lucide {
  transition: transform 140ms ease;
}

.button:hover .lucide-arrow-right,
.inline-link:hover .lucide-arrow-right,
.table-action:hover .lucide-arrow-right {
  transform: translateX(2px);
}

.button:hover .lucide-arrow-left,
.inline-link:hover .lucide-arrow-left {
  transform: translateX(-2px);
}

.icon-spin {
  animation: spin 2.2s linear infinite;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 9px 12px;
  transform: translateY(-160%);
  border: 1px solid var(--strong-line);
  color: var(--inverse);
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 0 22px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(14px);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.site-header[data-scrolled] {
  border-bottom: 1px solid var(--strong-line);
  box-shadow: 0 5px 0 var(--wash);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-name {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 620;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.text-button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border: 0;
  padding: 8px 9px;
  background: transparent;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:hover,
.text-button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-nav a[aria-current="page"] {
  background: var(--wash);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-nav .nav-notification {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 1px;
  border: 1px solid var(--positive);
  border-radius: 999px;
  padding: 0 5px;
  color: var(--inverse);
  background: var(--positive);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  place-items: center;
}

.site-nav form {
  display: inline-flex;
  margin: 0;
}

.site-nav .nav-cta {
  border: 1px solid var(--strong-line);
  padding: 8px 12px;
}

.site-nav .nav-cta:hover {
  color: var(--inverse);
  background: var(--ink);
  text-decoration: none;
}

.theme-toggle {
  color: var(--muted);
}

.theme-icon {
  display: inline-grid;
  place-items: center;
}

:root[data-theme="dark"] .theme-icon-moon,
:root[data-theme="light"] .theme-icon-sun {
  display: none;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0;
  background: var(--surface);
  cursor: pointer;
}

.menu-icon-close {
  display: none;
}

.is-menu-open .menu-icon-open {
  display: none;
}

.is-menu-open .menu-icon-close {
  display: block;
}

.message-stack {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.message {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 11px 22px;
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
  font-size: 12px;
}

.message-success {
  color: var(--positive);
}

.message-error {
  color: var(--danger);
}

.message-info,
.message-warning {
  color: var(--warning);
}

main {
  border-top: 1px solid var(--line);
}

.section-menu {
  position: sticky;
  z-index: 30;
  top: var(--header-height);
  display: flex;
  min-height: var(--section-menu-height);
  align-items: stretch;
  border: 1px solid var(--line);
  border-bottom-color: var(--strong-line);
  background: color-mix(in srgb, var(--surface-raised) 94%, transparent);
  backdrop-filter: blur(14px);
}

.section-menu a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 12px 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.section-menu a:hover,
.section-menu a[aria-current="location"] {
  color: var(--ink);
  background: var(--wash);
}

.section-menu a[aria-current="location"] {
  box-shadow: inset 0 -2px 0 var(--ink);
}

.anchor-target {
  scroll-margin-top: calc(var(--header-height) + var(--section-menu-height) + 16px);
}

.icon-label,
.title-with-icon {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hero {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 70px 54px 66px;
  border-right: 1px solid var(--line);
}

.eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--positive) 15%, transparent);
}

.status-dot-idle {
  background: var(--muted);
  box-shadow: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 74px);
  font-weight: 610;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(27px, 3.7vw, 44px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.035em;
}

.hero-summary {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--strong-line);
  border-radius: 0;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--surface);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 140ms ease,
    background-color 140ms ease,
    transform 140ms ease;
}

.button:hover {
  color: var(--inverse);
  background: var(--ink);
  transform: translateY(-1px);
}

.button-primary {
  color: var(--inverse);
  background: var(--ink);
}

.button-primary:hover {
  color: var(--ink);
  background: var(--surface);
}

.button-full {
  width: 100%;
}

.button-danger {
  border-color: var(--danger);
  color: var(--surface);
  background: var(--danger);
}

.button-danger:hover {
  color: var(--danger);
  background: var(--surface);
}

.preview-note,
.fine-print {
  margin: 14px 0 0;
  color: var(--subtle);
  font-size: 10px;
}

.hero-console {
  align-self: center;
  margin: 38px;
  border: 1px solid var(--strong-line);
  background: var(--surface-raised);
  box-shadow: 9px 9px 0 color-mix(in srgb, var(--ink) 8%, transparent);
}

.console-bar,
.console-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-bar {
  border-bottom: 1px solid var(--line);
}

.console-foot {
  border-top: 1px solid var(--line);
}

.console-id {
  color: var(--ink);
}

.console-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
}

.pulse {
  display: grid;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border: 1px solid var(--positive);
  background: var(--positive);
  animation: pulse 1.8s infinite;
  color: var(--surface);
  place-items: center;
}

.pulse .lucide {
  width: 14px;
  height: 14px;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .icon-spin,
  .pulse {
    animation: none;
  }
}

.console-status strong {
  font-size: 13px;
}

.console-status p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.mini-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-timeline li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 45px;
  padding: 7px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--subtle);
  font-size: 10px;
}

.mini-timeline li:last-child {
  border-bottom: 0;
}

.mini-timeline strong {
  font-weight: 520;
}

.mini-timeline small {
  font-size: 9px;
}

.mini-timeline .done,
.mini-timeline .active {
  color: var(--ink);
}

.mini-timeline li > span {
  display: grid;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  place-items: center;
}

.mini-timeline li > span .lucide {
  width: 11px;
  height: 11px;
}

.mini-timeline .done span {
  border-color: var(--positive);
  color: var(--positive);
}

.mini-timeline .active {
  background: var(--wash);
}

.section-block {
  padding: 78px 54px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--surface);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--strong-line);
  border-left: 1px solid var(--strong-line);
}

.step-card {
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid var(--strong-line);
  border-bottom: 1px solid var(--strong-line);
  background: var(--surface-raised);
}

.step-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--muted);
}

.step-card-head .lucide {
  width: 20px;
  height: 20px;
}

.step-number {
  display: inline-block;
  color: var(--muted);
  font-size: 11px;
}

.step-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--surface);
}

.trust-copy {
  padding: 70px 54px;
  border-right: 1px solid var(--line);
}

.trust-copy > p:last-child {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
}

.fact-list {
  margin: 0;
  padding: 30px;
}

.fact-list div {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}

.fact-list dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.final-cta {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  padding: 38px 54px;
  background: var(--surface-raised);
}

.brand-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--surface);
}

.brand-story img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border-right: 1px solid var(--line);
  object-fit: cover;
}

.brand-story > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 46px;
}

.brand-story > div > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
}

.post-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--strong-line);
  border-left: 1px solid var(--strong-line);
}

.post-card {
  border-right: 1px solid var(--strong-line);
  border-bottom: 1px solid var(--strong-line);
  background: var(--surface-raised);
}

.post-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
}

.post-card > div {
  padding: 24px;
}

.post-card h3 a {
  text-decoration: none;
}

.post-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.post-card > div > p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.guides-link {
  margin-top: 24px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: 70px 54px;
  background: var(--surface);
}

.faq-list {
  border-top: 1px solid var(--strong-line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-list summary {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 32px;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  transition: transform 160ms ease;
}

.faq-list details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 15px 32px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.blog-heading {
  min-height: 430px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 86px 54px;
  background: var(--surface);
}

.blog-heading > div {
  max-width: 900px;
}

.blog-heading h1 {
  font-size: clamp(44px, 7vw, 78px);
}

.blog-heading > div > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.blog-index {
  border-top: 1px solid var(--strong-line);
  border-left: 1px solid var(--strong-line);
}

.blog-index-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  min-height: 330px;
  border-right: 1px solid var(--strong-line);
  border-bottom: 1px solid var(--strong-line);
  background: var(--surface);
}

.blog-card-image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--surface-raised);
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 180ms ease;
}

a.blog-card-image:hover img {
  transform: scale(1.015);
}

.blog-index-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 46px;
}

.blog-index-card h2 {
  font-size: clamp(25px, 3vw, 38px);
}

.blog-index-card h2 a {
  text-decoration: none;
}

.blog-index-card h2 a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.blog-index-card > div:last-child > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
}

.blog-index-card > div:last-child > span {
  margin-top: 24px;
  color: var(--subtle);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-stub {
  opacity: 0.66;
}

.article-page {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.article-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  min-height: 620px;
  border-bottom: 1px solid var(--strong-line);
}

.article-header > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 54px;
  border-right: 1px solid var(--line);
}

.article-header .inline-link {
  align-self: flex-start;
  margin-bottom: 54px;
}

.article-header h1 {
  font-size: clamp(39px, 5.5vw, 68px);
}

.article-header > div > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.article-header > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.article-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: var(--subtle);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-meta > *:not(:last-child)::after {
  margin-left: 15px;
  content: "·";
}

.article-body {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 84px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.article-body h2 {
  margin: 58px 0 18px;
  font-family:
    "JetBrains Mono Variable", "JetBrains Mono", "SFMono-Regular", Consolas,
    monospace;
  font-size: clamp(25px, 3vw, 36px);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  margin: 0 0 24px;
  color: color-mix(in srgb, var(--ink) 82%, var(--muted));
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-top: 1px solid var(--line);
  padding: 40px 54px;
  background: var(--surface-raised);
}

.article-footer p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.page-heading {
  display: flex;
  min-height: 250px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 44px 50px;
  background: var(--surface);
}

.page-heading h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.page-heading p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
}

.compact-heading {
  min-height: 220px;
}

.account-chip {
  display: flex;
  max-width: 310px;
  flex-direction: column;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-size: 10px;
}

.account-chip span {
  color: var(--muted);
}

.account-chip strong {
  overflow: hidden;
  margin-top: 3px;
  text-overflow: ellipsis;
}

.account-chip small {
  margin-top: 8px;
  color: var(--positive);
  text-transform: uppercase;
}

.request-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--surface);
}

.used-entitlement {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border: 1px solid var(--line);
  padding: 48px 50px;
  background: var(--surface);
}

.used-entitlement > div {
  max-width: 720px;
}

.used-entitlement p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
}

.request-intro,
.panel-form {
  padding: 48px 50px;
}

.request-intro {
  border-right: 1px solid var(--line);
}

.request-intro > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
}

.availability-line {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.panel-form {
  background: var(--surface-raised);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--surface);
}

input,
select {
  min-height: 48px;
}

textarea {
  min-height: 140px;
  line-height: 1.6;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--strong-line);
}

input::placeholder,
textarea::placeholder {
  color: var(--subtle);
}

.field-help,
.field-error {
  margin: 7px 0 0;
  color: var(--subtle);
  font-size: 10px;
}

.field-help ul {
  margin: 7px 0 0;
  padding-left: 18px;
}

.field-error,
.has-error label {
  color: var(--danger);
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: var(--danger);
}

.form-errors,
.errorlist {
  margin: 0 0 20px;
  padding: 10px 12px;
  border: 1px solid var(--danger);
  color: var(--danger);
  background: color-mix(in srgb, var(--danger) 6%, transparent);
  font-size: 11px;
  list-style-position: inside;
}

.form-field .errorlist {
  display: none;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-top: 6px;
}

.form-submit p {
  margin: 0;
  color: var(--subtle);
  font-size: 9px;
}

.history-section {
  border: 1px solid var(--line);
  padding: 42px 50px 50px;
  background: var(--surface);
}

.section-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.section-heading-inline h2 {
  font-size: 28px;
}

.section-heading-inline > span {
  color: var(--subtle);
  font-size: 9px;
  text-transform: uppercase;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  white-space: nowrap;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  background: var(--surface-raised);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td:last-child,
th:last-child {
  text-align: right;
}

td a {
  text-underline-offset: 3px;
}

.table-action {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.table-action .lucide {
  width: 12px;
  height: 12px;
}

.status-chip {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 4px 7px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-completed {
  color: var(--positive);
}

.status-failed,
.status-cancelled,
.status-timed_out {
  color: var(--danger);
}

.empty-state {
  display: flex;
  min-height: 110px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line);
  color: var(--muted);
}

.empty-state p {
  margin: 0;
}

.support-compose {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  border: 1px solid var(--line);
  background: var(--surface);
}

.support-compose-copy {
  padding: 48px 50px;
  border-right: 1px solid var(--line);
}

.support-compose-copy > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
}

.support-thread-list {
  border: 1px solid var(--line);
}

.support-thread-row {
  display: grid;
  min-height: 76px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 13px 16px;
  text-decoration: none;
}

.support-thread-row:last-child {
  border-bottom: 0;
}

.support-thread-row:hover {
  background: var(--wash);
}

.support-thread-icon {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  color: var(--muted);
  place-items: center;
}

.support-thread-summary {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.support-thread-summary strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-thread-summary small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.unread-chip {
  border: 1px solid var(--positive);
  padding: 4px 7px;
  color: var(--positive);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.pagination > span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.conversation-panel {
  border: 1px solid var(--line);
  background: var(--surface);
}

.conversation-timeline {
  display: flex;
  gap: 18px;
  flex-direction: column;
  padding: 44px 50px;
}

.conversation-message {
  width: min(760px, 88%);
  align-self: flex-end;
  border: 1px solid var(--strong-line);
  background: var(--surface-raised);
}

.conversation-message-staff {
  align-self: flex-start;
  border-color: var(--line);
  background: var(--surface);
}

.conversation-message header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.conversation-message header time {
  color: var(--muted);
}

.conversation-message > div {
  padding: 18px 20px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.conversation-reply {
  border-top: 1px solid var(--strong-line);
}

.call-panel {
  border: 1px solid var(--line);
  background: var(--surface);
}

.call-panel-head {
  display: flex;
  min-height: 190px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 50px;
  border-bottom: 1px solid var(--line);
}

.call-panel-head h2 {
  max-width: 720px;
}

.call-detail-copy {
  max-width: 670px;
  margin: 13px 0 0;
  color: var(--muted);
}

.call-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.call-meta div {
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.call-meta div:last-child {
  border-right: 0;
}

.call-meta dt {
  margin-bottom: 5px;
  color: var(--subtle);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-meta dd {
  margin: 0;
  overflow: hidden;
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.answer-call-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin: 24px 50px 34px;
  border: 1px solid var(--strong-line);
  padding: 20px;
  background: var(--surface-raised);
}

.answer-call-note > svg {
  width: 22px;
  height: 22px;
  color: var(--positive);
}

.answer-call-note h3 {
  font-size: 15px;
}

.answer-call-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.answer-call-note strong {
  color: var(--ink);
}

.timeline-wrap {
  padding: 34px 50px 42px;
}

.timeline-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.timeline-heading h3 {
  font-size: 14px;
}

.timeline-heading span {
  color: var(--positive);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.call-timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.call-timeline li {
  display: grid;
  min-height: 52px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.timeline-marker {
  display: grid;
  width: 22px;
  height: 22px;
  border: 1px solid var(--subtle);
  color: var(--subtle);
  place-items: center;
}

.timeline-marker .lucide {
  width: 12px;
  height: 12px;
}

.timeline-complete .timeline-marker {
  border-color: var(--positive);
  color: var(--positive);
}

.timeline-current {
  color: var(--ink) !important;
  background: var(--wash);
}

.timeline-current .timeline-marker {
  border-color: var(--ink);
  color: var(--ink);
}

.call-timeline time {
  color: var(--subtle);
  font-size: 9px;
}

.terminal-action {
  padding: 0 50px 42px;
}

.call-cancel-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding: 28px 50px;
  background: var(--surface-raised);
}

.call-cancel-action > div {
  max-width: 690px;
}

.call-cancel-action h3 {
  font-size: 14px;
}

.call-cancel-action p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.call-cancel-action form {
  flex: 0 0 auto;
}

.is-hidden {
  display: none !important;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review-panel {
  min-height: 430px;
  padding: 38px 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.panel-label {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-label > .lucide {
  width: 15px;
  height: 15px;
}

.panel-label span {
  display: grid;
  width: 29px;
  height: 24px;
  border: 1px solid var(--line);
  place-items: center;
}

.review-list {
  margin: 0 0 36px;
}

.review-list div,
.price-placeholder {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.review-list dt {
  color: var(--muted);
  font-size: 10px;
}

.review-list dd {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.inline-link {
  font-size: 11px;
  text-underline-offset: 3px;
}

.payment-panel {
  background: var(--surface-raised);
}

.payment-status {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.payment-panel > p:nth-of-type(2) {
  color: var(--muted);
}

.price-placeholder {
  margin: 34px 0 28px;
  border-top: 1px solid var(--line);
}

.price-placeholder span {
  color: var(--muted);
  font-size: 10px;
}

.price-placeholder strong {
  font-size: 26px;
}

.auth-layout {
  display: grid;
  min-height: 660px;
  grid-template-columns: 1fr 1fr;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.auth-copy,
.auth-panel {
  padding: 68px 54px;
}

.auth-copy {
  border-right: 1px solid var(--line);
}

.auth-copy h1,
.notice-panel h1,
.narrow-panel h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.auth-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px 0 0;
  color: var(--muted);
}

.auth-steps {
  margin: 50px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.auth-steps li {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.auth-steps span {
  color: var(--subtle);
}

.auth-steps .lucide {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.auth-panel {
  background: var(--surface-raised);
}

.auth-panel h2 {
  margin-bottom: 34px;
  font-size: 28px;
}

.auth-panel h2 .lucide {
  width: 24px;
  height: 24px;
}

.auth-switch {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.auth-switch a,
.auth-links a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  font-size: 10px;
}

.single-panel-layout {
  min-height: 650px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 80px max(20px, calc((100% - 650px) / 2));
  background: var(--surface);
}

.notice-panel,
.narrow-panel {
  max-width: 650px;
  margin: 0 auto;
  border: 1px solid var(--strong-line);
  padding: 46px;
  background: var(--surface-raised);
}

.large-index {
  display: grid;
  width: 50px;
  height: 42px;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  color: var(--muted);
  place-items: center;
}

.notice-panel > p:not(.eyebrow, .fine-print) {
  margin: 23px 0 0;
  color: var(--muted);
}

.notice-panel > p strong {
  color: var(--ink);
}

.notice-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.notice-actions form {
  margin: 0;
}

.account-delete-panel {
  max-width: 820px;
}

.account-settings-panel {
  max-width: 820px;
}

.account-settings-section {
  margin-top: 32px;
  border: 1px solid var(--line);
  padding: 24px;
}

.account-settings-section h2 {
  margin-bottom: 12px;
  font-size: 16px;
}

.account-settings-section > p,
.account-delete-link > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 11px;
}

.account-settings-section form {
  margin-top: 24px;
}

.retention-disclosure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.retention-disclosure section {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px;
}

.retention-disclosure h2,
.danger-zone h2 {
  font-size: 16px;
}

.retention-disclosure ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 11px;
}

.retention-disclosure li + li {
  margin-top: 9px;
}

.retention-warning {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 22px;
  border: 1px solid var(--warning);
  padding: 18px;
  color: var(--warning);
  background: color-mix(in srgb, var(--warning) 6%, transparent);
}

.retention-warning > .lucide {
  margin-top: 3px;
}

.retention-warning p {
  margin: 0;
  font-size: 11px;
}

.danger-zone {
  margin-top: 32px;
  border: 1px solid var(--danger);
  padding: 24px;
}

.danger-zone h2 {
  margin-bottom: 22px;
  color: var(--danger);
}

.confirm-check {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.confirm-check input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--danger);
}

.account-delete-actions {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
}

.narrow-panel h1 {
  margin-bottom: 17px;
}

.narrow-panel > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 30px 22px;
  color: var(--muted);
  background: var(--surface);
  font-size: 9px;
}

.footer-brand {
  width: min(270px, 100%);
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer-copy {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.site-footer p {
  max-width: 500px;
  margin: 0;
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.legal-page .blog-heading {
  min-height: 330px;
}

.legal-page .article-body h3 {
  margin: 34px 0 12px;
  font-size: 18px;
}

.legal-page .article-body ul {
  margin: 0 0 28px;
  padding-left: 24px;
}

.legal-page .article-body li + li {
  margin-top: 10px;
}

.legal-updated {
  margin-top: 20px;
  color: var(--subtle);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

@media (max-width: 900px) {
  .hero,
  .request-grid,
  .auth-layout,
  .support-compose {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .request-intro,
  .auth-copy,
  .support-compose-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-console {
    width: min(560px, calc(100% - 40px));
    margin: 50px auto;
  }

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

  .step-card {
    min-height: 190px;
  }

  .step-card-head {
    margin-bottom: 38px;
  }

  .trust-grid,
  .review-grid,
  .brand-story,
  .faq-section,
  .article-header {
    grid-template-columns: 1fr;
  }

  .brand-story img,
  .article-header > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .blog-index-card {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .article-header > img {
    min-height: 420px;
  }

  .trust-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .call-meta {
    grid-template-columns: 1fr 1fr;
  }

  .call-meta div:nth-child(2) {
    border-right: 0;
  }

  .call-meta div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .call-meta div:nth-child(3),
  .call-meta div:nth-child(4) {
    border-bottom: 1px solid var(--line);
  }

  .call-meta div:nth-child(4) {
    border-right: 0;
  }

  .call-meta div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root,
  :root[data-theme="dark"],
  :root[data-theme="light"] {
    --header-height: 70px;
  }

  body {
    font-size: 13px;
  }

  .site-shell {
    width: calc(100% - 16px);
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 12px;
  }

  .brand-name small {
    display: none;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    z-index: 45;
    top: calc(100% - 1px);
    right: -1px;
    left: -1px;
    display: grid;
    gap: 0;
    border: 1px solid var(--strong-line);
    padding: 8px;
    opacity: 0;
    background: var(--surface);
    box-shadow: 7px 7px 0 var(--wash);
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
  }

  .js .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav {
    gap: 0;
    flex-wrap: wrap;
  }

  .site-nav a,
  .text-button {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    padding: 10px 12px;
    font-size: 11px;
  }

  .site-nav .nav-notification {
    margin-left: auto;
  }

  .site-nav form {
    display: block;
    width: 100%;
  }

  .site-nav .nav-cta {
    justify-content: center;
    border: 1px solid var(--strong-line);
    margin-top: 8px;
  }

  .section-menu {
    overflow-x: auto;
  }

  .section-menu a {
    flex: 0 0 auto;
    min-width: max-content;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-story img {
    min-height: 250px;
  }

  .brand-story > div,
  .faq-section,
  .blog-heading,
  .article-header > div {
    padding: 40px 24px;
  }

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

  .blog-card-image {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .blog-card-image img {
    min-height: 220px;
  }

  .blog-index-card > div:last-child {
    padding: 32px 24px;
  }

  .article-header > img {
    min-height: 260px;
  }

  .article-footer,
  .used-entitlement {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 24px;
  }

  .hero-copy,
  .section-block,
  .trust-copy,
  .request-intro,
  .panel-form,
  .history-section,
  .support-compose-copy,
  .auth-copy,
  .auth-panel {
    padding: 42px 22px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding-top: 62px;
    padding-bottom: 54px;
  }

  .hero-summary {
    font-size: 13px;
  }

  .hero-console {
    width: calc(100% - 28px);
    margin: 32px auto;
    box-shadow: 5px 5px 0 color-mix(in srgb, var(--ink) 8%, transparent);
  }

  .console-foot {
    gap: 10px;
  }

  .mini-timeline li {
    grid-template-columns: 25px minmax(0, 1fr);
  }

  .mini-timeline small {
    display: none;
  }

  .fact-list {
    padding: 20px 22px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 35px 22px;
  }

  .page-heading {
    min-height: 220px;
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 22px;
  }

  .account-chip {
    width: 100%;
    max-width: none;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .call-panel-head,
  .timeline-wrap,
  .review-panel {
    padding: 30px 22px;
  }

  .call-panel-head {
    flex-direction: column;
  }

  .call-meta {
    grid-template-columns: 1fr;
  }

  .call-meta div,
  .call-meta div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .call-meta div:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .answer-call-note {
    margin: 20px 22px 30px;
  }

  .call-timeline li {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 9px 0;
  }

  .call-timeline time {
    grid-column: 2;
  }

  .terminal-action {
    padding: 0 22px 30px;
  }

  .call-cancel-action {
    align-items: stretch;
    flex-direction: column;
    padding: 24px 22px;
  }

  .call-cancel-action .button {
    width: 100%;
  }

  .auth-layout {
    min-height: 0;
  }

  .single-panel-layout {
    min-height: 560px;
    padding: 30px 14px;
  }

  .notice-panel,
  .narrow-panel {
    padding: 32px 22px;
  }

  .notice-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .notice-actions .button {
    width: 100%;
  }

  .retention-disclosure {
    grid-template-columns: 1fr;
  }

  .account-delete-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .account-delete-actions .button {
    width: 100%;
  }

  .conversation-timeline {
    padding: 30px 22px;
  }

  .conversation-message {
    width: 96%;
  }

  .conversation-message header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .support-thread-row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .support-thread-row > :last-child {
    grid-column: 2;
    justify-self: start;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-copy {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
