:root {
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --text: #1d252d;
  --muted: #65717f;
  --line: #e3e7ec;
  --accent: #c90016;
  --accent-dark: #a90012;
  --accent-soft: #fff1f3;
  --check: #079f9a;
  --dark: #202a33;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(29, 37, 45, .11);
  --shadow-soft: 0 12px 34px rgba(29, 37, 45, .06);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 96px 0; }
.light-section { background: var(--bg-soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227,231,236,.85);
}
.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
}

.brand-logo {
  width: 180px;
  height: 72px;
  object-fit: contain;
  display: block;
}
.main-nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}
.main-nav a { transition: color .18s ease; }
.main-nav a:hover { color: var(--text); }
.header-cta {
  padding: 11px 19px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
  box-shadow: 0 10px 22px rgba(29,37,45,.13);
}
.header-cta:hover { background: #000; }

.hero {
  padding-top: 56px;
  padding-bottom: 118px;
  background:
    radial-gradient(circle at 86% 18%, rgba(201,0,22,.055), transparent 34%),
    radial-gradient(circle at 14% 84%, rgba(29,37,45,.045), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 96px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .76rem;
}
h1, h2, h3, h4 { line-height: 1.08; margin: 0; color: var(--text); }
h1 { font-size: clamp(2.7rem, 3.8vw, 4.8rem); letter-spacing: -.065em; max-width: 850px; }
h2 { font-size: clamp(2rem, 3.35vw, 3.35rem); letter-spacing: -.05em; }
h3 { font-size: 1.35rem; letter-spacing: -.025em; }
h4 { font-size: 1.12rem; letter-spacing: -.02em; }
p {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.72;
}
.info-card p,
.step-card p,
.workflow-box p,
.contact-box p {
  font-size: 1rem;
  line-height: 1.72;
}

.hero-text { font-size: 1.18rem; max-width: 670px; }
.hero-actions, .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 16px 30px rgba(201,0,22,.22); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { 
  background: #fff; 
  color: var(--text); 
  border: 1px solid var(--line); 
  box-shadow: 0 10px 26px rgba(29,37,45,.04); 
  margin-left: 20px
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 650px;
  margin-top: 38px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.benefit-row li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.45;
}
.benefit-row li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--check);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.3;
}
.hero-visual {
  position: relative;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-scene {
  margin: 0;
  width: min(500px, 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(227,231,236,.88);
}

.hero-scene img {
  width: 100%;
  height: auto;
}

.floating-note {
  position: static;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 17px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 36px rgba(29,37,45,.08);
  font-weight: 850;
  max-width: 340px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: .95rem;
}
.floating-note::before {
  content: "✓";
  display: inline-block;
  color: var(--check);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  margin-right: 9px;
}

.section-heading { max-width: 740px; margin-bottom: 44px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.cards { display: grid; gap: 24px; }
.three-cols { grid-template-columns: repeat(3, 1fr); }
.two-cols { grid-template-columns: repeat(2, 1fr); }
.info-card, .step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.info-card .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 22px;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { position: relative; }
.step-number {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 12px 22px rgba(201,0,22,.18);
}

.split-section { background: #fff; }
.split-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 64px; align-items: center; }
.workflow-box {
  background: var(--dark);
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.workflow-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 850;
}
.workflow-arrow { text-align: center; color: #ff8a98; font-size: 1.6rem; padding: 8px 0; }

.industry-cards ul { margin: 22px 0 0; padding-left: 20px; color: var(--muted); }
.industry-cards li + li { margin-top: 8px; }
.highlighted {
  border-color: rgba(201,0,22,.22);
  box-shadow: 0 12px 34px rgba(201,0,22,.05);
  background: linear-gradient(180deg, #fff 0%, #fff8f9 100%);
}

.product-feature {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 48px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #fafafa);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.product-feature img { max-height: 420px; margin: 0 auto; filter: drop-shadow(0 14px 24px rgba(0,0,0,.12)); }
.cta-band {
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}
.cta-band p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .contact-actions {
  margin-top: 28px;
}
.cta-band .btn-secondary {
  margin-left: 0;
}
.product-stack {
  display: grid;
  gap: 28px;
}
.terminal-interface-showcase {
  min-width: 0;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: var(--shadow-soft);
}
.terminal-interface-heading {
  max-width: 700px;
  margin-bottom: 24px;
}
.terminal-interface-heading .eyebrow {
  margin-bottom: 12px;
}
.terminal-interface-heading h3 {
  font-size: 1.75rem;
}
.terminal-interface-heading p:last-child {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.65;
}
.terminal-interface-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
}
.interface-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 10px 28px rgba(29, 37, 45, .055);
}
.interface-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  padding: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f8fa;
}
.interface-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.interface-card p {
  margin-top: 12px;
  font-size: .94rem;
  line-height: 1.65;
}
.waiting-screen-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 42px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}
.waiting-screen-image {
  min-width: 0;
}
.waiting-screen-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f7f8fa;
  border-radius: 18px;
}
.waiting-screen-content {
  padding: 12px 18px 12px 0;
}
.waiting-screen-content p {
  font-size: 1rem;
  line-height: 1.72;
}

.dark-section { background: var(--dark); color: #fff; }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: rgba(255,255,255,.72); }
.dark-section .eyebrow { color: rgba(255,255,255,.72); }
.dark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stats-grid div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 24px;
}
.stats-grid strong { display: block; font-size: 2rem; line-height: 1; }
.stats-grid span { display: block; color: rgba(255,255,255,.7); margin-top: 8px; }

.contact-section { background: linear-gradient(180deg, #fff, #f7f8fa); }
.contact-box {
  text-align: center;
  max-width: 760px;
  padding: 56px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-actions { justify-content: center; }


.contact-subheading{
	margin-top: 44px;
	margin-bottom: 18px;
}

.contact-direct {
  margin-bottom: 26px;
}


.site-footer {
  padding: 38px 0;
  background: #eef1f4;
  border-top: 1px solid #dde3ea;
  color: #56616d;
}
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .98rem; }

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #56616d;
  transition: color .18s ease;
}

.footer-links a:hover {
  color: var(--text);
}


.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .hero-grid, .split-grid, .product-feature, .dark-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .three-cols, .two-cols, .steps { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .floating-note { position: static; margin-top: 30px; }
  .brand-logo { width: 170px; }
  
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(29,37,45,.08);
    margin-top: -2px;
	z-index: 40;
  }

  .mobile-nav {
    position: fixed;
    top: 92px;
    left: 14px;
    right: 14px;
    z-index: 9999;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(29,37,45,.14);
  }

  body.nav-open .mobile-nav {
    display: grid;
    gap: 8px;
  }

  .mobile-nav a {
    padding: 12px 16px;
    border-radius: 16px;
    background: #f7f8fa;
    font-weight: 850;
    color: var(--text);
  }
  
  .contact-direct .btn {
    width: auto;
  }
}

@media (max-width: 760px) {
  .waiting-screen-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .waiting-screen-content {
    padding: 0 4px 4px;
  }
}

@media (max-width: 680px) {
  .terminal-interface-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1140px); }
  .header-inner { height: 64px; }
  .brand-logo { width: 120px; }
  h1 {
    font-size: 2.15rem;
    letter-spacing: -.045em;
  }
  .hero {
    padding-top: 35px;
    padding-bottom: 58px;
  }
  .hero-grid {
    gap: 28px;
  }
  .product-feature, .contact-box, .terminal-interface-showcase { padding: 24px; border-radius: 24px; }
  .hero-scene { border-radius: 20px; }
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn { width: 100%; }
  .interface-card { padding: 18px; }
  .interface-image { height: 220px; padding: 18px; }
  .cta-band { padding: 48px 0; }
  .waiting-screen-card { padding: 20px; border-radius: 24px; }
  
  body {
    font-size: 17px;
  }

  p {
    font-size: 1.06rem;
    line-height: 1.74;
  }

  .info-card p,
  .step-card p,
  .waiting-screen-content p {
    font-size: 1rem;
  }
  
  .mobile-nav {
    top: 76px;
  }
}





