
:root {
  --ink: #141414;
  --muted: #5d6470;
  --line: #e7e8eb;
  --soft: #f5f6f8;
  --dark: #111821;
  --dark-2: #172231;
  --bar: #041625;
  --white: #ffffff;
  --accent: #2a72b8;
  --accent-dark: #1d5f9d;
  --radius: 16px;
  --shadow: 0 20px 55px rgba(17, 24, 33, 0.12);
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* Shared screenshot-style title/menu bar */
body.has-title-bar { padding-top: 0; }
.site-header.home-title-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(4, 22, 37, 0.75);
  color: #c0c5c9;
  border-bottom: 0;
  box-shadow: none;
}
.home-title-bar .container { width: 100%; max-width: none; margin: 0; }
.home-title-bar .header-inner {
  min-height: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.logo-link { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.home-title-bar .title-bar-logo {
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.home-title-bar .title-bar-logo img { width: 150px; height: auto; }
.home-title-bar .callout {
  height: 64px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: #c0c5c9;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 1;
  white-space: nowrap;
}
.home-title-bar .nav-toggle {
  height: 64px;
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  padding: 0 24px;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.home-title-bar .nav-toggle::before {
  content: "☰";
  display: inline-block;
  margin-right: 0.55em;
  font-size: 1.15em;
  line-height: 1;
}
.home-title-bar .nav-toggle:hover,
.home-title-bar .nav-toggle[aria-expanded="true"] { background: rgba(255, 255, 255, 0.10); }
.home-title-bar .nav-links {
  display: flex;
  position: fixed;
  right: 0;
  top: 64px;
  bottom: 0;
  width: min(320px, 86vw);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 18px 26px;
  background: var(--bar);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.24);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}
.home-title-bar .nav-links.open { transform: translateX(0); }
.home-title-bar .nav-links a {
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.9;
}
.home-title-bar .nav-links a:first-child { border-top: 0; }
.home-title-bar .nav-links a:hover,
.home-title-bar .nav-links a.active { background: transparent; opacity: 1; }

/* Hero sections */
.hero {
  position: relative;
  min-height: 560px;
  color: var(--white);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero video, .hero .fallback-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,24,33,0.88), rgba(17,24,33,0.52) 52%, rgba(17,24,33,0.28));
}
body.home-index .screenshot-hero {
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  display: block;
  place-items: initial;
  background: var(--bar);
}
body.home-index .screenshot-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}
body.home-index .screenshot-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 22, 37, 0.82), rgba(4, 22, 37, 0.56) 55%, rgba(4, 22, 37, 0.32)),
    linear-gradient(0deg, rgba(4, 22, 37, 0.28), rgba(4, 22, 37, 0.08));
  z-index: 1;
}
body.home-index .screenshot-hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(84px, 13vw, 220px);
  top: 50%;
  transform: translateY(-42%);
  width: min(860px, calc(100vw - clamp(84px, 13vw, 220px) - 40px));
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.36);
}
body.home-index .screenshot-hero-content .hero-kicker,
.hero-kicker,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 12px;
}
body.home-index .screenshot-hero-content .hero-kicker {
  color: #ffffff;
  margin: 0 0 14px;
  letter-spacing: 0.22em;
  opacity: 0.86;
}
body.home-index .screenshot-hero-content h1 {
  margin: 0 0 22px;
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(2.85rem, 6.15vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
body.home-index .screenshot-hero-content h1 span {
  display: block;
  white-space: nowrap;
}
body.home-index .screenshot-hero-content p:not(.hero-kicker) {
  max-width: 640px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.8vw, 1.32rem);
  line-height: 1.48;
}
body.home-index .screenshot-hero-content .button.secondary { border-color: rgba(255, 255, 255, 0.74); }

.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  padding: 128px 0 72px;
}
.breadcrumb { margin: 0 0 12px; color: rgba(255,255,255,0.68); font-weight: 700; font-size: 0.88rem; }
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.hero h1, .page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0 0 22px;
  max-width: 820px;
}
.hero p, .page-hero p { max-width: 720px; font-size: clamp(1.03rem, 2vw, 1.25rem); margin: 0 0 32px; color: rgba(255,255,255,0.86); }
.page-hero p:last-child { margin-bottom: 0; }

