:root {
  --ink: #1a2332;
  --ink-soft: #3d4a5c;
  --paper: #e8eef4;
  --mist: #c5d2df;
  --accent: #6b8f71;
  --line: rgba(26, 35, 50, 0.12);
  --glow: rgba(107, 143, 113, 0.18);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  background: var(--paper);
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, var(--glow), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(26, 35, 50, 0.08), transparent 50%),
    linear-gradient(165deg, #f3f6f9 0%, #dce6ef 48%, #cfdce8 100%);
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.04) translate(-1%, 1%);
  }
}

.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  animation: rise 0.9s ease both;
}

.status {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.hero,
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 42rem;
  padding: clamp(3rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.hero {
  animation: rise 1.1s 0.15s ease both;
}

.content {
  animation: rise 0.9s ease both;
}

.eyebrow,
.note {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.content h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
}

.note {
  margin-bottom: 2rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cta:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-1px);
}

.cta.ghost {
  margin-top: 2rem;
  color: var(--ink);
  background: transparent;
}

.cta.ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.legal {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.legal h2 {
  margin: 1.75rem 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

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

.legal p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

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

.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
  animation: rise 1.2s 0.25s ease both;
}

.foot p {
  margin: 0;
}

.foot a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.foot a:hover {
  border-color: var(--ink);
}

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

@media (max-width: 560px) {
  .top {
    flex-direction: column;
    align-items: flex-start;
  }
}
