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

:root {
  --bg:        #f5f3ef;
  --surface:   #ffffff;
  --surface2:  #f9f8f6;
  --border:    #e4e0d8;
  --border-md: #ccc8bf;
  --accent:    #8c7355;
  --accent-lt: #f0ebe2;
  --text:      #2a2520;
  --text-mid:  #6b6259;
  --text-soft: #9b9189;
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.5;
}

/* ── Header ── */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--text); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; font-weight: 400;
}
.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; letter-spacing: 0.02em; color: var(--text);
}

/* ── Header right cluster ── */
.header-right {
  display: flex; align-items: center; gap: 20px;
}

/* Language toggle */
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--text-soft);
  padding: 3px 0; transition: color 0.15s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: var(--accent); }
.lang-sep { font-size: 0.7rem; color: var(--border-md); user-select: none; }

/* Models counter */
.models-widget {
  display: flex; align-items: baseline; gap: 4px;
  background: var(--accent-lt); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 13px;
  transition: background 0.3s, border-color 0.3s;
}
.models-widget.models-empty {
  background: #fdf0ed; border-color: #e8b8a8;
}
.models-count {
  font-size: 1rem; font-weight: 700; color: var(--text);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.models-empty .models-count { color: #c0714a; }
.models-label {
  font-size: 0.7rem; font-weight: 500; color: var(--text-soft);
  text-transform: uppercase; letter-spacing: 0.07em;
  white-space: nowrap;
}
.models-empty .models-label { color: #c0714a; }

/* ── Main ── */
main { max-width: 1000px; margin: 0 auto; padding: 56px 24px 80px; }

/* Hero */
.hero { margin-bottom: 48px; }
.hero-eyebrow {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); font-weight: 500; margin-bottom: 14px;
}
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400; line-height: 1.15;
  color: var(--text); margin-bottom: 14px;
}
h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 0.95rem; color: var(--text-mid);
  max-width: 500px; line-height: 1.75;
}

/* ── Workspace ── */
.workspace {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 28px;
}
@media (max-width: 680px) { .workspace { grid-template-columns: 1fr; } }

.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
}
.panel-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  flex-wrap: wrap;
}
.panel-num {
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--surface);
  background: var(--accent); padding: 2px 8px; border-radius: 4px;
}
.panel-title {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-mid); flex: 1;
}

/* Mode toggle */
.mode-toggle {
  display: flex; border: 1px solid var(--border);
  border-radius: 7px; overflow: hidden; flex-shrink: 0;
}
.mode-btn {
  padding: 4px 11px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.03em; border: none; cursor: pointer;
  background: var(--surface2); color: var(--text-soft);
  transition: all 0.15s;
}
.mode-btn:hover { color: var(--text); }
.mode-btn.active {
  background: var(--accent); color: #fff;
}

/* Multi-view grid */
.multiview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mv-slot {
  position: relative; border: 1.5px dashed var(--border-md);
  border-radius: var(--radius-sm); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
  background: var(--surface2);
}
.mv-slot:hover { border-color: var(--accent); background: var(--accent-lt); }
.mv-slot.has-file { border-style: solid; border-color: var(--accent); }
.mv-placeholder {
  display: flex; flex-direction: column; align-items: center;
  gap: 5px; padding: 12px; text-align: center; color: var(--text-soft);
  pointer-events: none;
}
.mv-label {
  font-size: 0.8rem; font-weight: 600; color: var(--text-mid);
}
.mv-req {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); font-weight: 600;
}
.mv-opt {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-soft);
}
.mv-preview {
  width: 100%; height: 100%; position: absolute; inset: 0;
}
.mv-preview img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.mv-clear {
  position: absolute; top: 5px; right: 5px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1px solid var(--border);
  color: var(--text); font-size: 1rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: sans-serif; padding: 0;
  transition: background 0.15s;
}
.mv-clear:hover { background: white; }
.mv-badge {
  position: absolute; bottom: 6px; left: 6px;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--surface);
  background: rgba(42,37,32,0.55); backdrop-filter: blur(4px);
  padding: 2px 7px; border-radius: 4px; pointer-events: none;
}

/* Upload */
.upload-zone {
  border: 1.5px dashed var(--border-md);
  border-radius: var(--radius-sm); min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden; transition: border-color 0.2s, background 0.2s;
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--accent); background: var(--accent-lt);
}
.upload-placeholder { text-align: center; padding: 32px 20px; }
.upload-icon { color: var(--text-soft); margin-bottom: 14px; }
.upload-title { font-size: 0.9rem; font-weight: 500; margin-bottom: 5px; color: var(--text); }
.upload-sub { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 10px; }
.text-link { color: var(--accent); cursor: pointer; text-decoration: underline; }
.upload-formats { font-size: 0.7rem; color: var(--text-soft); letter-spacing: 0.06em; text-transform: uppercase; }

