:root {
  color-scheme: light;
  --background: #faf9f6;
  --foreground: #1b1820;
  --border: #e4dfd3;
  --violet: #6d28d9;
  --muted: #69636f;
  --soft: #f1eee7;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--background);
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.brand img {
  display: block;
    width: 128px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: var(--muted);
}
.nav-links a:hover,
.footer-links a:hover {
  color: var(--violet);
}
.nav-cta {
  color: var(--foreground);
  border-bottom: 1px solid var(--foreground);
  padding-bottom: 3px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--foreground);
  font: inherit;
}
.section-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 10%;
  padding-top: 92px;
  padding-bottom: 100px;
}
.eyebrow {
  color: var(--violet);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}
h1,
h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  max-width: 660px;
  margin: 0 0 28px;
}
h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  max-width: 560px;
  margin: 0;
}
h3 {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}
p {
  line-height: 1.65;
}
.hero-subhead {
  max-width: 500px;
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 34px;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  background: var(--violet);
  border: 0;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
}
.primary-button:hover {
  transform: translateY(-2px);
  background: #5b21b6;
}
.screenshot-placeholder {
  overflow: hidden;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 18px 18px 0 rgba(228, 223, 211, 0.7);
}
.placeholder-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 3px 2px 13px;
  color: var(--muted);
  font-size: 10px;
}
.placeholder-content {
  min-width: 0;
  width: calc(100% + 30px);
  margin: 0 -15px -15px;
}
.placeholder-content img {
  display: block;
  width: 100%;
  height: auto;
}
.divider-section {
  border-top: 1px solid var(--border);
  padding-top: 92px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 12%;
}
.section-intro {
  align-self: start;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 7px;
}
.audience-grid article,
.process-grid article {
  border-top: 2px solid var(--foreground);
  padding-top: 16px;
}
.audience-grid p,
.feature-row p,
.process-grid p {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 0;
}
.feature-list {
  border-top: 1px solid var(--border);
}
.feature-row {
  display: grid;
  grid-template-columns: 52px minmax(120px, 0.65fr) 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.feature-index {
  color: var(--violet);
  font-size: 12px;
}
.feature-row p {
  margin: 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.process-grid article {
  padding-top: 15px;
}
.process-grid span {
  display: block;
  color: var(--violet);
  font-size: 12px;
  margin-bottom: 30px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
details p {
  color: var(--muted);
  font-size: 14px;
  max-width: 550px;
  margin: 14px 0 0;
}
.contact-section {
  border-top: 1px solid var(--border);
  padding-top: 80px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
}
.contact-section form {
  display: grid;
  gap: 8px;
  max-width: 480px;
}
.contact-section label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.contact-section input,
.contact-section textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 8px;
  padding: 12px;
  color: var(--foreground);
  font: inherit;
}
.contact-section textarea {
  resize: vertical;
}
.form-status {
  color: var(--violet);
  font-size: 12px;
  margin: 4px 0 0;
}
.final-cta {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 70px;
  padding-bottom: 75px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.site-footer {
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: end;
}
.footer-brand img {
  display: block;
  width: 110px;
}
.footer-brand p,
.copyright {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 12px;
  flex-wrap: wrap;
}
.copyright {
  text-align: right;
}
@media (max-width: 760px) {
  .site-nav {
    height: 64px;
    padding: 0 20px;
    position: relative;
  }
  .brand img {
    width: 128px;
    height: 52px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 64px;
    padding: 16px;
    background: var(--background);
    border: 1px solid var(--border);
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav-links.is-open {
    display: flex;
  }
  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 58px;
    padding-top: 74px;
    padding-bottom: 82px;
  }
  .hero h1 {
    font-size: clamp(46px, 13vw, 68px);
  }
  .screenshot-placeholder {
    width: 92%;
    align-self: flex-end;
  }
  .divider-section {
    display: block;
    padding-top: 68px;
    padding-bottom: 75px;
  }
  .section-intro {
    margin-bottom: 42px;
  }
  .audience-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }
  .feature-row p {
    grid-column: 2;
    margin-top: -5px;
  }
  .contact-section {
    display: block;
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .contact-section form {
    margin-top: 42px;
  }
  .final-cta {
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .final-cta .primary-button {
    margin-top: 30px;
  }
  .site-footer {
    display: block;
  }
  .footer-links {
    margin: 20px 0 16px;
  }
  .copyright {
    text-align: left;
  }
}
