:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5d6a66;
  --line: rgba(23, 33, 31, 0.14);
  --paper: #f7f5ef;
  --white: #ffffff;
  --mint: #3fd2a4;
  --teal: #0f7c73;
  --coral: #ff6b4a;
  --gold: #d4a72c;
  --shadow: 0 22px 60px rgba(17, 31, 29, 0.16);
}

* {
  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(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

button {
  font: inherit;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(18, 26, 24, 0.72);
  backdrop-filter: blur(16px);
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-wordmark {
  width: 178px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.btn-primary {
  background: var(--mint);
  color: #10201d;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 20, 18, 0.92), rgba(11, 20, 18, 0.64) 44%, rgba(11, 20, 18, 0.18)),
    linear-gradient(0deg, rgba(11, 20, 18, 0.78), rgba(11, 20, 18, 0.04) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(280px, 420px);
  gap: 56px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.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;
}

.hero-logo {
  display: block;
  width: min(640px, 100%);
  height: auto;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 640px;
  margin-top: 26px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.call-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.call-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.82);
}

.call-row strong {
  display: block;
  font-size: 14px;
}

.call-row span {
  color: var(--muted);
  font-size: 13px;
}

.metric {
  text-align: right;
  font-weight: 900;
  color: var(--teal);
}

section {
  padding: 84px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.card h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  letter-spacing: 0;
}

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

.icon {
  display: grid;
  place-items: center;
  min-width: 42px;
  width: max-content;
  height: 42px;
  border-radius: 8px;
  padding: 0 12px;
  color: #0c211d;
  background: #dff8ef;
  font-weight: 900;
  font-size: 13px;
}

.band,
.workflow-section {
  background: #10201d;
  color: var(--white);
}

.sector-section {
  background: #fffaf1;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sector-grid article,
.sector-grid a {
  display: block;
  min-height: 158px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sector-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 124, 115, 0.28);
  box-shadow: 0 14px 34px rgba(17, 31, 29, 0.1);
}

.sector-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.sector-grid span {
  color: var(--muted);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 48px;
  align-items: center;
}

.agenda-preview {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.agenda-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.agenda-toolbar span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
}

.agenda-lines {
  display: grid;
}

.agenda-lines div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-lines div:last-child {
  border-bottom: 0;
}

.agenda-lines span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.agenda-lines strong,
.agenda-lines em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
}

.agenda-lines em {
  color: var(--gold);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ops-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.ops-grid b {
  color: var(--teal);
  font-size: 13px;
}

.ops-grid h3 {
  margin: 12px 0 8px;
  font-size: 20px;
}

.ops-grid p {
  margin: 0;
  color: var(--muted);
}

.sector-hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: end;
  padding: 0;
  color: var(--white);
  overflow: hidden;
}

.sector-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 20, 18, 0.94), rgba(11, 20, 18, 0.68) 48%, rgba(11, 20, 18, 0.24)),
    linear-gradient(0deg, rgba(11, 20, 18, 0.82), rgba(11, 20, 18, 0.02) 50%);
}

.sector-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: 96px 0 28px;
}

.sector-hero h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1;
}

.sector-hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.sector-hero .hero-actions {
  margin-top: 24px;
}

.sector-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.sector-kpis div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
}

.sector-kpis strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 20px;
}

.sector-kpis span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.pain-grid,
.sector-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pain-grid article,
.sector-use-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.pain-grid b,
.sector-use-grid b {
  color: var(--teal);
  font-size: 13px;
}

.pain-grid h3,
.sector-use-grid h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}

.pain-grid p,
.sector-use-grid p {
  margin: 0;
  color: var(--muted);
}

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

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.sector-call {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 44px;
  align-items: center;
}

.sector-call-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(247, 245, 239, 0.96);
  color: var(--ink);
}

.sector-call-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.sector-call-card div {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.sector-call-card div:last-child {
  border-bottom: 0;
}

.sector-call-card strong {
  display: block;
  margin-bottom: 4px;
}

.sector-call-card span {
  color: var(--muted);
}

.sector-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sector-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.step {
  padding: 24px;
  background: #142a26;
}

.step b {
  color: var(--mint);
  font-size: 13px;
}

.step h3 {
  margin: 12px 0 8px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
}

.plan.featured {
  border-color: rgba(15, 124, 115, 0.42);
  box-shadow: var(--shadow);
}

.price {
  margin: 18px 0;
  font-size: 38px;
  font-weight: 900;
}

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

.plan li::before {
  content: "+";
  margin-right: 8px;
  color: var(--teal);
  font-weight: 900;
}

.cta-band {
  padding: 68px 0;
  background: var(--coral);
  color: #210f0a;
}

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

.cta-inner h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.cta-inner p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(33, 15, 10, 0.72);
  font-size: 18px;
}

footer,
.site-footer {
  color: rgba(255, 250, 241, 0.72);
  background: #141b18;
  border-top: 1px solid rgba(255, 250, 241, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(180px, 0.7fr));
  gap: 42px;
  padding: 48px 0 36px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: 190px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.7;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-links a,
.footer-bottom a {
  color: rgba(255, 250, 241, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  color: rgba(255, 250, 241, 0.56);
  border-top: 1px solid rgba(255, 250, 241, 0.1);
}

.legal-page {
  padding: 130px 0 72px;
  background: #fffaf1;
}

.legal-card {
  max-width: 860px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(33, 15, 10, 0.08);
}

.legal-card h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-size: 22px;
}

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

.legal-card ul {
  padding-left: 20px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(10, 18, 16, 0.68);
}

.modal-backdrop.open {
  display: grid;
}

.modal {
  width: min(460px, 100%);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
}

.close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-body {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  border-radius: 8px;
  background: #eef1ec;
}

.tab {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  color: var(--muted);
}

.tab.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

input:disabled {
  color: #8c9692;
  background: #eef1ec;
  cursor: not-allowed;
}

.modal-error {
  min-height: 18px;
  margin: 0;
  color: #b73426;
  font-size: 13px;
  font-weight: 800;
}

.modal-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 122px 0 44px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .grid-3,
  .plans,
  .workflow,
  .sector-grid,
  .feature-split,
  .ops-grid,
  .sector-kpis,
  .pain-grid,
  .sector-use-grid,
  .sector-call {
    grid-template-columns: 1fr;
  }

  .sector-hero {
    min-height: auto;
  }

  .sector-hero-content {
    padding: 122px 0 48px;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    height: 64px;
  }

  .nav-actions .btn {
    padding: 0 10px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-wordmark {
    width: 128px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-logo {
    width: min(100%, 330px);
  }

  .sector-kpis {
    display: none;
  }

  section {
    padding: 58px 0;
  }
}
