:root {
  color-scheme: light;
  --paper: #f7f5ef;
  --paper-soft: #fffdf8;
  --ink: #1d231f;
  --muted: #4f5a54;
  --accent: #2f6f58;
  --accent-deep: #245642;
  --line: rgba(29, 35, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
}

a {
  color: var(--accent);
  font-weight: 500;
  text-decoration-color: rgba(47, 111, 88, 0.3);
  text-underline-offset: 0.24em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

a:hover {
  color: var(--accent-deep);
  text-decoration-color: rgba(36, 86, 66, 0.7);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0.35rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 2.5rem 1.25rem;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(47, 111, 88, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, #fbfaf6 0%, #f3f0e7 48%, #e9eee8 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(to right, rgba(29, 35, 31, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29, 35, 31, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  opacity: 0.6;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23noise)' opacity='0.38'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.055;
}

.surface {
  position: relative;
  width: min(100%, 64rem);
  margin: 0 auto;
}

.surface::before,
.surface::after {
  position: absolute;
  z-index: -1;
  height: 1px;
  background: rgba(47, 111, 88, 0.18);
  content: "";
  transform: rotate(-16deg);
}

.surface::before {
  top: 9%;
  left: 2%;
  width: min(54rem, 78vw);
}

.surface::after {
  right: -8rem;
  bottom: 14%;
  width: 44rem;
}

.panel {
  width: min(100%, 48rem);
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.6);
  box-shadow: 0 32px 90px rgba(29, 35, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  margin: 0;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  max-width: 36rem;
  margin: 2rem 0 0;
  font-size: clamp(2.25rem, 7.2vw, 3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
}

.contact {
  max-width: 36rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.soon {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.label {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.label a {
  display: inline;
  margin-left: 0.2rem;
}

@media (min-width: 640px) {
  .hero {
    padding: 2.5rem 2rem;
  }

  .panel {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 3rem;
  }

  .panel {
    padding: 3rem;
  }
}