.legal-page {
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.legal-content {
  max-width: 860px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 56px;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 38px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 36px;
  letter-spacing: -.025em;
}

.legal-content p {
  margin-top: 12px;
}

.legal-content a {
  color: var(--accent);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  transition: color .18s ease;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 560px) {
  .legal-content {
    padding: 28px;
    border-radius: 24px;
  }
}





.contact-form {
  margin-top: 42px;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px 18px;
  font: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(201,0,22,.4);
  box-shadow: 0 0 0 4px rgba(201,0,22,.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

.privacy-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.privacy-check a {
  color: var(--accent);
  font-weight: 700;
}

.form-note {
  margin-top: 18px;
  font-size: .95rem;
  color: var(--muted);
  text-align: center;
}

.contact-form .btn {
  width: 100%;
}

@media (max-width: 760px) {

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

}










.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  display: none;
}

.form-status {
  display: none;
  margin: 28px 0;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 700;
  text-align: center;
}

.form-success {
  background: #eef8f1;
  color: #176b35;
  border: 1px solid #cfead7;
}

.form-error {
  background: #fff1f3;
  color: var(--accent);
  border: 1px solid rgba(201,0,22,.2);
}

body.form-sent .form-success {
  display: block;
}

body.form-error .form-error {
  display: block;
}
