:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d9d9de;
  --brand: #f04747;
  --brand-dark: #c93632;
  --green: #2f6f56;
  --gold: #f6b731;
  --shadow: 0 18px 45px rgba(89, 38, 27, 0.12);
  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: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

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

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

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

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: #f5f5f7;
  font-weight: 800;
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

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

.hero {
  display: block;
  padding: 66px 22px 54px;
  text-align: center;
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

.hero-app-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #424245;
  font-weight: 700;
}

.hero-app-mark img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.lead {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.22;
}

.hero-actions,
.section-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  color: white;
  background: var(--brand);
  box-shadow: none;
}

.button.secondary {
  color: var(--brand-dark);
  background: transparent;
  border-color: transparent;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.trust-row strong {
  display: block;
  font-size: 22px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  max-width: 980px;
  margin: 46px auto 0;
  border-radius: 28px;
  background: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.doc-card {
  padding: 18px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.doc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.file-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 54px;
  border-radius: 10px;
  color: white;
  background: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.doc-row strong {
  display: block;
}

.doc-row span {
  color: var(--muted);
  font-size: 13px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.tool-chip {
  padding: 12px;
  border-radius: 14px;
  background: white;
  font-weight: 800;
  font-size: 14px;
}

.section {
  padding: 82px 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-header p,
.feature-page .intro p,
.copy p,
.card p {
  color: var(--muted);
}

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

.card {
  min-height: 280px;
  padding: 34px;
  border: 0;
  border-radius: 28px;
  background: #f5f5f7;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--brand-dark);
  background: var(--surface-soft);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 42px;
  align-items: center;
  margin-top: 18px;
  padding-top: 46px;
  padding-bottom: 46px;
  border-radius: 28px;
  background: #f5f5f7;
}

.showcase-copy {
  padding-left: 42px;
}

.showcase-copy p {
  color: var(--muted);
  font-size: 19px;
}

.showcase-media {
  height: clamp(380px, 46vw, 520px);
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  background: white;
}

.showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 32%;
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 20px 20px 20px 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: white;
  background: var(--brand);
  font-weight: 900;
}

.feature-page .intro {
  padding: 70px 0 42px;
}

.feature-page .intro h1 {
  max-width: 820px;
}

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

.faq details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

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

.copy {
  max-width: 860px;
  padding: 64px 0;
}

.copy h1 {
  font-size: clamp(36px, 5vw, 56px);
}

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

.copy ul {
  color: var(--muted);
}

.cta-band {
  position: relative;
  margin: 50px 0 74px;
  padding: 58px 36px;
  border-radius: 28px;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(155deg, #1d1d1f 0%, #242426 48%, #171719 100%);
  box-shadow: 0 28px 70px rgba(29, 29, 31, 0.22);
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -210px;
  width: 460px;
  height: 310px;
  background:
    linear-gradient(135deg, rgba(240, 71, 71, 0.98), rgba(240, 71, 71, 0.58));
  border-radius: 120px 0 0 0;
  transform: rotate(-10deg);
}

.cta-band::after {
  content: "PDF";
  position: absolute;
  left: 42px;
  top: 34px;
  width: 132px;
  height: 166px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(180deg, transparent 0 23px, rgba(255, 255, 255, 0.08) 24px);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  transform: rotate(-7deg);
}

.cta-band h2,
.cta-band p,
.cta-band .section-actions {
  position: relative;
  z-index: 1;
}

.cta-band p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.76);
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.footer-links a {
  text-decoration: none;
}

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

  .nav-links {
    flex-wrap: wrap;
  }

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

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

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

  .showcase-copy {
    padding: 0 24px;
    text-align: center;
  }

  .showcase-media {
    border-radius: 24px;
    margin: 0 24px;
    height: min(520px, 92vw);
  }

  .showcase-media img {
    object-position: 58% 26%;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 46px;
  }

  .lead {
    font-size: 18px;
  }

  .trust-row,
  .cards {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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