:root {
  color-scheme: light;
  --ink: #25282d;
  --muted: #626b70;
  --soft: #eef1ec;
  --card: #ffffff;
  --accent: #47685e;
  --accent-strong: #2f4f46;
  --sage: #cbd8ce;
  --gold: #bba15f;
  --line: rgba(37, 40, 45, 0.12);
  --shadow: 0 24px 70px rgba(37, 40, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f7f3;
  color: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(203, 216, 206, 0.68), transparent 32rem),
    radial-gradient(circle at 88% 20%, rgba(187, 161, 95, 0.20), transparent 26rem),
    linear-gradient(135deg, #f6f4ed 0%, #eef1ec 52%, #ffffff 100%);
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

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

.mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(71, 104, 94, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 42px;
  align-items: center;
  padding: 72px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 780;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(71, 104, 94, 0.20);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.phone {
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 38px;
  background: linear-gradient(180deg, #ffffff 0%, #eef1ec 100%);
  box-shadow: var(--shadow);
  padding: 18px;
}

.screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #f9f8f4;
  border: 1px solid var(--line);
}

.hero-image {
  height: 220px;
  background:
    linear-gradient(180deg, rgba(37, 40, 45, 0.03), rgba(37, 40, 45, 0.42)),
    url("https://images.unsplash.com/photo-1543353071-10c8ba85a904?auto=format&fit=crop&w=1100&q=80") center / cover;
}

.mock-content {
  padding: 18px;
}

.mock-title {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(71, 104, 94, 0.10);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 720;
}

.mock-card {
  margin-top: 12px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.mock-card strong {
  display: block;
  margin-bottom: 8px;
}

.mock-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: 54px 0;
}

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  letter-spacing: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.document {
  max-width: 860px;
  padding: 34px;
  margin: 34px auto 80px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(37, 40, 45, 0.09);
}

.document h1 {
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1;
}

.document h2 {
  margin-top: 34px;
  font-size: 1.25rem;
}

.document p,
.document li {
  color: var(--muted);
  line-height: 1.72;
}

.document ul {
  padding-left: 20px;
}

.footer {
  padding: 32px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .phone {
    min-height: 500px;
  }

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

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .document {
    padding: 22px;
    margin-top: 18px;
  }
}
