/* Kleanaza — Nimco LLC
   Translated from the Claude Design source "Kleanaza Site.dc.html".
   Design tokens and every visual value below come from that file. */

/* ---------- Webfonts (self-hosted) ----------
   Inter and Montserrat, latin and latin-ext subsets, served from
   assets/fonts/. Both are variable fonts, so one file per family and subset
   covers every weight the site uses. Self-hosted rather than loaded from
   Google so that no visitor data reaches a third party.
   SIL Open Font License 1.1 — see assets/fonts/OFL.txt. */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --black: #000;
  --white: #fff;
  --gold: #ccab71;
  --gold-bright: #dfc08a;
  --ink: #000;
  --muted: #53565a;
  --tint: #f6f5f3;
  --rule: #d8d9db;
  --dark-panel: #0c0c0c;
  --dark-rule: #1e1e1e;
  --dark-rule-soft: #1c1c1c;
  --on-dark: #c4c5c7;
  --on-dark-dim: #8a8b8d;
  --on-dark-nav: #b9babc;

  --sans: "Inter", system-ui, sans-serif;
  --display: "Montserrat", sans-serif;

  --shell: min(1120px, 100% - 2.5rem);
  --shell-narrow: min(760px, 100% - 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

img, video { max-width: 100%; }

.shell { width: var(--shell); margin-inline: auto; }
.shell--narrow { width: var(--shell-narrow); margin-inline: auto; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--black);
  font-family: var(--display);
  font-weight: 600;
  padding: 0.8rem 1.4rem;
}
.skip-link:focus { left: 0; color: var(--black); }

/* ---------- Header ---------- */

.site-header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
}

.wordmark {
  background: none;
  border: 0;
  padding: 0;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}
.wordmark:hover { color: var(--white); }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.9rem 1.6rem;
}

.nav-page-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--on-dark-nav);
  font-family: var(--sans);
  font-size: 0.93rem;
}
.nav-page-link:hover { color: var(--white); }
.nav-page-link[aria-current="page"] { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--dark-rule);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav-toggle-bars { display: block; width: 16px; height: 9px; position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}
.nav-toggle-bars::before { top: 0; }
.nav-toggle-bars::after { bottom: 0; }

/* ---------- Buttons ---------- */

button { font: inherit; cursor: pointer; }

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.9rem;
  border: 0;
  cursor: pointer;
  text-align: center;
}

.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-bright); color: var(--black); }

.btn--outline {
  background: none;
  border: 1px solid var(--black);
  color: var(--black);
}
.btn--outline:hover { background: var(--black); color: var(--white); }

.btn--outline-gold {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
}
.btn--outline-gold:hover { background: var(--gold); color: var(--black); }

.btn--sm { font-size: 0.95rem; padding: 0.8rem 1.5rem; }

.btn-nav {
  background: var(--gold);
  color: var(--black);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
}
.btn-nav:hover { background: var(--gold-bright); color: var(--black); }

.link-inline {
  background: none;
  border: 0;
  padding: 0;
  color: var(--gold);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.link-inline:hover { color: var(--gold-bright); }

.price {
  font-family: var(--display);
  font-weight: 600;
}
.price--gold { color: var(--gold); }

/* ---------- Sections ---------- */

.section { padding: clamp(3.5rem, 7vw, 5.8rem) 0; }
.section--dark { background: var(--black); color: var(--white); padding: clamp(3.4rem, 7vw, 5.2rem) 0; }
.section--tint { background: var(--tint); }
.section--intro { padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.section--head { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.section--tail { padding: 0 0 clamp(3.5rem, 7vw, 5.8rem); }
.section--form { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5rem); }
.section--panel { padding: clamp(3rem, 6vw, 4.5rem) 0; }

.rule-mark {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.8rem;
}
.rule-mark--tight { margin-bottom: 1.6rem; }

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -0.015em;
}

.h-hero {
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.3rem);
  line-height: 1.03;
  margin: 0 0 1.3rem;
}

.h-page {
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  margin: 0;
}
.h-page--sm { font-size: clamp(2.2rem, 4.6vw, 3.2rem); }

.h-section {
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  margin: 0;
}

