:root {
  --gmpl-orange: #fc5c01;
  --gmpl-orange-deep: #cd5202;
  --gmpl-orange-soft: #fff7f1;
  --gmpl-ink: #191817;
  --gmpl-graphite: #55514d;
  --gmpl-muted: #77716b;
  --gmpl-line: #e8e2dc;
  --gmpl-paper: #faf8f5;
  --gmpl-steel: #f1efec;
  --gmpl-silver: #c9c9c9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gmpl-ink);
  background: var(--gmpl-paper);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1,
.section-title,
.display-heading {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 650 !important;
  letter-spacing: 0;
}

h1.font-black,
.section-title.font-black,
.display-heading.font-black {
  font-weight: 650 !important;
}

.font-black,
.font-extrabold {
  font-weight: 650 !important;
}

.font-bold {
  font-weight: 620 !important;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 22px;
  pointer-events: none;
  background: transparent;
  border: 0;
}

.topbar > .shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  padding-inline: 20px;
  pointer-events: auto;
  background: transparent;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, border-radius 220ms ease;
}

.topbar nav {
  margin-right: auto;
}

.mobile-brand {
  display: inline-flex;
  align-items: center;
}

.mobile-brand img {
  width: 58px;
  height: auto;
  display: block;
}

.topbar [data-menu-toggle] {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  min-width: 38px;
}

.topbar.is-scrolled > .shell,
.topbar:focus-within > .shell {
  border: 1px solid rgba(232, 226, 220, 0.86);
  border-radius: 999px;
  background:
    radial-gradient(circle at 78% 20%, rgba(252, 92, 1, 0.04), transparent 20rem),
    rgba(255, 253, 250, 0.78);
  box-shadow: 0 18px 48px rgba(25, 24, 23, 0.075);
  backdrop-filter: blur(18px) saturate(140%);
}

.topbar.is-scrolled {
  background: transparent;
}

.nav-link {
  position: relative;
  color: var(--gmpl-muted);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gmpl-orange);
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gmpl-ink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.btn-primary,
.btn-secondary,
.btn-accent,
.btn-dark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  background: var(--gmpl-ink);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(25, 24, 23, 0.14);
}

.btn-secondary {
  border: 1px solid var(--gmpl-line);
  color: var(--gmpl-ink);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
}

.btn-accent {
  border: 1px solid rgba(252, 92, 1, 0.34);
  color: #ffffff;
  background: var(--gmpl-orange);
  box-shadow: 0 14px 30px rgba(252, 92, 1, 0.18);
}

.btn-accent:hover {
  background: var(--gmpl-orange-deep);
}

