:root {
  --c: #00aeef;
  --m: #ec008c;
  --y: #ffd100;
  --k: #111111;
  --ink: #161616;
  --muted: #5a5a5a;
  --line: #e6e6e6;
  --bg: #f7f7f5;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  --max: 1120px;
  --header: 80px;
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--card);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 8px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img,
.footer .logo {
  width: min(180px, 58vw);
  height: auto;
  aspect-ratio: 572 / 178;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--m); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-k { background: var(--k); color: #fff; }
.btn-m { background: var(--m); color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--k);
  border: 1px solid var(--line);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 8px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  display: block;
  height: 2px;
  background: var(--k);
  position: relative;
  content: "";
}
.menu-btn span:before { top: -8px; }
.menu-btn span:after { top: 6px; }

.hero {
  padding: 56px 0 36px;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 174, 239, 0.08), transparent 32%),
    radial-gradient(circle at 90% 0%, rgba(236, 0, 140, 0.08), transparent 28%),
    #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cmyk-dots { display: flex; gap: 5px; }
.cmyk-dots i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.cmyk-dots i:nth-child(1) { background: var(--c); }
.cmyk-dots i:nth-child(2) { background: var(--y); }
.cmyk-dots i:nth-child(3) { background: var(--m); }
.cmyk-dots i:nth-child(4) { background: var(--k); }
.hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero p { margin: 0 0 22px; color: var(--muted); font-size: 1.08rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-card {
  background: var(--k);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}
.hero-card strong { font-size: 1.4rem; letter-spacing: -0.02em; }
.hero-card span { color: #cfcfcf; }
.bar {
  height: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-radius: 99px;
  overflow: hidden;
  margin: 18px 0 0;
}
.bar i:nth-child(1) { background: var(--c); }
.bar i:nth-child(2) { background: var(--y); }
.bar i:nth-child(3) { background: var(--m); }
.bar i:nth-child(4) { background: var(--k); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}
.stat {
  background: var(--bg);
  border-radius: 16px;
  padding: 16px;
}
.stat b { display: block; font-size: 1.4rem; }
.stat span { color: var(--muted); font-size: 0.9rem; }

.section { padding: 56px 0; }
.section h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
}
.lead { color: var(--muted); margin: 0 0 24px; max-width: 60ch; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}
.chip.is-on, .chip:hover { background: var(--k); color: #fff; border-color: var(--k); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-media {
  aspect-ratio: 4 / 3;
  background: var(--bg);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body { padding: 16px 16px 18px; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--m);
  margin-bottom: 6px;
}
.card h3 { margin: 0 0 6px; font-size: 1.15rem; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.dark {
  background: var(--k);
  color: #fff;
}
.dark .lead, .dark .muted { color: #c8c8c8; }
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

.product-hero {
  padding: 28px 0 8px;
}
.crumbs {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.crumbs a { text-decoration: none; }
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}
.product-photo {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.product-photo img { width: 100%; height: auto; }
.spec-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0;
}
.spec {
  background: var(--bg);
  border-radius: 16px;
  padding: 14px 16px;
}
.spec h4 { margin: 0 0 8px; color: var(--m); }
.spec ul { margin: 0; padding-left: 18px; }
.flags { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.flag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}
.panel {
  background: var(--bg);
  border-radius: 22px;
  padding: 22px;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.contact-list a { color: var(--m); font-weight: 700; text-decoration: none; }
form { display: grid; gap: 12px; }
label { font-weight: 600; font-size: 0.92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px;
  background: #fff;
}
textarea { min-height: 110px; resize: vertical; }

.footer {
  background: var(--k);
  color: #fff;
  padding: 36px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { color: var(--y); }
.tiny { color: #bdbdbd; font-size: 0.9rem; }
.copy {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #9a9a9a;
  font-size: 0.85rem;
}

.wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.wa svg { width: 28px; height: 28px; fill: currentColor; }

.hidden { display: none !important; }

@media (max-width: 900px) {
  .hero-grid,
  .feature-grid,
  .product-layout,
  .contact-grid,
  .footer-grid,
  .stats { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .spec-box { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    gap: 12px;
  }
  .nav.is-open { display: flex; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
}
