/* OBJOLI · customer surface · RC6 · RC_FREEZE allow-list */
:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #6e6e6e;
  --line: #181818;
  --blue: #0066ff;
  --max: 400px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: 15px;
  --heading: 36px;
  --track: 0.36em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  font-size: var(--body);
  line-height: 1.75;
  animation: arrive 0.4s ease both;
}

@keyframes arrive {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 28px 72px;
}

.brand {
  margin-bottom: 64px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: block;
  opacity: 0.92;
}

.brand-name {
  display: none;
}

.ambient-mark {
  margin-bottom: 48px;
}

.blue-point-wrap {
  position: relative;
  width: 48px;
  height: 48px;
}

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

.blue-point {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--blue);
}

.blue-point-wrap[data-state="idle"] .blue-point {
  animation: breathe 3.5s ease-in-out infinite;
}

.blue-point-wrap[data-state="processing"] .blue-point {
  opacity: 0;
}

.blue-point-wrap[data-state="processing"]::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  opacity: 0.35;
  animation: spin 2s linear infinite;
}

.blue-point-wrap[data-state="confirm"] .blue-point {
  animation: none;
  opacity: 1;
}

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

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

h1 {
  font-size: var(--heading);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 20px;
}

.prose {
  margin: 0 0 64px;
}

.prose p {
  margin: 0 0 28px;
  color: var(--text);
  font-weight: 300;
}

.prose p:last-child {
  margin-bottom: 0;
}

.outcome-prose p + p {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.body {
  font-size: var(--body);
  font-weight: 300;
  margin: 0 0 24px;
}

.body-muted {
  font-size: var(--body);
  font-weight: 300;
  margin: 0 0 28px;
  color: var(--muted);
}

.progress-line {
  height: 1px;
  background: var(--line);
  margin: 0 0 64px;
  position: relative;
}

.progress-line span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--blue);
  transition: width 0.5s ease;
}

.step-focus {
  margin-bottom: 12px;
}

.step-next {
  color: var(--muted);
  margin: 0 0 64px;
}

.empty-body {
  margin: 8px 0 64px;
}

.closing {
  margin-top: 48px;
  color: var(--muted);
}

.actions {
  margin-top: 64px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 28px;
  font-family: var(--font);
  font-size: var(--body);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: var(--text);
  color: var(--bg);
  transition: opacity 0.25s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.link-quiet {
  display: block;
  margin-top: 28px;
  font-size: var(--body);
  color: var(--muted);
  text-decoration: none;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 300;
  width: 100%;
}

.link-quiet:hover {
  color: var(--text);
}

.step-panel {
  margin-bottom: 32px;
}

.step-prose p {
  margin: 0 0 20px;
}

.field {
  display: block;
  margin-bottom: 24px;
}

.field span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: var(--body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
}

.field input:focus {
  outline: 1px solid var(--blue);
  border-color: var(--blue);
}

.checklist-wrap .body-muted {
  margin-bottom: 16px;
}

.checklist label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.5;
  cursor: pointer;
}

.checklist input {
  margin-top: 4px;
  accent-color: var(--blue);
}

.actions-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-quiet {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-quiet:hover {
  opacity: 1;
  border-color: var(--muted);
}
