:root {
  --paper: #f5f5f3;
  --surface: #ffffff;
  --surface-2: #f0f0ef;
  --ink: #09090b;
  --graphite: #33363a;
  --muted: #62656a;
  --line: rgba(9, 9, 11, .10);
  --red: #d71920;
  --red-2: #ff1f2d;
  --red-dark: #9f0f17;
  --silver: #d8dadd;
  --shadow: 0 24px 70px rgba(9, 9, 11, .14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, picture { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 100px 0; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245, 245, 243, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(9, 9, 11, .08);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { max-height: 64px; width: auto; }
.custom-logo-link img { max-height: 64px; width: auto; }
.site-nav { margin-left: auto; }
.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-menu a {
  color: rgba(9, 9, 11, .72);
  font-size: .94rem;
  font-weight: 750;
  transition: color .2s ease;
}
.site-menu a:hover { color: var(--red); }
.header-cta {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(9, 9, 11, .18);
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--red); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span:not(.screen-reader-text) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 80px 0 108px;
  background:
    radial-gradient(circle at 76% 18%, rgba(215, 25, 32, .42), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(255, 255, 255, .13), transparent 30%),
    linear-gradient(145deg, #050505 0%, #111114 46%, #202226 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}
.hero::after {
  content: "CLEAR";
  position: absolute;
  right: -2vw;
  bottom: -7vw;
  font-weight: 950;
  font-size: min(24vw, 310px);
  letter-spacing: -.08em;
  color: rgba(255,255,255,.035);
  line-height: 1;
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  align-items: center;
  gap: 62px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.eyebrow.light { color: #fff; }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.045em; }
h1 { font-size: clamp(3rem, 7vw, 6.2rem); max-width: 840px; }
h2 { font-size: clamp(2.15rem, 4.8vw, 4.15rem); max-width: 900px; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
p { color: var(--muted); margin: 0; }
.hero p { color: rgba(255,255,255,.74); }
.lead { margin-top: 24px; max-width: 680px; font-size: clamp(1.05rem, 1.7vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red-2), var(--red-dark));
  color: #fff;
  box-shadow: 0 18px 42px rgba(215, 25, 32, .36);
}
.btn-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.trust-row span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: .9rem;
}
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: 44px;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 31, 45, .28), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 34px 90px rgba(0,0,0,.40);
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  pointer-events: none;
}
.hero-card img { filter: drop-shadow(0 24px 34px rgba(0,0,0,.55)); transform: rotate(-1.5deg); }
.hero-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,25,32,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 850;
  font-size: .86rem;
}
.hero-specs {
  display: grid;
  gap: 2px;
  position: relative;
  margin-top: -20px;
  padding: 18px;
  background: rgba(5,5,5,.78);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}
.hero-specs strong { color: #fff; font-size: 1.1rem; }
.hero-specs span { color: rgba(255,255,255,.68); font-weight: 700; }

.stats-section { padding: 0 0 76px; margin-top: -46px; position: relative; z-index: 4; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stats-grid article {
  background: rgba(255,255,255,.96);
  padding: 30px;
}
.stats-grid strong { display: block; font-size: 1.56rem; letter-spacing: -.045em; }
.stats-grid span { color: var(--muted); font-weight: 650; }

.section-heading { margin-bottom: 42px; }
.section-heading p { max-width: 760px; margin-top: 18px; font-size: 1.08rem; }
.products-section { background: var(--paper); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card,
.process-step,
.quote-form,
.post-card,
.info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 44px rgba(9, 9, 11, .06);
}
.product-card {
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(215, 25, 32, .24); }
.product-card-featured { grid-column: span 2; }
.product-image {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 26px;
  overflow: hidden;
}
.dark-product {
  background:
    radial-gradient(circle at 70% 20%, rgba(215,25,32,.34), transparent 28%),
    linear-gradient(145deg, #050505, #1c1d20);
}
.poster-product {
  background: linear-gradient(145deg, #21193a, #b01545 48%, #f0bc12);
  max-height: 360px;
}
.poster-product img { width: min(78%, 280px); border-radius: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.24); }
.product-image img { max-height: 330px; width: auto; filter: drop-shadow(0 20px 28px rgba(0,0,0,.25)); }
.product-content { padding: 28px; display: grid; gap: 14px; }
.product-content a,
.product-card > a,
.simple-card a {
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
}
.mini-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(215, 25, 32, .10);
  color: var(--red-dark);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
}
.spec-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.spec-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(9,9,11,.74);
  font-weight: 720;
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--red);
}
.simple-card { padding: 30px; }
.simple-card p { margin: 14px 0; }
.icon-badge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: #111114;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 24px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.ink-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(215,25,32,.28), transparent 28%),
    linear-gradient(145deg, #050505, #151619 58%, #2b0a0d);
  color: #fff;
  overflow: hidden;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}
.split-copy p { margin-top: 20px; font-size: 1.06rem; }
.ink-section .split-copy p { color: rgba(255,255,255,.72); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(9, 9, 11, .82);
  font-weight: 760;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: .8rem;
}
.light-list li { color: rgba(255,255,255,.82); }
.light-list li::before { background: #fff; color: var(--red); }
.product-floating {
  position: relative;
  border-radius: 44px;
  padding: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.product-floating img { filter: drop-shadow(0 30px 34px rgba(0,0,0,.55)); }

.sublioff-section {
  background:
    radial-gradient(circle at 86% 14%, rgba(215,25,32,.16), transparent 28%),
    linear-gradient(180deg, #fff, #f5f5f3);
}
.sublioff-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 62px;
  align-items: center;
}
.sublioff-poster {
  background: linear-gradient(145deg, #201a3d, #b41248 52%, #f0be15);
  border-radius: 38px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.sublioff-poster img { border-radius: 24px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.feature-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(9,9,11,.05);
}
.feature-grid strong { display: block; margin-bottom: 8px; letter-spacing: -.025em; }
.feature-grid span { color: var(--muted); font-weight: 650; font-size: .94rem; }

.industry-section { background: #fff; }
.info-panel {
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 88% 18%, rgba(215,25,32,.12), transparent 28%),
    #fff;
}
.info-panel h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 12px 0 16px; }
.info-panel p { margin-bottom: 18px; }
.info-panel a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--red);
  font-weight: 900;
}

.process-section { background: #fff; padding-top: 50px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step { padding: 28px; }
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #111114;
  color: #fff;
  font-weight: 950;
}
.process-step p { margin-top: 14px; }

.contact-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(215,25,32,.22), transparent 28%),
    radial-gradient(circle at 78% 90%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(145deg, #050505, #151619 60%, #2b0a0d);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 50px;
  align-items: start;
}
.contact-copy p { margin-top: 18px; max-width: 650px; color: rgba(255,255,255,.72); }
.contact-items { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-items a,
.contact-items span {
  display: inline-flex;
  width: fit-content;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 850;
  color: rgba(255,255,255,.82);
}
.quote-form { padding: 30px; display: grid; gap: 16px; color: var(--ink); }
.quote-form label { display: grid; gap: 8px; color: rgba(9,9,11,.75); font-weight: 850; }
.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid rgba(9,9,11,.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fbfbfa;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: rgba(215,25,32,.55);
  box-shadow: 0 0 0 4px rgba(215,25,32,.10);
}
.form-note { font-size: .86rem; }

.site-footer {
  background: #050505;
  color: #fff;
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr .7fr .95fr;
  gap: 36px;
}
.site-footer p,
.site-footer span { color: rgba(255,255,255,.66); }
.footer-brand p { margin-top: 18px; max-width: 420px; }
.footer-logo-card {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 10px 14px;
  border-radius: 18px;
}
.footer-logo-card img { max-height: 60px; width: auto; }
.site-footer h3 { font-size: 1rem; letter-spacing: 0; margin: 0 0 16px; }
.site-footer a { display: block; color: rgba(255,255,255,.76); margin: 10px 0; }
.site-footer a:hover { color: #fff; }
.footer-cta { color: #ff5962 !important; font-weight: 900; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-content h1 { margin-bottom: 24px; }
.entry-content > * + * { margin-top: 1.2rem; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { padding: 22px; }
.post-thumb img { border-radius: 18px; margin-bottom: 18px; }
.post-card h2 { font-size: 1.45rem; letter-spacing: -.03em; }
.post-card p { margin: 12px 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .hero-grid,
  .split-grid,
  .sublioff-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: unset; }
  .hero-visual { max-width: 720px; }
  .stats-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-featured { grid-column: span 2; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 76px; }
  .brand img, .custom-logo-link img { max-height: 52px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 84px;
    display: none;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 16px;
  }
  body.menu-open .site-nav { display: block; }
  .site-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .site-menu a { display: block; padding: 13px 10px; color: rgba(9,9,11,.80); }
  .hero { padding-top: 56px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4.2rem); }
  .hero-actions .btn { width: 100%; }
  .hero-card { border-radius: 30px; }
  .stats-section { margin-top: -22px; padding-bottom: 58px; }
  .stats-grid,
  .product-grid,
  .process-grid,
  .footer-grid,
  .post-grid { grid-template-columns: 1fr; }
  .product-card-featured { grid-column: span 1; }
  .stats-grid article { padding: 24px; }
  .product-card { min-height: auto; }
  .product-image { min-height: 220px; }
  .product-floating,
  .sublioff-poster { border-radius: 28px; }
  .quote-form { padding: 22px; }
  .footer-bottom { display: grid; }
}
