@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #0b0f0e;
  --muted: rgba(11, 15, 14, 0.62);
  --line: rgba(11, 15, 14, 0.12);
  --cream: #F8F3EA;
  --warm: #FFFDF7;
  --green: #253B2F;
  --success: #138a4d;
  --danger: #9c342e;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-family: var(--font);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(135deg, #fffaf2 0%, #f1eadf 100%);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.terminal-root {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 28px 12px;
}

.phone-frame {
  width: min(420px, calc(100vw - 24px));
  height: min(850px, calc(100vh - 32px));
  min-height: 720px;
  padding: 10px;
  border-radius: 46px;
  background: #07100d;
  box-shadow:
    0 30px 90px rgba(11, 15, 14, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(0, 0, 0, 0.38);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 36px;
  background: var(--cream);
  scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.app-header,
.brand-lockup,
.terminal-chip,
.result-topline,
.action-row,
.activity-head,
.manual-entry div,
.manager-reset div,
.connection-banner {
  display: flex;
  align-items: center;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 9;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 14px;
  background: rgba(248, 243, 234, 0.96);
  border-bottom: 1px solid rgba(11, 15, 14, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.terminal-tabs {
  position: sticky;
  top: 61px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 18px 12px;
  background: rgba(248, 243, 234, 0.96);
  border-bottom: 1px solid rgba(11, 15, 14, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.terminal-tab {
  min-height: 38px;
  border: 0;
  border-bottom: 2px solid rgba(11, 15, 14, 0.12);
  border-radius: 0;
  background: transparent;
  color: rgba(11, 15, 14, 0.46);
  font-size: 13px;
  font-weight: 850;
}

.terminal-tab.active {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.terminal-view {
  display: none;
}

.terminal-view.active {
  display: block;
}

.brand-lockup {
  gap: 9px;
}

.brand-lockup img {
  width: 36px;
  height: 22px;
  object-fit: contain;
}

.brand-lockup span {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.terminal-chip {
  gap: 7px;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c76f;
}

.terminal-hero {
  padding: 22px 22px 12px;
}

.activity-page-head {
  padding: 24px 22px 16px;
}

.eyebrow {
  margin: 0;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terminal-hero h1,
.result-card h2,
.tap-link-card h1 {
  letter-spacing: -0.03em;
}

.terminal-hero h1,
.activity-page-head h1 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 900;
  line-height: 0.98;
}

.terminal-hero p:last-child,
.activity-page-head p:last-child,
.tap-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}

.setup-card,
.result-card,
.activity-card,
.staff-panel,
.manual-entry,
.manager-reset,
.metrics-grid {
  margin: 0 18px 14px;
}

.setup-card,
.result-card,
.activity-card,
.staff-panel {
  border-top: 1px solid var(--line);
  background: transparent;
}

.setup-card {
  display: grid;
  gap: 12px;
  padding: 16px 0 0;
}

.setup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

label {
  display: grid;
  gap: 7px;
}

label span,
.manual-entry label {
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

select,
input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(11, 15, 14, 0.14);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--ink);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 650;
  outline: none;
}

select:focus,
input:focus {
  border-color: rgba(11, 15, 14, 0.44);
  box-shadow: 0 0 0 3px rgba(11, 15, 14, 0.06);
}

.hidden {
  display: none !important;
}

.scan-area {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  margin: 4px 18px 16px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, #18231f 0%, #050707 100%);
}

.scan-area.success {
  background: linear-gradient(145deg, #153f2a 0%, #050707 100%);
}

.scan-area.warning {
  background: linear-gradient(145deg, #3c1914 0%, #050707 100%);
}

.scan-rings,
.scan-rings::before,
.scan-rings::after {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 253, 247, 0.13);
  border-radius: 999px;
}

.scan-rings::before,
.scan-rings::after {
  content: "";
  inset: 30px;
  width: auto;
  height: auto;
}

.scan-rings::after {
  inset: 62px;
}

.scan-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(270px, 82%);
  padding: 26px 20px;
  color: #fffdf7;
  text-align: center;
}

.scan-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 253, 247, 0.5);
  border-radius: 16px;
  color: #fffdf7;
  font-size: 13px;
  font-weight: 900;
}

.scan-card strong {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.scan-card small {
  color: rgba(255, 253, 247, 0.78);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.result-card {
  padding: 16px 0 0;
}

.result-topline {
  justify-content: space-between;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill.success {
  color: var(--success);
}

.status-pill.warning {
  color: var(--danger);
}

.student-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ink);
  color: #fffdf7;
  font-size: 14px;
  font-weight: 900;
}

.result-card h2 {
  margin: 10px 0 5px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.05;
}

.result-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.42;
}

.student-details {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.student-details span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.student-details strong {
  color: var(--ink);
  text-align: right;
  font-weight: 850;
}

.action-row {
  gap: 10px;
  margin: 0 18px 16px;
}

.primary-button,
.secondary-button,
.manual-entry button,
.test-card-row button,
.activity-head button,
.tap-link-card a {
  min-height: 44px;
  border-radius: 10px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.primary-button,
.manual-entry button,
.tap-link-card a {
  background: var(--ink);
  color: #fffdf7;
}

.secondary-button,
.test-card-row button,
.activity-head button {
  background: transparent;
  color: var(--ink);
}

.action-row > * {
  flex: 1;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-grid div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px 6px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.metrics-grid div:last-child {
  border-right: 0;
}

.metrics-grid span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  white-space: nowrap;
}

.metrics-grid strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  text-overflow: ellipsis;
}

.manual-entry {
  display: grid;
  gap: 7px;
}

.manual-entry div,
.manager-reset div {
  gap: 8px;
}

.manual-entry input,
.manager-reset input {
  min-width: 0;
}

.manual-entry button,
.manager-reset button {
  flex: 0 0 auto;
}

.manager-reset {
  display: grid;
  gap: 8px;
  padding: 12px 0 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manager-reset label,
.activity-search span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manager-reset button {
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: #fffdf7;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 850;
}

.connection-banner {
  justify-content: space-between;
  gap: 10px;
  margin: 0 18px 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.connection-banner strong {
  color: var(--danger);
  font-size: 12px;
  font-weight: 900;
}

.connection-banner span {
  flex: 1;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.25;
}

.connection-banner button {
  min-height: 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 850;
}

.activity-card,
.staff-panel {
  padding: 16px 0 0;
}

.activity-head {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.activity-head strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.activity-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.activity-head button {
  min-height: 30px;
  padding: 0 10px;
}

.activity-search {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.activity-list {
  display: grid;
  gap: 0;
  max-height: none;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.activity-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.activity-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--danger);
}

.activity-item.success::before {
  background: var(--success);
}

.activity-item div,
.activity-item span {
  padding-left: 14px;
}

.activity-item strong {
  color: var(--ink);
  font-size: 12px;
}

.activity-item small,
.activity-item em {
  color: rgba(11, 15, 14, 0.44);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.activity-item span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.32;
}

.session-card,
.offer-panel,
.today-strip,
.summary-card {
  margin: 0 18px 14px;
}

.session-card {
  padding: 16px 0 0;
}

.session-summary,
.offer-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.session-summary strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.session-summary span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.quiet-button {
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.session-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.session-form button {
  grid-column: 1 / -1;
}

.terminal-hero {
  padding-top: 14px;
}

.offer-panel {
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
}

.offer-panel h2 {
  margin: 9px 0 6px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.offer-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.42;
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.offer-meta span {
  padding: 5px 8px;
  border: 1px solid rgba(11, 15, 14, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.42);
  color: var(--ink);
  font-size: 10px;
  font-weight: 850;
}

.offer-panel .setup-card {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.offer-panel .setup-card:not(.hidden) {
  display: grid;
  gap: 10px;
}

.scan-area {
  min-height: 230px;
  border-radius: 14px;
}

.scan-card strong {
  font-size: 28px;
  text-transform: uppercase;
}

.result-card.success .student-avatar {
  background: var(--success);
}

.result-card.warning .student-avatar {
  background: var(--danger);
}

.today-strip {
  display: grid;
  grid-template-columns: 0.85fr 0.85fr 1.3fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.today-strip div {
  display: grid;
  gap: 2px;
  padding: 10px 6px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.today-strip div:last-child {
  border-right: 0;
}

.today-strip strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.today-strip span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.summary-card {
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.summary-card h2 {
  margin: 7px 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.summary-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.summary-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.summary-list strong {
  color: var(--ink);
  text-align: right;
  font-weight: 900;
}

.tap-link-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 20px;
}

.tap-link-card {
  width: min(440px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.9);
}

.tap-link-card img {
  width: 68px;
  height: 42px;
  object-fit: contain;
}

.tap-link-card h1 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.tap-link-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
}

.terminal-login-shell {
  display: grid;
  flex: 1;
  grid-template-rows: auto 1fr auto;
  min-height: calc(100% - 64px);
  padding: 74px 22px 34px;
}

.login-phone-screen {
  display: flex;
  flex-direction: column;
}

.login-phone-screen .app-header {
  border-bottom: 0;
}

.terminal-login-shell h1 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
}

.terminal-login-shell h1 span {
  display: block;
}

.login-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.login-form {
  align-self: center;
  display: grid;
  width: 100%;
  gap: 15px;
  margin-top: 46px;
}

.login-form button {
  margin-top: 2px;
}

.login-error {
  display: none;
  margin: 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 800;
}

.login-error.visible {
  display: block;
}

.login-footnote {
  margin: 34px 0 0;
  color: rgba(11, 15, 14, 0.46);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

/* Minimal operator polish: fewer hard rules, clearer hierarchy, no extra bubbles. */
.phone-screen {
  background:
    radial-gradient(circle at 50% 0%, rgba(171, 167, 132, 0.22), transparent 34%),
    linear-gradient(180deg, #fbf6ee 0%, #f6efe5 100%);
}

.app-header {
  padding: 20px 20px 10px;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(251, 246, 238, 0.98), rgba(251, 246, 238, 0.88));
}

.terminal-tabs {
  top: 56px;
  gap: 18px;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  padding: 4px 20px 18px;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(251, 246, 238, 0.9), rgba(251, 246, 238, 0.72));
}

.terminal-tab {
  position: relative;
  min-height: 26px;
  border: 0;
  color: rgba(11, 15, 14, 0.44);
  font-size: 12px;
}

.terminal-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: width 160ms ease;
}

.terminal-tab.active::after {
  width: 18px;
}

.connection-banner,
.session-card,
.offer-panel,
.result-card,
.activity-card,
.staff-panel,
.manual-entry,
.manager-reset,
.summary-card,
.today-strip,
.metrics-grid {
  border: 0;
}

.session-card {
  margin-bottom: 18px;
  padding-top: 4px;
}

.session-summary strong {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.offer-panel {
  padding: 0;
}

.offer-topline {
  align-items: center;
}

.offer-panel h2 {
  max-width: 310px;
  margin-top: 11px;
  font-size: 24px;
  line-height: 1.02;
}

.offer-panel p:not(.eyebrow) {
  max-width: 310px;
  font-size: 13px;
}

.offer-meta {
  gap: 12px;
}

.offer-meta span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(11, 15, 14, 0.58);
  font-size: 10px;
}

.setup-card,
.offer-panel .setup-card {
  margin-top: 16px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(11, 15, 14, 0.055);
}

select,
input {
  border: 0;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: inset 0 0 0 1px rgba(11, 15, 14, 0.08);
}

select:focus,
input:focus {
  border-color: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(11, 15, 14, 0.28),
    0 8px 22px rgba(11, 15, 14, 0.06);
}

.scan-area {
  min-height: 238px;
  margin-top: 8px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 30%, rgba(171, 167, 132, 0.18), transparent 38%),
    linear-gradient(145deg, #111a16 0%, #030505 100%);
  box-shadow: 0 18px 42px rgba(11, 15, 14, 0.12);
}

.scan-area.success {
  background:
    radial-gradient(circle at 50% 30%, rgba(19, 138, 77, 0.28), transparent 38%),
    linear-gradient(145deg, #123623 0%, #030505 100%);
}

.scan-area.warning {
  background:
    radial-gradient(circle at 50% 30%, rgba(156, 52, 46, 0.28), transparent 38%),
    linear-gradient(145deg, #361612 0%, #030505 100%);
}

.scan-rings,
.scan-rings::before,
.scan-rings::after {
  border-color: rgba(255, 253, 247, 0.08);
}

.scan-card span {
  width: auto;
  height: auto;
  border: 0;
  color: rgba(255, 253, 247, 0.56);
  letter-spacing: 0.18em;
}

.scan-card strong {
  font-size: 26px;
  text-transform: none;
}

.result-card {
  margin-top: 2px;
  padding-top: 4px;
}

.student-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
}

.student-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}

.student-details span {
  display: grid;
  gap: 2px;
  justify-content: start;
}

.student-details strong {
  text-align: left;
}

.today-strip,
.metrics-grid {
  gap: 12px;
  border: 0;
}

.today-strip div,
.metrics-grid div {
  padding: 0;
  border: 0;
  text-align: left;
}

.today-strip strong,
.metrics-grid strong {
  font-size: 20px;
}

.action-row {
  margin-top: 18px;
}

.primary-button,
.secondary-button,
.manual-entry button,
.test-card-row button,
.activity-head button,
.manager-reset button,
.tap-link-card a {
  border-radius: 9px;
  border: 0;
}

.secondary-button,
.test-card-row button,
.activity-head button {
  background: rgba(11, 15, 14, 0.07);
}

.manual-entry,
.manager-reset {
  padding: 0;
}

.manager-reset {
  margin-top: 6px;
}

.connection-banner {
  align-items: flex-start;
  padding: 0;
}

.connection-banner button {
  border: 0;
  border-radius: 8px;
  background: rgba(11, 15, 14, 0.08);
}

.activity-page-head {
  padding-bottom: 20px;
}

.activity-page-head h1 {
  font-size: 34px;
}

.summary-card {
  padding-top: 4px;
}

.summary-list {
  gap: 8px;
  border-top: 0;
}

.summary-list span {
  padding: 0;
  border-bottom: 0;
}

.activity-card {
  padding-top: 6px;
}

.activity-list {
  gap: 12px;
  border-top: 0;
}

.activity-item {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0 0 0 14px;
  border-bottom: 0;
}

.activity-item::before {
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
}

.activity-item div,
.activity-item span {
  padding-left: 0;
}

@media (max-width: 480px) {
  .terminal-root {
    padding: 0;
  }

  .phone-frame {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    padding: 0;
    border-radius: 0;
  }

  .phone-screen {
    border-radius: 0;
  }

  .session-form {
    grid-template-columns: 1fr;
  }
}
