:root {
  --color-primary: #e43d22;
  --color-primary-dark: #b92f1b;
  --color-text: #1f1f1f;
  --color-text-muted: #5f5f5f;
  --color-background: #ffffff;
  --color-surface: #f7f5f2;
  --color-border: #e6e0da;
  --color-accent: #fbe4de;
  --shadow-soft: 0 18px 50px rgba(31, 31, 31, 0.08);
  --radius-card: 16px;
  --radius-button: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(228, 61, 34, 0.12), transparent 28%),
    linear-gradient(180deg, #fff8f4 0%, var(--color-background) 34%, #fcfbf9 100%);
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  padding: 24px 0 16px;
}

.site-header .shell,
.site-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #f39161 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
}

.brand-mark::before {
  width: 7px;
  height: 24px;
  top: 10px;
  left: 18px;
  border-radius: 4px;
}

.brand-mark::after {
  width: 22px;
  height: 7px;
  top: 18px;
  left: 10px;
  border-radius: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.84rem;
  color: var(--color-text-muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

.hero {
  padding: 56px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.content-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(230, 224, 218, 0.9);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(5px);
}

.hero-copy {
  padding: 44px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.1rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

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

.button-primary {
  background: var(--color-primary);
  color: #fff;
}

.button-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.hero-card,
.content-card {
  padding: 32px;
}

.checklist,
.support-list,
.policy-list {
  margin: 0;
  padding-left: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.checklist li + li,
.support-list li + li,
.policy-list li + li {
  margin-top: 10px;
}

.section {
  padding: 28px 0 82px;
}

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

.status-banner {
  display: none;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
}

.status-banner.is-visible {
  display: block;
}

.status-banner[data-status="error"] {
  background: #fff2f0;
  border-color: #f5c4bc;
  color: #7a271a;
}

.status-banner[data-status="success"] {
  background: #f0fbf6;
  border-color: #b8e0ca;
  color: #1c5a37;
}

.site-footer {
  margin-top: auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(230, 224, 218, 0.8);
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.stack > * + * {
  margin-top: 18px;
}

@media (max-width: 960px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .content-card {
    padding: 28px;
  }

  .site-header .shell,
  .site-footer .shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
