:root {
  --brand-red: #d92c33;
  --brand-red-dark: #a31721;
  --ink: #151515;
  --ink-soft: #343434;
  --surface: #ffffff;
  --surface-muted: #f4f4f4;
  --line: rgba(21, 21, 21, 0.1);
  --shadow: 0 24px 60px rgba(21, 21, 21, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(217, 44, 51, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
}

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

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-logo-wrap,
.info-card,
.highlight-card,
.details {
  border-radius: 24px;
}

.brand-logo-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.brand-logo {
  width: min(100%, 420px);
  height: auto;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(217, 44, 51, 0.12);
  color: var(--brand-red-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero-copy h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.95;
  max-width: none;
  width: 100%;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  display: block;
  color: var(--brand-red);
}

.hero-copy p {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.hero-copy {
  width: 100%;
  margin: 0;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.hero-point {
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.9));
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.hero-point strong,
.hero-point span {
  display: block;
}

.hero-point strong {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.hero-point span {
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.93rem;
}

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

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-red), #ff5a52);
  color: #fff;
  box-shadow: 0 18px 32px rgba(217, 44, 51, 0.25);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

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

.info-card,
.highlight-card,
.details {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 24px;
}

.info-card h2,
.details-copy h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.info-card p,
.details-copy li,
.highlight-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.details {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 20px;
  margin-top: 24px;
  padding: 24px;
}

.details-list {
  margin: 0;
  padding-left: 18px;
}

.details-copy li + li {
  margin-top: 10px;
}

.highlight-card {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(217, 44, 51, 0.18), transparent 38%),
    linear-gradient(180deg, #1e1e1e 0%, #111 100%);
  color: #fff;
}

.highlight-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

.highlight-card h3 {
  margin: 10px 0 12px;
  font-size: 1.75rem;
  line-height: 1.05;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 4px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .details,
  .info-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 16px;
    padding-bottom: 30px;
  }

  .hero,
  .details,
  .info-card,
  .highlight-card {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }
}
