:root {
  --bg: #f2f7fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-soft: #f6fbff;
  --ink: #142033;
  --ink-soft: #566a80;
  --line: rgba(19, 55, 89, 0.12);
  --line-strong: rgba(19, 55, 89, 0.22);
  --brand: #173759;
  --brand-hover: #21466f;
  --accent: #5ab56c;
  --accent-soft: #e9f8ed;
  --blue-soft: #e5f1ff;
  --shadow-lg: 0 24px 60px rgba(16, 32, 51, 0.12);
  --shadow-md: 0 16px 36px rgba(16, 32, 51, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(90, 181, 108, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(80, 144, 210, 0.18), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 52%, #edf3f9 100%);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
}

body::before {
  top: 10%;
  left: -140px;
  width: 320px;
  height: 320px;
  background: rgba(90, 181, 108, 0.12);
}

body::after {
  right: -100px;
  bottom: 8%;
  width: 360px;
  height: 360px;
  background: rgba(23, 55, 89, 0.1);
}

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

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding-left: 20px;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.page-shell {
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(20, 32, 51, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(170px, 20vw, 230px);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(23, 55, 89, 0.08);
  color: var(--brand);
}

.header-actions,
.hero-actions,
.proof-row,
.tag-grid {
  display: flex;
  flex-wrap: wrap;
}

.header-actions,
.hero-actions {
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 55, 89, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-hover);
}

.btn-ghost,
.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand);
}

.btn-secondary-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.hero,
.story-section,
.role-section,
.fit-section {
  display: grid;
  gap: 32px;
}

.hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  padding-top: 72px;
}

.eyebrow,
.section-kicker,
.compare-label,
.preview-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy {
  display: grid;
  gap: 24px;
  animation: rise-in 0.7s ease both;
}

.hero-copy h1,
.section-copy h2,
.section-head h2,
.role-card h2,
.fit-copy h2,
.cta-card h2 {
  font-family: "Sora", Arial, sans-serif;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  font-size: clamp(44px, 6.6vw, 78px);
  line-height: 1.02;
  max-width: 11ch;
}

.lead {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.1vw, 21px);
}

.proof-row {
  gap: 12px;
}

.proof-chip,
.tag-grid span,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  padding-bottom: 0;
  animation: float-in 0.9s ease both;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 6% auto auto;
  width: 78%;
  height: 82%;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(214, 231, 244, 0.88) 100%),
    linear-gradient(135deg, rgba(23, 55, 89, 0.08), transparent);
  box-shadow: inset 0 0 0 1px rgba(23, 55, 89, 0.08);
  transform: rotate(-7deg);
}

.preview-card {
  position: relative;
  border: 1px solid rgba(23, 55, 89, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 247, 251, 0.92) 100%);
  box-shadow: var(--shadow-lg);
}

.preview-main {
  z-index: 2;
  display: grid;
  gap: 24px;
  padding: 26px;
}

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.preview-head h2 {
  font-family: "Sora", Arial, sans-serif;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.status-pill-live {
  background: var(--accent-soft);
  border-color: rgba(90, 181, 108, 0.18);
  color: #226033;
}

.preview-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
}

.mini-card p,
.mini-card span,
.section-side-copy,
.section-copy p,
.feature-card p,
.role-list,
.workflow-card p,
.fit-copy p,
.faq-item p,
.metric-copy,
.flow-row p,
.cta-card p {
  color: var(--ink-soft);
}