/* Buttons and layout */
section { padding: 74px 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button, button.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.button:hover { background: var(--accent-dark); }
.button.secondary { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.button.secondary:hover { background: rgba(255,255,255,0.12); }
.button.light { background: var(--white); color: var(--dark); }
.button.light:hover { background: #f0f2f5; }
.button.dark { background: var(--dark); color: var(--white); }
.button.dark:hover { background: #0c121a; }
.text-link { color: var(--accent-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.section-header { text-align: center; max-width: 790px; margin: 0 auto 38px; }
.section-header h2, .content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
}
.section-header p, .content p { color: var(--muted); margin: 0; }
.grid { display: grid; gap: 24px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: center; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17,24,33,0.06);
}
.card-image { aspect-ratio: 4 / 3; background: var(--soft); overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card h3 { margin: 0 0 10px; font-size: 1.3rem; letter-spacing: -0.02em; }
.card p { color: var(--muted); margin: 0 0 20px; }
.card p:last-child { margin-bottom: 0; }
.card .button { margin-top: 2px; }
.feature, .industry-card, .info-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17,24,33,0.045);
}
.feature h3, .industry-card h3, .info-card h3 { margin: 0 0 8px; }
.feature p, .industry-card p, .info-card p { margin: 0; color: var(--muted); }

.simple-list { list-style: none; padding: 0; margin: 18px 0 0; }
.simple-list li { padding: 10px 0 10px 26px; border-bottom: 1px solid var(--line); position: relative; color: var(--ink); }
.simple-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 4px;
  top: 20px;
}
.simple-list li:last-child { border-bottom: 0; }
.panel { background: var(--soft); border-radius: var(--radius); padding: 34px; }
.dark-band { background: var(--dark); color: var(--white); }
.dark-band .section-header p, .dark-band .content p { color: rgba(255,255,255,0.72); }
.dark-band .section-header h2, .dark-band .content h2 { color: var(--white); }
.dark-band .card { background: var(--dark-2); border-color: rgba(255,255,255,0.08); box-shadow: none; }
.dark-band .card p, .dark-band .card li { color: rgba(255,255,255,0.74); }
.dark-band .panel, .support-panel { background: rgba(255,255,255,0.96); color: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.dark-band .panel .simple-list li, .support-panel .simple-list li { color: var(--ink); border-bottom-color: #d9dde3; }
.dark-band .panel h3, .support-panel h3 { color: var(--dark); margin-top: 0; }
.dark-band .panel p, .support-panel p { color: var(--muted); }

/* Product and industry cards */
.product-card.no-image .card-body { padding-top: 30px; }
.product-card.no-image::before {
  content: "";
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--dark-2));
}
.industry-card { position: relative; overflow: hidden; }
.industry-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -42px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(42, 114, 184, 0.10);
}
.industry-card .industry-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #edf5fc;
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 18px;
}
.industry-card p { margin-bottom: 18px; }
.detail-panel h3 { margin: 0 0 14px; }
.detail-panel .simple-list { margin-top: 4px; }
.back-row { margin-top: 24px; }

/* Better visit CTA */
.visit-section { padding-top: 34px; }
.visit-cta {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 32px;
  align-items: center;
  border-radius: 28px;
  padding: clamp(30px, 5vw, 54px);
  background:
    radial-gradient(circle at top right, rgba(42, 114, 184, 0.32), transparent 34%),
    linear-gradient(135deg, #0a1a2a, #142332 60%, #1d5f9d);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visit-cta .kicker { color: #cfe4f8; }
.visit-cta h2 { margin: 0 0 14px; font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1.06; letter-spacing: -0.04em; }
.visit-cta p { margin: 0 0 24px; color: rgba(255,255,255,0.82); }
.visit-cta-card {
  background: rgba(255,255,255,0.96);
  color: var(--dark);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.20);
}
.visit-cta-card h3 { margin: 0 0 14px; }
.visit-cta-card .simple-list li { color: var(--ink); border-bottom-color: #dfe4e9; }

/* Contact page */
.contact-section { background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%); }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.35fr; gap: 28px; align-items: start; }
.contact-sidebar { display: grid; gap: 18px; }
.contact-info-card, .contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(17,24,33,0.07);
}
.contact-info-card.primary {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  border-color: rgba(255,255,255,0.08);
}
.contact-info-card .eyebrow, .contact-form-card .eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}
.contact-info-card.primary .eyebrow { color: #cfe4f8; }
.contact-info-card h3, .contact-form-card h3 { margin: 0 0 10px; font-size: 1.45rem; letter-spacing: -0.02em; }
.contact-info-card p { color: var(--muted); margin: 0; }
.contact-info-card.primary p { color: rgba(255,255,255,0.74); }
.contact-big-link { display: block; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.1; font-weight: 900; margin: 10px 0 8px; color: inherit; }
.contact-link { color: var(--accent-dark); font-weight: 900; }
.form-note { color: var(--muted); font-size: 0.95rem; margin: 0 0 24px; }
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-weight: 800; display: grid; gap: 8px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 160px; resize: vertical; }
.contact-checklist { margin: 14px 0 0; }
.process-strip { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-step { background: #ffffff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.process-step strong { display: block; margin-bottom: 4px; }
.process-step p { margin: 0; color: var(--muted); }

/* Footer */
.site-footer { background: var(--dark); color: var(--white); padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.site-footer h3 { margin: 0 0 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 9px 0; color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,0.62); }
.notice { border-left: 4px solid var(--accent); background: #f2f7fc; padding: 18px 20px; border-radius: 12px; color: var(--muted); }

@media (max-width: 1040px) {
  .grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .home-title-bar .callout { font-size: 0.82rem; padding: 0 14px; }
  .home-title-bar .title-bar-logo { padding: 0 14px; }
  .home-title-bar .title-bar-logo img { width: 124px; }
  .home-title-bar .nav-toggle { min-width: 112px; padding: 0 16px; font-size: 1.05rem; }
  body.home-index .screenshot-hero-content {
    left: clamp(42px, 10vw, 90px);
    width: min(760px, calc(100vw - clamp(42px, 10vw, 90px) - 28px));
  }
  .grid.three, .grid.two, .split, .contact-layout, .footer-grid, .process-strip, .visit-cta { grid-template-columns: 1fr; }
  section { padding: 58px 0; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .home-title-bar .callout { display: none; }
  .home-title-bar .title-bar-logo { padding: 0 16px; }
  .home-title-bar .title-bar-logo img { width: 116px; }
  .home-title-bar .nav-toggle { min-width: 104px; }
  body.home-index .screenshot-hero-content { left: 17px; top: 54%; width: min(100% - 34px, 620px); }
  body.home-index .screenshot-hero-content h1 { font-size: clamp(2.4rem, 14vw, 4.2rem); }
  body.home-index .screenshot-hero-content h1 span { white-space: normal; }
  .button-row, .button { width: 100%; }
  .page-hero { padding-top: 112px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-card, .visit-cta-card, .panel { padding: 22px; }
}
