/* Tide Search — word hunt (day light default + optional night ops) */

/* Day light (default) — sand / tide, calmer like Tide Sudoku */
:root,
html.day-tide {
  --navy: #f3efe8;
  --navy-2: #faf8f5;
  --charcoal: #ffffff;
  --panel: #ffffff;
  --panel-2: #f0faf8;
  --border: rgba(15, 51, 47, 0.12);
  --border-strong: rgba(31, 122, 111, 0.35);
  --text: #0f332f;
  --muted: rgba(15, 51, 47, 0.55);
  --teal: #1f7a6f;
  --aqua: #1a6158;
  --aqua-dim: #2a9d8f;
  --strike: #1f7a6f;
  --found: #1a6158;
  --danger: #b4534a;
  --gold: #b8860b;
  --font: Inter, system-ui, -apple-system, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --shadow: 0 18px 50px -28px rgba(15, 51, 47, 0.28);
  --radius: 1rem;
  --bg-top: #faf8f5;
  --bg-mid: #f0faf8;
  --bg-bot: #e8f0ec;
  --board-frame: #e8e0d4;
  --cell-bg: #ffffff;
  --cell-hover: #f0faf8;
  --trail-bg: rgba(42, 157, 143, 0.2);
  --found-bg: rgba(26, 97, 88, 0.14);
  --badge-bg: rgba(255, 255, 255, 0.9);
  --topbar-bg: rgba(250, 248, 245, 0.92);
  --switch-off: #d5ebe4;
  --btn-primary-from: #2a9d8f;
  --btn-primary-to: #1a6158;
  --btn-primary-text: #fff;
  --intel-bg: linear-gradient(165deg, #ffffff, #f0faf8);
  --modal-bg: linear-gradient(165deg, #ffffff, #f3efe8);
  --splash-bg: #faf8f5;
}

/* Night ops — darker tactical look */
html.night-ops {
  --navy: #070d14;
  --navy-2: #0c1520;
  --charcoal: #121c28;
  --panel: #152232;
  --panel-2: #1a2b3d;
  --border: rgba(100, 200, 210, 0.18);
  --border-strong: rgba(80, 220, 230, 0.35);
  --text: #e8f4f6;
  --muted: rgba(200, 230, 235, 0.55);
  --teal: #1fb8b0;
  --aqua: #3ef0e8;
  --aqua-dim: #2a9d98;
  --strike: #3ef0e8;
  --found: #14c4a8;
  --danger: #ff6b5a;
  --gold: #f0c96a;
  --shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.75);
  --bg-top: #050a10;
  --bg-mid: #0a1420;
  --bg-bot: #0c1824;
  --board-frame: #060c12;
  --cell-bg: #121c28;
  --cell-hover: #1a2838;
  --trail-bg: rgba(62, 240, 232, 0.22);
  --found-bg: rgba(20, 196, 168, 0.22);
  --badge-bg: rgba(0, 0, 0, 0.25);
  --topbar-bg: rgba(7, 13, 20, 0.88);
  --switch-off: #0a121a;
  --btn-primary-from: #24cfc6;
  --btn-primary-to: #1a9e97;
  --btn-primary-text: #041012;
  --intel-bg: linear-gradient(165deg, #1a3044, #101c28);
  --modal-bg: linear-gradient(165deg, #1a2c3e, #0e1722);
  --splash-bg: #050a10;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}

/* Atmospheric background */
.ops-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(42, 157, 143, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 40% at 80% 100%, rgba(168, 224, 212, 0.2), transparent 50%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 45%, var(--bg-bot) 100%);
  overflow: hidden;
}

html.night-ops .ops-bg {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(31, 184, 176, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(20, 60, 90, 0.5), transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 70%, rgba(10, 40, 60, 0.45), transparent 50%),
    linear-gradient(180deg, #050a10 0%, #0a1420 45%, #0c1824 100%);
}

.ops-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(
      105deg,
      transparent,
      transparent 80px,
      rgba(42, 157, 143, 0.03) 80px,
      rgba(42, 157, 143, 0.03) 81px
    );
  animation: current-drift 40s linear infinite;
  opacity: 0.55;
}

html.night-ops .ops-bg::before {
  background:
    repeating-linear-gradient(
      105deg,
      transparent,
      transparent 80px,
      rgba(62, 240, 232, 0.015) 80px,
      rgba(62, 240, 232, 0.015) 81px
    );
  opacity: 0.7;
}

.ops-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(42, 157, 143, 0.06) 40%,
    rgba(26, 97, 88, 0.08)
  );
  animation: storm-pulse 12s ease-in-out infinite alternate;
}

html.night-ops .ops-bg::after {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(31, 184, 176, 0.04) 40%,
    rgba(8, 30, 40, 0.35)
  );
}

@keyframes current-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-6%, 3%, 0);
  }
}

