:root {
  --bg: #f5f0e8;
  --surface: #fffdf9;
  --surface-muted: #f7f1e8;
  --line: #d7cebe;
  --line-strong: #b3a692;
  --text: #17130f;
  --text-soft: #62584c;
  --text-faint: #8c8071;
  --accent: #17120d;
  --accent-strong: #000000;
  --accent-soft: #ede4d6;
  --success-bg: #e8f4ec;
  --success-text: #17633c;
  --running-bg: #eaf0fb;
  --running-text: #335b8f;
  --warn-bg: #fff4df;
  --warn-text: #8a5d12;
  --error-bg: #fff0f0;
  --error-text: #a12020;
  --shadow-soft: 0 22px 46px rgba(31, 23, 12, 0.09);
  --content-width: 1280px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Avenir Next", "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.auth-body {
  background:
    radial-gradient(circle at 12% 12%, rgba(180, 145, 83, 0.12), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(72, 48, 18, 0.08), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(196, 173, 138, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf8f2 0%, #f3ecdf 100%);
}

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

a:hover {
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
}

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

pre,
.mono {
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

.shell {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 22px 24px 48px;
}

body.auth-body .shell {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 36px;
}

body.auth-body .app-header {
  border-bottom: none;
  justify-content: center;
  padding: 8px 0 0;
}

body.auth-body .brand-subtitle,
body.auth-body .header-context {
  display: none;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0 18px;
  border-bottom: 1px solid var(--line);
}

.brand-wrap,
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  gap: 8px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 16px 0 0 rgba(0, 0, 0, 0.18);
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand:hover {
  text-decoration: none;
}

.brand-subtitle,
.muted,
.table-note,
.signal-label,
.summary-label,
.field-help,
.section-note,
.empty-state,
.auth-note,
.action-meta,
.form-note,
.header-context {
  color: var(--text-soft);
}

.header-context {
  font-size: 0.9rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-nav a {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  border-bottom: 1px solid transparent;
}

.header-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.header-nav a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  min-width: 0;
}

.user-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-soft);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 28px;
}

.content > *,
.panel,
.auth-card,
.action-card,
.signal-card,
.page-heading,
.table-title,
.metric-card,
.report-detail-item {
  min-width: 0;
}

body.auth-body .content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.flash-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flash {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  background: var(--surface);
}

.flash-success {
  background: var(--success-bg);
  color: var(--success-text);
  border-color: rgba(23, 99, 60, 0.18);
}

.flash-error {
  background: var(--error-bg);
  color: var(--error-text);
  border-color: rgba(161, 32, 32, 0.18);
}

.flash-warn {
  background: var(--warn-bg);
  color: var(--warn-text);
  border-color: rgba(138, 93, 18, 0.18);
}

.stack,
.stack-tight,
.stack-loose {
  display: flex;
  flex-direction: column;
}

.stack {
  gap: 18px;
}

.stack-tight {
  gap: 10px;
}

.stack-loose {
  gap: 24px;
}

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

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

.sidebar-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.page-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
}

.page-eyebrow {
  color: var(--text-faint);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-header h1,
.auth-hero h1 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.page-subtitle,
.auth-hero p {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1rem;
}

.page-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.panel,
.auth-card,
.auth-hero,
.action-card,
.signal-card {
  background: var(--surface);
  border: 1px solid rgba(179, 166, 146, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.contract-strip,
.app-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border: 1px solid rgba(179, 166, 146, 0.55);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.88);
  color: var(--text-soft);
}

.contract-strip strong {
  color: var(--text);
}

.app-footer {
  justify-content: center;
  margin-top: 24px;
  font-size: 0.9rem;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.panel-header h2,
.panel h2,
.auth-card h2,
.auth-card h1,
.action-card-title {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.panel-header h2,
.panel h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-divider {
  height: 1px;
  background: var(--line);
  margin: -2px 0 2px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.table-wrap .table {
  min-width: 640px;
}

.table th,
.table td {
  padding: 16px 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.table th {
  padding-top: 0;
  color: var(--text-faint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: none;
}

.table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.table a:hover {
  text-decoration-color: currentColor;
}

.table-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.table-title strong,
.table-title a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.table-row-meta,
.detail-grid dt,
.action-caption {
  color: var(--text-faint);
  font-size: 0.86rem;
}

.table-cluster,
.table-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-compact th,
.table-compact td {
  padding-left: 10px;
  padding-right: 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px 20px;
}

.detail-grid dd {
  margin: 0;
  word-break: break-word;
}

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

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.metric-card strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.metric-subvalue {
  color: var(--text-faint);
  font-size: 0.8rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.94rem;
  color: var(--text);
}

label span {
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(179, 166, 146, 0.65);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255, 252, 247, 0.96);
  color: var(--text);
  transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(23, 18, 13, 0.08);
  background: #fffdf9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px #fffeff inset;
  transition: background-color 9999s ease-out 0s;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.form-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.form-section + .form-section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.field-help {
  font-size: 0.9rem;
}

.field-help p + p {
  margin-top: 4px;
}

.field-help-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--surface-muted);
}

.checkbox input {
  width: auto;
  margin: 0;
}

.checkbox span {
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.button:hover {
  background: var(--accent-strong);
  text-decoration: none;
  transform: translateY(-1px);
}

.button-secondary,
.button-link {
  background: #ffffff;
  color: var(--text);
  border-color: var(--line);
}

.button-secondary:hover,
.button-link:hover {
  background: var(--accent-soft);
}

.button-small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.button-block {
  width: 100%;
}

.status,
.verdict {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-queued,
.status-running,
.verdict-pending {
  background: var(--running-bg);
  color: var(--running-text);
}

.status-succeeded,
.verdict-pass {
  background: var(--success-bg);
  color: var(--success-text);
}

.status-failed,
.verdict-fail {
  background: var(--error-bg);
  color: var(--error-text);
}

.status-neutral {
  background: var(--accent-soft);
  color: var(--text-soft);
}

.callout {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  background: var(--surface-muted);
}

.callout strong {
  display: block;
  margin-bottom: 6px;
}

.callout-error {
  background: var(--error-bg);
  color: var(--error-text);
  border-color: rgba(161, 32, 32, 0.18);
}

.callout-note {
  background: var(--surface-muted);
}

.callout-warn {
  background: var(--warn-bg);
  color: var(--warn-text);
  border-color: rgba(138, 93, 18, 0.18);
}

.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.decision-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.signal-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
}

.signal-value {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.signal-value strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

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

.action-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.action-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.action-card-body,
.action-card-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-card-form textarea {
  min-height: 88px;
}

.action-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.action-meta strong,
.action-card-title {
  display: block;
}

.action-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.action-item:first-child {
  padding-top: 0;
  border-top: none;
}

.empty-state {
  font-size: 0.94rem;
}

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

.artifact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artifact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  overflow-wrap: anywhere;
}

.artifact-links a:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.manifest-table td:last-child {
  max-width: 360px;
  word-break: break-all;
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.report-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.report-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.report-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.guide-page {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.guide-hero {
  padding: 30px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.96)),
    var(--surface);
}

.guide-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.guide-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.guide-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-section {
  gap: 18px;
  padding: 24px 26px;
}

.guide-section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-section h2 {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

.guide-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 68ch;
}

.guide-definition-list {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 16px 22px;
}

.guide-definition-list dt {
  align-self: start;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.guide-definition-list dd {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.guide-definition-list-compact dt,
.guide-definition-list-compact dd {
  padding-top: 10px;
  border-top: 1px solid rgba(179, 166, 146, 0.36);
}

.guide-definition-list-compact dt:first-of-type,
.guide-definition-list-compact dd:first-of-type {
  padding-top: 0;
  border-top: none;
}

.guide-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-mini-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(179, 166, 146, 0.4);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.guide-mini-label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.auth-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
}

.auth-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: min(100%, 620px);
  padding: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 241, 0.96)),
    var(--surface);
}

.auth-card .stack-tight {
  gap: 10px;
}

.auth-card .page-eyebrow {
  letter-spacing: 0.12em;
}

.auth-card h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.auth-card .auth-note {
  max-width: 34rem;
  font-size: 1rem;
}

.auth-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(179, 166, 146, 0.55);
}

.auth-footer a {
  font-weight: 600;
  font-size: 1.02rem;
}

.list-plain {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.list-plain li {
  padding-left: 16px;
  position: relative;
}

.list-plain li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.report-meta,
.subgrid {
  display: grid;
  gap: 16px;
}

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

.banner-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.progress-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.progress-track {
  position: relative;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), var(--accent), rgba(0, 0, 0, 0.05));
  animation: progress-slide 1.4s ease-in-out infinite;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 2px solid var(--line);
}

.progress-step strong {
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.progress-step-done {
  border-top-color: var(--success-text);
}

.progress-step-active {
  border-top-color: var(--accent);
}

.progress-step-done strong,
.progress-step-active strong {
  color: var(--text);
}

.progress-step-done .action-caption {
  color: var(--success-text);
}

.progress-step-active .action-caption {
  color: var(--text-soft);
}

.progress-support {
  color: var(--text-faint);
  font-size: 0.88rem;
}

.supporting-copy {
  max-width: 68ch;
}

.auto-refresh-note {
  font-size: 0.88rem;
  color: var(--text-faint);
}

@media (max-width: 1120px) {
  .sidebar-layout,
  .report-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .two-column,
  .section-grid,
  .form-grid-two,
  .action-grid,
  .signal-strip,
  .guide-split,
  .metric-grid,
  .report-detail-grid,
  .subgrid-two,
  .progress-steps {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .guide-definition-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-grid dt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
}

@keyframes progress-slide {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(280%);
  }
}

@media (max-width: 720px) {
  .shell {
    padding: 18px 16px 36px;
  }

  body.auth-body .shell {
    padding: 20px 16px 24px;
  }

  .app-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-nav,
  .header-meta,
  .page-actions {
    width: 100%;
  }

  .header-nav a {
    padding-top: 0;
  }

  .panel,
  .auth-card,
  .action-card,
  .signal-card {
    border-radius: 18px;
  }

  .guide-hero,
  .guide-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .auth-card {
    padding: 28px 22px;
  }
}
