:root {
  --background: #f3f6f4;
  --foreground: #14201c;
  --muted: #4a5c54;
  --accent: #0f6b5c;
  --accent-soft: #c5e4db;
  --glow: #9bc4b0;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--foreground);
  background: var(--background);
  font-family: "Source Sans 3", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.main {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 48rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.5rem;
}

@media (min-width: 640px) {
  .main {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.brand {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.75rem, 11vw, 5.75rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.portrait {
  margin-top: 1.5rem;
  width: 8.25rem;
  height: 8.25rem;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 0 0 3px rgba(15, 107, 92, 0.16),
    0 12px 28px rgba(20, 32, 28, 0.12);
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.dot {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--accent);
}

.status-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.headline {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.lede {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -3%, 0) scale(1.05);
  }
}

@keyframes sheen {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.75;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

.animate-fade-up {
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-fade-up-delay {
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.animate-fade-up-delay-2 {
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.animate-pulse-dot {
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.bg-atmosphere {
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, var(--glow) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 75%, var(--accent-soft) 0%, transparent 50%),
    linear-gradient(165deg, #eef4f0 0%, #f7f5ef 48%, #e8f0eb 100%);
}

.bg-atmosphere::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 70% 30%, rgba(15, 107, 92, 0.12), transparent 40%),
    radial-gradient(circle at 25% 70%, rgba(155, 196, 176, 0.35), transparent 45%);
  animation: drift 18s ease-in-out infinite, sheen 10s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .animate-fade-up-delay,
  .animate-fade-up-delay-2,
  .animate-pulse-dot,
  .bg-atmosphere::before {
    animation: none;
  }
}