.mini-card strong,
.metric-value {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.mini-card-blue {
  background: linear-gradient(180deg, #f6fbff 0%, var(--blue-soft) 100%);
}

.mini-card-green {
  background: linear-gradient(180deg, #fbfffc 0%, #e7f6ea 100%);
}

.mini-card-accent {
  background: linear-gradient(180deg, #ffffff 0%, #eff4fa 100%);
}

.preview-flow {
  display: grid;
  gap: 12px;
}

.flow-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.flow-row.active {
  border-color: rgba(90, 181, 108, 0.35);
  background: linear-gradient(180deg, rgba(244, 255, 247, 0.92) 0%, rgba(232, 248, 237, 0.88) 100%);
}

.flow-time {
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.flow-row strong,
.compare-card h3,
.feature-card h3,
.workflow-card h3 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.preview-note {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  width: min(72%, 300px);
  padding: 20px;
  background: linear-gradient(180deg, rgba(23, 55, 89, 0.96) 0%, rgba(24, 68, 110, 0.94) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.note-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding-left: 18px;
}

.note-list li {
  color: rgba(255, 255, 255, 0.86);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.metric-card,
.compare-card,
.feature-card,
.role-card,
.workflow-card,
.faq-item,
.cta-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.metric-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.metric-copy {
  margin-top: 10px;
}

.section {
  margin-top: 76px;
}

.story-section,
.fit-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.section-copy,
.fit-copy {
  display: grid;
  gap: 18px;
}

.section-copy h2,
.section-head h2,
.role-card h2,
.fit-copy h2,
.cta-card h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
}

.compare-grid,
.feature-grid,
.workflow-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

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

.compare-card,
.feature-card,
.role-card,
.workflow-card,
.faq-item,
.cta-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  padding: 26px;
}

.compare-card-before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(245, 247, 250, 0.92) 100%);
}

.compare-card-after {
  background: linear-gradient(180deg, rgba(248, 255, 249, 0.96) 0%, rgba(232, 247, 236, 0.98) 100%);
}

.compare-card ul,
.role-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

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

.feature-card {
  display: grid;
  gap: 16px;
  min-height: 250px;
}

.feature-index,
.workflow-step {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--blue-soft) 0%, #d7e8fb 100%);
  color: var(--brand);
  font-size: 18px;
  font-weight: 800;
}

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

.role-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
}

.role-card-worker {
  background: linear-gradient(180deg, rgba(246, 252, 247, 0.98) 0%, rgba(232, 247, 236, 0.94) 100%);
}

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

.workflow-card {
  display: grid;
  gap: 18px;
  min-height: 220px;
}

.fit-section {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 244, 250, 0.82)),
    linear-gradient(180deg, rgba(90, 181, 108, 0.08), rgba(23, 55, 89, 0.04));
  box-shadow: var(--shadow-md);
}

.tag-grid {
  align-content: start;
  gap: 12px;
}

.tag-grid span {
  padding: 14px 16px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding-right: 28px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 14px;
}

.cta-section {
  margin-top: 88px;
}

.cta-card {
  display: grid;
  align-items: start;
  gap: 18px;
  background:
    radial-gradient(circle at top left, rgba(90, 181, 108, 0.22), transparent 30%),
    linear-gradient(180deg, #183a5d 0%, #102846 100%);
  color: #ffffff;
  padding: 48px 40px;
}

.cta-card .section-kicker,
.cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-card h2 {
  max-width: 13ch;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
}

.cta-card p {
  max-width: 72ch;
  font-size: 18px;
  line-height: 1.7;
}

.cta-card .hero-actions {
  gap: 14px;
  margin-top: 6px;
}

.contact-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-footer {
  padding-top: 32px;
}

.site-footer p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .hero,
  .story-section,
  .fit-section,
  .section-head,
  .role-section,
  .workflow-grid,
  .feature-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
    padding-bottom: 0;
  }

  .preview-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 360px);
    margin: 18px 0 0 auto;
  }

  .feature-card,
  .workflow-card {
    min-height: 0;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .brand,
  .header-actions {
    justify-content: center;
  }

  .hero {
    padding-top: 36px;
  }

  .metric-band,
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: calc(100% - 24px);
  }

  .page-shell {
    padding-bottom: 40px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .preview-main,
  .compare-card,
  .feature-card,
  .role-card,
  .workflow-card,
  .faq-item,
  .cta-card {
    padding: 22px;
  }

  .cta-card {
    gap: 16px;
  }

  .cta-card h2 {
    max-width: none;
    font-size: clamp(30px, 8vw, 42px);
  }

  .cta-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .preview-head {
    flex-direction: column;
  }

  .flow-row {
    grid-template-columns: 1fr;
  }

  .preview-kpis {
    grid-template-columns: 1fr;
  }

  .btn,
  .site-nav a {
    width: 100%;
  }

  .header-actions,
  .hero-actions {
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    text-align: center;
  }

  .fit-section {
    padding: 24px;
  }
}
