:root {
  --bg-top: #f8f2ea;
  --bg-bottom: #ead8c2;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.86);
  --line: rgba(18, 54, 41, 0.1);
  --ink: #21313c;
  --muted: #5f5b56;
  --forest: #123629;
  --teal: #0a7b83;
  --orange: #cc6a2c;
  --shadow: 0 24px 80px rgba(16, 18, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 16%, rgba(18, 54, 41, 0.14), transparent 18%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.88;
  }

  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes breathe-soft {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(23, 29, 33, 0.08);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 28px 54px rgba(23, 29, 33, 0.12);
  }
}

@keyframes drift-glow {
  0%,
  100% {
    transform: translate3d(-8px, 0, 0) scale(1);
    opacity: 0.28;
  }

  50% {
    transform: translate3d(12px, -10px, 0) scale(1.08);
    opacity: 0.44;
  }
}

.landing {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 18px;
  animation: fade-up 700ms ease both;
}

.brand-logo-home {
  display: inline-flex;
  align-items: center;
  width: clamp(240px, 28vw, 360px);
}

.brand-logo-home img {
  display: block;
  width: 100%;
  height: auto;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ghost-link {
  color: rgba(33, 49, 60, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  padding: 20px 0 28px;
}

.hero-copy,
.quote-panel,
.feature-band article,
.split-section > div,
.callout-strip,
.footer {
  animation: fade-up 700ms ease both;
}

.hero-copy {
  padding: 28px 0;
}

.hero-brand {
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-subeyebrow {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Newsreader", serif;
  font-size: clamp(3.1rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead,
.feature-band p,
.split-section p,
.callout-strip p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 59ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.pill-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row {
  margin-top: 28px;
}

.pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(18, 54, 41, 0.12);
  color: var(--forest);
  box-shadow: 0 10px 24px rgba(23, 29, 33, 0.06);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-row {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  background: var(--forest);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 54, 41, 0.12);
}

.quote-panel {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.74)),
    linear-gradient(145deg, rgba(18, 54, 41, 0.08), rgba(204, 106, 44, 0.08));
  box-shadow: var(--shadow);
}

.graphic-shell {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-radius: 24px;
}

.graphic-atlas-native {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 54, 41, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.graphic-atlas-native::after {
  content: "";
  position: absolute;
  inset: 22% 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 123, 131, 0.22), rgba(10, 123, 131, 0.01));
  filter: blur(28px);
  opacity: 0.3;
  animation: drift-glow 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.atlas-center,
.atlas-label {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(23, 29, 33, 0.08);
  z-index: 2;
}

.atlas-center {
  left: 50%;
  top: 50%;
  width: 124px;
  height: 124px;
  margin-left: -62px;
  margin-top: -62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 54, 41, 0.96);
  color: #edf5ef;
  font-weight: 800;
  animation: breathe-soft 7s ease-in-out infinite;
}

.atlas-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(18, 54, 41, 0.14);
  transform: translate(-50%, -50%);
}

.atlas-ring-a {
  width: 220px;
  height: 220px;
  animation: orbit-spin 34s linear infinite;
}

.atlas-ring-b {
  width: 300px;
  height: 300px;
  border-style: dashed;
  animation: orbit-spin-reverse 44s linear infinite;
}

.atlas-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(204, 106, 44, 0.12);
  z-index: 2;
  animation: pulse-soft 4.8s ease-in-out infinite;
}

.atlas-dot-a {
  left: 20%;
  top: 50%;
}

.atlas-dot-b {
  right: 16%;
  top: 28%;
  animation-delay: 1.2s;
}

.atlas-dot-c {
  right: 26%;
  bottom: 18%;
  animation-delay: 2.4s;
}

.atlas-label {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  animation: float-soft 8s ease-in-out infinite;
}

.atlas-label-a {
  left: 12%;
  top: 44%;
}

.atlas-label-b {
  right: 8%;
  top: 18%;
  animation-delay: 1.3s;
}

.atlas-label-c {
  right: 16%;
  bottom: 6%;
  animation-delay: 2.6s;
}

.feature-band,
.split-section {
  display: grid;
  gap: 20px;
}

.feature-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 28px 0 22px;
}

.split-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 28px 0 22px;
}

.feature-band article,
.split-section > div {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(18, 54, 41, 0.07);
  box-shadow: var(--shadow);
}

.feature-band h2,
.split-section h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.simple-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.mini-note {
  margin-top: 14px;
  color: var(--ink);
}

.callout-strip {
  margin-top: 10px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(18, 54, 41, 0.94);
  box-shadow: var(--shadow);
}

.callout-strip p {
  margin: 0;
  max-width: 58ch;
  color: #edf5ef;
  font-size: 1.05rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 48px;
  font-size: 0.94rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero,
  .feature-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .brand-logo-home {
    width: min(320px, 100%);
  }

  .hero h1 {
    max-width: none;
  }

  .atlas-label-a,
  .atlas-label-b,
  .atlas-label-c,
  .atlas-dot-a,
  .atlas-dot-b,
  .atlas-dot-c {
    position: static;
    margin-bottom: 12px;
  }

  .atlas-ring {
    display: none;
  }

  .graphic-shell {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    gap: 12px;
  }

  .atlas-center {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 12px;
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .landing {
    width: min(100% - 20px, 1120px);
  }

  .topbar {
    padding-top: 22px;
  }

  .hero-copy,
  .quote-panel,
  .feature-band article,
  .split-section > div {
    padding: 20px;
  }

  .quote-panel {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .quote-panel,
  .feature-band article,
  .split-section > div,
  .callout-strip,
  .footer,
  .topbar,
  .atlas-ring-a,
  .atlas-ring-b,
  .atlas-dot,
  .atlas-label,
  .atlas-center,
  .graphic-atlas-native::after {
    animation: none !important;
  }
}
