:root {
  color-scheme: light;
  --bg: #f7f5f1;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #62605c;
  --line: #dfd9d0;
  --accent: #f05a28;
  --accent-dark: #b63818;
  --accent-soft: #fff0e8;
  --shadow: 0 24px 80px rgba(23, 23, 23, 0.09);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 90, 40, 0.16), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 58%, #f2ece3 100%);
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

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

.home {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: 56px 0;
}

.hero {
  position: relative;
  max-width: 760px;
  padding: clamp(40px, 7vw, 84px) 0;
}

.hero::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 72px;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--accent), #ff9a3d);
  border-radius: 999px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(240, 90, 40, 0.26);
}

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

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.button.secondary:hover {
  color: var(--accent-dark);
  border-color: rgba(240, 90, 40, 0.42);
}

.legal {
  padding: 48px 0 72px;
}

.legal-content {
  max-width: 820px;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(223, 217, 208, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-weight: 750;
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 38px;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  line-height: 1;
}

.legal-content section {
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 1.06rem;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 24px, 1120px);
  }

  .home {
    align-items: start;
    padding: 72px 0 40px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .legal {
    padding: 16px 0 32px;
  }
}
