/* Inspectio — inspectio.io
   Self-hosted variable Manrope: no third-party request, nothing for a
   visitor's IP to leak to, nothing to explain in a privacy notice. */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('fonts/manrope-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ground: #1E1B4B;   /* the hero, and only the hero */
  --accent: #4F46E5;   /* shared with FindFormats */
  --link:   #4338CA;
  --link-hover: #312E81;
  --ink:    #15151E;
  --body:   #55556A;
  --muted:  #6B6B80;
  --hairline: #E6E6EF;
  --gutter: clamp(24px, 5vw, 80px);
  color-scheme: light;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); }
a:hover { color: var(--link-hover); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------------------------------------------------------------- hero */

.hero {
  background: var(--ground);
  color: #FFFFFF;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero__bar { padding: clamp(22px, 3.2vw, 42px) var(--gutter); }

.wordmark {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #FFFFFF;
}

.hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(44px, 6vw, 76px);
  padding: 0 var(--gutter) clamp(48px, 6vw, 72px);
}

.mark {
  display: block;
  width: clamp(168px, 27vw, 330px);
  height: auto;
  color: #FFFFFF;
  flex-shrink: 0;
}

.vision {
  margin: 0;
  max-width: 20ch;
  text-align: center;
  font-size: clamp(27px, 4.4vw, 46px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

/* ------------------------------------------------------------ products */

.products {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 136px) var(--gutter) 0;
}

.label {
  margin: 0 0 clamp(28px, 3.4vw, 48px);
  font-size: clamp(11px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.product {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid var(--hairline);
  border-radius: 20px;
}

.product__icon { width: clamp(52px, 5vw, 68px); height: auto; flex-shrink: 0; }

.product__body { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.product__name {
  margin: 0;
  font-size: clamp(20px, 1.9vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product__desc {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 17px);
  line-height: 1.55;
  color: var(--body);
}

.product__link {
  margin-top: 6px;
  align-self: flex-start;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.product__link:hover { text-decoration: underline; }

/* -------------------------------------------------------------- footer */

.footer {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 92px) var(--gutter) clamp(36px, 4.5vw, 60px);
}

.footer__inner {
  padding-top: clamp(24px, 2.6vw, 32px);
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

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

/* ----------------------------------------------------------------------
   Media queries go LAST. Same-specificity rules are decided by source
   order, not by being inside a media query - putting these above the base
   rules is how the FindFormats hero ended up half-centred. */

@media (max-width: 560px) {
  .product { flex-direction: column; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
