:root {
  color-scheme: light;
  --canvas: #fdf7ed;
  --ink: #1e1e1e;
  --palm: #86785f;
  --sun: rgb(255 196 119 / 85%);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--canvas);
}

body {
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.landing {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem;
  background: var(--canvas);
}

.sun {
  position: absolute;
  z-index: -2;
  top: 48%;
  left: 50%;
  width: min(59rem, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  filter: blur(clamp(4.75rem, 9vw, 7.5rem));
  opacity: 0.96;
  transform: translate(-50%, -50%);
  animation: sun-breathe 12s ease-in-out infinite alternate;
}

.palm {
  position: absolute;
  z-index: -1;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.palm-left {
  top: 0;
  left: 0;
  width: max(58rem, 100vw);
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.palm-right {
  right: -1.5rem;
  bottom: -15%;
  width: clamp(14rem, 28vw, 28.5rem);
  height: auto;
}

.hero {
  display: flex;
  width: min(100%, 52rem);
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  text-align: center;
}

.copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

h1,
p {
  margin: 0;
}

h1 {
  max-width: 50rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.25vw, 3.625rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

p {
  display: flex;
  max-width: 38rem;
  flex-direction: column;
  gap: 0.35rem;
  color: rgb(30 30 30 / 70%);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.45;
}

.oaiz-link {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 999px;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  background: #121212;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 0.15rem 0.25rem rgb(0 0 0 / 10%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.oaiz-link:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.oaiz-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.arrow {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
  place-items: center;
}

.arrow svg {
  width: 0.8rem;
  height: 0.8rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

@keyframes sun-breathe {
  from {
    transform: translate(-50%, -50%) scale(0.94);
  }

  to {
    transform: translate(-50%, -51%) scale(1.04);
  }
}

@media (max-width: 700px) {
  .landing {
    padding-inline: 1.25rem;
  }

  .sun {
    width: 125vw;
  }

  .palm-left {
    left: -18rem;
    width: 72rem;
    opacity: 0.72;
  }

  .palm-right {
    right: -6rem;
    bottom: -13%;
    width: 18rem;
    opacity: 0.76;
  }

  .hero {
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sun {
    animation: none;
  }

  .oaiz-link {
    transition: none;
  }
}
