:root {
  color-scheme: light;
  --ink: #17242f;
  --muted: #667078;
  --paper: #f6f1e8;
  --paper-deep: #e9dfcf;
  --white: #fffdf9;
  --navy: #183a4a;
  --navy-bright: #255b70;
  --coral: #ed765f;
  --coral-dark: #c94f3f;
  --sage: #dce7dd;
  --sage-ink: #36543c;
  --line: rgba(23, 36, 47, 0.14);
  --shadow: 0 20px 60px rgba(43, 43, 35, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

/* Author display rules can otherwise override the browser's hidden state. */
[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(237, 118, 95, 0.11), transparent 27rem),
    radial-gradient(circle at 88% 22%, rgba(37, 91, 112, 0.1), transparent 30rem),
    var(--paper);
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 91, 112, 0.28);
  outline-offset: 3px;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
}

.wordmark-mark::before,
.wordmark-mark::after,
.wordmark-mark span {
  content: "";
  display: block;
  width: 3px;
  border-radius: 999px;
  background: var(--white);
}

.wordmark-mark {
  grid-template-columns: repeat(3, 3px);
  gap: 3px;
}

.wordmark-mark::before {
  height: 8px;
}

.wordmark-mark span {
  height: 16px;
}

.wordmark-mark::after {
  height: 11px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.prototype-pill,
.eyebrow,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prototype-pill {
  padding: 8px 12px;
  color: var(--sage-ink);
  background: var(--sage);
}

.header-link {
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

#app {
  min-height: calc(100vh - 170px);
}

.hero,
.page-shell,
.collector-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: clamp(76px, 10vw, 140px) 0 100px;
}

.eyebrow {
  color: var(--coral-dark);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--coral-dark);
  font-weight: 500;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

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

.actions-center {
  justify-content: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.button-primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(24, 58, 74, 0.18);
}

.button-primary:hover:not(:disabled) {
  background: var(--navy-bright);
  box-shadow: 0 14px 30px rgba(24, 58, 74, 0.22);
}

.button-coral {
  color: white;
  background: var(--coral-dark);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.66);
}

.button-quiet {
  min-height: 42px;
  padding: 0 13px;
  color: var(--muted);
  background: transparent;
}

.button-danger {
  color: #8b3028;
  background: #f9ddd7;
}

.hero-proof {
  display: grid;
  gap: 15px;
  padding: 32px;
  border: 1px solid rgba(23, 36, 47, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.proof-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.status-chip {
  padding: 7px 10px;
  color: var(--sage-ink);
  background: var(--sage);
}

.status-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4b8a59;
}

.proof-link {
  overflow: hidden;
  padding: 13px 15px;
  border: 1px dashed rgba(23, 36, 47, 0.24);
  border-radius: var(--radius-sm);
  color: var(--navy-bright);
  background: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-steps {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.proof-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-steps b {
  display: grid;
  flex: 0 0 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-size: 0.75rem;
}

.promise-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.42);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.promise {
  padding: 34px clamp(20px, 4vw, 50px);
  border-right: 1px solid var(--line);
}

.promise:first-child {
  padding-left: 0;
}

.promise:last-child {
  border-right: 0;
}

.promise strong {
  display: block;
  margin-bottom: 7px;
}

.promise span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-shell {
  padding: 54px 0 96px;
}

.page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.page-heading h1 {
  margin: 8px 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

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

.prototype-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 15px 18px;
  border: 1px solid #e5c88e;
  border-radius: var(--radius-sm);
  color: #68522a;
  background: #fff1cb;
  font-size: 0.9rem;
  line-height: 1.5;
}

.prototype-banner::before {
  content: "i";
  display: grid;
  flex: 0 0 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #a98238;
  font-family: Georgia, serif;
  font-weight: 700;
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 30px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 12px 40px rgba(43, 43, 35, 0.07);
}

.form-panel {
  padding: clamp(24px, 4vw, 42px);
}

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

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 19px;
}

.section-title-row h2,
.form-section > h2 {
  margin: 0 0 18px;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.section-title-row h2 {
  margin: 0;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.field:last-child {
  margin-bottom: 0;
}

.field-label {
  font-size: 0.88rem;
  font-weight: 730;
}

.field-hint {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 36, 47, 0.18);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input {
  min-height: 49px;
  padding: 0 14px;
}

textarea {
  min-height: 110px;
  padding: 13px 14px;
  resize: vertical;
  line-height: 1.55;
}

input:focus,
textarea:focus {
  border-color: var(--navy-bright);
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 91, 112, 0.09);
}

.slug-field {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(23, 36, 47, 0.18);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.slug-field:focus-within {
  border-color: var(--navy-bright);
  box-shadow: 0 0 0 4px rgba(37, 91, 112, 0.09);
}

.slug-prefix {
  padding-left: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.slug-field input {
  min-width: 120px;
  border: 0;
  box-shadow: none;
}

.question-list {
  display: grid;
  gap: 12px;
}

.question-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 11px;
}

.question-number {
  display: grid;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #8b3028;
  background: #f9ddd7;
  font-size: 1.2rem;
}

.toggle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.toggle-copy strong,
.toggle-copy span {
  display: block;
}

.toggle-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.switch {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 28px;
}

.switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #bdc1c1;
  transition: background 160ms ease;
}

.switch-track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease;
}

.switch input:checked + .switch-track {
  background: var(--navy-bright);
}

.switch input:checked + .switch-track::after {
  transform: translateX(20px);
}

.switch input:focus-visible + .switch-track {
  outline: 3px solid rgba(37, 91, 112, 0.28);
  outline-offset: 3px;
}

.dropbox-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid #b7c6ee;
  border-radius: var(--radius-md);
  background: #edf3ff;
}

