:root {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --muted: oklch(0.708 0 0);
  --border: oklch(1 0 0 / 12%);
  --button: oklch(0.922 0 0);
  --button-text: oklch(0.205 0 0);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
}

.glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top,
    oklch(0.28 0 0) 0%,
    transparent 55%
  );
}

.bar,
.content {
  position: relative;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.brand {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 1.5rem;
  padding: 0 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.badge svg,
.button svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.kicker {
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 36rem;
  margin: 1rem 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lede,
.enquiry {
  max-width: 32rem;
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.lede {
  color: var(--muted);
}

.enquiry a,
.lede a,
.footer a {
  text-decoration: underline;
  text-decoration-color: oklch(1 0 0 / 35%);
  text-underline-offset: 0.2em;
}

.enquiry a:hover,
.lede a:hover,
.footer a:hover {
  text-decoration-color: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 2rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.6rem;
  background: var(--button);
  color: var(--button-text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.button:hover {
  filter: brightness(0.92);
}

.footer {
  color: var(--muted);
  font-size: 0.75rem;
}

.footer p {
  margin: 0;
}

.footer a {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  text-decoration: none;
}

@media (min-width: 640px) {
  .bar,
  .content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
