:root {
  --bg: oklch(98% 0.004 95);
  --surface: oklch(100% 0.002 95);
  --fg: oklch(20% 0.018 70);
  --muted: oklch(48% 0.012 70);
  --border: oklch(90% 0.006 95);
  --accent: oklch(52% 0.1 28);
  --accent-soft: oklch(52% 0.1 28 / 0.08);
  --accent-glow: oklch(52% 0.1 28 / 0.3);
  --slate: oklch(40% 0.04 255);
  --slate-soft: oklch(40% 0.04 255 / 0.08);
  --home-header-height: 61px;
  --font-display: "Iowan Old Style", Charter, Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --shadow-card: 0 1px 3px oklch(0% 0 0 / 0.04), 0 8px 24px oklch(0% 0 0 / 0.06);
  --shadow-float: 0 4px 12px oklch(0% 0 0 / 0.06), 0 16px 48px oklch(0% 0 0 / 0.08);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.home-page {
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
}

.home-container,
.home-footer {
  width: min(960px, 100%);
  margin-inline: auto;
  padding-inline: 24px;
}

.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-import,
.home-import__button {
  display: inline-flex;
  align-items: center;
}

.home-import__button {
  border-radius: 999px;
  background: var(--accent);
  color: var(--surface);
  font-weight: 500;
}

.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      180deg,
      oklch(98% 0.004 95 / 0.02) 0%,
      oklch(98% 0.004 95 / 0) 55%,
      oklch(98% 0.004 95 / 0.45) 82%,
      var(--bg) 100%
    ),
    url("/home-page/hero-background.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 80px);
}

.home-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-hero h1,
.home-section h2,
.home-footer-cta h2 {
  margin: 0;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.home-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.15;
}

.hl-terracotta {
  color: var(--accent);
}

.hl-slate {
  color: var(--slate);
}

.home-hero p,
.home-intro,
.home-highlight__text p,
.home-footer-cta p {
  color: var(--muted);
}

.home-hero p {
  max-width: 480px;
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
}

.home-import {
  width: 100%;
  max-width: 520px;
  min-height: 52px;
  padding: 6px 6px 6px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--muted);
  font-size: 15px;
}

.home-import > span:first-child {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-import__button {
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 10px 22px;
  font-size: 14px;
}

.home-highlight__image,
.home-card {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-float);
}