.upload-preview { width: 100%; height: 100%; position: relative; }
.upload-preview img { width: 100%; height: 280px; object-fit: cover; display: block; }
.replace-btn {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(255,255,255,0.9); color: var(--text);
  border: 1px solid var(--border); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 6px;
  font-size: 0.78rem; font-weight: 500; cursor: pointer;
  transition: background 0.15s;
}
.replace-btn:hover { background: white; }

/* Upload tip */
.upload-tip {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 12px; padding: 10px 13px;
  background: var(--accent-lt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem; color: var(--text-mid); line-height: 1.55;
}

/* Options */
.option-group { margin-bottom: 20px; }
.option-group:last-child { margin-bottom: 0; }
.option-label {
  display: block; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-soft); margin-bottom: 9px;
}
.label-hint { font-weight: 400; text-transform: none; letter-spacing: 0; }

.chip-row { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--surface2);
  font-size: 0.8rem; font-weight: 500; color: var(--text-mid);
  cursor: pointer; transition: all 0.15s; user-select: none;
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip.active {
  border-color: var(--accent); background: var(--accent-lt);
  color: var(--accent);
}

/* Fixed prompt display */
.fixed-prompt-box {
  background: var(--accent-lt);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
}
.fp-label {
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent); margin-bottom: 5px;
}
.fp-text {
  font-size: 0.8rem; color: var(--text-mid);
  font-family: 'Inter', monospace; line-height: 1.5;
}

.notes-input {
  width: 100%; background: var(--surface2);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 0.83rem; padding: 10px 13px;
  resize: vertical; min-height: 66px; outline: none;
  transition: border-color 0.15s; line-height: 1.6;
}
.notes-input:focus { border-color: var(--accent); }
.notes-input::placeholder { color: var(--text-soft); }

/* Generate */
.generate-section { text-align: center; margin-bottom: 32px; }
.generate-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: var(--bg);
  border: none; padding: 14px 40px; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
}
.generate-btn:hover:not(:disabled) {
  background: var(--accent); transform: translateY(-1px);
}
.generate-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.generate-note { font-size: 0.75rem; color: var(--text-soft); margin-top: 10px; }

/* Status */
.status-section { margin-bottom: 28px; }
.status-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 10px;
  box-shadow: var(--shadow);
}
.status-left { display: flex; align-items: center; gap: 14px; }
.status-spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite; flex-shrink: 0;
}
.status-spinner.done {
  border-color: var(--accent); border-top-color: var(--accent);
  animation: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.status-title { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.status-sub { font-size: 0.75rem; color: var(--text-soft); margin-top: 2px; }
.status-pct { font-size: 0.88rem; font-weight: 600; color: var(--accent); }

.progress-track { height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 0%; background: var(--accent);
  border-radius: 2px; transition: width 0.5s ease;
}

/* Viewer */
.viewer-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
}
.viewer-topbar {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.viewer-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; font-weight: 400; margin-bottom: 4px;
}
.viewer-sub { font-size: 0.78rem; color: var(--text-soft); max-width: 400px; line-height: 1.5; }
.viewer-btns { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.format-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.fmt-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 13px; border-radius: 7px;
  border: 1px solid var(--border); background: var(--surface2);
  color: var(--text-mid); font-size: 0.78rem; font-weight: 600;
  cursor: pointer; letter-spacing: 0.03em;
  transition: all 0.15s; white-space: nowrap;
}
.fmt-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.fmt-btn.primary {
  background: var(--text); color: var(--bg); border-color: var(--text);
}
.fmt-btn.primary:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); }
.fmt-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.fmt-spinner {
  width: 11px; height: 11px; border-radius: 50%;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
.fmt-spinner.hidden { display: none; }
.icon-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--surface2);
  color: var(--text-mid); font-size: 0.8rem; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: all 0.15s;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.icon-btn.primary {
  background: var(--text); color: var(--bg); border-color: var(--text);
}
.icon-btn.primary:hover { background: var(--accent); border-color: var(--accent); }

