:root {
  --ink: #173b3a;
  --muted: #5d7772;
  --paper: #f5f2e9;
  --coral: #ef795d;
  --yellow: #f4c95d;
  --line: rgba(23, 59, 58, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 30px clamp(24px, 5vw, 78px) 24px;
  overflow: hidden;
}

.site-nav,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav {
  position: relative;
  z-index: 2;
}

.brand,
.nav-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
}

.nav-link {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.nav-link:hover span {
  transform: translate(2px, -2px);
}

.hero {
  display: flex;
  flex: 1;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 0 75px;
}

.hero-copy {
  animation: rise-in 700ms ease both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

h1 {
  max-width: 1100px;
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(4.2rem, 8.5vw, 8.2rem);
  font-weight: 600;
  letter-spacing: -0.00em;
  line-height: 0.88;
}

.heading-first-word {
  display: inline-block;
  margin-right: 0.08em;
}

h1 em {
  color: var(--coral);
  font-style: normal;
}

.intro {
  max-width: 470px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.launch-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 390px;
  margin-top: 37px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  line-height: 1.55;
}

.launch-note p {
  margin: 0;
}

.launch-note strong {
  font-weight: 700;
}

.note-icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.78rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 17px;
  color: var(--muted);
  font-size: 0.7rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 22px 20px 18px;
  }

  .hero {
    display: block;
    padding: 70px 0 55px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6.2rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .copyright {
    width: 100%;
  }
}

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