:root {
  --cf-black: #050507;
  --cf-graphite: #16171d;
  --cf-cyan: #00e5ff;
  --cf-purple: #9b5cff;
  --cf-magenta: #ff3dce;
  --cf-crimson: #ff244c;
  --cf-white: #f5f7fa;
  --cf-muted: #a6abb8;
  --cf-border: rgba(245, 247, 250, 0.14);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cf-black);
  color: var(--cf-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.cf-site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.92), rgba(5, 5, 7, 0));
}
.cf-brand { font-weight: 800; text-decoration: none; }
.cf-nav { display: flex; gap: clamp(12px, 2vw, 28px); font-size: 14px; color: var(--cf-muted); }
.cf-nav a { text-decoration: none; }
.cf-nav a:hover { color: var(--cf-cyan); }
.cf-site-main { min-height: 100vh; }
.cf-button,
.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--cf-border);
  border-radius: 8px;
  padding: 0 18px;
  background: var(--cf-cyan);
  color: #031014;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.cf-button.secondary { background: transparent; color: var(--cf-white); }
.cf-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
  border-color: color-mix(in srgb, var(--cf-cyan) 72%, var(--cf-white));
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
  transform: translateY(-1px);
}
.cf-page { padding: 120px clamp(18px, 5vw, 72px) 72px; }
.cf-page-card { max-width: 920px; margin: 0 auto; }
.cf-page-card h1 { font-size: clamp(42px, 7vw, 84px); line-height: 1; margin: 0 0 24px; overflow-wrap: anywhere; }
.cf-page-content { color: var(--cf-muted); font-size: 18px; line-height: 1.7; overflow-wrap: anywhere; }
.cf-site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--cf-border);
  color: var(--cf-muted);
}
.cf-site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.cf-site-footer a { color: var(--cf-muted); text-decoration: none; }
@media (max-width: 720px) {
  .cf-site-header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .cf-nav { width: 100%; overflow-x: auto; }
  .cf-site-footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.cf-home-snap {
  height: 100vh;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-snap-type: y mandatory;
}
.cf-snap-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.78fr);
  align-items: center;
  gap: clamp(24px, 6vw, 96px);
  overflow: hidden;
  padding: 96px clamp(18px, 6vw, 88px) 56px;
  scroll-snap-align: start;
}
.cf-grid-bg {
  position: absolute;
  inset: 0;
  transform: translateY(var(--cf-grid-offset, 0));
  will-change: transform;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(0, 229, 255, 0.10), transparent 38%, rgba(155, 92, 255, 0.10)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 58px);
  opacity: 0.8;
}
.cf-hero-copy,
.cf-product-copy,
.cf-hero-product,
.cf-product-render { position: relative; z-index: 1; }
.cf-eyebrow {
  color: var(--cf-cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.cf-hero h1,
.cf-product-feature h2 {
  max-width: 760px;
  margin: 0;
  font-size: 5rem;
  line-height: 0.96;
  overflow-wrap: anywhere;
}
.cf-hero p,
.cf-product-feature p {
  max-width: 620px;
  color: var(--cf-muted);
  font-size: 18px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.cf-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.cf-price { color: var(--cf-white) !important; font-size: 28px !important; font-weight: 900; }
.cf-hero-product,
.cf-product-render {
  width: min(420px, 80vw);
  justify-self: center;
  filter: drop-shadow(0 0 42px color-mix(in srgb, var(--cf-accent, var(--cf-cyan)) 40%, transparent));
  animation: cf-float 6s ease-in-out infinite;
}
.cf-hero-product {
  width: min(620px, 46vw);
}
.cf-product-feature { --cf-accent: var(--cf-cyan); }
.cf-product-feature .cf-eyebrow { color: var(--cf-accent); }
.cf-feature-band,
.cf-payment-band {
  padding: 92px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--cf-border);
}
.cf-feature-band h2,
.cf-payment-band h2 {
  font-size: 4rem;
  line-height: 1;
  margin-top: 0;
  overflow-wrap: anywhere;
}
.cf-payment-band p { max-width: 760px; color: var(--cf-muted); line-height: 1.7; overflow-wrap: anywhere; }
.cf-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.cf-feature-grid article,
.products .product,
.cf-product-detail-panel {
  border: 1px solid var(--cf-border);
  border-radius: 8px;
  background: rgba(22, 23, 29, 0.72);
  padding: 22px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.products .product:hover,
.cf-product-card:hover,
.cf-feature-grid article:hover {
  border-color: color-mix(in srgb, var(--cf-cyan) 48%, var(--cf-border));
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.25);
}
.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
}
.products .product a { text-decoration: none; }
.cf-product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cf-product-card > a:first-child {
  display: grid;
  gap: 12px;
}
.cf-product-card-media {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px solid rgba(245, 247, 250, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 229, 255, 0.16), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}
.cf-product-card-media img {
  width: min(100%, 280px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.woocommerce-loop-product__title { color: var(--cf-white); overflow-wrap: anywhere; }
.price { color: var(--cf-cyan); font-weight: 900; }
.cf-product-card p,
.cf-product-info p,
.cf-product-specs p { color: var(--cf-muted); overflow-wrap: anywhere; }
.cf-product-card-summary {
  min-height: 4.8em;
  margin: 0;
  line-height: 1.6;
}
.cf-product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-product-card-meta p {
  margin: 0;
  border: 1px solid var(--cf-border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}
.cf-product-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}
.cf-product-media img { width: min(460px, 100%); display: block; margin: 0 auto; }
.cf-product-info h1 {
  margin: 0 0 18px;
  font-size: 4.5rem;
  line-height: 1;
  overflow-wrap: anywhere;
}
.cf-product-info form.cart { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 12px; }
.cf-product-specs { margin-top: 18px; }
.cf-product-lede {
  color: var(--cf-white) !important;
  font-size: 1.12rem;
  line-height: 1.7;
}
.cf-product-story {
  max-width: 980px;
  margin: 22px auto 0;
  border: 1px solid var(--cf-border);
  border-radius: 8px;
  background: rgba(22, 23, 29, 0.5);
  padding: clamp(22px, 4vw, 38px);
}
.cf-product-story h2 {
  margin: 0 0 16px;
  color: var(--cf-white);
  font-size: 2.5rem;
  line-height: 1.05;
}
.cf-product-visual,
.cf-product-section {
  max-width: 1080px;
  margin: 22px auto 0;
  border: 1px solid var(--cf-border);
  border-radius: 8px;
  background: rgba(22, 23, 29, 0.48);
  padding: clamp(22px, 4vw, 38px);
}
.cf-product-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.7fr);
  gap: clamp(18px, 5vw, 56px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 50%, rgba(0, 229, 255, 0.20), transparent 34%),
    rgba(22, 23, 29, 0.48);
}
.cf-product-visual h2,
.cf-product-section h2 {
  margin: 0 0 14px;
  color: var(--cf-white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}
.cf-product-visual p,
.cf-product-section p {
  color: var(--cf-muted);
  line-height: 1.7;
}
.cf-product-visual img {
  width: min(360px, 100%);
  justify-self: center;
  filter: drop-shadow(0 0 34px rgba(0, 229, 255, 0.34));
}
.cf-product-feature-modules {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cf-spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}
.cf-spec-table th,
.cf-spec-table td {
  border-bottom: 1px solid var(--cf-border);
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
}
.cf-spec-table th {
  width: min(220px, 38%);
  color: var(--cf-white);
}
.cf-spec-table td {
  color: var(--cf-muted);
}
.cf-product-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.cf-product-notes article {
  border: 1px solid var(--cf-border);
  border-radius: 8px;
  padding: 20px;
}
.cf-product-faq {
  display: grid;
  gap: 10px;
}
.cf-product-faq details {
  border: 1px solid var(--cf-border);
  border-radius: 8px;
  background: rgba(5, 5, 7, 0.28);
  padding: 16px 18px;
}
.cf-product-faq summary {
  color: var(--cf-white);
  cursor: pointer;
  font-weight: 800;
}
.cf-product-faq p {
  margin-bottom: 0;
}
.cf-related-products .related > h2 {
  margin-top: 0;
}
.cf-mobile-sticky-cart {
  display: none;
}
@keyframes cf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.cf-js [data-cf-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.cf-js [data-cf-reveal].is-visible,
.cf-revealed [data-cf-reveal] { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) {
  .cf-snap-section,
  .cf-product-detail-panel,
  .cf-product-visual,
  .cf-product-notes { grid-template-columns: 1fr; text-align: left; }
  .cf-feature-grid,
  .products { grid-template-columns: 1fr; }
  .cf-hero h1,
  .cf-product-feature h2,
  .cf-product-info h1 { font-size: 3.5rem; }
  .cf-feature-band h2,
  .cf-payment-band h2 { font-size: 3rem; }
}
@media (max-width: 560px) {
  .cf-hero h1,
  .cf-product-feature h2,
  .cf-product-info h1 { font-size: 2.75rem; }
  .cf-feature-band h2,
  .cf-payment-band h2 { font-size: 2.25rem; }
  .single-product .cf-site-footer { padding-bottom: 112px; }
  .cf-mobile-sticky-cart {
    position: fixed;
    z-index: 60;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: center;
    border: 1px solid rgba(0, 229, 255, 0.34);
    border-radius: 8px;
    background: rgba(5, 5, 7, 0.94);
    box-shadow: 0 0 28px rgba(0, 229, 255, 0.22);
    padding: 12px;
    backdrop-filter: blur(14px);
  }
  .cf-mobile-sticky-cart span {
    min-width: 0;
    overflow: hidden;
    color: var(--cf-white);
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .cf-mobile-sticky-cart strong {
    color: var(--cf-cyan);
    font-size: 13px;
  }
  .cf-mobile-sticky-cart .cf-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cf-hero-product,
  .cf-product-render { animation: none; }
  .cf-grid-bg { transform: none; }
}
