/* Static recreation of the File Eaters splash layout (email form removed). */
:root {
  --bg: #fef8ee;
  --bg-strong: #fbe8b6;
  --bg-soft: #efe5d4;
  --text: #1f1b16;
  --muted: #5b5247;
  --accent: #f6c655;
  --accent-deep: #d8991d;
}

* { box-sizing: border-box; }

html {
  height: 100%;
  background-color: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Satoshi", "Avenir Next", "Neue Haas Grotesk", sans-serif;
  color: var(--text);
  background-color: var(--bg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 24px 120px;
  overflow: hidden;
  text-align: center;
  background-color: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  opacity: 0.6;
  transform: rotate(-8deg);
  z-index: 0;
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(560px, 92vw);
  margin-top: 32px;
}

.brand { margin-bottom: 8px; }

.logo {
  width: min(720px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto;
  animation: float-in 800ms ease both;
}

h1 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  animation: fade-up 700ms ease 120ms both;
}

.subhead {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 20px);
  color: var(--muted);
  animation: fade-up 700ms ease 240ms both;
}

.site-footer {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: transparent;
  color: var(--muted);
  padding: 0;
  text-align: left;
  font-size: 0.95rem;
  z-index: 3;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer-links a:hover {
  border-bottom-color: currentColor;
}

.footer-links span {
  color: var(--muted);
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.legal h1,
.legal h2,
.legal p {
  animation: none;
}

.legal h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.legal h2 {
  margin: 32px 0 12px;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
}

.legal p {
  margin: 0 0 14px;
  color: var(--text);
}

.legal ul {
  margin: 0 0 16px 20px;
  padding: 0;
  list-style: disc;
}

.legal li {
  margin: 0 0 8px;
}

.legal a {
  color: var(--text);
}

.legal .legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 18px;
}

.legal .legal-back:hover {
  color: var(--text);
}

.legal .legal-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.smiley {
  --smiley-x: -20%;
  --smiley-y: 15%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 248px;
  height: 248px;
  opacity: 0.95;
  transform: translate(var(--smiley-x), var(--smiley-y));
  filter: drop-shadow(0 22px 35px rgba(31, 27, 22, 0.15));
  z-index: 0;
  animation: slide-up 900ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translate(calc(var(--smiley-x) - 6%), calc(var(--smiley-y) + 8%));
  }
  to {
    opacity: 1;
    transform: translate(var(--smiley-x), var(--smiley-y));
  }
}

@media (min-width: 768px) {
  .content {
    width: min(520px, 50vw);
    margin-top: 48px;
  }

  .smiley {
    width: auto;
    height: 50vh;
  }
}

@media (min-width: 1024px) {
  .smiley {
    height: 60vh;
  }
}

@media (min-width: 1280px) {
  .smiley {
    height: 80vh;
  }
}
