:root {
  --paper: #f7eddc;
  --paper-deep: #ead9bf;
  --ink: #332218;
  --muted: #6e5846;
  --line: #dfcfbb;
  --green: #5f8b47;
  --green-dark: #416632;
  --gold: #efb64e;
  --blue: #a9d3df;
  --rose: #eeb8ad;
  --white: #fffaf2;
  --shadow: 0 18px 42px rgba(72, 46, 25, 0.14);
  font-family: ui-rounded, "SF Pro Rounded", "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(239, 182, 78, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(169, 211, 223, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--paper) 0%, #f3e7d3 48%, var(--paper-deep) 100%);
  min-height: 100vh;
}

a {
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(72, 46, 25, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: 48px;
  padding: 42px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.74);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(95, 139, 71, 0.14);
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--green);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(65, 102, 50, 0.20);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.82);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.phone-stack {
  position: relative;
  min-height: 570px;
}

.phone-shot {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(330px, 72vw);
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 250, 242, 0.78);
}

.phone-shot.secondary-shot {
  inset: 88px auto auto 0;
  width: min(260px, 54vw);
  transform: rotate(-5deg);
  opacity: 0.96;
}

.section {
  padding: 54px 0;
  border-top: 1px solid rgba(110, 88, 70, 0.16);
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

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

.tile {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 10px 24px rgba(72, 46, 25, 0.07);
}

.tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.legal {
  max-width: 820px;
  padding-bottom: 70px;
}

.legal h1 {
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  margin-top: 36px;
}

.legal h2 {
  margin-top: 34px;
  font-size: 1.3rem;
}

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

.legal ul {
  padding-left: 1.2rem;
}

.notice {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid rgba(239, 182, 78, 0.6);
  border-radius: 16px;
  background: rgba(239, 182, 78, 0.16);
  color: var(--ink);
}

footer {
  padding: 32px 0;
  border-top: 1px solid rgba(110, 88, 70, 0.16);
  color: var(--muted);
  font-size: 0.92rem;
}

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .phone-stack {
    min-height: 500px;
  }

  .phone-shot {
    left: 22%;
    right: auto;
  }

  .phone-shot.secondary-shot {
    left: 0;
  }

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