/* PMIC single-page site — dark industrial aesthetic */
:root {
  --bg: #0b0e12;
  --fg: #eef2ff;
  --muted: rgba(238, 242, 255, .72);
  --card: rgba(18, 24, 34, .72);
  --stroke: rgba(255, 255, 255, .14);
  --accent: #e3d27a;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --r: 18px;
  --wrap: 1120px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
}

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

a:hover {
  opacity: .92
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(11, 14, 18, .86), rgba(11, 14, 18, .45), rgba(11, 14, 18, 0));
  backdrop-filter: blur(8px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0
}

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

.brand__logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.brand__name {
  display: block;
  font-weight: 650;
  letter-spacing: .2px;
  font-size: 14px
}

.brand__tag {
  display: block;
  font-size: 12px;
  color: var(--muted)
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px
}

.nav a {
  font-size: 13px;
  color: rgba(238, 242, 255, .86)
}

.nav__cta {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .06);
}

.burger {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .05);
  color: var(--fg);
}

.burger span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: rgba(238, 242, 255, .85);
}

.mobile {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(11, 14, 18, .82);
  padding: 10px 22px 14px;
}

.mobile a {
  display: block;
  padding: 12px 0;
  color: rgba(238, 242, 255, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile a:last-child {
  border-bottom: none
}

.bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 15%, rgba(0, 0, 0, .15), rgba(0, 0, 0, .65)),
    linear-gradient(to bottom, rgba(11, 14, 18, .15), rgba(11, 14, 18, .86));
}

.bg>* {
  position: relative;
  z-index: 1
}

.bg--hero {
  background-image: url("images/background1.png")
}

.bg--processing {
  background-image: url("images/background1.png")
}

.bg--compactor {
  background-image: url("images/background1.png")
}

.bg--mim {
  background-image: url("images/background1.png")
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 96px 0 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 26px;
  align-items: stretch;
}

.kicker {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(238, 242, 255, .88);
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.06;
  letter-spacing: -.8px;
}

.lede {
  max-width: 64ch;
  color: rgba(238, 242, 255, .84);
  font-size: 16px
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin: 18px 0 18px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  cursor: pointer;
  font-weight: 620;
  font-size: 13px;
  transition: transform .08s ease, background .12s ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px)
}

.btn--primary {
  background: linear-gradient(135deg, rgba(227, 210, 122, .92), rgba(250, 248, 232, .22));
  color: #0b0e12;
  border-color: rgba(227, 210, 122, .45);
}

.btn--ghost {
  background: rgba(255, 255, 255, .06)
}

.stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.stat {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  min-width: 150px;
}

.stat__num {
  font-weight: 760;
  font-size: 16px
}

.stat__label {
  color: var(--muted);
  font-size: 12px
}

.card {
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(18, 24, 34, .72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
  padding: 18px;
}

.glass {
  background: rgba(18, 24, 34, .60);
  backdrop-filter: blur(12px)
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -.4px
}

h3 {
  margin: 0 0 10px;
  font-size: 16px
}

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

.tiny {
  font-size: 12px
}

.check {
  list-style: none;
  padding: 0;
  margin: 10px 0 0
}

.check li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.check li:last-child {
  border-bottom: none
}

.check li::before {
  content: "✓";
  color: rgba(227, 210, 122, .95);
  font-weight: 800;
}

.card__note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: rgba(238, 242, 255, .88);
}

.section {
  padding: 82px 0
}

.section__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.section__grid--flip {
  grid-template-columns: .9fr 1.1fr
}

.section__copy p {
  max-width: 72ch;
  color: rgba(238, 242, 255, .84)
}

.pillrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px
}

.pill {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(238, 242, 255, .88);
}

.steps {
  margin: 12px 0 0;
  padding: 0;
  list-style: none
}

.steps li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.steps li:last-child {
  border-bottom: none
}

.steps span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(227, 210, 122, .20);
  border: 1px solid rgba(227, 210, 122, .35);
  color: rgba(250, 248, 232, .92);
  font-weight: 800;
}

.plain {
  background: radial-gradient(900px 360px at 30% 10%, rgba(227, 210, 122, .10), rgba(11, 14, 18, 0) 60%)
}

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

.rm {
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 16px;
}

.rm ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(238, 242, 255, .82)
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.form {
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 16px;
}

label {
  display: block;
  margin-bottom: 12px
}

label span {
  display: block;
  font-size: 12px;
  color: rgba(238, 242, 255, .78);
  margin: 0 0 6px
}

input,
textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .25);
  color: var(--fg);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(227, 210, 122, .55);
  box-shadow: 0 0 0 3px rgba(227, 210, 122, .12)
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(11, 14, 18, .92);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0
}

.footer__brand {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  font-weight: 800;
}

.footer__right {
  display: flex;
  gap: 14px
}

.scrollhint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(238, 242, 255, .70);
  opacity: .9;
}

@media (max-width: 980px) {
  .nav {
    display: none
  }

  .burger {
    display: inline-block
  }

  .hero__grid,
  .section__grid,
  .contact {
    grid-template-columns: 1fr
  }

  .section__grid--flip {
    grid-template-columns: 1fr
  }

  .roadmap {
    grid-template-columns: 1fr
  }

  .contact__cards {
    grid-template-columns: 1fr
  }

  .bg {
    background-attachment: scroll
  }
}