:root {
  --charcoal: #202328;
  --deep-slate: #0f131a;
  --glow: #f7931e;
  --light-gray: #f7f8fa;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, #eef0f5 35%, #d6d9e3 70%, #b1b5c1 100%);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  padding: 32px;
}

.shell {
  width: min(460px, 90vw);
  background: var(--light-gray);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.shell::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.logo {
  width: 110px;
  height: auto;
  margin-bottom: 22px;
}

.brand {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(32, 35, 40, 0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 10px 0 18px;
  font-size: 12px;
}

h1 {
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.lede {
  color: rgba(32, 35, 40, 0.75);
  font-size: 16px;
  margin-bottom: 24px;
}

.contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fba935, #f7931e 80%);
  color: #1c1c1c;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 15px 30px rgba(247, 147, 30, 0.35);
}

.contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(247, 147, 30, 0.5);
}

@media (max-width: 520px) {
  body {
    padding: 18px;
  }

  .shell {
    padding: 32px 22px;
  }
}
