:root {
  color-scheme: light;
  --bg: #f5efe5;
  --bg-strong: #eadbc6;
  --surface: rgba(255, 251, 245, 0.85);
  --surface-strong: #fffaf2;
  --ink: #1c180f;
  --muted: #665c4a;
  --line: rgba(28, 24, 15, 0.12);
  --brand: #c85d28;
  --brand-dark: #9a461d;
  --accent: #0b6e69;
  --danger: #b03a2e;
  --shadow: 0 24px 60px rgba(55, 33, 10, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --sans: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 93, 40, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(11, 110, 105, 0.18), transparent 30%),
    linear-gradient(180deg, #fbf6ee 0%, var(--bg) 42%, #efe6d7 100%);
}

a {
  color: inherit;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.upload-panel,
.proof-card,
.metric-card,
.details-card,
.job-panel,
.flash-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -60px -110px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(200, 93, 40, 0.24), rgba(11, 110, 105, 0.18));
  filter: blur(2px);
}

.eyebrow,
.panel-kicker,
.proof-title,
.badge,
.metric-label,
.details-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.lede,
.proof-card p,
.job-panel p,
.details-card strong,
.fine-print,
.job-file {
  color: var(--muted);
}

.lede {
  margin: 18px 0 0;
  max-width: 54ch;
  font-size: 1.05rem;
  line-height: 1.6;
}

.stat-row,
.proof-strip,
.job-grid,
.details-grid {
  display: grid;
  gap: 16px;
}

.stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.stat-card,
.proof-card,
.metric-card,
.details-card {
  padding: 18px;
}

.stat-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(28, 24, 15, 0.08);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 8px;
}

.upload-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(250, 238, 220, 0.92));
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.price-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(200, 93, 40, 0.12);
  color: var(--brand-dark);
  font-weight: 700;
  white-space: nowrap;
}

.upload-form {
  display: grid;
  gap: 14px;
}

.file-field {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.file-field input {
  width: 100%;
  border: 1px dashed rgba(28, 24, 15, 0.2);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

button,
.primary-link,
.secondary-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

button,
.primary-link {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(200, 93, 40, 0.26);
}

.secondary-link {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.fine-print,
.form-error {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-error {
  color: var(--danger);
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.proof-card p {
  margin: 10px 0 0;
  line-height: 1.6;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.brand-link {
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.job-file {
  text-align: right;
}

.flash-banner {
  padding: 16px 18px;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 700;
}

.job-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 20px 22px;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.metric-card.accent {
  background: linear-gradient(135deg, rgba(11, 110, 105, 0.12), rgba(200, 93, 40, 0.08));
}

.details-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.details-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.job-panel {
  margin-top: 20px;
  padding: 28px;
}

.job-panel h2 {
  margin-top: 12px;
}

.job-panel p {
  margin: 10px 0 0;
  max-width: 60ch;
  line-height: 1.6;
}

.job-panel form {
  margin-top: 18px;
}

.pulse-bar {
  margin-top: 22px;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(28, 24, 15, 0.08);
  position: relative;
}

.pulse-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 35%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(11, 110, 105, 0.2), rgba(200, 93, 40, 0.9));
  animation: pulse-slide 1.6s ease-in-out infinite;
}

.missing-shell {
  max-width: 760px;
}

@keyframes pulse-slide {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(320%);
  }
}

@media (max-width: 900px) {
  .hero,
  .proof-strip,
  .details-grid,
  .job-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .shell {
    width: min(100% - 20px, 1120px);
    padding: 16px 0 40px;
  }

  .hero-copy,
  .upload-panel,
  .proof-card,
  .job-panel {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 26px;
  }

  .panel-top,
  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-file {
    text-align: left;
  }
}
