:root {
  --bg: #f4efe6;
  --panel: rgba(255, 250, 242, 0.78);
  --text: #1f1d1a;
  --muted: #61584c;
  --accent: #cf5c36;
  --accent-dark: #9f3c1c;
  --line: rgba(31, 29, 26, 0.1);
  --shadow: 0 24px 70px rgba(47, 33, 12, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 92, 54, 0.2), transparent 34%),
    linear-gradient(160deg, #f7f1e8 0%, #efe2d0 45%, #ead7c4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 80%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero,
.status-panel,
.card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero {
  padding: 48px;
  border-radius: var(--radius-xl);
}

.hero::after,
.status-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(207, 92, 54, 0.14);
  filter: blur(10px);
}

.hero::after {
  width: 220px;
  height: 220px;
  right: -48px;
  top: -72px;
}

.eyebrow,
.status-label,
.card-number {
  font-family: "Courier New", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  color: #fff7ef;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 14px 30px rgba(159, 60, 28, 0.28);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.75rem;
}

.card h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.card p,
.status-copy {
  color: var(--muted);
  line-height: 1.7;
}

.status-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.status-panel::after {
  width: 180px;
  height: 180px;
  left: -28px;
  bottom: -90px;
}

.status-label {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
}

.status-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
    padding: 24px 0 48px;
  }

  .hero {
    padding: 30px 22px;
  }

  .info-grid,
  .status-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}
