:root {
  color-scheme: light;
  --ink: #151824;
  --muted: #606979;
  --paper: #faf9f5;
  --panel: #ffffff;
  --line: #ddded7;
  --blue: #2458ff;
  --blue-dark: #1738b9;
  --green: #0c8d64;
  --green-soft: #def5ea;
  --coral: #e85d4f;
  --gold: #d99a20;
  --night: #111728;
  --night-2: #1d2740;
  --shadow: 0 24px 70px rgba(17, 23, 40, 0.16);
  font-family: Inter, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.site-header {
  align-items: center;
  background: rgba(17, 23, 40, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 52px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 5;
}

.brand {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-weight: 850;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
}

.brand.small {
  font-size: 0.95rem;
}

.top-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.top-nav a:hover {
  color: #ffffff;
}

.hero {
  align-items: start;
  display: grid;
  gap: clamp(32px, 5vw, 84px);
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.7fr);
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(52px, 6vw, 76px) clamp(20px, 5vw, 54px) clamp(38px, 5vw, 62px);
}

.hero-copy {
  max-width: 690px;
  position: relative;
  padding-top: clamp(16px, 4vw, 82px);
  z-index: 1;
}

.eyebrow {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  margin: 0 0 13px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.35rem, 5.25vw, 6.15rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 780px;
}

h2 {
  font-size: clamp(2.05rem, 4.5vw, 4.7rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.22;
  margin-bottom: 10px;
}

.hero-lead,
.section-copy p,
.showcase-copy p {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 720px;
}

.hero-lead {
  color: #343b49;
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  max-width: 710px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  text-decoration: none;
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(36, 88, 255, 0.25);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.dark {
  background: var(--night);
}

.hero-product {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 600px;
  position: relative;
}

.hero-product::before {
  background: linear-gradient(145deg, #e9f3ff, #eef7e9 58%, #fff4dd);
  border: 1px solid rgba(17, 23, 40, 0.08);
  border-radius: 8px;
  bottom: 52px;
  content: "";
  left: 14%;
  position: absolute;
  right: 0;
  top: 24px;
}

.hero-phone {
  border-radius: 34px;
  box-shadow: 0 34px 78px rgba(17, 23, 40, 0.28);
  max-height: 560px;
  object-fit: cover;
  object-position: top;
  position: relative;
  width: min(74%, 306px);
}

.evidence-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 23, 40, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  max-width: 360px;
  padding: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(6%);
}

.evidence-panel-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.panel-label {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-chip {
  background: var(--green-soft);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  padding: 4px 9px;
  white-space: nowrap;
}

.evidence-panel strong {
  font-size: 1.15rem;
  line-height: 1.18;
}

.evidence-list {
  display: grid;
  gap: 8px;
}

.evidence-row {
  align-items: start;
  background: #f7f9fc;
  border: 1px solid #e6eaf1;
  border-radius: 8px;
  display: grid;
  gap: 11px;
  grid-template-columns: 12px 1fr;
  padding: 11px 12px;
}

.evidence-row span {
  background: var(--green);
  border-radius: 999px;
  height: 12px;
  margin-top: 6px;
  width: 12px;
}

.evidence-row.accent span {
  background: var(--gold);
}

.evidence-row p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.proof-section,
.workflow-section,
.showcase-section,
.trust-band,
.cta-section,
.legal-main {
  margin: 0 auto;
  max-width: 1220px;
  padding: clamp(58px, 9vw, 112px) clamp(20px, 5vw, 54px);
}

.proof-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
}

.section-copy.compact {
  max-width: 840px;
}

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

.proof-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  grid-template-columns: 52px 1fr;
  padding: 22px;
}

.proof-grid span {
  color: var(--coral);
  font-weight: 950;
}

.proof-grid h3,
.proof-grid p {
  grid-column: 2;
}

.proof-grid p,
.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.workflow-section {
  background: var(--night);
  color: #ffffff;
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 54px), calc((100vw - 1220px) / 2 + 54px));
  padding-right: max(clamp(20px, 5vw, 54px), calc((100vw - 1220px) / 2 + 54px));
}

.workflow-section .eyebrow {
  color: #80e2b4;
}

.workflow-section .section-copy p,
.workflow-section h2 {
  color: #ffffff;
}

.timeline {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.timeline article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-height: 240px;
  padding: 22px;
}

.timeline span {
  color: #8bdab3;
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  margin-bottom: 46px;
  text-transform: uppercase;
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
}

.output-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.output-list div {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 130px 1fr;
  padding: 17px 18px;
}

.output-list strong {
  color: var(--blue);
}

.output-list span {
  color: #3a4050;
}

.template-preview {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  justify-self: center;
  max-height: 650px;
  object-fit: contain;
  width: min(100%, 390px);
}

.trust-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: clamp(34px, 6vw, 56px);
  padding-top: clamp(34px, 6vw, 56px);
}

.trust-band div {
  display: grid;
  gap: 6px;
}

.trust-band strong {
  color: var(--ink);
}

.trust-band span {
  color: var(--muted);
}

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

.cta-section h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.6rem);
  margin-bottom: 0;
  max-width: 820px;
}

.site-footer {
  align-items: center;
  background: var(--night);
  color: rgba(255, 255, 255, 0.64);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto auto;
  padding: 26px clamp(20px, 5vw, 54px);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  text-decoration: none;
}

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

.site-footer p {
  font-size: 0.92rem;
  margin: 0;
}

.legal-main {
  max-width: 820px;
}

.legal-main header {
  margin-bottom: 38px;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.legal-main .lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-main section {
  border-top: 1px solid var(--line);
  padding: 28px 0 16px;
}

.legal-main ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-main li,
.legal-main p {
  color: #363c49;
}

.legal-main footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 36px;
  padding-top: 22px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.nav a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .proof-section,
  .showcase-section,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-product {
    min-height: 560px;
  }

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

  .site-footer,
  .cta-section {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .cta-section {
    flex-direction: column;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 12px 16px;
  }

  .top-nav {
    display: none;
  }

  h1 {
    font-size: clamp(2.85rem, 12vw, 3.2rem);
    line-height: 0.98;
  }

  .hero {
    display: block;
    overflow: hidden;
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-product {
    bottom: 16px;
    justify-items: end;
    min-height: 0;
    opacity: 0.1;
    pointer-events: none;
    position: absolute;
    right: -96px;
    width: 180px;
    z-index: 0;
  }

  .hero-product::before {
    display: none;
  }

  .hero-phone {
    width: 180px;
  }

  .evidence-panel {
    display: none;
  }

  .proof-grid article,
  .output-list div {
    grid-template-columns: 1fr;
  }

  .proof-grid h3,
  .proof-grid p {
    grid-column: auto;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: 0;
  }

  .timeline span {
    margin-bottom: 22px;
  }
}
