:root {
  --bg: #f7fbff;
  --bg-soft: #eef5fb;
  --bg-dark: #091323;
  --bg-darker: #07101d;
  --panel: #ffffff;
  --panel-soft: #f3f8fd;
  --border: rgba(11, 24, 48, 0.08);
  --text: #10203a;
  --text-soft: #53647f;
  --text-light: #d8e4f5;
  --primary: #246bff;
  --primary-dark: #124fd0;
  --teal: #39d2c0;
  --shadow: 0 24px 60px rgba(7, 20, 42, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 200;
}

.skip-link:focus {
  top: 20px;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 16, 29, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.site-nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #08111f;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(57, 210, 192, 0.22), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(36, 107, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #091323 0%, #0b1426 100%);
  padding: 74px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  color: #fff;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7e6fb;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 740px;
}

.hero-lead {
  font-size: 1.14rem;
  color: #c6d6ea;
  max-width: 640px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce8f8;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-visual-wrap {
  position: relative;
}

.hero-visual {
  filter: drop-shadow(0 32px 72px rgba(0, 0, 0, 0.26));
}

.proof-strip {
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 24, 48, 0.06);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
}

.proof-grid div {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid rgba(17, 41, 77, 0.06);
}

.proof-grid strong,
.metric-card strong,
.contact-point strong,
.specialty-card h3,
.feature-card h3,
.info-card h3,
.step-card h3,
.footer-grid h3 {
  display: block;
  margin-bottom: 8px;
}

.proof-grid span,
.metric-card span,
.contact-point span,
.roi-note,
.footer-copy,
.site-footer span,
.section-intro p,
.info-card p,
.feature-card p,
.specialty-card p,
.step-card p,
.legal-main p,
.legal-main li {
  color: var(--text-soft);
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f5f9fd 0%, #eef4fa 100%);
}

.section-dark {
  background: linear-gradient(180deg, #091323 0%, #08111f 100%);
}

.section-intro {
  margin-bottom: 38px;
}

.section-intro.narrow {
  max-width: 760px;
}

.section-intro h2,
.split-feature h2,
.roi-layout h2,
.contact-layout h2,
.legal-main h1 {
  margin: 16px 0 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.light-text h2,
.light-text p,
.light-text .section-tag,
.section-dark .faq-item,
.section-dark .faq-item p,
.section-dark summary,
.section-dark .feature-card,
.section-dark .feature-card p,
.section-dark .feature-card h3 {
  color: #fff;
}

.two-col,
.split-feature,
.roi-layout,
.contact-layout,
.footer-grid,
.hero-grid {
  display: grid;
  gap: 28px;
}

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

.split-feature,
.roi-layout,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.info-card,
.step-card,
.specialty-card,
.feature-card,
.contact-form,
.roi-card-panel,
.metric-card,
.faq-item,
.legal-card,
.contact-point {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.step-card,
.specialty-card,
.contact-form,
.legal-card {
  background: #fff;
  border: 1px solid var(--border);
}

.info-card {
  padding: 30px;
}

.tone-dark {
  background: linear-gradient(180deg, #0d1830 0%, #091323 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.06);
}

.tone-dark .check-list li {
  color: #d7e4f7;
}

.metric-stack {
  display: grid;
  gap: 16px;
}

.metric-card {
  padding: 18px 20px;
  background: #f5f9fd;
  border: 1px solid rgba(18, 33, 61, 0.06);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.check-list.positive li::before {
  background: linear-gradient(135deg, var(--teal), #87f3e6);
  box-shadow: 0 0 0 5px rgba(57, 210, 192, 0.12);
}

.check-list.negative li::before {
  background: linear-gradient(135deg, #ff6d7a, #ffb0b9);
  box-shadow: 0 0 0 5px rgba(255, 109, 122, 0.12);
}

.panel-image {
  padding: 10px;
}

.step-grid,
.specialty-grid,
.features-grid {
  display: grid;
  gap: 22px;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.step-card,
.specialty-card,
.feature-card {
  padding: 28px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(36, 107, 255, 0.16), rgba(57, 210, 192, 0.18));
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.roi-card-panel {
  padding: 30px;
  background: linear-gradient(180deg, #091323 0%, #0c1730 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.roi-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.roi-item span {
  color: #c3d6ec;
}

.roi-item strong {
  font-size: 1.35rem;
}

.roi-item.emphasis strong {
  color: #80f1e3;
}

.faq-list {
  max-width: 900px;
}

.faq-item {
  margin-bottom: 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 26px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: #d5e3f4;
}

.contact-layout {
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-point {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
}

.contact-form {
  padding: 28px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 32, 58, 0.12);
  border-radius: 14px;
  background: #fbfdff;
  padding: 14px 16px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(36, 107, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(36, 107, 255, 0.12);
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #06101d;
  box-shadow: 0 18px 34px rgba(36, 107, 255, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.button-full {
  width: 100%;
}

.form-status {
  min-height: 1.5em;
  margin-top: 14px;
  font-weight: 600;
}

.form-status.success {
  color: #11856c;
}

.form-status.error {
  color: #ba243c;
}

.site-footer {
  padding: 34px 0 48px;
  background: #0b1322;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: start;
}

.footer-grid > div {
  display: grid;
  gap: 10px;
}

.footer-grid,
.footer-grid a,
.footer-grid h3,
.footer-grid span,
.footer-copy {
  color: #d8e4f5;
}

.footer-grid a,
.site-footer span,
.footer-copy {
  color: #aac0dc;
}

.footer-brand {
  margin-bottom: 8px;
}

.legal-main {
  padding: 60px 0 90px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px;
}

.legal-card h2 {
  margin-top: 28px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-feature,
  .roi-layout,
  .contact-layout,
  .footer-grid,
  .proof-grid,
  .cards-grid,
  .features-grid,
  .step-grid,
  .specialty-grid,
  .form-row.two-up {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .split-feature,
  .split-feature.reverse,
  .roi-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 18px 16px 24px;
    background: rgba(7, 16, 29, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .proof-grid,
  .cards-grid,
  .features-grid,
  .step-grid,
  .specialty-grid,
  .form-row.two-up,
  .hero-grid,
  .split-feature,
  .roi-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero-section {
    padding-top: 54px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .contact-form,
  .info-card,
  .step-card,
  .specialty-card,
  .feature-card,
  .roi-card-panel,
  .legal-card {
    padding: 22px;
  }
}

.hero-proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-proof-cards div,
.summary-card,
.quote-card,
.screen-card,
.cta-banner {
  border: 1px solid rgba(17, 41, 77, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-proof-cards div {
  padding: 18px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.09);
  box-shadow: none;
}

.hero-proof-cards strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.hero-proof-cards span {
  color: #c9d7ec;
  font-size: 0.95rem;
}

.screenshot-section code {
  padding: 2px 8px;
  border-radius: 999px;
  background: #edf4fb;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.screen-card {
  overflow: hidden;
}

.screen-card img {
  width: 100%;
  background: linear-gradient(180deg, #eef4fb, #ffffff);
}

.screen-card figcaption {
  padding: 18px 20px 22px;
}

.screen-card strong,
.quote-card span,
.summary-card h3 {
  display: block;
}

.screen-card span,
.quote-card span,
.summary-card p {
  color: var(--text-soft);
}

.screen-large {
  grid-row: span 2;
}

.case-section {
  padding-top: 24px;
}

.inline-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.dark-border {
  border-color: rgba(16, 32, 58, 0.14);
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary-dark);
  font-weight: 700;
}

.testimonial-section {
  background: linear-gradient(180deg, #fbfdff, #f2f7fb);
}

.testimonial-grid,
.feature-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote-card,
.summary-card {
  padding: 24px;
}

.quote-card p {
  margin-top: 0;
  font-size: 1.06rem;
}

.investor-hero {
  padding-bottom: 58px;
}

.static-nav {
  display: flex;
}

.four-up {
  grid-template-columns: repeat(4, 1fr);
}

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

.dark-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.dark-card h3,
.dark-card p {
  color: #ffffff;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

@media (max-width: 1100px) {
  .hero-proof-cards,
  .screenshot-grid,
  .testimonial-grid,
  .feature-summary-grid,
  .four-up,
  .two-up-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-large {
    grid-row: auto;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-proof-cards,
  .screenshot-grid,
  .testimonial-grid,
  .feature-summary-grid,
  .four-up,
  .two-up-grid {
    grid-template-columns: 1fr;
  }

  .static-nav {
    display: none;
  }
}
