:root {
  --ink: #101824;
  --muted: #586474;
  --line: #dce4ee;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --navy: #07111d;
  --cyan: #05b7d8;
  --teal: #20c5a7;
  --amber: #f1b642;
  --blue: #1e75ff;
  --shadow: 0 22px 70px rgba(16, 24, 36, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 228, 238, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(7, 17, 29, 0.18);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(30, 117, 255, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 64px) clamp(24px, 4vw, 48px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 183, 216, 0.13), transparent 35%),
    linear-gradient(310deg, rgba(241, 182, 66, 0.13), transparent 38%),
    #f7fafc;
}

.eyebrow {
  margin: 0 0 12px;
  color: #087c91;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-lede {
  max-width: 660px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin: 34px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.trust-strip div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 6px 0 0;
  font-weight: 850;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: min(1040px, 118%);
  max-width: none;
  border: 1px solid rgba(220, 228, 238, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-band div {
  min-height: 130px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--navy);
  color: #fff;
}

.metrics-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 1.25rem;
}

.metrics-band span {
  color: #c4d0dd;
  line-height: 1.55;
}

.section,
.showcase,
.workflow,
.pricing,
.legal-page,
.contact-page,
.final-cta {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 64px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 720px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 8px, rgba(255,255,255,0.7) 8px 11px, transparent 11px),
    linear-gradient(0deg, transparent 8px, rgba(255,255,255,0.7) 8px 11px, transparent 11px),
    linear-gradient(135deg, var(--cyan), var(--blue));
}

.showcase {
  background: var(--soft);
}

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

figure {
  margin: 0;
}

figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16, 24, 36, 0.13);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 80px);
  background: #fff;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 104px;
  padding: 22px 22px 22px 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 850;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing {
  background: linear-gradient(180deg, #07111d 0%, #0d1f31 100%);
  color: #fff;
}

.pricing .section-heading p,
.pricing-note p {
  color: #b8c6d3;
}

.pricing .eyebrow {
  color: var(--amber);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.46fr);
  gap: 24px;
  align-items: stretch;
}

.price-card,
.pricing-note {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.price-card {
  padding: clamp(24px, 4vw, 42px);
}

.pricing-note {
  padding: 28px;
}

.price-header span {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
  color: #d5e4f0;
  font-size: 0.82rem;
  font-weight: 800;
}

.price-header h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.price-header p {
  max-width: 700px;
}

.price-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.price-options div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.price-options span,
.price-options strong {
  display: block;
}

.price-options span {
  color: #b8c6d3;
  font-size: 0.86rem;
}

.price-options strong {
  margin-top: 8px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.included-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  color: #dce7f0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.compact {
  max-width: 1060px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

details p {
  padding: 0 22px 22px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #eef7fb;
}

.final-cta h2 {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: 32px;
  padding: 42px clamp(18px, 4vw, 64px);
  background: var(--navy);
  color: #fff;
}

.site-footer p {
  max-width: 520px;
  color: #b8c6d3;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  color: #dce7f0;
  font-weight: 700;
}

.legal-page,
.contact-page {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 6vw, 82px);
  max-width: 1240px;
  margin: 0 auto;
}

.legal-sidebar,
.contact-panel {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--soft);
}

.legal-sidebar nav {
  display: grid;
  gap: 10px;
}

.legal-sidebar a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

.legal-sidebar a:hover {
  color: var(--blue);
}

.legal-content h1,
.contact-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.legal-content ul {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.notice {
  padding: 18px;
  border: 1px solid #bde7f0;
  border-radius: 8px;
  background: #eefbfe;
  color: #174d59;
}

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

.contact-method,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #087c91;
  font-weight: 750;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
    padding-top: 8px;
  }

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

  .hero,
  .workflow,
  .pricing-layout,
  .legal-page,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    width: 100%;
  }

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

@media (max-width: 760px) {
  .brand span {
    max-width: 180px;
    line-height: 1.15;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-strip,
  .metrics-band,
  .feature-grid,
  .screenshot-row,
  .price-options,
  .site-footer,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