.btn-dark {
  color: #ffffff;
  background: var(--gmpl-ink);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-accent:hover,
.btn-dark:hover {
  transform: translateY(-2px);
}

.text-link {
  color: var(--gmpl-orange);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(252, 92, 1, 0.32);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover {
  color: var(--gmpl-orange-deep);
  text-decoration-color: currentColor;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--gmpl-paper);
}

.hero {
  min-height: auto;
}

.hero .shell {
  padding-top: 6.25rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(25, 24, 23, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 24, 23, 0.02) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.55;
  pointer-events: none;
}

.page-hero {
  padding: 112px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gmpl-orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

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

.section-title {
  max-width: 760px;
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.45rem, 5.2vw, 4.7rem);
  line-height: 1.04;
}

.brand-panel img,
.hero-logo-mark img {
  width: min(76vw, 21rem);
  height: auto;
}

.muted {
  color: var(--gmpl-muted);
}

.quiet-band {
  background: rgba(255, 255, 255, 0.62);
  border-block: 1px solid var(--gmpl-line);
}

.dark-band {
  color: var(--gmpl-ink);
  background:
    radial-gradient(circle at 16% 20%, rgba(252, 92, 1, 0.08), transparent 22rem),
    #fffdfa;
  border-block: 1px solid var(--gmpl-line);
}

.line-card,
.data-tile,
.product-tile,
.capability-tile {
  border: 1px solid var(--gmpl-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(25, 24, 23, 0.035);
}

.product-tile {
  min-height: 204px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(252, 92, 1, 0.22);
  background: #ffffff;
}

.product-mark {
  height: 3px;
  width: 34px;
  background: var(--gmpl-orange);
  opacity: 0.8;
}

.brushed {
  background:
    radial-gradient(circle at 86% 24%, rgba(252, 92, 1, 0.055), transparent 24rem),
    linear-gradient(180deg, #ffffff, var(--gmpl-steel));
  border-block: 1px solid var(--gmpl-line);
}

.brand-panel {
  border: 1px solid var(--gmpl-line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(250, 248, 245, 0.78)),
    radial-gradient(circle at 70% 0%, rgba(252, 92, 1, 0.08), transparent 18rem);
  box-shadow: 0 24px 70px rgba(25, 24, 23, 0.055);
}

.hero-logo-mark {
  min-height: 23rem;
}

.soft-list {
  display: grid;
  gap: 14px;
}

.soft-list li {
  display: flex;
  gap: 12px;
  color: var(--gmpl-muted);
}

.soft-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.65rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: var(--gmpl-orange);
  opacity: 0.78;
}

.stat-line {
  border-top: 1px solid var(--gmpl-line);
  padding-top: 18px;
}

.site-footer {
  border-top: 1px solid var(--gmpl-line);
  background: rgba(255, 255, 255, 0.72);
  padding: 30px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--gmpl-muted);
  font-size: 0.9rem;
}

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

.icon-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--gmpl-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  color: var(--gmpl-graphite);
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-link:hover {
  color: var(--gmpl-ink);
  border-color: rgba(252, 92, 1, 0.28);
  background: #ffffff;
}

.icon-link svg,
.contact-icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-method {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  justify-content: space-between;
}

.contact-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--gmpl-orange);
  background: rgba(252, 92, 1, 0.08);
}

.contact-method a {
  word-break: break-word;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 6px;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--gmpl-line);
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  color: #ffffff;
  background: var(--gmpl-ink);
}

.mobile-menu {
  position: absolute;
  top: calc(22px + 76px + 10px);
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  margin: 0;
  border: 1px solid rgba(232, 226, 220, 0.86);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 20%, rgba(252, 92, 1, 0.04), transparent 20rem),
    rgba(255, 253, 250, 0.94);
  box-shadow: 0 18px 50px rgba(25, 24, 23, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  overflow: hidden;
  transform-origin: top;
  transform: translate(-50%, -6px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.mobile-menu .shell {
  width: auto;
  padding: 12px;
  gap: 2px;
}

.mobile-menu a:not(.btn-accent) {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--gmpl-graphite);
  font-weight: 650;
}

.mobile-menu a:not(.btn-accent):hover,
.mobile-menu a:not(.btn-accent).is-active {
  color: var(--gmpl-ink);
  background: rgba(252, 92, 1, 0.075);
}

.mobile-menu .btn-accent {
  margin-top: 10px;
  width: 100%;
}

.mobile-menu.is-open {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .topbar [data-menu-toggle] {
    display: none;
  }

  .mobile-brand {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 767px) {
  .topbar > .shell > .btn-accent {
    display: none;
  }

  .topbar {
    padding-top: 8px;
  }

  .topbar > .shell {
    height: 56px;
    padding-inline: 18px;
  }

  .mobile-menu {
    top: calc(8px + 56px + 8px);
  }

  .hero {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 9.2vw, 3.05rem);
    margin-top: 0.75rem;
  }

  .hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero .shell {
    gap: 1.4rem;
    padding-top: 3.15rem;
    padding-bottom: 2.35rem;
  }

  .hero .shell > div:first-child {
    order: 1;
  }

  .hero .shell > div:last-child {
    display: none;
  }

  .brand-panel,
  .hero-logo-mark {
    border-radius: 14px;
  }

  .hero-logo-mark {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand-panel img,
  .hero-logo-mark img {
    width: min(78vw, 18.5rem);
  }

  .hero-logo-mark p {
    display: none;
  }

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

  .line-card,
  .data-tile,
  .product-tile,
  .capability-tile {
    padding: 1.25rem;
  }

  .product-tile {
    min-height: auto;
  }

  .page-hero {
    padding: 62px 0 34px;
  }

  .page-hero p.mt-6 {
    margin-top: 0.8rem;
  }
}
