:root {
  color-scheme: light;
  --ink: #102033;
  --ink-soft: #42526b;
  --muted: #66758d;
  --line: #d9e2ef;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --surface-alt: #edf4f8;
  --navy: #092033;
  --teal: #0f9f9a;
  --blue: #2563eb;
  --green: #118568;
  --amber: #c87911;
  --coral: #d45a3a;
  --radius: 8px;
  --shadow: 0 18px 40px rgba(16, 32, 51, 0.12);
  --shadow-soft: 0 10px 24px rgba(16, 32, 51, 0.08);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0; color: var(--ink-soft); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: 56px; max-width: 820px; }
h2 { font-size: 38px; }
h3 { font-size: 21px; }
ul { margin: 0; padding: 0; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  z-index: 10000;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 226, 239, 0.85);
  backdrop-filter: blur(18px);
}
.nav-shell {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 23px;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.desktop-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 650;
  font-size: 15px;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--teal); }
.nav-button,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #fff !important;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}
.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}
.mobile-nav {
  display: none;
  padding: 8px 24px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav.open {
  display: grid;
  gap: 10px;
}
.mobile-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
}
.mobile-nav .mobile-cta {
  justify-content: center;
  margin-top: 6px;
  padding: 0 14px;
}
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 23, 38, 0.94) 0%, rgba(7, 23, 38, 0.82) 45%, rgba(7, 23, 38, 0.26) 100%),
    url("../images/hero-enterprise.png") center right / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%);
}
.hero-inner,
.section-inner,
.page-hero-inner,
.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 118px 0 126px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #dffbf8;
  font-weight: 750;
  font-size: 13px;
}
.hero h1 { margin-top: 22px; color: #fff; }
.hero p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255,255,255,0.84);
  font-size: 19px;
}
.hero-actions,
.cta-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.button.primary { background: var(--teal); color: #fff; }
.button.dark { background: var(--navy); color: #fff; }
.button.light { background: #fff; color: var(--navy); }
.button.secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.08);
}
.button.ghost {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}
.hero-proof {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
}
.proof-item {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,0.1);
}
.proof-item strong {
  display: block;
  color: #fff;
  font-size: 15px;
}
.proof-item span {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 3px;
}
.section {
  padding: 88px 0;
}
.section.soft { background: var(--surface-soft); }
.section.alt { background: var(--surface-alt); }
.section-header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}
.section-kicker {
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-header h2 { margin-top: 12px; }
.section-header p {
  font-size: 17px;
  max-width: 610px;
}
.grid-3,
.grid-4,
.pricing-grid,
.industry-grid {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card,
.price-card,
.industry-card,
.metric-card,
.job-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.card h3,
.price-card h3,
.industry-card h3,
.job-card h3 { margin-bottom: 12px; }
.card p,
.industry-card p,
.job-card p { font-size: 15.5px; }
.icon-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #e8f7f6;
  color: var(--teal);
  font-weight: 900;
}
.icon-mark.blue { background: #eaf0ff; color: var(--blue); }
.icon-mark.green { background: #e7f6f1; color: var(--green); }
.icon-mark.amber { background: #fff3dc; color: var(--amber); }
.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}
.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}
.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex: 0 0 auto;
}
.metrics-band {
  margin-top: -52px;
  position: relative;
  z-index: 3;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.metric-card strong {
  display: block;
  color: var(--navy);
  font-size: 25px;
}
.metric-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.panel-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel-top {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: var(--navy);
}
.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8da0b6;
}
.panel-body { padding: 22px; }
.message-row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.bubble {
  width: fit-content;
  max-width: 92%;
  border-radius: 8px;
  padding: 11px 13px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 14px;
}
.bubble.sent {
  justify-self: end;
  color: #fff;
  background: var(--teal);
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.mini-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--surface-soft);
}
.mini-stats strong {
  display: block;
  color: var(--navy);
}
.mini-stats span {
  color: var(--muted);
  font-size: 12px;
}
.code-block {
  overflow-x: auto;
  border-radius: var(--radius);
  background: #071726;
  color: #dce9f7;
  padding: 24px;
  box-shadow: var(--shadow);
  font-size: 14px;
  line-height: 1.7;
}
.code-block code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
.code-accent { color: #64d8cb; }
.code-note { color: #9fb2c7; }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card.featured {
  border-color: rgba(15, 159, 154, 0.4);
  box-shadow: 0 20px 46px rgba(15, 159, 154, 0.17);
}
.price {
  margin: 18px 0 4px;
  font-size: 34px;
  font-weight: 850;
  color: var(--navy);
}
.price span {
  font-size: 15px;
  color: var(--muted);
  font-weight: 650;
}
.price-card .button { width: 100%; margin-top: 22px; }
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.faq-question span:last-child {
  font-size: 24px;
  line-height: 1;
  color: var(--teal);
}
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}
.faq-item.open .faq-answer { display: block; }
.cta-band {
  color: #fff;
  background: linear-gradient(135deg, #092033, #0f5d63);
}
.cta-band .section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p {
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  max-width: 760px;
}
.page-hero {
  padding: 72px 0 58px;
  background:
    linear-gradient(90deg, rgba(9, 32, 51, 0.95), rgba(15, 93, 99, 0.78)),
    url("../images/hero-enterprise.png") center right / cover no-repeat;
  color: #fff;
}
.page-hero .eyebrow {
  background: rgba(255,255,255,0.12);
}
.page-hero h1 {
  margin-top: 18px;
  color: #fff;
}
.page-hero p {
  margin-top: 18px;
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
}
.content-body {
  max-width: 900px;
  margin: 0 auto;
}
.content-body h2 {
  margin-top: 38px;
  font-size: 28px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body p,
.content-body li {
  color: var(--ink-soft);
  font-size: 16px;
}
.content-body p { margin-top: 12px; }
.content-body ul,
.content-body ol {
  margin: 14px 0 0 20px;
  padding: 0;
}
.content-body li { margin-top: 8px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
}
.contact-card a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}
.form-grid {
  display: grid;
  gap: 14px;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note {
  font-size: 14px;
  color: var(--muted);
}
label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.site-footer {
  background: #071726;
  color: #dce9f7;
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}
.footer-brand p {
  margin-top: 16px;
  color: #a9b9ca;
  max-width: 410px;
}
.footer-brand-link { color: #fff; }
.site-footer h2 {
  margin-bottom: 14px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer a {
  display: block;
  margin-top: 9px;
  color: #a9b9ca;
  text-decoration: none;
}
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #a9b9ca;
  font-size: 14px;
}
.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;
}
@media (max-width: 980px) {
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .hero { min-height: 620px; }
  .hero-inner { padding: 92px 0 120px; }
  .hero-proof,
  .metric-grid,
  .grid-4,
  .grid-3,
  .pricing-grid,
  .split,
  .section-header,
  .cta-band .section-inner,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof { max-width: 620px; }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-actions { margin-top: 0; }
}
@media (max-width: 640px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero-inner,
  .section-inner,
  .page-hero-inner,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 32px, 1180px);
  }
  .nav-shell { padding: 0 16px; }
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(7, 23, 38, 0.96), rgba(7, 23, 38, 0.84)),
      url("../images/hero-enterprise.png") center / cover no-repeat;
  }
  .hero p,
  .page-hero p { font-size: 16px; }
  .hero-actions,
  .cta-actions { display: grid; }
  .button { width: 100%; white-space: normal; text-align: center; }
  .metric-grid,
  .mini-stats { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .page-hero { padding: 54px 0 44px; }
  .footer-bottom { flex-direction: column; }
}