html {
  background-color: #050d0a;
  color: #ffffff;
}

body {
  margin: 0;
  background-color: #050d0a;
  overflow-x: hidden;
}

#app-shell,
#app-shell * {
  box-sizing: border-box;
}

#app-shell {
  min-height: 100vh;
  background: #0f121a;
  color: #f5f7fa;
  font-family: Georgia, "Times New Roman", serif;
}

.app-shell-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 72px;
  display: flex;
  align-items: center;
  padding-left: 24px;
  background: rgba(2, 28, 26, 0.95);
}

.app-shell-logo {
  display: block;
  width: 117px;
  height: 29px;
  object-fit: contain;
}

.app-shell-content {
  padding: 112px 24px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.app-shell-default {
  position: relative;
  min-height: 100vh;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(2, 28, 26, 0.35), rgba(2, 28, 26, 0.35)), #0f121a;
}

.app-shell-home-text {
  position: absolute;
  right: 24px;
  bottom: clamp(120px, 24vh, 330px);
  left: clamp(20px, 8vw, 240px);
  z-index: 1;
  max-width: 760px;
}

.app-shell-home-title {
  margin: 0 0 16px;
  color: #f5f7fa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.app-shell-home-copy {
  margin: 0;
  color: #f5f7fa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.125rem, 1.75vw, 1.375rem);
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.app-shell-eyebrow {
  margin: 0 0 12px;
  color: #eae0d6;
  font:
    400 14px/1.5 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}

.app-shell-title {
  margin: 0 0 16px;
  color: #f7ede1;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.15;
}

.app-shell-copy {
  margin: 0;
  max-width: 720px;
  color: #f5f7fa;
  font-size: 1rem;
  line-height: 1.7;
}

.app-shell-legal {
  display: none;
}

html[data-route-shell="privacy-policy"] .app-shell-default,
html[data-route-shell="terms-of-service"] .app-shell-default {
  display: none;
}

html[data-route-shell] .app-shell-legal {
  display: block;
}
