:root {
  color-scheme: light;
  --ink: #101315;
  --muted: #5c646d;
  --paper: #f7f3ed;
  --panel: #ffffff;
  --line: rgba(16, 19, 21, 0.12);
  --gold: #d7a541;
  --coral: #df655c;
  --shadow: 0 24px 70px rgba(16, 19, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(51, 181, 108, 0.14), transparent 28rem),
    radial-gradient(circle at 85% 78%, rgba(223, 101, 92, 0.16), transparent 25rem),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 3.5rem);
}

.hero {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.brand-panel,
.site-footer,
.hero-copy {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-panel {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 4rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(51, 181, 108, 0.26), transparent 42%),
    linear-gradient(315deg, rgba(215, 165, 65, 0.28), transparent 35%),
    #101315;
  border-radius: 8px;
  position: relative;
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.brand-panel::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  right: -5rem;
  bottom: -5rem;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.14) 0 2px,
    transparent 2px 14px
  );
  transform: rotate(8deg);
}

.brand-logo {
  width: min(100%, 390px);
  height: auto;
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(2rem, 6vw, 5rem);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.lede {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  color: #ffffff;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.site-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 820px) {
  .site-shell {
    align-items: start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .brand-panel,
  .hero-copy {
    min-height: auto;
  }

  .brand-panel {
    aspect-ratio: 16 / 9;
    padding: 2rem;
  }

  .hero-copy {
    padding: 2rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

}

@media (max-width: 460px) {
  .site-shell {
    padding: 0.85rem;
  }

  .brand-panel {
    aspect-ratio: 4 / 3;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
