:root {
  --bg: #f2eee7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fdfaf4;
  --ink: #13212c;
  --muted: #5e6870;
  --line: rgba(19, 33, 44, 0.12);
  --accent: #e36414;
  --accent-deep: #b44700;
  --accent-soft: #f9c784;
  --teal: #1f6f78;
  --shadow: 0 24px 60px rgba(19, 33, 44, 0.12);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(227, 100, 20, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(31, 111, 120, 0.16), transparent 24%),
    linear-gradient(180deg, #f7f4ee 0%, #ece6dc 100%);
  min-height: 100vh;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 32px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(253, 250, 244, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(19, 33, 44, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(19, 33, 44, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--teal));
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small,
.nav a,
.hero-text,
.product-card p,
.solution-card p,
.timeline-item p,
.stats-grid p,
.contact-form span,
.site-footer,
.lead-dialog p {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.96rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 72px 0 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero h1,
.section-heading h2,
.stats-panel h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.05;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 12ch;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 28px rgba(227, 100, 20, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.trust-points li {
  padding: 10px 14px;
  border: 1px solid rgba(19, 33, 44, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-panel {
  position: relative;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-panel::before {
  width: 180px;
  height: 180px;
  right: 12%;
  top: -30px;
  background: rgba(249, 199, 132, 0.35);
}

.hero-panel::after {
  width: 120px;
  height: 120px;
  left: -10px;
  bottom: 30px;
  background: rgba(31, 111, 120, 0.18);
}

.hero-card,
.metric-card,
.product-card,
.solution-card,
.timeline-item,
.stats-panel,
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.hero-card-primary {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(19, 33, 44, 0.95), rgba(31, 111, 120, 0.9)),
    var(--surface);
  color: #fff;
}

.hero-card-primary span,
.hero-card-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-card-primary strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 1.7rem;
  line-height: 1.2;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.metric-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.metric-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin-bottom: 6px;
}

.section {
  padding: 34px 0;
}

.marquee-section {
  overflow: hidden;
  padding: 8px 0 18px;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: drift 28s linear infinite;
}

.marquee-track span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 33, 44, 0.08);
  font-family: "Space Grotesk", sans-serif;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2,
.stats-panel h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 16ch;
}

.product-grid,
.solution-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.solution-grid {
  grid-template-columns: repeat(2, 1fr);
}

.product-card,
.solution-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.product-card h3,
.solution-card h3,
.timeline-item strong {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.product-card::after,
.solution-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(227, 100, 20, 0.16), rgba(31, 111, 120, 0.06));
}

.section-highlight .solution-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(227, 100, 20, 0.12);
  color: var(--accent-deep);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.split-section .timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-item {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.timeline-item strong {
  display: block;
}

.stats-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(19, 33, 44, 0.92), rgba(11, 74, 91, 0.92)),
    var(--surface);
  color: #fff;
}

.stats-panel .eyebrow,
.stats-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid article {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  resize: vertical;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px 0;
  font-size: 0.92rem;
}

.lead-dialog {
  width: min(460px, calc(100% - 24px));
  border: 0;
  padding: 0;
  border-radius: 24px;
  background: transparent;
}

.lead-dialog::backdrop {
  background: rgba(19, 33, 44, 0.55);
  backdrop-filter: blur(8px);
}

.lead-dialog-inner {
  padding: 28px;
  border-radius: 24px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .hero,
  .stats-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section .timeline,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  .site-header,
  .site-footer,
  .nav,
  .hero-actions,
  .trust-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    border-radius: 28px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .product-grid,
  .solution-grid,
  .split-section .timeline,
  .stats-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }
}