@keyframes storm-pulse {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ops-bg::before,
  .ops-bg::after,
  .cell.pulse,
  .board.cleared,
  .trail-seg {
    animation: none !important;
  }
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--topbar-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.icon-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-btn:hover {
  border-color: var(--border-strong);
  background: var(--panel-2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand img {
  height: 1.75rem;
  width: auto;
  filter: brightness(1.05);
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-dim);
  font-weight: 600;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Layout — side menus on the left */
.main {
  flex: 1;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding: 1rem 0.85rem 2rem;
  display: grid;
  gap: 1rem;
}

.side-left { order: 1; }
.play-panel { order: 2; }
.side-right { order: 3; }

@media (min-width: 1100px) {
  .main {
    grid-template-columns: 15.5rem minmax(0, 1fr) 17rem;
    gap: 1.1rem;
    padding: 1.25rem 1.25rem 2.5rem;
    align-items: start;
  }

  .side-left,
  .side-right {
    position: sticky;
    top: 4.25rem;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    align-self: start;
  }
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

html.night-ops .panel {
  background: linear-gradient(165deg, rgba(26, 43, 61, 0.95), rgba(18, 28, 40, 0.98));
}

.play-panel {
  padding: 0.9rem;
}

@media (min-width: 640px) {
  .play-panel {
    padding: 1.15rem 1.25rem 1.35rem;
  }
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.65rem;
  border-radius: 0.35rem;
  border: 1px solid var(--border);
  background: var(--badge-bg);
  color: var(--muted);
  font-family: var(--mono);
}

.badge.hot {
  color: var(--aqua);
  border-color: color-mix(in srgb, var(--aqua) 40%, var(--border));
  background: color-mix(in srgb, var(--aqua-dim) 12%, var(--panel));
}

.badge.warn {
  color: #ffb4a8;
  border-color: rgba(255, 107, 90, 0.35);
}

.tagline {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Board */
.board-shell {
  display: flex;
  justify-content: center;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.board {
  --cell: min(8.2vw, 2.45rem);
  display: grid;
  gap: 2px;
  padding: 6px;
  background: var(--board-frame);
  border: 1px solid var(--border-strong);
  border-radius: 0.65rem;
  box-shadow: var(--shadow);
  position: relative;
}

html.night-ops .board {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(0, 20, 30, 0.6);
}

.board.size-10 {
  --cell: min(8.4vw, 2.65rem);
}
.board.size-12 {
  --cell: min(7.2vw, 2.35rem);
}
.board.size-15 {
  --cell: min(5.9vw, 2.05rem);
}

@media (min-width: 640px) {
  .board.size-10 {
    --cell: 2.75rem;
  }
  .board.size-12 {
    --cell: 2.45rem;
  }
  .board.size-15 {
    --cell: 2.15rem;
  }
}

.board.cleared {
  animation: sector-sweep 0.9s ease forwards;
}

@keyframes sector-sweep {
  0% {
    filter: brightness(1);
    box-shadow: 0 0 0 0 rgba(62, 240, 232, 0.5);
  }
  40% {
    filter: brightness(1.25);
    box-shadow: 0 0 0 12px rgba(62, 240, 232, 0);
  }
  100% {
    filter: brightness(1);
  }
}

.cell {
  width: var(--cell);
  height: var(--cell);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: calc(var(--cell) * 0.42);
  letter-spacing: 0.02em;
  color: var(--text);
  background: var(--cell-bg);
  border-radius: 0.2rem;
  cursor: crosshair;
  position: relative;
  transition: background 0.1s, color 0.1s, box-shadow 0.12s;
}

.cell:hover {
  background: var(--cell-hover);
}

.cell.trail {
  background: var(--trail-bg);
  color: var(--text);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--aqua) 55%, transparent);
  font-weight: 700;
}

.cell.found {
  background: var(--found-bg);
  color: var(--found);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--found) 45%, transparent);
  font-weight: 700;
}

.cell.found.pulse {
  animation: target-lock 0.45s ease;
}

.cell.boost {
  box-shadow: inset 0 0 0 2px var(--aqua);
  background: rgba(62, 240, 232, 0.12);
}

.cell.keyboard-focus {
  outline: 2px solid var(--aqua);
  outline-offset: -2px;
  z-index: 2;
}

@keyframes target-lock {
  0% {
    transform: scale(1);
    box-shadow: inset 0 0 0 1px rgba(20, 196, 168, 0.45), 0 0 0 0 rgba(62, 240, 232, 0.6);
  }
  45% {
    transform: scale(1.08);
    box-shadow: inset 0 0 0 1px rgba(20, 196, 168, 0.8), 0 0 12px 2px rgba(62, 240, 232, 0.35);
  }
  100% {
    transform: scale(1);
  }
}

/* Manifest + tools */
.manifest {
  margin-top: 1rem;
}

.manifest h3 {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-dim);
  font-weight: 700;
}

.word-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.word-chip {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  border-radius: 0.3rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  cursor: default;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}

.word-chip.struck {
  opacity: 0.45;
  text-decoration: line-through;
  text-decoration-color: var(--aqua);
  border-color: rgba(20, 196, 168, 0.35);
  color: var(--found);
  background: rgba(20, 196, 168, 0.08);
}

.tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin-top: 0.9rem;
}

@media (min-width: 480px) {
  .tools {
    grid-template-columns: repeat(4, 1fr);
  }
}

