:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5c6874;
  --brand: #34536a;
  --brand-dark: #223d50;
  --accent: #8a3d20;
  --paper: #ffffff;
  --soft: #f3f6f8;
  --line: #d9e0e5;
  --success: #1f6b45;
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: var(--brand-dark); text-underline-offset: 0.18em; }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible {
  outline: 3px solid #f0a078;
  outline-offset: 4px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus { top: 1rem; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 224, 229, 0.9);
  background: rgba(255, 255, 255, 0.96);
}
.nav {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.nav-links a { font-weight: 650; text-decoration: none; }
.hero {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: linear-gradient(135deg, #f8fafb 0%, #edf3f6 100%);
}
.logo-window {
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 8.4 / 1;
  margin-bottom: 2.2rem;
  overflow: hidden;
}
.logo-window img {
  position: absolute;
  left: -1%;
  top: -394%;
  width: 102%;
  max-width: none;
}
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -0.035em; }
h1 { max-width: 850px; margin-bottom: 1.25rem; font-size: clamp(2.5rem, 7vw, 5.7rem); }
h2 { margin-bottom: 1rem; font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { margin-bottom: 0.6rem; font-size: 1.35rem; }
.lead { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border: 2px solid var(--brand-dark);
  border-radius: 0.7rem;
  color: #fff;
  background: var(--brand-dark);
  font-weight: 750;
  text-decoration: none;
}
.button:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.button.secondary { color: var(--brand-dark); background: transparent; }
.button.secondary:hover { color: var(--accent); background: #fff; border-color: var(--accent); }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section.soft { background: var(--soft); }
.section-intro { max-width: 700px; margin-bottom: 2rem; color: var(--muted); }
.grid { display: grid; gap: 1.25rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(28, 50, 65, 0.07);
}
.product-card { display: grid; grid-template-columns: 96px 1fr; gap: 1.5rem; align-items: start; }
.app-icon { width: 96px; border-radius: 22%; box-shadow: 0 8px 20px rgba(23, 33, 43, 0.15); }
.plain-list { padding-left: 1.25rem; }
.plain-list li + li { margin-top: 0.45rem; }
.trust-note {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--success);
  border-radius: 0.35rem;
  background: #edf7f1;
}
.product-hero { padding: clamp(3.5rem, 7vw, 6rem) 0; background: #f8f1e9; }
.product-hero-grid { display: grid; grid-template-columns: 1fr 220px; gap: 3rem; align-items: center; }
.product-hero .app-icon { width: 220px; }
.screens { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.screen { border: 1px solid var(--line); border-radius: 1rem; overflow: hidden; background: #fff; box-shadow: 0 15px 35px rgba(23, 33, 43, 0.1); }
.screen img { width: 100%; height: auto; }
.legal { max-width: 790px; }
.legal h2 { margin-top: 2.5rem; font-size: 1.6rem; }
.legal h3 { margin-top: 1.7rem; font-size: 1.15rem; }
.legal .meta { color: var(--muted); }
.legal-box { padding: 1rem 1.2rem; border: 1px solid #e2c2b2; border-radius: 0.7rem; background: #fff7f2; }
.site-footer { padding: 2.5rem 0; border-top: 1px solid var(--line); background: #f8fafb; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.small { color: var(--muted); font-size: 0.9rem; }
.contact-form { margin-top: 2rem; }
.form-grid { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field label, .field legend { font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #9aa8b2;
  border-radius: 0.55rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.field textarea { min-height: 10rem; resize: vertical; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: 0.65rem; align-items: start; }
.checkbox input { width: 1.15rem; height: 1.15rem; margin-top: 0.25rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 760px) {
  .grid.two, .grid.three, .screens, .product-hero-grid { grid-template-columns: 1fr; }
  .screens { max-width: 390px; margin-inline: auto; }
  .product-hero .app-icon { width: 140px; order: -1; }
  .product-card { grid-template-columns: 72px 1fr; }
  .product-card .app-icon { width: 72px; }
  .nav { align-items: flex-start; padding-block: 0.8rem; }
  .nav-links { justify-content: flex-end; font-size: 0.92rem; }
  .logo-window { margin-bottom: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media print {
  .site-header, .actions, .site-footer { display: none; }
  body { color: #000; background: #fff; }
  .section, .hero, .product-hero { padding: 1rem 0; background: #fff; }
}
