:root {
  color-scheme: light;
  --cream: #f6f4ef;
  --ink: #0f2a2f;
  --teal: #1e6f73;
  --mint: #cfe3dd;
  --sun: #f1b75b;
  --stone: #d5d0c3;
  --shadow: 0 20px 50px rgba(15, 42, 47, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--cream) 48%, #ebe6db 100%);
  min-height: 100vh;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 60px;
  display: grid;
  gap: 32px;
}

.hero {
  display: grid;
  gap: 32px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__content {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.logo {
  width: 380px;
  max-width: 100%;
  height: auto;
  margin-bottom: 28px;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.1;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--teal);
  color: #ffffff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

p {
  margin: 0;
  color: rgba(15, 42, 47, 0.8);
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.button:hover {
  background: #155a5e;
  transform: translateY(-1px);
}

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

.button--ghost {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
}

.button--ghost:hover {
  background: rgba(30, 111, 115, 0.08);
  border-color: #155a5e;
  color: #155a5e;
}

.button--ghost:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

.hero__art {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(30, 111, 115, 0.18), transparent 70%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 0;
  pointer-events: none;
}

.ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px dashed rgba(30, 111, 115, 0.25);
  animation: spin 20s linear infinite;
}

.ring--small {
  width: 190px;
  height: 190px;
  border-style: solid;
  border-color: rgba(15, 42, 47, 0.12);
  animation-duration: 16s;
}

.ring--tiny {
  width: 120px;
  height: 120px;
  border-color: rgba(241, 183, 91, 0.35);
  animation-duration: 10s;
}

.pulse {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 0 rgba(241, 183, 91, 0.6);
  animation: pulse 3s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ring,
  .ring--small,
  .ring--tiny {
    animation: none;
  }

  .pulse {
    animation: none;
  }
}

.hero__tag {
  position: absolute;
  bottom: 28px;
  right: 32px;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  box-shadow: var(--shadow);
  z-index: 2;
}

.panel {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
}

.panel h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.grid article {
  background: var(--cream);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 42, 47, 0.05);
}

.grid h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.panel--accent {
  background: linear-gradient(120deg, rgba(30, 111, 115, 0.08), rgba(241, 183, 91, 0.18));
}

.details {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.details span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: rgba(15, 42, 47, 0.6);
}

.details strong {
  display: block;
  font-size: 17px;
  margin-top: 4px;
}

.panel__note {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 42, 47, 0.08);
}

.faq {
  background: #ffffff;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.faq h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(15, 42, 47, 0.7);
}

.footer strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.footer > div span {
  display: block;
  margin-top: 4px;
}

.footer__copyright {
  display: inline;
  white-space: nowrap;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(241, 183, 91, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(241, 183, 91, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(241, 183, 91, 0);
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 28px;
  }

  .logo {
    width: 320px;
    margin-bottom: 24px;
  }

  .hero__art {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 8px;
    width: 260px;
    height: 260px;
    justify-self: center;
  }

  .hero__tag {
    position: static;
    margin-top: 16px;
  }

  .panel {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 32px 16px 48px;
  }

  .hero {
    padding: 24px 20px;
    gap: 24px;
  }

  .hero__content {
    gap: 16px;
  }

  .logo {
    width: min(280px, 85vw);
    margin-bottom: 20px;
  }

  .hero__art {
    width: 200px;
    height: 200px;
    margin-top: 0;
    margin-bottom: 8px;
  }

  .ring {
    width: 180px;
    height: 180px;
  }

  .ring--small {
    width: 130px;
    height: 130px;
  }

  .ring--tiny {
    width: 80px;
    height: 80px;
  }

  .pulse {
    width: 48px;
    height: 48px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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