.viewer-box { position: relative; }
/* Standalone animation section */
.anim-section {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.morph-canvas-standalone {
  display: block;
  width: 100%;
  height: 500px;
}

model-viewer {
  width: 100%; height: 500px;
  background: var(--surface2);
}
.viewer-tip {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; color: var(--text-soft);
  background: rgba(255,255,255,0.85); backdrop-filter: blur(6px);
  padding: 4px 12px; border-radius: 50px;
  border: 1px solid var(--border); pointer-events: none;
}

/* ── Processing Overlay ── (removed) */
.processing-overlay-unused {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(245,243,239,0.92);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
}
.processing-box {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  padding: 48px 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  min-width: 340px;
}

/* 3D building animation */
.proc-canvas {
  width: 120px; height: 120px;
  position: relative;
  perspective: 300px;
}
.proc-building {
  width: 56px; height: 72px;
  position: absolute; top: 24px; left: 32px;
  transform-style: preserve-3d;
  animation: rotateBuild 4s linear infinite;
}
@keyframes rotateBuild {
  from { transform: rotateY(0deg) rotateX(15deg); }
  to   { transform: rotateY(360deg) rotateX(15deg); }
}
.proc-face {
  position: absolute;
  border: 1.5px solid var(--accent);
}
.proc-top {
  width: 56px; height: 32px;
  background: rgba(140,115,85,0.12);
  transform: rotateX(90deg) translateZ(36px);
}
.proc-front {
  width: 56px; height: 72px;
  background: rgba(140,115,85,0.08);
  transform: translateZ(16px);
}
.proc-side {
  width: 32px; height: 72px;
  background: rgba(140,115,85,0.06);
  transform: rotateY(90deg) translateZ(28px);
}

/* Grid */
.proc-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(140,115,85,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,115,85,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 8px;
}

/* Scan line */
.proc-scan {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanMove 2s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes scanMove {
  0%   { top: 0; opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { top: 100%; opacity: 0; }
}

/* Particles */
.proc-particles { position: absolute; inset: 0; pointer-events: none; }
.proc-particles span {
  position: absolute;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); opacity: 0;
  animation: particle 3s ease-in-out infinite;
}
.proc-particles span:nth-child(1) { left: 20%; animation-delay: 0s; }
.proc-particles span:nth-child(2) { left: 40%; animation-delay: 0.5s; }
.proc-particles span:nth-child(3) { left: 60%; animation-delay: 1s; }
.proc-particles span:nth-child(4) { left: 75%; animation-delay: 1.5s; }
.proc-particles span:nth-child(5) { left: 30%; animation-delay: 2s; }
.proc-particles span:nth-child(6) { left: 55%; animation-delay: 2.5s; }
@keyframes particle {
  0%   { bottom: 10%; opacity: 0; transform: scale(0.5); }
  30%  { opacity: 0.8; }
  100% { bottom: 90%; opacity: 0; transform: scale(1.5); }
}

/* Labels & steps */
.proc-label {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--text); text-align: center;
}
.proc-steps {
  display: flex; gap: 20px; align-items: center;
}
.proc-step {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-size: 0.68rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-soft);
  transition: color 0.3s;
}
.proc-step.active { color: var(--accent); }
.proc-step.done { color: var(--text-mid); }
.ps-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid currentColor;
  transition: background 0.3s;
}
.proc-step.active .ps-dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulseDot 1s ease-in-out infinite;
}
.proc-step.done .ps-dot { background: var(--text-mid); }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 4px var(--accent); }
  50%       { box-shadow: 0 0 12px var(--accent); }
}
.proc-pct {
  font-size: 2rem; font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--accent); letter-spacing: -1px;
}

/* ── Tips section ── */
.tips-section {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface2);
}
.tips-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600;
  color: var(--text-mid); letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}
.tips-toggle:hover { background: var(--accent-lt); color: var(--accent); }
.tips-chevron {
  flex-shrink: 0; color: var(--text-soft);
  transition: transform 0.22s ease;
}
.tips-body {
  padding: 0 12px 12px;
  border-top: 1px solid var(--border);
}
.tips-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px;
}
.tips-col { display: flex; flex-direction: column; gap: 7px; }
.tips-col-head {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0 2px 2px;
}
.good-head { color: #5a8a5a; }
.bad-head  { color: #a05a4a; }
.tip-card {
  border-radius: 7px; padding: 8px 10px;
  display: flex; align-items: center; gap: 9px;
  border: 1px solid var(--border);
}
.good-card { background: #f2f8f2; border-color: #c8dcc8; }
.bad-card  { background: #fdf3f0; border-color: #e8c8c0; }
.tip-illus {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px; background: rgba(255,255,255,0.7);
}
.tip-label {
  font-size: 0.72rem; font-weight: 500; color: var(--text-mid);
  line-height: 1.3;
}

/* ── Splash intro ── */
#splash-overlay {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: all;
  transition: opacity 0.25s ease;
}
#splash-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
#splash-ui {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  padding-bottom: 28vh;
  pointer-events: none;
  opacity: 0;
}
#splash-logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
#splash-mark {
  width: 54px; height: 54px; border-radius: 13px;
  background: #f5f3ef; color: #14120e;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem; font-weight: 400;
  margin-bottom: 10px;
  box-shadow: 0 0 50px rgba(140,115,85,0.25), 0 0 0 1px rgba(140,115,85,0.15);
}
#splash-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 2.1rem; font-weight: 400; letter-spacing: 0.02em;
  color: #f5f3ef;
  text-shadow: 0 0 40px rgba(140,115,85,0.35);
}
#splash-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(201,168,122,0.65);
  margin-top: 2px;
}
#splash-skip {
  position: absolute; bottom: 28px; right: 32px;
  background: none; border: 1px solid rgba(140,115,85,0.28);
  border-radius: 7px; padding: 6px 18px;
  font-family: 'Inter', sans-serif; font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.07em;
  color: rgba(201,168,122,0.45);
  cursor: pointer; opacity: 0;
  transition: border-color 0.2s, color 0.2s;
}
#splash-skip:hover {
  border-color: rgba(140,115,85,0.65);
  color: rgba(201,168,122,0.85);
}