.dropbox-copy {
  display: flex;
  align-items: center;
  gap: 13px;
}

.dropbox-logo {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  gap: 2px;
  transform: rotate(45deg);
}

.dropbox-logo span {
  width: 10px;
  height: 10px;
  background: #0061ff;
}

.dropbox-copy strong,
.dropbox-copy small {
  display: block;
}

.dropbox-copy small {
  margin-top: 4px;
  color: #51617b;
}

.builder-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 34px;
}

.preview-panel {
  position: sticky;
  top: 28px;
  overflow: hidden;
}

.preview-label {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-body {
  min-height: 500px;
  padding: 46px 32px;
  background:
    radial-gradient(circle at 80% 15%, rgba(237, 118, 95, 0.16), transparent 13rem),
    var(--white);
}

.preview-question-count {
  color: var(--coral-dark);
  font-size: 0.8rem;
  font-weight: 750;
}

.preview-body h2 {
  margin: 15px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.preview-body p {
  color: var(--muted);
  line-height: 1.6;
}

.preview-url {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.collector-shell {
  display: grid;
  min-height: calc(100vh - 170px);
  place-items: center;
  padding: 50px 0 84px;
}

.collector-card {
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.collector-progress {
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  border: 0;
  appearance: none;
  background: var(--paper-deep);
}

.collector-progress::-webkit-progress-bar {
  background: var(--paper-deep);
}

.collector-progress::-webkit-progress-value {
  background: var(--coral);
  transition: width 300ms ease;
}

.collector-progress::-moz-progress-bar {
  background: var(--coral);
}

.collector-content {
  padding: clamp(30px, 6vw, 64px);
}

.collector-kicker {
  margin-bottom: 18px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collector-content h1,
.collector-content h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 1.05;
}

.collector-content h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
}

.collector-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.collector-lead {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.privacy-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.8rem;
}

.privacy-line::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--sage-ink);
  border-radius: 50%;
}

.camera-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 24px 0 18px;
  border-radius: var(--radius-md);
  background: #10171c;
}

.camera-stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.camera-stage video.playback {
  object-fit: contain;
  transform: none;
}

.camera-placeholder,
.orientation-blocker {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  color: #d9e0e3;
  text-align: center;
}

.camera-placeholder-inner {
  max-width: 400px;
}

.camera-icon {
  display: grid;
  width: 66px;
  height: 48px;
  place-items: center;
  margin: 0 auto 16px;
  border: 3px solid #d9e0e3;
  border-radius: 12px;
}

.camera-icon::before {
  content: "";
  width: 19px;
  height: 19px;
  border: 3px solid #d9e0e3;
  border-radius: 50%;
}

.orientation-blocker {
  z-index: 3;
  background: rgba(16, 23, 28, 0.94);
}

.orientation-phone {
  width: 70px;
  height: 112px;
  margin: 0 auto 20px;
  border: 4px solid white;
  border-radius: 13px;
  animation: turn-phone 1.8s ease-in-out infinite;
}

@keyframes turn-phone {
  0%, 25% { transform: rotate(0); }
  60%, 100% { transform: rotate(90deg); }
}

.recording-hud {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(12, 15, 18, 0.78);
  font-variant-numeric: tabular-nums;
  font-size: 0.84rem;
  font-weight: 760;
}

.recording-hud::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5648;
  animation: pulse 1s ease-in-out infinite;
}

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

.recorder-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.recorder-note,
.error-box,
.success-box {
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  line-height: 1.5;
}

.recorder-note {
  color: var(--muted);
  background: var(--paper);
}

.error-box {
  color: #7f2d25;
  background: #f9ddd7;
}

.success-box {
  color: var(--sage-ink);
  background: var(--sage);
}

.download-list {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.download-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy-bright);
  background: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.empty-state {
  width: min(680px, 100%);
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.empty-state h1 {
  margin-bottom: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
}

.empty-state p {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.footer-note {
  text-align: right;
}

.notice-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(17, 27, 34, 0.3);
}

.notice-dialog::backdrop {
  background: rgba(20, 27, 31, 0.5);
  backdrop-filter: blur(5px);
}

#dialog-content {
  padding: 42px;
}

#dialog-content h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

#dialog-content p {
  color: var(--muted);
  line-height: 1.6;
}

.dialog-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--muted);
  background: var(--paper);
  font-size: 1.35rem;
}

@media (max-width: 860px) {
  .hero,
  .builder-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-proof {
    transform: none;
  }

  .preview-panel {
    position: static;
  }

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

  .promise,
  .promise:first-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .page-shell,
  .collector-shell,
  .site-footer,
  .promise-grid {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 66px;
  }

  .prototype-pill,
  .header-link {
    display: none;
  }

  .hero {
    gap: 44px;
    padding: 54px 0 70px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .page-shell {
    padding-top: 36px;
  }

  .page-heading {
    display: block;
  }

  .form-panel,
  .collector-content {
    padding: 25px;
  }

  .dropbox-card,
  .toggle-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .builder-actions,
  .recorder-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .builder-actions .button,
  .recorder-actions .button {
    width: 100%;
  }

  .question-row {
    grid-template-columns: 29px 1fr auto;
    gap: 7px;
  }

  .question-number {
    height: 29px;
  }

  .slug-prefix {
    display: none;
  }

  .camera-stage {
    margin-right: -13px;
    margin-left: -13px;
    border-radius: 13px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 25px 0;
  }

  .footer-note {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