.h-sub {
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.14;
  margin: 0;
}

.h-panel {
  font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.16;
  margin: 0 0 1.8rem;
}

.h-block {
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--black);
}

.h-card { font-weight: 600; font-size: 1.2rem; line-height: 1.3; margin: 0 0 0.6rem; }
.h-step { font-weight: 600; font-size: 1.08rem; line-height: 1.3; margin: 0 0 0.25rem; }
.h-mini { font-weight: 600; font-size: 1.1rem; margin: 0 0 0.5rem; }

.lede {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
  text-wrap: pretty;
}
.lede--wide { max-width: 36rem; }
.lede--narrow { max-width: 32rem; }
.lede--dark { color: var(--on-dark); }

.body-text { color: var(--muted); font-size: 1rem; text-wrap: pretty; }
.body-text--sm { font-size: 0.96rem; }
.note { color: var(--muted); font-size: 0.96rem; }
.note--xs { font-size: 0.9rem; }

/* ---------- Layout helpers ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.split--tight {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2.2rem, 4vw, 3.5rem);
}
.split--narrow {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2.2rem, 4vw, 3.5rem);
}
.split--top {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: start;
}
.split--cta {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.grid-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.6rem;
  margin-top: 2.8rem;
}
.grid-claim {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.4rem;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem;
}
.grid-support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}
.cta-row--top { margin-top: 2rem; }

/* ---------- Media frames ---------- */

.frame {
  aspect-ratio: 1 / 1;
  background: var(--tint);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.frame--dark { background: var(--dark-panel); border-color: var(--dark-rule); }
.frame--white { background: var(--white); }
.frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Feature cards ---------- */

.tick {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.1rem;
}

.card-text { margin: 0; color: var(--muted); font-size: 0.99rem; }

.step { display: flex; gap: 1.05rem; align-items: flex-start; }
.step-num {
  flex: none;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
}
.step p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.step .h-step + p { font-size: 0.96rem; }

/* ---------- Definition rows ---------- */

.rows { list-style: none; padding: 0; margin: 1.9rem 0 0; }
.rows li {
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
}
.rows li:last-child { border-bottom: 1px solid var(--rule); }
.rows b {
  font-family: var(--display);
  font-weight: 600;
  flex: none;
  min-width: 11rem;
  font-size: 0.97rem;
}
.rows span { color: var(--muted); font-size: 0.96rem; }
.rows--tight b { min-width: 7rem; }
.rows--mid b { min-width: 8rem; }
.rows--flush { margin-top: 0; }

/* ---------- Spec table ---------- */

.spec {
  width: 100%;
  max-width: 44rem;
  border-collapse: collapse;
  margin-top: 2.3rem;
}
.spec th,
.spec td {
  text-align: left;
  padding: 0.82rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.97rem;
}
.spec th {
  font-family: var(--display);
  font-weight: 600;
  width: 44%;
}
.spec td { color: var(--muted); }

/* ---------- CTA band ---------- */

.cta-aside {
  border-left: 1px solid var(--dark-rule);
  padding-left: clamp(1.5rem, 3vw, 3rem);
}
.cta-aside h3 {
  font-weight: 600;
  font-size: 1.08rem;
  margin: 0 0 0.5rem;
}
.cta-aside p {
  margin: 0 0 1.4rem;
  color: var(--on-dark-dim);
  font-size: 0.94rem;
}

/* ---------- Video ---------- */

.video-block { margin: 0 0 3rem; }
.video-frame {
  position: relative;
  background: var(--black);
  border: 1px solid var(--rule);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-caption { margin: 0.9rem 0 0; color: var(--muted); font-size: 0.94rem; }

/* ---------- FAQ accordion ---------- */

.faq { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }

.faq-item > summary {
  list-style: none;
  padding: 1.15rem 0;
  cursor: pointer;
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--muted); }

.faq-sign {
  flex: none;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-sign::after { content: "+"; }
.faq-item[open] .faq-sign::after { content: "\2013"; }

.faq-answer {
  margin: 0;
  padding: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 38rem;
  text-wrap: pretty;
}

/* ---------- Forms ---------- */

.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border: 1px solid var(--rule);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
}

.form input,
.form textarea {
  border: 1px solid var(--rule);
  background: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
}
.form textarea { resize: vertical; }
.form input:focus,
.form textarea:focus { border-color: var(--black); }

.form .hint {
  font-weight: 400;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.85rem;
}

.form button[type="submit"] { align-self: flex-start; }

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 1.2em;
}