.btn,
.tool-btn,
.mode-btn {
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text);
  border-radius: 0.45rem;
  transition: background 0.12s, border-color 0.12s, transform 0.08s, color 0.12s;
}

.btn:active,
.tool-btn:active,
.mode-btn:active {
  transform: scale(0.98);
}

.tool-btn {
  min-height: 2.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem;
}

.tool-btn i {
  font-size: 0.95rem;
  color: var(--aqua);
}

.tool-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.tool-btn.on {
  border-color: rgba(62, 240, 232, 0.45);
  background: rgba(62, 240, 232, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
}

.btn-primary {
  background: linear-gradient(180deg, var(--btn-primary-from), var(--btn-primary-to));
  border-color: color-mix(in srgb, var(--aqua) 40%, var(--border));
  color: var(--btn-primary-text);
  font-weight: 700;
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(62, 240, 232, 0.06);
  border-color: rgba(62, 240, 232, 0.3);
}

.btn-danger {
  background: rgba(255, 107, 90, 0.12);
  border-color: rgba(255, 107, 90, 0.4);
  color: #ffc8c0;
}

.btn-sm {
  min-height: 2.15rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
}

/* Side panels */
.side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.side .panel {
  padding: 1rem 1.05rem;
}

.side h2 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
}

.side p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.mode-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.mode-btn {
  text-align: left;
  padding: 0.7rem 0.8rem;
}

.mode-btn strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
  letter-spacing: 0.02em;
}

.mode-btn span {
  font-size: 0.74rem;
  color: var(--muted);
}

.mode-btn:hover,
.mode-btn.active {
  border-color: rgba(62, 240, 232, 0.4);
  background: rgba(62, 240, 232, 0.08);
}

.mode-btn.active strong {
  color: var(--aqua);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.stat {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  padding: 0.5rem 0.6rem;
}

.stat b {
  display: block;
  font-family: var(--mono);
  font-size: 1.1rem;
  color: var(--aqua);
  font-variant-numeric: tabular-nums;
}

.stat span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
}

.toggle-row:last-child {
  border-bottom: none;
}

.switch {
  width: 2.45rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--switch-off);
  position: relative;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.switch::after {
  content: "";
  position: absolute;
  top: 0.12rem;
  left: 0.12rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s, background 0.15s;
}

.switch[aria-checked="true"] {
  background: color-mix(in srgb, var(--aqua-dim) 35%, var(--panel));
  border-color: color-mix(in srgb, var(--aqua) 45%, var(--border));
}

.switch[aria-checked="true"]::after {
  transform: translateX(1.05rem);
  background: var(--aqua);
}

html.night-ops .switch::after {
  background: #6a8494;
}

html.night-ops .switch[aria-checked="true"]::after {
  background: var(--aqua);
}

/* Intel toast / card */
.intel-toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 40;
  width: min(calc(100% - 1.5rem), 24rem);
  background: var(--intel-bg);
  border: 1px solid color-mix(in srgb, var(--aqua) 35%, var(--border));
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease;
  pointer-events: none;
}

.intel-toast.show {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.intel-toast .kicker {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.intel-toast h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--display);
}

.intel-toast p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Modal */
.modal-root {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 51, 47, 0.35);
  backdrop-filter: blur(8px);
}

html.night-ops .modal-root {
  background: rgba(2, 6, 10, 0.72);
}

.modal-root.open {
  display: flex;
}

.modal {
  width: min(100%, 26rem);
  background: var(--modal-bg);
  border: 1px solid color-mix(in srgb, var(--aqua) 30%, var(--border));
  border-radius: 1rem;
  padding: 1.4rem 1.25rem 1.2rem;
  box-shadow: var(--shadow);
  max-height: min(90vh, 42rem);
  overflow: auto;
}

.modal .kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 700;
}

.modal h2 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.1;
}

.modal .line {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.next-block {
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.85rem;
  background: var(--panel-2, rgba(15, 51, 47, 0.04));
  border: 1px solid var(--border);
  border-radius: 0.9rem;
}

.next-label {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--aqua-dim, var(--tide-600, #1f7a6f));
}

.next-games {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.next-games a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.55rem 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: var(--panel, var(--surface, #fff));
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  transition: border-color 0.15s, background 0.15s;
}

.next-games a:hover {
  border-color: color-mix(in srgb, var(--aqua) 40%, var(--border));
  background: rgba(62, 240, 232, 0.08);
}

.btn-soft {
  background: var(--panel-2, rgba(15, 51, 47, 0.05));
  border-color: var(--border);
  color: var(--text);
}

.btn-soft:hover {
  background: rgba(62, 240, 232, 0.08);
  border-color: rgba(62, 240, 232, 0.3);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-mini {
  text-align: center;
  padding: 0.35rem 1rem 1.2rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.footer-mini a {
  color: var(--aqua-dim);
  text-decoration: none;
  font-weight: 600;
}

.footer-mini a:hover {
  color: var(--aqua);
}

/* Splash */
.splash {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--splash-bg);
  transition: opacity 0.4s, visibility 0.4s;
}

.splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--text);
}

.splash span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-dim);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
