@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=Fraunces:wght@500;600&display=swap");

:root {
  color-scheme: light;
  --bg: #f6f3ed;
  --bg-2: #f0ece5;
  --ink: #1b1b1b;
  --muted: #6f6c66;
  --accent: #c9733a;
  --accent-soft: #f4e3d6;
  --card: #ffffff;
  --stroke: rgba(27, 27, 27, 0.08);
  --shadow: 0 12px 30px rgba(27, 27, 27, 0.08);
}

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

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(1200px 600px at 15% -10%, #fff7ef 0%, var(--bg) 45%, var(--bg-2) 100%);
  color: var(--ink);
  min-height: 100vh;
}

.app {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  min-height: 100vh;
}

.app-header {
  position: sticky;
  top: 0;
  background: linear-gradient(to bottom, rgba(246, 243, 237, 0.96), rgba(246, 243, 237, 0.85));
  backdrop-filter: blur(12px);
  padding: 4px 0 6px;
  z-index: 5;
}

.app-footer {
  margin-top: 28px;
  padding: 0;
  border-top: none;
  text-align: center;
}

.app-footer .brand {
  margin-bottom: 0;
}

.app-footer .logo {
  font-size: 22px;
}

.app-footer .tagline {
  margin-top: 4px;
}

.section-art {
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.section-art img {
  width: min(70%, 240px);
  border-radius: 14px;
  opacity: 0.35;
  filter: saturate(0.9);
}

.auth-art {
  display: flex;
  justify-content: center;
  margin: 14px 0 6px;
  pointer-events: none;
}

.auth-art img {
  width: min(70%, 220px);
  border-radius: 16px;
  opacity: 0.65;
}
.composer-typing .app-header,
.composer-typing .thoughts-log {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.composer-typing .composer .notice,
.composer-typing .composer .progress,
.composer-typing .composer .section-title,
.composer-typing .composer .word-meter {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.composer-typing .composer textarea {
  border-color: transparent;
  box-shadow: none;
}

.composer textarea:focus,
.composer textarea:focus-visible {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.brand {
  margin-bottom: 18px;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 26px;
  letter-spacing: 0.4px;
}

.tagline {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.tab {
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--muted);
  border-radius: 16px;
  padding: 0 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 36px;
}

.tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(27, 27, 27, 0.08);
}

.tab.is-active {
  color: var(--ink);
  font-weight: 600;
  border-color: rgba(201, 115, 58, 0.4);
}

.tab.has-updates {
  font-weight: 600;
  color: var(--ink);
}

.badge {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dot.is-on {
  opacity: 1;
}

.view {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 14px;
  animation: fadeUp 0.4s ease;
}

.chat-open .view,
.chat-open .app-footer {
  display: none;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.tight {
  gap: 6px;
}

.card.composer {
  background: linear-gradient(160deg, #fff9f2 0%, #ffffff 60%, #fff4ea 100%);
  border-color: rgba(201, 115, 58, 0.25);
}

.section-title {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.section-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

textarea {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  min-height: 120px;
  resize: vertical;
  white-space: pre-wrap;
}

.composer textarea {
  min-height: 180px;
  background: #fffdf8;
  line-height: 1.6;
  font-size: 15px;
}

button.primary {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.45s ease, filter 0.45s ease, background 0.45s ease, transform 0.2s ease;
  width: 100%;
}

button.primary.is-ready {
  color: #fff;
}

.primary.is-soft {
  opacity: 0.65;
}


.express-toast {
  position: fixed;
  transform: translate(-50%, -120%);
  background: rgba(27, 27, 27, 0.9);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}

.express-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -140%);
}

.express-wrap {
  display: block;
}

.app-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: rgba(27, 27, 27, 0.92);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 60;
  text-align: center;
  max-width: min(80vw, 360px);
}

.app-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

button.ghost {
  background: transparent;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
}

.auth-card .ghost {
  background: #fff;
  border-color: rgba(27, 27, 27, 0.15);
  padding: 8px 12px;
  font-size: 12px;
}

.progress {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.word-meter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  gap: 12px;
}

.word-meter.is-hidden {
  display: none;
}

.word-meter strong {
  color: var(--ink);
  font-weight: 600;
}

.word-meter .limit {
  color: var(--muted);
}

.word-meter.over {
  color: #b04830;
}

.thought-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thought-item {
  border-left: none;
  padding-left: 0;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.thought-item.is-archived {
  opacity: 0.55;
}

.archived-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  padding: 2px 6px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
}

.thought-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.thought-row.in-bubble {
  align-items: flex-start;
}

.thought-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu {
  position: relative;
  display: inline-flex;
}

.menu-trigger {
  border: none;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
  color: var(--muted);
  cursor: pointer;
}

.menu-panel {
  position: absolute;
  right: 0;
  top: 18px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.menu:focus-within .menu-panel,
.menu:hover .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.text-block {
  max-height: 30em;
  overflow: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 27, 27, 0.2) transparent;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.thought-text {
  font-size: 1em;
  line-height: 1.35;
  color: var(--ink);
}

.archive-btn {
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 10px;
  white-space: nowrap;
}

.thought-title {
  background: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}

.thought-title {
  background: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  line-height: 1;
}

.thought-card {
  background: rgba(244, 227, 214, 0.3);
  border: 1px solid rgba(27, 27, 27, 0.06);
  border-radius: 14px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.thought-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.thought-body {
  white-space: pre-line;
  overflow-wrap: anywhere;
  line-height: 1.2;
  color: var(--ink);
  max-height: 30em;
  overflow: hidden;
}

.thought-body.is-scroll {
  overflow: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 27, 27, 0.2) transparent;
}

.thought-byline {
  font-size: 11px;
  color: var(--muted);
  line-height: 1;
  margin: 0;
}


.text-block::-webkit-scrollbar {
  width: 6px;
}

.text-block::-webkit-scrollbar-thumb {
  background: rgba(27, 27, 27, 0.15);
  border-radius: 999px;
}

.thought-body.is-scroll::-webkit-scrollbar {
  width: 6px;
}

.thought-body.is-scroll::-webkit-scrollbar-thumb {
  background: rgba(27, 27, 27, 0.15);
  border-radius: 999px;
}

.tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 10px;
}

.actions button {
  flex: 1;
}

.actions.is-compact {
  gap: 8px;
}

.actions.is-compact button {
  flex: 0;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 12px;
}

.actions.is-subtle button.ghost {
  color: var(--ink);
  border-color: rgba(27, 27, 27, 0.2);
  background: rgba(244, 227, 214, 0.35);
}

.suggestion-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}

.suggestion-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.actions.is-bottom {
  justify-content: flex-start;
  gap: 10px;
}

.actions.is-bottom .is-thin {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
}

.actions.is-bottom .is-wide {
  min-width: 140px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.suggestion-card {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 16px;
  background: #fffdf9;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
}

.suggestion-hint {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 2px;
}

.request-head {
  font-size: 13px;
  color: var(--ink);
}

.request-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 4px;
}

.suggestion-body {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.actions.is-bottom {
  margin-top: 2px;
}


.suggestion-text {
  font-size: 1em;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.suggestion-card .text-block {
  white-space: normal;
  line-height: 1.25;
}

.suggestion-card .meta {
  gap: 8px;
}


.suggestion-card .reason {
  font-size: 12px;
  color: var(--muted);
}

.suggestion-card .author {
  font-size: 12px;
  color: var(--accent);
}

.notice {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.chat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.chat-row button {
  padding: 8px 12px;
}

.chat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-item {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fffdf9;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-item.is-owner {
  border-color: rgba(201, 115, 58, 0.28);
  box-shadow: 0 10px 22px rgba(201, 115, 58, 0.08);
}

.chat-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(27, 27, 27, 0.08);
}

.chat-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-preview {
  font-size: 12px;
  color: var(--muted);
}

.chat-pill {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
}

.chat-title-strong {
  font-weight: 700;
  color: var(--ink);
}

.chat-owner-tag {
  margin-left: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 2px 6px;
  line-height: 1;
}

.chat-invite {
  font-size: 12px;
  color: var(--muted);
  margin-top: -2px;
}

.settings-card {
  gap: 10px;
}

.settings-details {
  border: none;
}

.settings-summary {
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.settings-summary::-webkit-details-marker {
  display: none;
}

.settings-details[open] .settings-summary {
  margin-bottom: 8px;
}

.settings-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-details {
  border: none;
}

.section-summary {
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.section-summary::after,
.settings-summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  margin-left: 6px;
}

.section-details[open] .section-summary::after,
.settings-details[open] .settings-summary::after {
  transform: rotate(45deg);
}


.section-summary::-webkit-details-marker {
  display: none;
}

.section-details[open] .section-summary {
  margin-bottom: 8px;
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.requested-details {
  margin-top: 12px;
}

.requested-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(27, 27, 27, 0.06);
}

.requested-item:last-child {
  border-bottom: none;
}

.requested-note {
  font-size: 11px;
}

.requested-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.requested-title {
  font-size: 12px;
  color: var(--ink);
}

.requested-status {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.requested-sub {
  font-size: 11px;
  color: var(--muted);
}

.requested-thought {
  font-size: 12px;
  color: var(--ink);
  line-height: 1.3;
}

.settings-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.settings-row .field {
  flex: 1;
}

.settings-about {
  font-size: 12px;
  line-height: 1.4;
}

.chat-view {
  display: none;
  flex-direction: column;
  padding: 18px 16px 20px;
  margin-top: 14px;
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.chat-view.is-open {
  display: flex;
}

.chat-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.chat-title {
  font-size: 18px;
  font-weight: 600;
}

.chat-title.is-toggle,
.chat-sub.is-toggle {
  cursor: pointer;
}

.chat-title.is-toggle:hover,
.chat-sub.is-toggle:hover {
  color: var(--accent);
}

.chat-title.is-editable {
  cursor: pointer;
}

.chat-sub {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.chat-info {
  padding: 0;
  border-radius: 999px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  line-height: 1;
  border: 1px solid var(--stroke);
  background: transparent;
  transform: translateY(0);
}

.info-icon {
  position: relative;
  width: 10px;
  height: 10px;
}

.info-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 2px;
  height: 6px;
  transform: translateX(-50%);
  background: var(--muted);
  border-radius: 2px;
}

.info-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1px;
  width: 2px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--muted);
  border-radius: 50%;
}

.chat-info-panel {
  display: none;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 12px 0;
  margin-bottom: 12px;
}

.chat-info-panel.is-open {
  display: block;
}

.back {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-left: -2px;
  display: inline-flex;
  align-items: center;
}

.back::before {
  content: "‹";
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

.bubble {
  background: var(--card);
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  max-width: 82%;
  align-self: flex-start;
}

.bubble-text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.bubble.you {
  align-self: flex-end;
  background: #fff3ea;
}

.bubble small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 4px;
}

.bubble.system {
  background: transparent;
  border: none;
  padding: 4px 8px;
  max-width: 100%;
  align-self: center;
  text-align: center;
}

.bubble-system {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.chat-members {
  border-top: 1px solid var(--stroke);
  padding-top: 12px;
}

.member {
  font-size: 12px;
  color: var(--muted);
}

.member-thought {
  font-size: 0.95em;
}

.member-toggle {
  border: none;
  background: transparent;
  padding: 0;
  cursor: default;
  list-style: none;
}

.member-toggle::-webkit-details-marker {
  display: none;
}

.member-toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}


.member-panel {
  margin-top: 10px;
}

.member-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.member-carousel::-webkit-scrollbar {
  height: 6px;
}

.member-carousel::-webkit-scrollbar-thumb {
  background: rgba(27, 27, 27, 0.15);
  border-radius: 999px;
}

.member-card {
  min-width: 200px;
  max-width: 240px;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: #fffdf9;
  scroll-snap-align: start;
  font-size: 13px;
}

.member-card.is-owner .member-thought {
  font-weight: 600;
}

.member-name {
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 12px;
}

.member-thought {
  font-style: normal;
  color: var(--ink);
}

.chat-input {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.chat-input input {
  flex: 1;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 10px;
}

.chat-input button {
  border: none;
  background: var(--accent);
  color: white;
  border-radius: 14px;
  padding: 10px 12px;
}

.inline-edit {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 13px;
}

.auth-screen {
  position: fixed;
  inset: 0;
  background: rgba(246, 243, 237, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.name-screen {
  position: fixed;
  inset: 0;
  background: rgba(246, 243, 237, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.auth-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  width: min(90vw, 380px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  text-align: center;
}

.auth-copy {
  color: var(--muted);
  font-size: 13px;
}

.field {
  display: grid;
  gap: 6px;
  text-align: left;
  font-size: 12px;
  color: var(--muted);
}

.field input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-family: inherit;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .app {
    padding: 32px 24px 60px;
  }
}
