/* DueSnap web — minimal styling, no framework, no build. */
:root {
  --coral: #FF6B47;
  --coral-deep: #E5532F;
  --coral-soft: #FFE5DD;
  --text: #1A1C1F;
  --text-muted: #6B6F76;
  --bg: #FAF7F4;
  --border: #ECE9E5;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(26, 28, 31, 0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--coral-deep);
  text-decoration: none;
  font-weight: 500;
}
a:hover { text-decoration: underline; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ------- Header / footer ------- */

header.site-header {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  display: inline-flex;
  align-items: center;
}
.brand .dot { color: var(--coral); }
.brand img {
  height: 28px;
  width: auto;
  display: block;
}

nav.site-nav { display: flex; gap: 22px; font-size: 14px; }
nav.site-nav a { color: var(--text-muted); font-weight: 600; }
nav.site-nav a:hover { color: var(--text); text-decoration: none; }

footer.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding: 36px 24px 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
footer.site-footer .footer-brand {
  font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 12px;
  letter-spacing: -0.3px;
}
footer.site-footer .footer-brand .dot { color: var(--coral); }
footer.site-footer nav {
  display: inline-flex; gap: 22px; margin: 4px 0 16px;
}
footer.site-footer a { color: var(--text-muted); font-weight: 600; }
footer.site-footer a:hover { color: var(--text); text-decoration: none; }
.footer-meta { font-size: 12px; opacity: 0.7; }

/* ------- Typography ------- */

h1 {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.4px;
  margin: 8px 0 18px;
}
h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.6px;
}
h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}
p { margin: 8px 0; }
ul { padding-left: 22px; margin: 8px 0; }
li { margin: 4px 0; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--coral);
  background: var(--coral-soft);
  padding: 5px 10px;
  border-radius: 999px;
  margin: 0 0 12px;
}

.section { padding: 72px 24px; }
.section-title { max-width: 640px; }
.section-lead { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 0 36px; }

/* ------- Hero ------- */

.hero {
  background: linear-gradient(160deg, #FF7A52 0%, #FF6B47 55%, #E5532F 100%);
  color: white;
  border-radius: 0;
  padding: 64px 24px 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -100px -160px auto;
  width: 380px; height: 380px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 { color: white; max-width: 760px; }
.hero-sub {
  color: rgba(255,255,255,0.94);
  font-size: 19px;
  line-height: 1.55;
  max-width: 620px;
  margin: 18px 0 32px;
}
.badge-line {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: white;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.cta {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.2px;
  transition: transform 120ms ease, opacity 120ms ease;
}
.cta:hover { text-decoration: none; transform: translateY(-1px); }
.cta--primary { background: white; color: var(--coral-deep); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.cta--ghost { background: rgba(255,255,255,0.16); color: white; }
.cta--ghost:hover { background: rgba(255,255,255,0.24); }
.hero-tagline {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ------- Use cases ------- */

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.usecase {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.usecase:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 28, 31, 0.10);
}
.usecase-icon { font-size: 26px; margin-bottom: 10px; }
.usecase h3 { margin-bottom: 4px; }
.usecase p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ------- Steps ------- */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
}
.step {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.step-num {
  flex: 0 0 36px; width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin: 4px 0 4px; }
.step p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ------- Differentiators ------- */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.diff {
  padding: 22px;
  border-left: 3px solid var(--coral);
  background: var(--white);
  border-radius: 0 14px 14px 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diff h3 { color: var(--text); margin-bottom: 6px; }
.diff p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ------- Closer / CTA section ------- */

.closer {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 28px;
  box-shadow: var(--shadow);
}
.closer h2 { font-size: 32px; }
.closer p { color: var(--text-muted); font-size: 17px; margin: 6px 0 24px; }
.closer .cta--primary { background: var(--coral); color: white; }
.closer .cta--primary:hover { background: var(--coral-deep); }

/* ------- Legal pages ------- */

article.legal h2:first-of-type { margin-top: 16px; }
article.legal p, article.legal li { font-size: 15px; color: var(--text); }
article.legal .tagline {
  color: var(--coral);
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
article.legal .meta {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}
article.legal { padding-top: 32px; }

/* ------- Responsive ------- */

@media (max-width: 560px) {
  h1 { font-size: 36px; letter-spacing: -0.8px; }
  h2 { font-size: 24px; }
  .section { padding: 56px 20px; }
  .hero { padding: 48px 24px 72px; }
  .hero-sub { font-size: 17px; }
  .closer { padding: 36px 22px; }
  .closer h2 { font-size: 26px; }
}
