@font-face {
  font-family: "Tomorrow Inter";
  src: url("fonts/tomorrow-dashboard/inter-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}

:root {
  --background: #faf9f6;
  --ink: #14141a;
  --muted: #5a5a62;
  --faint: #8e8e95;
  --line: rgb(20 20 26 / 12%);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tomorrow-heading: "Tomorrow Inter", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--background);
  color: var(--ink);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

body::before {
  background-image:
    linear-gradient(rgb(17 17 17 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(17 17 17 / 5%) 1px, transparent 1px);
  background-size: 84px 84px;
}

body::after {
  background:
    radial-gradient(circle at 8% 4%, rgb(255 210 168 / 74%) 0, rgb(255 210 168 / 25%) 23%, transparent 48%),
    radial-gradient(circle at 96% 10%, rgb(255 185 139 / 60%) 0, rgb(255 185 139 / 20%) 24%, transparent 49%),
    radial-gradient(circle at 52% 104%, rgb(255 205 158 / 50%) 0, rgb(255 205 158 / 15%) 30%, transparent 58%);
}

::selection {
  background: var(--ink);
  color: var(--background);
}

a {
  color: var(--ink);
  text-decoration-color: var(--line);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-color 150ms ease, color 150ms ease;
}

a:hover {
  text-decoration-color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

.landing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: clamp(2rem, 7vh, 5rem) clamp(1.25rem, 7vw, 7rem);
}

.landing-inner {
  display: grid;
  width: 100%;
  max-width: 58rem;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(4rem, 12vh, 7rem);
}

.landing-intro {
  max-width: 52rem;
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 clamp(1.5rem, 4vh, 2.5rem);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 1.75rem;
  height: 2px;
  background: #ef6a2e;
}

.wordmark {
  margin: 0;
  color: var(--ink);
  font-family: var(--tomorrow-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.wordmark em {
  display: block;
  margin-left: clamp(1.5rem, 7vw, 5rem);
  font-style: inherit;
}

.tagline {
  max-width: 44rem;
  margin: clamp(1.75rem, 4vh, 2.75rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-link span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(255 255 255 / 48%);
  transition: transform 150ms ease, background 150ms ease;
}

.contact-link:hover span {
  transform: translate(2px, -2px);
  background: rgb(255 255 255 / 82%);
}

.landing-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.1rem;
}

.landing-footer a {
  color: var(--faint);
  text-decoration: none;
}

.landing-footer a:hover {
  color: var(--ink);
}

.legal {
  padding: clamp(2rem, 6vh, 4rem) clamp(1.25rem, 5vw, 2rem) clamp(3rem, 8vh, 5rem);
}

.legal-inner {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
}

.legal-placeholder {
  display: grid;
  min-height: 100svh;
  align-items: center;
}

.placeholder-card {
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgb(20 20 26 / 14%);
  border-radius: 1.25rem;
  box-shadow: 0 24px 70px rgb(91 55 31 / 10%);
  background: rgb(250 249 246 / 72%);
  backdrop-filter: blur(18px);
}

.placeholder-card .eyebrow {
  margin-bottom: 1.5rem;
}

.placeholder-card h1 {
  margin: 0;
  font-family: var(--tomorrow-heading);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.placeholder-card > p:last-child {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.legal-back {
  display: inline-block;
  margin-bottom: clamp(2rem, 5vh, 3rem);
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.legal-header {
  margin-bottom: clamp(2rem, 5vh, 3rem);
  padding-bottom: clamp(1.5rem, 4vh, 2rem);
  border-bottom: 1px solid var(--line);
}

.legal-header h1,
.legal-prose h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.legal-header h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.1;
}

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

.legal-prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-prose p {
  margin: 0 0 1em;
}

.legal-prose ul,
.legal-prose ol {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

.legal-prose li {
  margin-bottom: 0.4em;
}

.legal-prose strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1.25rem;
  margin-top: clamp(3rem, 6vh, 4rem);
  padding-top: clamp(1.5rem, 4vh, 2rem);
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.1rem;
}

.legal-footer a {
  color: var(--faint);
  text-decoration: none;
}

.legal-footer a:hover {
  color: var(--ink);
}

@media (max-width: 28rem) {
  .landing-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 52rem) {
  .landing {
    align-items: flex-start;
  }

  .landing-inner {
    gap: clamp(3rem, 10vh, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
