:root {
  --ix-ink: #111827;
  --ix-muted: #5b6472;
  --ix-soft: #f7f4ef;
  --ix-card: #ffffff;
  --ix-line: rgba(17, 24, 39, 0.10);
  --ix-mango: #ff9800;
  --ix-mango-deep: #f25c05;
  --ix-mango-soft: #fff3df;
  --ix-navy: #101828;
  --ix-radius-xl: 28px;
  --ix-radius-lg: 20px;
  --ix-shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --ix-shadow-soft: 0 16px 42px rgba(17, 24, 39, 0.08);
}

* { 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(--ix-ink);
  background: #fffaf4;
  line-height: 1.65;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; height: auto; }

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

a:hover { color: var(--ix-mango-deep); }

.section-pad { padding: 96px 0; }

.section-pad-sm { padding: 72px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(242, 92, 5, 0.22);
  border-radius: 999px;
  color: #9a4b00;
  background: rgba(255, 243, 223, 0.78);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ix-mango), var(--ix-mango-deep));
  box-shadow: 0 0 0 6px rgba(255, 152, 0, 0.13);
}

.display-title {
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.96;
  font-size: clamp(3rem, 7vw, 6.9rem);
}

.section-title {
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-size: clamp(2.2rem, 4.3vw, 4.6rem);
}

.lead-copy {
  color: var(--ix-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  max-width: 760px;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--ix-mango), var(--ix-mango-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-ix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 850;
  color: #111827;
  background: linear-gradient(135deg, #ffc445, var(--ix-mango), var(--ix-mango-deep));
  box-shadow: 0 14px 34px rgba(242, 92, 5, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ix:hover {
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(242, 92, 5, 0.32);
}

.btn-ix-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 850;
  color: var(--ix-ink);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-ix-outline:hover {
  color: var(--ix-ink);
  transform: translateY(-2px);
  border-color: rgba(242, 92, 5, 0.38);
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 250, 244, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

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

.brand-logo {
  width: min(264px, 64vw);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 760;
  color: #344054;
}

.nav-links a { position: relative; }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--ix-mango), var(--ix-mango-deep));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.18s ease;
}

.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ix-line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ix-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle span::before,
.mobile-toggle span::after { content: ""; position: absolute; }

.mobile-toggle span { position: relative; }
.mobile-toggle span::before { transform: translateY(-7px); }
.mobile-toggle span::after { transform: translateY(7px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 64px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 176, 0, 0.24), transparent 34%),
    radial-gradient(circle at 85% 14%, rgba(242, 92, 5, 0.14), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #ffffff 86%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -140px -260px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 152, 0, 0.12);
  filter: blur(10px);
}

.hero-grid { align-items: center; }

.hero-panel {
  position: relative;
  min-height: 560px;
}

.dashboard-card {
  position: absolute;
  inset: 40px 0 auto auto;
  width: min(520px, 100%);
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--ix-shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--ix-line);
}

.dot-row { display: flex; gap: 8px; }
.dot-row span { width: 10px; height: 10px; border-radius: 999px; background: #d0d5dd; }
.dot-row span:nth-child(1) { background: #ffb000; }
.dot-row span:nth-child(2) { background: #ff8c1a; }
.dot-row span:nth-child(3) { background: #111827; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
}

.metric-card {
  padding: 20px;
  border: 1px solid var(--ix-line);
  border-radius: 22px;
  background: #fff;
}

.metric-label {
  display: block;
  color: var(--ix-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-value {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.chart-card {
  margin: 0 24px 24px;
  padding: 22px;
  border-radius: 26px;
  background: #111827;
  color: #fff;
}

.bar-stack {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 138px;
  padding-top: 18px;
}

.bar-stack span {
  flex: 1;
  min-width: 16px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #ffc445, var(--ix-mango-deep));
  opacity: 0.86;
}

.float-card {
  position: absolute;
  left: 0;
  bottom: 44px;
  width: min(280px, 86%);
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--ix-shadow-soft);
}

.float-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ix-mango-soft);
  color: var(--ix-mango-deep);
  font-size: 1.35rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 68px;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 34px rgba(17, 24, 39, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.trust-item i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--ix-mango-soft);
  color: var(--ix-mango-deep);
}

.service-card,
.process-card,
.industry-card,
.contact-card,
.about-card {
  height: 100%;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: var(--ix-radius-xl);
  background: #fff;
  box-shadow: 0 14px 42px rgba(17, 24, 39, 0.05);
}

.service-card {
  padding: 34px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 92, 5, 0.26);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.10);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #111827;
  background: linear-gradient(135deg, #fff2d6, #ffd48a);
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.service-card h3,
.process-card h3,
.about-card h3,
.contact-card h3 {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.feature-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  color: var(--ix-muted);
}

.feature-list li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: var(--ix-mango-soft);
  font-weight: 900;
  font-size: 0.75rem;
}

.bg-ink {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at top right, rgba(255, 152, 0, 0.25), transparent 36%), #111827;
}

.bg-ink .lead-copy,
.bg-ink .text-muted-ix { color: rgba(255, 255, 255, 0.72); }
.bg-ink .eyebrow { color: #ffd79d; background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); }

.process-card {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.step-number {
  position: absolute;
  right: 26px;
  top: 24px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 950;
  font-size: 3.4rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.industry-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.industry-card i {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ix-mango-soft);
  color: var(--ix-mango-deep);
}

.about-card { padding: 38px; }

.highlight-panel {
  position: relative;
  min-height: 100%;
  border-radius: var(--ix-radius-xl);
  padding: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 196, 69, 0.42), transparent 28%),
    linear-gradient(135deg, #111827, #2b1907 58%, #f25c05);
  box-shadow: var(--ix-shadow);
  overflow: hidden;
}

.highlight-panel::after {
  content: "∞X";
  position: absolute;
  right: -34px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.12);
  font-weight: 950;
  font-size: 9rem;
  letter-spacing: -0.16em;
}

.stat-tile {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-tile strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.cta-band {
  border-radius: 36px;
  padding: 52px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 196, 69, 0.38), transparent 28%),
    linear-gradient(135deg, #111827 0%, #151a25 50%, #f25c05 120%);
  box-shadow: var(--ix-shadow);
}

.form-control,
.form-select {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  min-height: 52px;
  color: var(--ix-ink);
  background: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(242, 92, 5, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(255, 152, 0, 0.14);
}

.contact-card { padding: 36px; }

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  color: var(--ix-muted);
}

.contact-link i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--ix-mango-soft);
  color: var(--ix-mango-deep);
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
}

.footer-logo { width: 220px; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #ffc445, var(--ix-mango-deep));
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.22);
  z-index: 999;
}

.back-to-top.show { display: inline-flex; }

.honeypot { display: none !important; }

@media (max-width: 991.98px) {
  .mobile-toggle { display: inline-flex; }

  .nav-actions { display: none; }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ix-shadow);
  }

  .nav-links.show { display: flex; }

  .nav-links li a {
    display: block;
    padding: 14px 10px;
  }

  .hero { padding: 64px 0 48px; }
  .hero-panel { min-height: 520px; margin-top: 28px; }
  .dashboard-card { inset: 0 0 auto auto; }
  .float-card { bottom: 0; }
  .section-pad { padding: 76px 0; }
  .cta-band { padding: 38px 28px; }
}

@media (max-width: 575.98px) {
  .brand-logo { width: 224px; }
  .metric-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 650px; }
  .float-card { width: 100%; }
  .service-card, .about-card, .contact-card, .highlight-panel { padding: 26px; border-radius: 24px; }
  .cta-band { border-radius: 26px; }
}
