:root {
  --bg: #fffaf2;
  --ink: #1f2933;
  --muted: #5c6670;
  --line: #eadfce;
  --brand: #f7a51b;
  --brand-dark: #9a5a00;
  --green: #287a5f;
  --panel: #ffffff;
  --shadow: 0 18px 55px rgba(31, 41, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(234, 223, 206, 0.8);
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 22px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.container {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 54px;
  padding: 58px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-top: 16px;
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.store-badge img {
  display: block;
  height: 52px;
  width: auto;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 36px 0 28px 44px;
  border-radius: 32px;
  background: #f2d9ad;
  transform: rotate(-4deg);
}

.hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 520px);
  margin-left: auto;
  filter: drop-shadow(0 28px 38px rgba(31, 41, 51, 0.18));
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #ffffff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(31, 41, 51, 0.06);
}

.feature .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 16px;
  background: #fff0d0;
  color: var(--brand-dark);
  font-weight: 900;
}

.feature p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
}

.legal-page {
  padding: 58px 0 86px;
}

.legal-shell {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(24px, 5vw, 54px);
  box-shadow: 0 10px 26px rgba(31, 41, 51, 0.06);
}

.legal-shell h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.legal-shell h2 {
  margin-top: 34px;
  font-size: 25px;
}

.legal-shell h3 {
  margin-top: 22px;
  font-size: 19px;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.legal-shell ul {
  padding-left: 22px;
}

.legal-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.notice {
  border-left: 4px solid var(--brand);
  background: #fff6e3;
  padding: 16px 18px;
  margin: 24px 0;
}

.company-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  padding: 14px 16px;
  margin: 20px 0 28px;
}

.company-details p {
  margin: 0;
  font-size: 15px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    margin: 0 auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
