/* AKA Studio — White Rabbits on the web */

:root {
  --bg: #fffcf8;
  --ink: #2a2622;
  --muted: #5f5850;
  --faint: #9a9188;
  --line: rgba(42, 38, 34, 0.1);
  --accent: #c4a36a;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--muted);
}

.wrap {
  width: min(520px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 64px;
}

.wrap-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 48px;
}

.kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand {
  margin: 0;
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.tag {
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
}

.bunny {
  display: block;
  width: 112px;
  height: 112px;
  margin: 48px auto 44px;
  object-fit: contain;
}

.product {
  text-align: center;
}

.product .kicker {
  margin-bottom: 12px;
}

.product h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.product .line {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.product .status {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--faint);
}

.nav-quiet {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 4px;
  margin-top: 56px;
  font-size: 12px;
  font-weight: 500;
  color: var(--faint);
}

.nav-quiet a {
  color: var(--faint);
}

.nav-quiet a:hover {
  color: var(--muted);
}

.nav-quiet .sep {
  color: var(--line);
  padding: 0 6px;
  user-select: none;
}

/* Inner pages */

.page-title {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.15rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.sub {
  margin: 8px 0 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--faint);
}

.content {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.content p {
  margin: 0 0 1.05em;
  max-width: 36em;
}

.content strong {
  display: block;
  margin: 1.6em 0 0.55em;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.content ul {
  margin: 0 0 1.2em;
  padding-left: 1.1em;
  max-width: 36em;
}

.content li {
  margin: 0.4em 0;
  color: var(--muted);
}

.content li::marker {
  color: var(--faint);
}

.mail {
  display: inline-block;
  margin-top: 4px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.mail:hover {
  color: var(--muted);
}

.back {
  margin-bottom: 28px;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--faint);
}

.foot-nav a {
  color: var(--faint);
}

.foot-nav a:hover {
  color: var(--muted);
}

.foot-nav .sep {
  color: var(--line);
  padding: 0 6px;
}

@media (max-width: 480px) {
  .wrap {
    width: calc(100% - 40px);
    padding: 48px 0 48px;
  }

  .bunny {
    width: 96px;
    height: 96px;
    margin: 40px auto 36px;
  }
}
