:root {
  color-scheme: light;
  --ink: #1e2125;
  --muted: #66727f;
  --line: #e7e9ed;
  --background: #f6f7f9;
  --accent: #6b1aff;
  --accent-hover: #5100e5;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button,
input,
select {
  font: inherit;
}
button,
a,
select,
input {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #ceb2ff;
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.25;
  margin-bottom: 10px;
}
h2 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin-bottom: 4px;
}
h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
[hidden] {
  display: none !important;
}
.site-header {
  background: white;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1480px;
  min-height: 80px;
  margin: auto;
  padding: 0 42px;
  display: flex;
  align-items: center;
  gap: 52px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: var(--ink);
  flex-shrink: 0;
}
.brand:hover {
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 248px;
  height: auto;
}
.brand-context {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.3px;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #6b1aff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -1.5px;
}
.brand-mark span {
  font-size: 14px;
  letter-spacing: -0.7px;
  align-self: center;
  margin-top: 5px;
}
.brand-name {
  font-weight: 600;
  letter-spacing: -0.4px;
  font-size: 18px;
}
.brand-caption {
  display: block;
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-top: 3px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  display: flex;
  align-items: center;
  color: #66727f;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 500;
  padding: 8px 14px;
}
.main-nav a.active {
  background: #efe5ff;
  color: var(--accent);
}
.main-nav a:hover {
  text-decoration: none;
  color: var(--accent);
}
.account-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.account-name {
  font-size: 14px;
  color: #66727f;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.button-text {
  padding: 7px 0;
  border: none;
  background: none;
  color: #66727f;
  font-size: 14px;
}
.button-text:hover {
  color: var(--accent);
}
.main-container {
  max-width: 1480px;
  padding: 39px 42px 48px;
  margin: auto;
  min-height: calc(100vh - 160px);
}
.page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 28px;
}
.page-heading > div {
  flex: 1;
  min-width: 0;
}
.page-heading .button {
  flex: none;
  white-space: nowrap;
}
.page-heading h1,
.page-description,
.metric-note,
.guide-grid p,
.breakdown-label {
  overflow-wrap: anywhere;
}
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 11px;
}
.page-description {
  color: #66727f;
  margin: 0;
  font-size: 14px;
}
.snapshot-time {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 190px;
}
.small-dot {
  background: #8fa0ad;
  width: 5px;
  height: 5px;
  border-radius: 100%;
}
.snapshot-time .button {
  margin-top: 4px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.button:hover {
  text-decoration: none;
}
.button-secondary {
  background: white;
  color: #516175;
  border-color: #dce3eb;
}
.button-secondary:hover {
  background: #f9fbfd;
  border-color: #bccbd6;
}
.button-primary {
  background: var(--accent);
  color: white;
}
.button-primary:hover {
  background: var(--accent-hover);
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  margin-bottom: 25px;
}
.summary-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 23px;
  box-shadow: 0 2px 3px #1e212505;
  min-height: 151px;
  min-width: 0;
}
.metric-label {
  display: block;
  color: #66727f;
  font-size: 14px;
  font-weight: 500;
}
.metric-value {
  display: block;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1.3px;
  font-variant-numeric: tabular-nums;
  margin: 18px 0 12px;
  font-weight: 600;
}
.metric-note {
  display: block;
  font-size: 12px;
  color: #66727f;
}
.summary-status {
  background: #f7f3ff;
  border-color: #e9ddff;
}
.summary-status .metric-label {
  color: #6b1aff;
}
.status-headline {
  display: block;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin: 23px 0 12px;
  color: #5100e5;
  line-height: 1.3;
}
.summary-status .metric-note {
  color: #66727f;
}
.text-warning {
  color: #b7781f !important;
}
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(340px, 1fr);
  gap: 24px;
  margin-bottom: 25px;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 2px 3px #1e212505;
  overflow: hidden;
}
.panel-heading {
  padding: 22px 24px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panel-heading p {
  color: #66727f;
  font-size: 12px;
  margin: 0;
}
.period-pill {
  color: #718196;
  font-size: 12px;
  border: 1px solid #e0e6ed;
  border-radius: 5px;
  padding: 5px 10px;
  white-space: nowrap;
}
.chart-legend {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  flex-wrap: wrap;
  color: #6d7b8f;
  font-size: 12px;
}
.chart-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 2px;
}
.dot-ok {
  background: #17b26a;
}
.dot-firing {
  background: #f79009;
}
.dot-error {
  background: #f04438;
}
.dot-skipped {
  background: #96a0ab;
}
.chart-container {
  height: 209px;
  margin: 0 16px;
}
.chart-message {
  height: 209px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #66727f;
  font-size: 14px;
  padding: 26px;
  text-align: center;
}
.empty-chart-icon {
  font-size: 43px;
  color: #bccad3;
  line-height: 1;
  margin-bottom: 17px;
}
.chart-message p {
  margin: 0;
}
.panel-bottom-note {
  border-top: 1px solid #f0f3f7;
  padding: 11px 24px;
  color: #66727f;
  font-size: 12px;
}
.panel-note {
  padding: 0 24px;
  font-size: 14px;
  color: var(--muted);
}
.connection-list {
  padding: 0 24px;
  margin: 0;
  list-style: none;
}
.connection-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid #edf0f4;
}
.connection-list li:first-child {
  padding-top: 8px;
}
.connection-list li:last-child {
  border-bottom: 0;
}
.connection-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f8;
  color: #8092a5;
  font-size: 20px;
  flex-shrink: 0;
}
.connection-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.connection-list div > span {
  display: block;
  font-size: 12px;
  color: #66727f;
  margin-top: 2px;
}
.connection-list .badge {
  margin-left: auto;
  font-size: 9px;
  padding: 3px 6px;
  white-space: nowrap;
}
.connection-note {
  color: #8793a3;
  font-size: 12px;
  line-height: 1.7;
  padding: 3px 24px 14px;
  margin: 0;
}
.secure-note {
  border-top: 1px solid #edf0f4;
  background: #fafafa;
  color: #66727f;
  padding: 11px 24px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.secure-note > span {
  font-size: 14px;
}
.table-wrap {
  overflow: auto;
  position: relative;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th {
  font-size: 12px;
  letter-spacing: 0.4px;
  color: #8290a2;
  font-weight: 600;
  background: #fafbfd;
  border-top: 1px solid #edf0f4;
  border-bottom: 1px solid #edf0f4;
  padding: 11px 24px;
  white-space: nowrap;
}
td {
  font-size: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid #f0f3f7;
  color: #758195;
  white-space: nowrap;
}
td.check-name {
  white-space: normal;
  min-width: 12rem;
}
tr:last-child td {
  border-bottom: none;
}
.table-primary {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #343a41;
}
a.table-primary {
  color: var(--accent);
  overflow-wrap: anywhere;
}
a.table-primary:hover {
  text-decoration: underline;
}
.table-secondary {
  display: block;
  color: #7a8794;
  font-size: 12px;
  margin-top: 5px;
  white-space: normal;
  max-width: 430px;
}
.table-link {
  color: #6b1aff;
  font-size: 12px;
  font-weight: 500;
}
.table-link span {
  font-size: 14px;
  margin-left: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  color: #697b8c;
  background: #f0f3f7;
}
.badge i {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}
.badge-ok {
  background: #ecfdf3;
  color: #067647;
}
.badge-firing,
.badge-stale {
  background: #fffaeb;
  color: #b54708;
}
.badge-error {
  background: #fef3f2;
  color: #b32318;
}
.badge-running,
.badge-configured {
  background: #efe5ff;
  color: #5100e5;
}
.badge-never,
.badge-disabled,
.badge-skipped,
.badge-neutral {
  background: #f0f3f7;
  color: #66727f;
}
.count-pill {
  font-size: 12px;
  font-weight: 500;
  vertical-align: middle;
  padding: 3px 7px;
  background: #f0f3f7;
  color: #8290a2;
  border-radius: 5px;
  margin-left: 7px;
}
.text-link {
  font-size: 12px;
  color: #6b1aff;
  font-weight: 600;
  white-space: nowrap;
}
.text-link span {
  padding-left: 9px;
}
.section-spacer {
  height: 25px;
}
.empty-state {
  padding: 36px 24px 43px;
  text-align: center;
  color: #8a96a6;
}
.empty-state h3 {
  font-size: 14px;
  font-weight: 500;
  color: #66798d;
  margin-top: 12px;
}
.empty-state p {
  font-size: 12px;
  max-width: 490px;
  margin: 0 auto;
  line-height: 1.8;
}
.empty-state-mark {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border: 1px solid #e7edf3;
  border-radius: 9px;
  color: #9cafbf;
  font-size: 23px;
  background: #f9fbfc;
}
.muted {
  color: #66727f;
}
.trigger-label {
  background: #f6f7f9;
  color: #8795a6;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.filter-form {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 14px;
  padding: 23px 24px;
}
.filter-form > div {
  min-width: 190px;
}
.filter-form label {
  display: block;
  color: #738399;
  font-size: 12px;
  margin-bottom: 6px;
}
.filter-form select {
  min-width: 190px;
  max-width: 280px;
  border: 1px solid #dce4ec;
  padding: 8px 34px 8px 10px;
  border-radius: 6px;
  background: #fff;
  color: #52667c;
  font-size: 14px;
  height: 38px;
}
.filter-form .text-link {
  padding: 10px 2px;
}
.result-count {
  color: #8f9bac;
  font-size: 12px;
  margin-left: auto;
  padding-bottom: 9px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 18px 24px;
  font-size: 12px;
  color: var(--muted);
}
.pagination > div {
  display: flex;
  gap: 10px;
}
.history-note {
  font-size: 12px;
  color: #8391a2;
  margin-top: 18px;
}
.site-footer {
  max-width: 1480px;
  margin: auto;
  padding: 0 42px 27px;
  display: flex;
  justify-content: space-between;
  color: #9aa6b5;
  font-size: 12px;
}
.messages {
  background: #f7f3ff;
  border: 1px solid #e9ddff;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 14px 18px;
}
.messages p:last-child {
  margin-bottom: 0;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: white;
  padding: 10px;
  border: 1px solid #dce4ec;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.auth-card {
  max-width: 460px;
  margin: 55px auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 8px 24px #1e212509;
}
.auth-heading {
  font-size: 25px;
  letter-spacing: -0.8px;
}
.auth-card p {
  color: #66727f;
  font-size: 14px;
}
.auth-card .button {
  width: 100%;
  margin-top: 10px;
  padding: 11px 15px;
}
.auth-form label {
  display: block;
  margin-top: 18px;
  color: #5d7085;
  font-size: 14px;
}
.auth-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dce4ec;
  border-radius: 6px;
  margin-top: 6px;
}
.auth-form .errorlist,
.auth-card .errorlist {
  color: #b32318;
  font-size: 14px;
  padding-left: 18px;
}
.auth-form .helptext {
  font-size: 12px;
  color: #66727f;
}
.auth-card .auth-note {
  font-size: 12px;
  margin-top: 22px;
  line-height: 1.7;
  color: #66727f;
}
.auth-card .text-link {
  display: block;
  margin-top: 18px;
  text-align: center;
}
@media (min-width: 1400px) {
  .main-container {
    padding-top: 44px;
  }
}
@media (max-width: 1100px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    gap: 30px;
    padding: 0 26px;
  }
  .main-container {
    padding: 30px 26px;
  }
  .brand-caption {
    font-size: 7px;
  }
  .account-name {
    display: none;
  }
  .summary-card {
    padding: 19px 18px;
  }
  .metric-note {
    font-size: 12px;
  }
  .overview-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, 1fr);
    gap: 17px;
  }
  .panel-heading {
    padding-left: 20px;
    padding-right: 20px;
  }
  .connection-list {
    padding: 0 20px;
  }
  td,
  th {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer {
    padding-left: 26px;
    padding-right: 26px;
  }
}
@media (max-width: 800px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0;
    min-height: 80px;
    padding: 17px 22px 0;
  }
  .brand {
    margin-bottom: 13px;
  }
  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 19px;
    border-radius: 10px;
  }
  .brand-name {
    font-size: 16px;
  }
  .brand-caption {
    font-size: 7px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    gap: 24px;
    overflow-x: auto;
  }
  .main-nav a {
    padding: 13px 0;
    font-size: 14px;
    white-space: nowrap;
  }
  .account-menu {
    margin-left: auto;
    margin-bottom: 13px;
  }
  .main-container {
    padding: 28px 22px;
  }
  .page-heading {
    align-items: start;
  }
  .snapshot-time {
    font-size: 12px;
    max-width: 160px;
  }
  .snapshot-time .button {
    font-size: 12px;
    padding: 8px 11px;
  }
  .page-description {
    max-width: 400px;
    font-size: 14px;
  }
  h1 {
    font-size: 27px;
  }
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .summary-card {
    min-height: 142px;
  }
  .metric-note {
    font-size: 12px;
  }
  .activity-panel {
    order: 1;
  }
  .connections-panel {
    order: 2;
  }
  .connection-list li {
    padding: 14px 0;
  }
  .connection-list .badge {
    font-size: 12px;
  }
  .connection-note {
    padding-bottom: 18px;
  }
  .connection-list div > span {
    font-size: 12px;
  }
  .panel-bottom-note {
    font-size: 12px;
  }
  .site-footer {
    padding: 0 22px 25px;
  }
  .filter-form {
    gap: 12px;
  }
  .filter-form > div {
    flex: 1;
  }
  .filter-form select {
    width: 100%;
    max-width: none;
  }
  .result-count {
    margin-left: 0;
  }
  .auth-card {
    margin: 30px auto;
  }
}
@media (max-width: 480px) {
  .header-inner {
    padding-left: 17px;
    padding-right: 17px;
  }
  .brand-name {
    font-size: 14px;
  }
  .brand-caption {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .brand {
    gap: 10px;
  }
  .account-menu {
    margin-bottom: 16px;
  }
  .button-text {
    font-size: 12px;
  }
  .main-container {
    padding: 24px 17px;
  }
  .page-heading {
    display: block;
    margin-bottom: 23px;
  }
  .snapshot-time {
    margin-top: 18px;
    max-width: none;
    justify-content: flex-start;
  }
  .snapshot-time .button {
    margin: 0 0 0 auto;
  }
  .summary-grid,
  .guide-grid {
    gap: 10px;
  }
  .breakdown-row {
    grid-template-columns: 1fr auto;
  }
  .breakdown-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .summary-card {
    padding: 17px 15px;
    min-height: 139px;
  }
  .metric-value {
    font-size: 29px;
  }
  .metric-label {
    font-size: 12px;
  }
  .metric-note {
    font-size: 12px;
    line-height: 1.6;
  }
  .status-headline {
    font-size: 17px;
    margin-top: 20px;
  }
  .panel-heading {
    padding: 20px 17px 16px;
  }
  h2 {
    font-size: 15px;
  }
  .chart-legend {
    padding: 0 17px;
    gap: 12px;
  }
  .chart-container {
    margin: 0 4px;
  }
  .connection-list {
    padding: 0 17px;
  }
  .connection-note,
  .secure-note {
    padding-left: 17px;
    padding-right: 17px;
  }
  .panel-bottom-note {
    padding-left: 17px;
    padding-right: 17px;
  }
  .text-link {
    font-size: 12px;
  }
  .table-secondary {
    min-width: 200px;
  }
  .site-footer {
    display: block;
    padding-left: 17px;
    padding-right: 17px;
  }
  .site-footer span {
    display: block;
    margin-top: 5px;
  }
  .filter-form {
    padding: 18px 17px;
  }
  .filter-form > div {
    min-width: 100%;
    width: 100%;
  }
  .filter-form select {
    min-width: 0;
  }
  .pagination {
    padding: 16px 17px;
  }
  .auth-card {
    margin: 14px auto;
    padding: 27px 24px;
  }
  .empty-state {
    padding: 30px 22px;
  }
  .empty-state p {
    font-size: 12px;
  }
}

/* Check page: columns stay inside the panel, so a single day is not stretched across the chart. */
.day-chart {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  height: 200px;
  margin: 12px 24px 8px;
}
.day-chart-scale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}
.day-chart-plot {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-width: 0;
  height: 100%;
  border-bottom: 1px solid var(--line);
}
.day-column {
  position: relative;
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-width: 0;
}
.day-fill {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(100%, 28px);
  transform: translateX(-50%);
  background: var(--accent);
  border-radius: 4px 4px 0 0;
}
.check-zero-mark {
  height: 3px;
  background: var(--muted);
}
.day-error {
  position: absolute;
  right: 2px;
  bottom: 0;
  width: 4px;
  height: 8px;
  background: #f04438;
  border-radius: 2px;
}
.check-days {
  margin: 12px 24px 20px;
}
.check-days summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  margin-bottom: 25px;
}
.guide-grid p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #343a41;
}
.guide-grid .text-link {
  display: inline-block;
  margin-top: 14px;
}
.breakdown-list {
  display: grid;
  gap: 14px;
  margin: 4px 24px 20px;
}
.breakdown-row {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.breakdown-label,
.breakdown-count {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.breakdown-track {
  display: block;
  height: 10px;
  background: #edf1f5;
  border-radius: 999px;
  overflow: hidden;
}
.breakdown-fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}
.breakdown-caption {
  caption-side: top;
  padding: 0 0 10px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #66727f;
}

/* These follow the base rules above. Equal-specificity media queries only win when they come later. */
@media (max-width: 1100px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 800px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }
  .page-heading {
    flex-direction: column;
    align-items: stretch;
  }
  .page-heading .button {
    align-self: flex-start;
  }
  .page-heading h1 {
    max-width: 100%;
  }
  .site-header,
  .header-inner,
  .main-container,
  .main-nav {
    min-width: 0;
    max-width: 100%;
  }
}
.phone-body {
  overflow-x: hidden;
}
.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 8px 16px;
  background: white;
  border-bottom: 1px solid var(--line);
}
.phone-logo {
  display: block;
  width: 168px;
  height: auto;
}
.phone-bar a,
.phone-bar button {
  border: 0;
  background: none;
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  min-height: 44px;
  padding: 8px 0;
}
.phone-main {
  max-width: 40rem;
  margin: 0 auto;
  padding: 20px 16px 32px;
}
.phone-screen {
  max-width: 40rem;
}
.phone-headline {
  font-size: 34px;
  letter-spacing: -1px;
  margin: 0 0 8px;
}
.phone-updated {
  margin: 0 0 18px;
  color: #66727f;
}
.phone-attention {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.phone-card {
  display: grid;
  gap: 6px;
  padding: 16px 16px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: inherit;
  min-height: 44px;
  min-width: 0;
  max-width: 100%;
}
.phone-card > * {
  min-width: 0;
  max-width: 100%;
}
.phone-card:hover {
  text-decoration: none;
  border-color: #d5c4ff;
}
.phone-card-top,
.phone-list a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-card-top {
  justify-content: space-between;
}
.phone-card-top time,
.phone-step,
.phone-list-name {
  overflow-wrap: anywhere;
}
.phone-card strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.3px;
  overflow-wrap: anywhere;
}
.phone-metric {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.phone-step {
  color: #465262;
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .breakdown-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .breakdown-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}
