:root {
  --paper: #f5f3ec;
  --white: #fffef9;
  --ink: #263c32;
  --muted: #7a8379;
  --line: #dedfd4;
  --green: #315c45;
  --mint: #c4d4aa;
  --lime: #d7ed9e;
  --gold: #c19a50;
  --danger: #af594b;
  --shadow: 0 12px 45px #263c3208;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
  opacity: 0.4;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #97b56b;
  outline-offset: 4px;
}
button {
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s var(--ease),
    box-shadow 0.2s;
}
button:active:not(:disabled) {
  transform: scale(0.97);
}
button:disabled {
  transform: none;
}
a {
  color: inherit;
}
h1,
h2,
p {
  margin: 0;
}
.hidden {
  display: none !important;
}
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.eyebrow {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-copy {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.brand-copy small {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  margin-top: 3px;
}
.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 3px;
  transform: rotate(-8deg);
}
.brand-mark i {
  background: var(--green);
  border-radius: 2px;
}
.brand-mark i:nth-child(2) {
  background: #b4c792;
}
.brand-mark i:last-child {
  background: transparent;
  border: 1px solid var(--green);
}
.pill {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 13px;
  font-size: 11px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: #b67e60;
  border-radius: 50%;
}
.status-dot.on {
  background: #6c9453;
  box-shadow: 0 0 0 4px #6c945312;
}
.primary {
  border: 0;
  background: var(--green);
  color: var(--white);
  font-weight: 550;
  border-radius: 12px;
  min-height: 54px;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-shadow: 0 4px 0 #203f3012;
}
.primary:hover {
  background: #264a37;
  box-shadow: 0 5px 18px #315c4520;
}
.primary .arrow {
  font-size: 21px;
  font-weight: 400;
}
.muted {
  color: var(--muted);
}
.chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blank {
  display: grid;
  place-items: center;
  background: #eaece2;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 550;
  flex: 0 1 34px;
  height: 39px;
  min-width: 0;
}
.blank:empty:after {
  content: "";
  height: 1px;
  width: 9px;
  background: #a8b29d;
}
.blank.set,
.blank.hint {
  background: #dde8ce;
  color: var(--green);
}
.blank.hint {
  border-color: #b0c793;
}
.blank.fresh {
  animation: tileIn 0.45s var(--ease);
}
.dot2 {
  display: grid;
  place-items: center;
  background: var(--pc);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.off {
  opacity: 0.45;
}
.host,
.hostTag {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.blank,
.dot2 {
  transition:
    background 0.3s,
    transform 0.3s;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow);
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tileIn {
  from {
    opacity: 0;
    transform: translateY(-12px) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes breathe {
  50% {
    opacity: 0.35;
  }
}
@keyframes shake {
  25%,
  75% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
}
.shake {
  animation: shake 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
