:root {
  --ink: #141821;
  --muted: #5e6675;
  --soft: #f5f7fb;
  --paper: #fffaf2;
  --surface: #ffffff;
  --line: #dfe4ec;
  --night: #101522;
  --blue: #2457d6;
  --blue-dark: #183f9f;
  --teal: #087f7a;
  --teal-soft: #e6f6f2;
  --coral: #c94f36;
  --coral-soft: #fff0eb;
  --gold: #b97809;
  --gold-soft: #fff7df;
  --green: #236b4e;
  --green-soft: #e9f6ef;
  --shadow: 0 18px 44px rgb(20 24 33 / 12%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #fbfcff;
}

body,
button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgb(8 127 122 / 28%);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 50;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  padding: 10px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgb(223 228 236 / 82%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.nav a {
  padding: 0 11px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.nav .nav-cta {
  border-color: transparent;
  background: var(--blue);
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero-home {
  min-height: min(760px, 86svh);
  background:
    linear-gradient(135deg, #080c15 0%, #101522 48%, #062d35 100%);
}

.hero-home::before,
.hero-home::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-home::before {
  z-index: 0;
  background:
    linear-gradient(118deg, transparent 0 55%, rgb(8 127 122 / 16%) 55% 68%, transparent 68%),
    linear-gradient(148deg, transparent 0 62%, rgb(201 79 54 / 12%) 62% 76%, transparent 76%),
    linear-gradient(180deg, rgb(36 87 214 / 16%) 0%, transparent 54%);
}

.hero-home::after {
  z-index: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(9 12 18 / 96%) 0%, rgb(9 12 18 / 88%) 52%, rgb(9 12 18 / 72%) 100%),
    linear-gradient(0deg, rgb(9 12 18 / 56%), rgb(9 12 18 / 18%));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 68px 18px 42px;
}

.kicker,
.section-label,
.mini-label {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker,
.final-cta .section-label {
  color: #83e2d7;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 3rem;
  line-height: 0.98;
}

.hero-subhead,
.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgb(255 255 255 / 88%);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-platform {
  margin: -2px 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: 0.95rem;
  font-weight: 750;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-width: 142px;
  padding: 0 18px;
}

.button-primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 28px rgb(36 87 214 / 26%);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  border: 1px solid rgb(255 255 255 / 56%);
  background: rgb(255 255 255 / 12%);
  color: #ffffff;
}

.page-hero .button-secondary,
.final-cta .button-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.hero-proof {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 8px 0 0;
}

.hero-proof div {
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: rgb(255 255 255 / 10%);
}

.hero-proof dt {
  font-weight: 900;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgb(255 255 255 / 76%);
  line-height: 1.5;
}

.section,
.page-hero,
.legal-page,
.final-cta,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 18px;
}

.page-hero {
  display: grid;
  gap: 16px;
  color: #ffffff;
  background: var(--night);
  max-width: none;
  padding: 56px 18px 44px;
}

.page-hero > * {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.page-hero .section-label {
  color: #83e2d7;
}

.section-intro {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 22px;
}

.section h2,
.section-intro h2,
.legal-page h1,
.legal-page h2,
.final-cta h2,
.page-hero h1 {
  color: var(--ink);
}

.page-hero h1 {
  color: #ffffff;
}

.section h2,
.section-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.section p,
.card p,
.step p,
.faq-item p,
.legal-page p,
.legal-page li,
.example-copy p,
.check-list,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

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

.card,
.step,
.faq-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgb(20 24 33 / 6%);
}

.card h2,
.card h3,
.step h3,
.faq-item h3,
.example-copy h2,
.example-copy h3 {
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.16;
}

.problem-section {
  padding-top: 30px;
}

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

.step {
  position: relative;
  padding-top: 22px;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: #075f5b;
  font-weight: 900;
}

.media-section,
.trust-section {
  background: var(--paper);
  max-width: none;
}

.media-section > *,
.trust-section > * {
  width: min(1180px, calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}

.feature-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.feature-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.feature-copy h3 {
  max-width: 620px;
  margin: 0;
  font-size: 1.7rem;
}

.feature-row img,
.example-card img,
.example-detail img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.text-link {
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.accent-teal {
  border-top: 5px solid var(--teal);
}

.accent-gold {
  border-top: 5px solid var(--gold);
}

.accent-coral {
  border-top: 5px solid var(--coral);
}

.trust-card:nth-child(1) {
  background: var(--green-soft);
}

.trust-card:nth-child(2) {
  background: var(--gold-soft);
}

.trust-card:nth-child(3) {
  background: var(--teal-soft);
}

.trust-card:nth-child(4) {
  background: var(--coral-soft);
}

.example-cards {
  display: grid;
  gap: 14px;
}

.example-card {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.example-card span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.final-cta {
  display: grid;
  gap: 14px;
  max-width: none;
  margin-top: 24px;
  border-radius: 0;
  background: var(--night);
  color: #ffffff;
}

.final-cta > * {
  width: min(1180px, calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta p {
  max-width: 720px;
}

.legal-page {
  max-width: 880px;
}

.legal-page h1 {
  margin: 8px 0 0;
  font-size: 2.4rem;
}

.legal-page h2 {
  margin-top: 30px;
}

.legal-date {
  margin-top: 8px;
}

.contact-list,
.check-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.contact-list {
  padding-left: 0;
  list-style: none;
}

.examples-list {
  display: grid;
  gap: 18px;
}

.example-detail {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.example-detail.compact {
  background: var(--soft);
}

.example-copy {
  display: grid;
  gap: 10px;
}

.example-copy h2 {
  font-size: 1.7rem;
}

.site-footer {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 750;
}

.contact-list a,
.legal-page a,
.faq-item a {
  overflow-wrap: anywhere;
}

@media (min-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr;
    padding: 14px 26px;
  }

  .nav {
    justify-content: flex-end;
  }

  .hero-content {
    padding: 86px 32px 58px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 4.6rem;
  }

  .hero-subhead,
  .page-hero p {
    font-size: 1.18rem;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section,
  .legal-page,
  .final-cta,
  .site-footer {
    padding: 54px 32px;
  }

  .page-hero {
    padding: 72px 32px 56px;
  }

  .grid.three,
  .workflow,
  .example-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.two,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-row,
  .example-detail {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  }

  .example-detail.image-left img {
    order: -1;
  }

  .example-detail.compact {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 719px) {
  .nav-secondary {
    display: none;
  }

  .nav a {
    flex: 1 1 calc(50% - 8px);
  }

  .nav .nav-cta {
    flex-basis: calc(50% - 8px);
  }

  .hero-home {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgb(9 12 18 / 94%), rgb(9 12 18 / 82%));
  }

  .hero-content {
    padding-top: 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button,
  .final-actions .button {
    flex: 1 1 100%;
  }

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

  .footer-links a {
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav a {
    padding-right: 8px;
    padding-left: 8px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.42rem;
  }
}