/* ---------- Cards ---------- */

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.8rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.card p + a { margin-top: 1.4rem; }
.card .card-lede { margin: 0 0 1.4rem; }

.email-lead {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
}
.email-lead a { color: var(--black); border-bottom: 2px solid var(--gold); }
.email-lead a:hover { color: var(--gold); }

.muted-link { color: var(--muted); text-decoration: underline; }
.muted-link:hover { color: var(--ink); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: var(--on-dark-dim);
  border-top: 1px solid var(--dark-rule-soft);
  padding: 2.4rem 0;
  font-size: 0.88rem;
}
.site-footer .shell {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.footer-nav a {
  background: none;
  border: 0;
  padding: 0;
  color: var(--on-dark-dim);
  font: inherit;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav .footer-mail { color: var(--gold); }
.footer-nav .footer-mail:hover { color: var(--gold-bright); }

/* ---------- Small screens ---------- */

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

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 0.4rem;
  }
  .site-nav.is-open { display: flex; }

  .site-nav .nav-page-link {
    width: 100%;
    text-align: left;
    padding: 0.85rem 0;
    border-top: 1px solid var(--dark-rule);
    font-size: 1rem;
  }
  .site-nav .btn-nav {
    margin-top: 0.9rem;
    width: 100%;
  }

  .site-header .shell { flex-wrap: wrap; }
}

/* Without JS the toggle cannot work, so keep the links visible. */
.no-js .nav-toggle { display: none; }
@media (max-width: 660px) {
  .no-js .site-nav { display: flex; }
}

@media (max-width: 560px) {
  .rows li { flex-direction: column; gap: 0.25rem; }
  .rows b { min-width: 0; }
  .spec th { width: 42%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Page-specific blocks ---------- */

.section--hero { padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5.5rem); }
.section--faq { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.8rem); }

.hero-lede {
  margin: 0 0 2.1rem;
  color: var(--on-dark);
  font-size: 1.13rem;
  max-width: 31rem;
  text-wrap: pretty;
}

.h-section--cta { margin: 0 0 0.9rem; }

.cta-lede {
  margin: 0 0 2rem;
  color: var(--on-dark);
  max-width: 31rem;
}

.lede--gap { margin-top: 1rem; }
.lede--105 { font-size: 1.05rem; }

.h-block--video { margin-bottom: 1.1rem; }
.h-panel--tight { margin-bottom: 1.6rem; }

.step p.step-line { font-size: 0.98rem; }

.mt-lg { margin: 1.8rem 0 0; }
.mt-md { margin: 1.6rem 0 0; }
.mt-sm { margin: 1.4rem 0 0; }
.mt-xl { margin: 2.6rem 0 0; }
.mb-md { margin: 0 0 1rem; }
.mb-lg { margin: 0 0 1.4rem; }
.mb-0 { margin: 0; }
.mb-gap { margin: 1rem 0 2.6rem; }
.mb-form { margin: 1rem 0 2rem; }
.stack-gap { margin-top: 1.2rem; }

.faq-tail { margin: 2.6rem 0 0; color: var(--muted); }

/* ---------- Long-form legal copy ---------- */

.prose { max-width: 38rem; }

.prose h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 2.8rem 0 0.9rem;
}

.prose p,
.prose ul {
  color: var(--muted);
  margin: 0 0 1rem;
  text-wrap: pretty;
}

.prose ul { padding-left: 1.15rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { text-decoration: underline; }

.prose .updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 1.2rem 0 0;
}

.prose dt {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
  margin-top: 1.1rem;
}
.prose dd { color: var(--muted); margin: 0.2rem 0 0; }

/* Unresolved placeholders. Delete every one of these before publishing —
   searching the source for "fixme" will find them. */
.fixme {
  background: var(--gold);
  color: var(--black);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.1rem 0.4rem;
  white-space: nowrap;
}
