:root {
  --bg: #e6ebef;
  --panel: #fdfefe;
  --panel-strong: #18222b;
  --line: rgba(44, 61, 75, 0.16);
  --text: #18222b;
  --muted: #52616e;
  --accent: #2f6bff;
  --accent-soft: rgba(47, 107, 255, 0.14);
  --accent-deep: #1f56db;
  --ok: #79d1b1;
  --shadow: 0 20px 50px rgba(24, 34, 43, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 107, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #f6f9fb 0%, var(--bg) 100%);
}

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

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
  padding: 0 24px 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.brand-text small {
  color: var(--muted);
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.ghost-link {
  color: var(--muted);
  font-weight: 700;
}

.solid-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.solid-link,
.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 16px 30px rgba(238, 95, 42, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

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

main {
  max-width: 1220px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 44px 0 28px;
}

.eyebrow,
.section-tag {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero h1,
.section-heading h2,
.problem h2,
.solution h2,
.cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 7vw, 6.4rem);
}

.hero-lead {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-card,
.panel,
.step-panel,
.comparison,
.sector-card,
.benefit-grid article,
.cta-band,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(253, 254, 254, 0.9);
  box-shadow: var(--shadow);
}

.flow-card,
.task-card {
  padding: 24px;
}

.flow-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ok);
}

.flow-steps {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.flow-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.flow-step span,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 800;
}

.flow-step p,
.task-card p,
.problem ul,
.solution ul,
.step-panel p,
.sector-card p,
.benefit-grid p,
.cta-band p,
.faq-list p {
  margin: 6px 0 0;
  line-height: 1.65;
  color: var(--muted);
}

.task-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.task-card-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.task-card-head span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.task-card h3 {
  margin: 18px 0;
  font-size: 1.8rem;
  line-height: 1.05;
}

.task-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.task-card dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.task-card dd {
  margin: 0;
  font-weight: 700;
}

.trust-strip {
  padding: 14px 0 10px;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.problem-solution,
.comparison-grid,
.sector-grid,
.benefit-grid,
.cta-band {
  display: grid;
  gap: 24px;
}

.problem-solution {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.panel,
.step-panel,
.comparison,
.sector-card,
.benefit-grid article {
  padding: 28px;
}

.problem ul,
.solution ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.how-it-works,
.before-after,
.sectors,
.benefits,
.faq,
.cta-band {
  margin-top: 82px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
}

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

.step-panel h3,
.sector-card h3,
.benefit-grid h3 {
  margin: 18px 0 0;
  font-size: 1.4rem;
}

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

.comparison-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.comparison-head span {
  color: var(--muted);
  font-weight: 700;
}

.comparison-head strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.message-thread,
.result-stack {
  display: grid;
  gap: 12px;
}

.chat-bubble {
  max-width: 85%;
  padding: 14px 16px;
  border-radius: 18px;
}

.bubble-client {
  justify-self: start;
  background: #ffffff;
  border-top-left-radius: 8px;
}

.bubble-pro {
  justify-self: end;
  background: #dbe7ff;
  border-top-right-radius: 8px;
}

.bubble-author {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chat-bubble p,
.result-stack p {
  margin: 0;
}

.result-stack p {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.comparison.after {
  background: linear-gradient(180deg, #fdfefe 0%, #eef4ff 100%);
}

.sector-card.featured {
  background: linear-gradient(180deg, #18222b 0%, #2c3d4b 100%);
}

.sector-card.featured h3,
.sector-card.featured p {
  color: white;
}

.cta-band {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  padding: 34px;
  background: linear-gradient(140deg, #18222b 0%, #2c3d4b 100%);
}

.cta-band .section-tag,
.cta-band h2,
.cta-band p,
.cta-band label span,
.cta-band .form-note {
  color: white;
}

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

.cta-form label {
  display: grid;
  gap: 8px;
}

.cta-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.form-legal {
  margin: -2px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.form-legal a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent-deep);
}

.faq-list details[open] summary::after {
  content: "−";
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px 28px;
  width: 100%;
  max-width: 1220px;
  margin: 56px auto 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(253, 254, 254, 0.78);
  box-shadow: var(--shadow);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px 22px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.legal-shell {
  padding-bottom: 64px;
}

.legal-header {
  margin-bottom: 24px;
}

.legal-page {
  max-width: 840px;
  margin: 0 auto;
  padding: 12px 0 0;
}

.legal-page h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.legal-lead {
  margin: 20px 0 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.legal-block {
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(253, 254, 254, 0.9);
  box-shadow: var(--shadow);
}

.legal-block h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-block p {
  margin: 0;
}

.legal-block ul {
  margin: 0;
  padding-left: 18px;
}

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

  .hero,
  .problem-solution,
  .steps-grid,
  .comparison-grid,
  .sector-grid,
  .benefit-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 0 16px 40px;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    max-width: none;
  }

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

  .solid-link,
  .ghost-link,
  .button {
    width: 100%;
  }
}
