:root {
  --orange: #ff6a1a;
  --orange-deep: #e85a0e;
  --cream: #fbf7f2;
  --paper: #ffffff;
  --ink: #1a1410;
  --muted: #7a6e63;
  --line: #ece5dc;
  --green: #1f8a5b;
  --green-soft: #e8f4ee;
  --shadow: 0 24px 70px rgba(26, 20, 16, 0.10);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 11px 16px;
  background: var(--ink);
  color: #fffaf5;
  font-weight: 760;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(26, 20, 16, 0.12);
}

.button.secondary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 22px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(31, 138, 91, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 720;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: #493c31;
  font-size: 19px;
  max-width: 690px;
}

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

.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.product-visual {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.export-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.cat-tile {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.cat-tile img {
  width: 62px;
  height: 58px;
}

.mini-title {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.mini-copy {
  margin-top: 4px;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 780;
}

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

.format {
  min-height: 58px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font-weight: 760;
  font-size: 13px;
}

.format strong {
  display: block;
  color: var(--orange-deep);
  font-size: 11px;
  margin-bottom: 2px;
}

.local-note {
  margin-top: 16px;
  border: 1px solid rgba(31, 138, 91, 0.18);
  background: var(--green-soft);
  border-radius: 10px;
  padding: 12px;
  color: #155f3f;
  font-size: 14px;
  font-weight: 650;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 22px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

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

.permissions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.permission-list {
  display: grid;
  gap: 8px;
}

.permission-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 700;
}

.permission-item span {
  color: var(--green);
  font-size: 13px;
}

.no span {
  color: var(--orange-deep);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 760;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.page {
  max-width: 860px;
  margin: 0 auto;
  padding: 58px 22px 76px;
}

.page h1 {
  font-size: 46px;
  line-height: 1.05;
}

.page h2 {
  margin-top: 34px;
  font-size: 24px;
}

.page p,
.page li {
  color: #493c31;
}

.page a {
  color: var(--orange-deep);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fffaf5;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

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

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .grid-3,
  .grid-2,
  .permissions {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 42px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
