:root {
  color-scheme: light;
  --bg: #f8f6f1;
  --surface: #ffffff;
  --text: #101418;
  --muted: #626970;
  --border: #e5e0d7;
  --teal: #0d6762;
  --teal-dark: #07524e;
  --teal-soft: #e8f6ef;
  --red: #d83a34;
  --red-soft: #fdeaea;
  --blue: #115ea8;
  --blue-soft: #e8f2ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(248, 246, 241, 0.96);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal);
}

.hero {
  min-height: 610px;
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 76px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 44px);
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

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

.trust-line {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 750;
}

.trust-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--teal-soft);
}

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

.button {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--teal);
}

.product-visual {
  position: relative;
  min-height: 440px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(16, 20, 24, 0.09);
}

.app-identity {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-icon {
  width: 82px;
  height: 82px;
  border-radius: 18px;
}

.app-name {
  margin: 0;
  font-size: 27px;
  font-weight: 850;
}

.app-kind {
  margin: 3px 0 0;
  color: var(--muted);
}

.decision-panel {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.media-placeholder {
  height: 142px;
  border: 1px solid #d9d4cc;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #eeebe4;
  color: var(--muted);
  font-weight: 700;
}

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

.decision {
  min-height: 44px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 850;
}

.decision.trash {
  background: var(--red-soft);
  color: var(--red);
}

.decision.later {
  background: var(--blue-soft);
  color: var(--blue);
}

.decision.keep {
  background: var(--teal-soft);
  color: var(--teal);
}

.band {
  border-top: 1px solid var(--border);
  padding: 72px 0;
}

.band.white {
  background: var(--surface);
}

.section-intro {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-intro p,
.copy p,
.copy li {
  color: var(--muted);
}

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

.feature {
  padding-top: 18px;
  border-top: 3px solid var(--teal);
}

.feature:nth-child(2) {
  border-color: var(--blue);
}

.feature:nth-child(3) {
  border-color: var(--red);
}

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

.legal-page {
  max-width: 820px;
  padding: 62px 0 90px;
}

.legal-page h1 {
  font-size: clamp(42px, 7vw, 62px);
}

.meta {
  margin: -6px 0 38px;
  color: var(--muted);
  font-size: 14px;
}

.copy h2 {
  margin-top: 38px;
  font-size: 26px;
}

.copy ul {
  padding-left: 22px;
}

.contact-box {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

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

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

@media (max-width: 780px) {
  .nav {
    min-height: 66px;
  }

  .nav-links a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 54px 0;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-visual {
    min-height: 390px;
  }

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

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

@media (max-width: 480px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 48px;
  }

  .product-visual {
    padding: 20px;
  }

  .app-icon {
    width: 68px;
    height: 68px;
    border-radius: 15px;
  }
}
