:root {
  --orange: #f49d3b;
  --orange-deep: #d67e1f;
  --white: #ffffff;
  --ink: #092122;
  --ink-soft: #0e3335;
  --fog: rgba(255, 255, 255, 0.78);
  --fog-dim: rgba(255, 255, 255, 0.55);
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(244, 157, 59, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(244, 157, 59, 0.1), transparent 50%),
    radial-gradient(ellipse 45% 35% at 10% 80%, rgba(26, 74, 77, 0.9), transparent 55%),
    linear-gradient(165deg, var(--ink-soft) 0%, var(--ink) 45%, #061618 100%);
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 80%);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.hero-logo {
  width: clamp(11rem, 32vw, 18rem);
  height: auto;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.brand {
  margin: 0 0 0.85rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  animation: rise-in 900ms var(--ease-out) 100ms both;
}

.supporting {
  margin: 0 0 1.85rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 500;
  color: var(--fog);
  animation: rise-in 900ms var(--ease-out) 180ms both;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  animation: rise-in 900ms var(--ease-out) 280ms both;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 11.5rem;
  padding: 0.9rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.cta-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.cta-primary {
  background: var(--orange);
  color: var(--ink);
}

.cta-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.cta-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.notice {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 8vw, 5rem);
  text-align: center;
}

.notice h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--orange);
  animation: rise-in 900ms var(--ease-out) 360ms both;
}

.notice p {
  margin: 0;
  color: var(--fog-dim);
  font-size: 1rem;
  animation: rise-in 900ms var(--ease-out) 440ms both;
}

.contact-link {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-link:hover {
  color: var(--white);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.25rem 2.25rem;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

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