:root {
  color-scheme: light;
  --bg: #f4f1ea;
  --paper: #fffdf8;
  --ink: #24211d;
  --muted: #686158;
  --line: #ded7cc;
  --accent: #0b5c56;
  --accent-soft: #d7efe8;
  --blue: #174e7c;
  --gold: #f2c96d;
  --shadow: 0 22px 60px rgb(36 33 29 / 12%);
  font-family:
    ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgb(242 201 109 / 36%), transparent 28rem),
    radial-gradient(circle at 92% 4%, rgb(11 92 86 / 16%), transparent 30rem),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 100%);
}

a {
  color: var(--blue);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #c8d9df;
  border-radius: 11px;
  color: #2e637b;
  background: #edf7f8;
  object-fit: cover;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 900;
}

.logo-mark {
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-weight: 700;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 56px;
  align-items: start;
  padding: 70px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid #c5ddd7;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-headline {
  max-width: 820px;
  text-wrap: balance;
  line-height: 1;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.lede {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(20px, 1.75vw, 23px);
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 1px 0 rgb(36 33 29 / 8%);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: #073e3a;
  color: white;
  background: var(--accent);
}

.button.gold {
  border-color: #a77b17;
  color: #3f2b00;
  background: var(--gold);
}

.preview-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgb(255 253 248 / 88%);
  box-shadow: var(--shadow);
}

.preview-card {
  padding: 22px;
  transform: rotate(1.3deg);
}

.mock-app {
  overflow: hidden;
  border: 1px solid #d6d0c6;
  border-radius: 20px;
  background: #f7f7f7;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid #dedede;
  font-weight: 800;
}

.mock-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.mock-metric {
  padding: 16px;
  border: 1px solid #dedede;
  border-radius: 16px;
  background: #fff;
}

.mock-metric strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: #0c5132;
  background: #bcf5d0;
  font-weight: 800;
}

.section {
  padding: 50px 0;
}

.panel {
  padding: 34px;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgb(255 253 248 / 78%);
}

.card p,
.panel p,
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.62;
}

.card p {
  margin-top: 12px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffaf0;
}

.legal {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 72px;
}

.legal h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.legal h2 {
  margin-top: 38px;
  font-size: 30px;
}

.legal p,
.legal ul {
  margin-top: 14px;
}

.footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 14px;
}

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

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

@media (max-width: 840px) {
  .site {
    width: min(100% - 28px, 720px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

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

  .hero {
    gap: 30px;
    padding-top: 34px;
  }

  .hero-headline {
    max-width: 13ch;
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.05em;
  }

  .lede {
    max-width: 100%;
    margin-top: 20px;
    font-size: 19px;
    line-height: 1.5;
  }

  .preview-card {
    transform: none;
  }

  .panel {
    padding: 24px;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}
