/* ClearedToFile shared stylesheet */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica,
    Arial, sans-serif;
  background: #f8fafc;
  color: #0b1739;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0284c7;
  text-decoration: none;
}

a:hover {
  color: #0b1739;
}

/* Nav */
.site-nav {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.site-nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0b1739;
}

.site-nav .brand img,
.site-nav .brand .brand-mark {
  height: 28px;
  width: auto;
  display: block;
}

.site-nav .brand-name {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #0b1739;
  line-height: 1;
}

.site-nav .brand-name-accent {
  color: #0284c7;
  font-weight: 600;
}

.site-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav-links a {
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

.site-nav-links a:hover {
  color: #0b1739;
}

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}

.container.narrow {
  max-width: 720px;
}

/* Hero */
.hero {
  padding-top: 8px;
  padding-bottom: 16px;
}

.hero-centered {
  text-align: center;
}

.hero-centered .lede,
.hero-centered .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

/* Hero split layout: text left, animation right */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: center;
}

.hero-split .hero-copy {
  max-width: 460px;
}

@media (max-width: 980px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-split .hero-copy {
    max-width: 100%;
  }
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0284c7;
  margin: 0 0 14px;
}

.hero-text {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #0b1739;
  margin: 0 0 20px;
}

.hero-centered .hero-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.hero-accent {
  color: #0284c7;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 28px;
}

.hero-centered .hero-sub {
  max-width: 600px;
  margin: 0 auto 28px;
}

.hero .tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0284c7;
  margin: 0 0 24px;
}

h1 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: #0b1739;
  line-height: 1.15;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 56px 0 20px;
  color: #0b1739;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #0b1739;
}

p {
  font-size: 17px;
  margin: 0 0 18px;
  color: #475569;
}

.lede {
  font-size: 19px;
  color: #334155;
  max-width: 640px;
}

/* Lists */
ul {
  padding-left: 20px;
  margin: 0 0 18px;
}

li {
  font-size: 16px;
  color: #475569;
  margin: 8px 0;
  line-height: 1.55;
}

/* Hero lockup (replaces text H1) */
.hero-lockup {
  margin: 0 0 24px;
  font-size: 0; /* eliminates inline-element whitespace */
}

.hero-lockup img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin-left: -16px; /* visually flush left, lockup has internal padding */
}

@media (max-width: 720px) {
  .hero-lockup img {
    margin-left: 0;
    max-width: 100%;
  }
}

/* Footer lockup */
.footer-lockup {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 0 12px -16px;
}

@media (max-width: 720px) {
  .footer-lockup {
    margin-left: 0;
    max-width: 280px;
  }
}

/* Workflow animation embed */
.workflow-embed {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0b1739;
  box-shadow: 0 12px 32px rgba(11, 23, 57, 0.22);
}

.workflow-embed iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

/* On stacked (mobile/tablet) layouts, the embed has top breathing room. */
@media (max-width: 980px) {
  .workflow-embed {
    margin-top: 32px;
  }
  .workflow-embed iframe {
    height: 420px;
  }
}

/* CTA buttons */
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-row-centered {
  justify-content: center;
}

.cta {
  display: inline-block;
  padding: 12px 20px;
  background: #0284c7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease;
  border: 1px solid #0284c7;
}

.cta:hover {
  background: #0b1739;
  color: #ffffff;
  border-color: #0b1739;
}

.cta.secondary {
  background: transparent;
  color: #0b1739;
  border: 1px solid #0b1739;
}

.cta.secondary:hover {
  background: #0b1739;
  color: #ffffff;
}

/* 3-up grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 8px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0 8px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0 8px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.card p {
  font-size: 15px;
  margin: 0;
  color: #475569;
}

.audience-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-card h3 {
  font-size: 20px;
  margin: 0;
}

.audience-card p {
  font-size: 15px;
  color: #475569;
  margin: 0;
}

.audience-card .arrow {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0284c7;
}

.audience-card:hover {
  border-color: #0ea5e9;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.12);
}

/* Roadmap list */
.roadmap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 16px;
}

.roadmap ul {
  margin: 0;
  padding-left: 20px;
}

.roadmap li {
  font-size: 16px;
  color: #334155;
  margin: 8px 0;
}

/* Callout (custody section) */
.callout {
  background: #ecfeff;
  border: 1px solid #0ea5e9;
  border-radius: 8px;
  padding: 24px;
  margin-top: 16px;
}

.callout p {
  color: #0b1739;
  margin: 0 0 12px;
}

.callout p:last-child {
  margin-bottom: 0;
}

/* Footer */
footer.site-footer {
  background: #0b1739;
  color: #cbd5e1;
  margin-top: 96px;
  padding: 48px 24px;
}

footer.site-footer .inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

footer.site-footer .brand-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 6px;
}

footer.site-footer .tagline {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0ea5e9;
  margin: 0 0 12px;
}

footer.site-footer a {
  color: #0ea5e9;
}

footer.site-footer a:hover {
  color: #ffffff;
}

footer.site-footer .footer-links {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 8px;
}

footer.site-footer .copyright {
  font-size: 13px;
  color: #94a3b8;
}

/* Section spacing */
section {
  margin-bottom: 8px;
}

.section-lead {
  font-size: 17px;
  color: #475569;
  max-width: 720px;
}

/* Mobile */
@media (max-width: 720px) {
  .container {
    padding: 56px 20px 32px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 22px;
    margin: 40px 0 16px;
  }
  p {
    font-size: 16px;
  }
  .lede {
    font-size: 17px;
  }
  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .site-nav-inner {
    padding: 12px 20px;
  }
  .site-nav-links {
    gap: 16px;
  }
  footer.site-footer .inner {
    flex-direction: column;
  }
}
