:root {
  --ink: #17212b;
  --muted: #5f6b76;
  --accent: #d44d1c;
  --accent-deep: #a93712;
  --surface: rgba(255, 250, 242, 0.92);
  --line: rgba(23, 33, 43, 0.12);
  --shadow: 0 20px 50px rgba(17, 23, 29, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 77, 28, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(23, 33, 43, 0.1), transparent 28%),
    linear-gradient(180deg, #f7f1e7 0%, #f1eadf 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.hero-shell {
  width: min(760px, 100%);
}

.brand-mark {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.brand-accent {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.brand-name {
  color: var(--muted);
}

.hero-card {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.4rem, 10vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
}

.hero-text {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

@media (max-width: 640px) {
  .brand-mark {
    flex-direction: column;
    gap: 0.25rem;
  }
}
