/** Shopify CDN: Minification failed

Line 108:38 Unexpected "*"

**/
/* ==========================================================================
   Core Nexus Product Page — Custom Styles
   Shopify Dawn Theme Override
   
   All custom CSS for the Core Nexus product page. Uses cn- prefix for all 
   classes to avoid conflicts with Dawn theme. Loaded via:
   {{ 'core-nexus.css' | asset_url | stylesheet_tag }}
   
   MOBILE-FIRST APPROACH — v3 complete rewrite for mobile
   ========================================================================== */

/* ========== Google Fonts ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ========== CSS Custom Properties ========== */
:root {
  --cn-navy: #1a1a2e;
  --cn-navy-deep: #0f0f1e;
  --cn-navy-light: #2a2a4a;
  --cn-blue: #4a7cff;
  --cn-blue-light: #6b9aff;
  --cn-blue-subtle: #e8f0ff;
  --cn-green: #2ecc71;
  --cn-green-bg: #e8faf0;
  --cn-red: #e74c3c;
  --cn-red-bg: #fde8e6;
  --cn-gold: #f4c542;
  --cn-white: #ffffff;
  --cn-off-white: #f8f9fc;
  --cn-gray-50: #fafafa;
  --cn-gray-100: #f3f4f6;
  --cn-gray-200: #e5e7eb;
  --cn-gray-300: #d1d5db;
  --cn-gray-400: #9ca3af;
  --cn-gray-500: #6b7280;
  --cn-gray-600: #4b5563;
  --cn-gray-700: #374151;
  --cn-gray-800: #1f2937;
  --cn-text: #1a1a2e;
  --cn-text-secondary: #4b5563;
  --cn-radius: 12px;
  --cn-radius-sm: 8px;
  --cn-radius-lg: 20px;
  --cn-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --cn-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --cn-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --cn-max-width: 1200px;
  --cn-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== GLOBAL OVERFLOW CONTAINMENT ========== */
html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  -webkit-text-size-adjust: 100%;
}

/* ========== UNIVERSAL MOBILE SAFETY — prevent ANY element from causing horizontal scroll ========== */
*, *::before, *::after {
  box-sizing: border-box;
}

img, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
}

/* ========== DAWN THEME FULL-WIDTH OVERRIDES ========== */
.shopify-section {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

#MainContent,
.content-for-layout,
main#MainContent,
main {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
}

.page-width {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.shopify-section > .section-template--*,
.shopify-section > div {
  max-width: 100% !important;
  width: 100% !important;
}

/* Our section root elements must be full-width */
.cn-announcement-bar,
.cn-product-hero,
.cn-brag-bar,
.cn-section,
.cn-section--dark,
.cn-section--gray {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

/* ========== Dawn Theme Overrides (Fonts & Box Model) ========== */
.shopify-section [class^="cn-"],
.shopify-section [class*=" cn-"] {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  line-height: 1.7;
}

/* Remove Dawn's default section padding */
.cn-announcement-bar-section,
.cn-product-hero-section,
.cn-brag-bar-section,
.cn-problem-section,
.cn-solution-steps-section,
.cn-video-section,
.cn-comparison-grid-section,
.cn-testimonials-section,
.cn-use-cases-section,
.cn-risk-reversal-section,
.cn-final-cta-section,
.cn-faq-accordion-section {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* Reset Dawn's heading styles within our sections */
.shopify-section h1[class*="cn-"],
.shopify-section h2[class*="cn-"],
.shopify-section h3[class*="cn-"],
.shopify-section p[class*="cn-"] {
  margin: 0;
  padding: 0;
  letter-spacing: normal;
  text-transform: none;
}

/* ========== Base Utility ========== */
.cn-container {
  max-width: var(--cn-max-width);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (min-width: 769px) {
  .cn-container {
    padding: 0 24px;
  }
}

/* Fade-in: progressive enhancement */
.cn-fade-in {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.cn-js .cn-fade-in {
  opacity: 0;
  transform: translateY(24px);
}
html.cn-js .cn-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== ANNOUNCEMENT BAR ========== */
.cn-announcement-bar {
  background: var(--cn-navy);
  color: var(--cn-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 100;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-announcement-bar__highlight {
  color: var(--cn-gold);
}

/* ========== PRODUCT HERO ========== */
.cn-product-hero {
  padding: 24px 0 40px;
  background: var(--cn-white);
}
.cn-product-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

/* Gallery */
.cn-gallery {
  position: static;
  max-width: 100%;
}

/* ── Product image carousel (all screen sizes) ── */
.cn-gallery__carousel-wrap {
  position: relative;
  width: 100%;
  overflow: clip;
  border-radius: var(--cn-radius-lg);
  background: var(--cn-gray-100, #f3f4f6);
  aspect-ratio: 1;
  min-height: 300px;
}
[data-cn-gallery-carousel] {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
}
[data-cn-gallery-carousel]::-webkit-scrollbar { display: none; }
.cn-gallery__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  height: 100%;
  overflow: hidden;
}
.cn-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Arrows — simple chevrons, no background circle */
.cn-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.cn-gallery__arrow:hover { opacity: 0.85; }
.cn-gallery__arrow svg {
  width: 28px;
  height: 28px;
  stroke: var(--cn-navy, #1a1a2e);
  stroke-width: 2.5;
}
.cn-gallery__arrow--prev { left: 8px; }
.cn-gallery__arrow--next { right: 8px; }
/* Dots — blue pill for active, gray circles for inactive */
.cn-gallery__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 0 6px;
}
.cn-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cn-gray-300, #d1d5db);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.cn-gallery__dot.active {
  width: 24px;
  height: 8px;
  border-radius: 100px;
  background: var(--cn-blue, #4a7cff);
}
/* Desktop main+thumbs hidden — carousel used on all sizes */
/* ── end carousel ── */

.cn-gallery__main {
  display: none !important;
}
.cn-gallery__main img { display: none; }
.cn-gallery__thumbs { display: none !important; }
.cn-gallery__thumb {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--cn-gray-100);
  border-radius: var(--cn-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--cn-transition);
  padding: 0;
}
.cn-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cn-gallery__thumb.active,
.cn-gallery__thumb:hover {
  border-color: var(--cn-navy);
}

/* Product Info */
.cn-product-info {
  padding-top: 0;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-product-info__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cn-blue-subtle);
  color: var(--cn-blue);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.cn-product-info__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--cn-navy);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.cn-product-info__subtitle {
  font-size: 15px;
  color: var(--cn-text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Stars */
.cn-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cn-stars__icons {
  display: flex;
  gap: 2px;
}
.cn-stars__icons svg {
  width: 16px;
  height: 16px;
  fill: var(--cn-gold);
}
.cn-stars__text {
  font-size: 13px;
  color: var(--cn-text-secondary);
}
.cn-stars__text strong {
  color: var(--cn-text);
}

/* Price */
.cn-price-block {
  margin-bottom: 20px;
}
.cn-price-block__main {
  font-size: 28px;
  font-weight: 800;
  color: var(--cn-navy);
  letter-spacing: -1px;
}
.cn-price-block__compare {
  font-size: 18px;
  font-weight: 400;
  color: var(--cn-gray-400);
  text-decoration: line-through;
  margin-left: 8px;
}
.cn-price-block__installment {
  font-size: 13px;
  color: var(--cn-text-secondary);
  margin-top: 4px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-price-block__installment strong {
  color: var(--cn-blue);
}

/* Variant Selector */
.cn-variant-selector {
  margin-bottom: 24px;
}
.cn-variant-selector__label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cn-text);
}
.cn-variant-selector__options {
  display: flex;
  gap: 10px;
  padding: 6px;
}
.cn-color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--cn-transition);
  position: relative;
  padding: 0;
  background: none;
}
.cn-color-option::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: border-color var(--cn-transition);
}
.cn-color-option.active::after {
  border-color: var(--swatch-color, var(--cn-navy));
}
.cn-color-option--black { background: #1a1a1a; }
.cn-color-option--white { background: #f0f0f0; border-color: var(--cn-gray-200); }

/* CTA Buttons — MOBILE-FIRST: all text visible, no truncation */
.cn-btn-add-to-cart {
  width: 100%;
  background: var(--cn-navy);
  color: var(--cn-white) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: var(--cn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--cn-transition);
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.4;
  white-space: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  text-overflow: clip !important;
  overflow: visible !important;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-text-fill-color: var(--cn-white) !important;
}
.cn-btn-add-to-cart:hover {
  background: var(--cn-navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26, 26, 46, 0.3);
}
.cn-btn-add-to-cart svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  stroke: var(--cn-white);
}
.cn-btn-add-to-cart--added {
  background: var(--cn-green) !important;
}

.cn-btn-secondary {
  width: 100%;
  background: var(--cn-blue-subtle);
  color: var(--cn-blue) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: var(--cn-radius);
  text-align: center;
  transition: all var(--cn-transition);
  margin-bottom: 20px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: block;
  line-height: 1.4;
  white-space: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  text-overflow: clip !important;
  overflow: visible !important;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-text-fill-color: var(--cn-blue) !important;
}
.cn-btn-secondary:hover {
  background: #dbe6ff;
}

/* Bundle CTA — matches ATC button format */
.cn-btn-bundle {
  width: 100%;
  background: var(--cn-navy);
  color: var(--cn-white) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: var(--cn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--cn-transition);
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-appearance: none;
  appearance: none;
  -webkit-text-fill-color: var(--cn-white) !important;
  line-height: 1.4;
}
.cn-btn-bundle:hover {
  background: var(--cn-navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26, 26, 46, 0.3);
}

/* ========== TRUST BADGES ========== */
.cn-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 4px;
}
.cn-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cn-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-trust-badge__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--cn-gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cn-trust-badge__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--cn-gray-600);
  fill: none;
  stroke-width: 1.5;
}

/* ========== DESKTOP: Product Hero ========== */
@media (min-width: 769px) {
  .cn-product-hero { padding: 40px 0 60px; }
  .cn-product-hero__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .cn-gallery { position: sticky; top: 100px; }
  .cn-product-info__title { font-size: 32px; }
  .cn-product-info__subtitle { font-size: 16px; margin-bottom: 20px; }
  .cn-product-info__badge { font-size: 12px; padding: 6px 14px; margin-bottom: 16px; }
  .cn-product-info { padding-top: 8px; }
  .cn-price-block__main { font-size: 36px; }
  .cn-price-block__compare { font-size: 20px; }
  .cn-price-block { margin-bottom: 24px; }
  .cn-price-block__installment { font-size: 14px; }
  .cn-btn-add-to-cart { font-size: 16px; padding: 18px 32px; }
  .cn-btn-secondary { font-size: 14px; padding: 14px 32px; margin-bottom: 24px; }
  /* thumbnails hidden — carousel used */
  .cn-trust-badges { gap: 12px; }
  .cn-trust-badge { font-size: 13px; gap: 10px; }
  .cn-trust-badge__icon { width: 36px; height: 36px; min-width: 36px; border-radius: 10px; }
  .cn-trust-badge__icon svg { width: 18px; height: 18px; }
  .cn-stars__text { font-size: 14px; }
  .cn-stars { margin-bottom: 20px; }
}

/* ========== BRAG BAR ========== */
.cn-brag-bar {
  background: var(--cn-off-white);
  border-top: 1px solid var(--cn-gray-200);
  border-bottom: 1px solid var(--cn-gray-200);
  padding: 24px 0;
  text-align: center;
}
.cn-brag-bar__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cn-gray-400);
  margin-bottom: 16px;
}
.cn-brag-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cn-brag-item {
  text-align: center;
}
.cn-brag-item__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--cn-navy);
}
.cn-brag-item__cred {
  font-size: 11px;
  color: var(--cn-gray-500);
  margin-top: 2px;
}

@media (min-width: 769px) {
  .cn-brag-bar { padding: 32px 0; }
  .cn-brag-bar__logos { gap: 40px; }
  .cn-brag-bar__title { font-size: 12px; margin-bottom: 20px; }
  .cn-brag-item__name { font-size: 15px; }
  .cn-brag-item__cred { font-size: 12px; }
}

/* ========== SECTION DEFAULTS ========== */
.cn-section {
  padding: 48px 0;
  overflow-x: hidden;
}
.cn-section--dark {
  background: var(--cn-navy-deep);
  color: var(--cn-white);
}
.cn-section--gray {
  background: var(--cn-off-white);
}
.cn-section__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cn-blue);
  margin-bottom: 10px;
}
.cn-section--dark .cn-section__label {
  color: var(--cn-blue-light);
}
.cn-section__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--cn-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.cn-section--dark .cn-section__title {
  color: var(--cn-white);
}
.cn-section__subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cn-text-secondary);
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-section--dark .cn-section__subtitle {
  color: rgba(255,255,255,0.65);
}
.cn-section__header {
  text-align: center;
  margin-bottom: 32px;
}
.cn-section__header .cn-section__subtitle {
  margin: 0 auto !important;
}

@media (min-width: 769px) {
  .cn-section { padding: 80px 0; }
  .cn-section__title { font-size: 38px; line-height: 1.15; }
  .cn-section__subtitle { font-size: 17px; }
  .cn-section__header { margin-bottom: 56px; }
  .cn-section__label { font-size: 12px; margin-bottom: 12px; }
}

/* ========== PROBLEM SECTION ========== */
.cn-problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.cn-problem__content .cn-section__subtitle {
  max-width: none;
}
.cn-problem__points {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cn-problem__point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cn-problem__point-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--cn-red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cn-problem__point-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--cn-red);
  fill: none;
  stroke-width: 2.5;
}
.cn-problem__point p {
  font-size: 14px;
  color: var(--cn-text-secondary);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-problem__point strong {
  color: var(--cn-text);
}
.cn-problem__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0f2f5 0%, #e2e5ea 100%);
  border-radius: var(--cn-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  order: -1;
  max-width: 100%;
}
.cn-problem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--cn-radius-lg);
  max-width: 100%;
}
.cn-problem__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cn-problem__image-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--cn-gray-400);
  fill: none;
  opacity: 0.5;
}
.cn-problem__image-placeholder span {
  font-size: 13px;
  font-weight: 600;
  color: var(--cn-gray-400);
  text-align: center;
}

@media (min-width: 769px) {
  .cn-problem__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .cn-problem__image { order: 0; }
  .cn-problem__points { margin-top: 28px; gap: 16px; }
  .cn-problem__point-icon { width: 28px; height: 28px; min-width: 28px; }
  .cn-problem__point-icon svg { width: 14px; height: 14px; }
  .cn-problem__point p { font-size: 15px; }
}

/* ========== SOLUTION STEPS ========== */
.cn-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.cn-step-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--cn-radius-lg);
  transition: all var(--cn-transition);
}
.cn-step-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.cn-step-card__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cn-blue);
  color: var(--cn-white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cn-step-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cn-white);
}
.cn-step-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (min-width: 769px) {
  .cn-steps__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .cn-step-card { padding: 40px 28px; }
  .cn-step-card__number { width: 56px; height: 56px; font-size: 22px; }
  .cn-step-card__title { font-size: 20px; margin-bottom: 10px; }
}

/* ========== VIDEO SECTION ========== */
.cn-video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cn-navy) 0%, var(--cn-navy-light) 100%);
  border-radius: var(--cn-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--cn-transition);
}
.cn-video-wrapper:hover {
  transform: scale(1.01);
  box-shadow: var(--cn-shadow-lg);
}
.cn-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--cn-radius-lg);
}
.cn-video__play-btn {
  width: 56px;
  height: 56px;
  background: var(--cn-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform var(--cn-transition);
  border: none;
  cursor: pointer;
  z-index: 2;
}
.cn-video-wrapper:hover .cn-video__play-btn {
  transform: scale(1.1);
}
.cn-video__play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--cn-navy);
  margin-left: 3px;
}
.cn-video__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}
.cn-video__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cn-video-wrapper.playing .cn-video__play-btn,
.cn-video-wrapper.playing .cn-video__label,
.cn-video-wrapper.playing .cn-video__poster {
  display: none;
}

@media (min-width: 769px) {
  .cn-video__play-btn { width: 72px; height: 72px; }
  .cn-video__play-btn svg { width: 28px; height: 28px; }
  .cn-video__label { font-size: 14px; }
}

/* ========== COMPARISON GRID ========== */
.cn-comparison-table-container {
  background: var(--cn-white);
  border: 1px solid var(--cn-gray-200);
  border-radius: var(--cn-radius-lg);
  overflow: hidden;
  max-width: 100%;
}
.cn-comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.cn-comparison-table {
  width: 100%;
  min-width: 500px;
  border-collapse: separate;
  border-spacing: 0;
}
.cn-comparison-table th,
.cn-comparison-table td {
  padding: 12px 14px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid var(--cn-gray-200);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-comparison-table thead th {
  background: var(--cn-gray-50);
  font-weight: 700;
  font-size: 11px;
  color: var(--cn-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cn-comparison-table thead th:first-child {
  text-align: left;
  border-radius: var(--cn-radius-sm) 0 0 0;
}
.cn-comparison-table thead th:last-child {
  border-radius: 0 var(--cn-radius-sm) 0 0;
}
.cn-comparison-table thead th.cn-highlight {
  background: var(--cn-navy);
  color: var(--cn-white);
  position: relative;
  padding-top: 44px;
}
.cn-comparison-table thead th:not(.cn-highlight) {
  padding-top: 44px;
}
.cn-comparison-table thead th.cn-highlight::before {
  content: '★ BEST';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cn-blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.cn-comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--cn-text);
}
.cn-comparison-table td.cn-highlight {
  background: #f5f7ff;
  font-weight: 600;
}
.cn-comparison-table .cn-check {
  color: var(--cn-green);
  font-size: 16px;
  font-weight: 700;
}
.cn-comparison-table .cn-cross {
  color: var(--cn-red);
  font-size: 16px;
  font-weight: 700;
  opacity: 0.6;
}
.cn-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

@media (min-width: 769px) {
  .cn-comparison-table { min-width: 640px; }
  .cn-comparison-table th,
  .cn-comparison-table td { padding: 16px 20px; font-size: 14px; }
  .cn-comparison-table thead th { font-size: 13px; }
  .cn-comparison-table .cn-check,
  .cn-comparison-table .cn-cross { font-size: 18px; }
}

/* ========== TESTIMONIALS ========== */
.cn-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.cn-testimonial-card {
  background: var(--cn-white);
  border: 1px solid var(--cn-gray-200);
  border-radius: var(--cn-radius-lg);
  padding: 24px;
  transition: all var(--cn-transition);
}
.cn-testimonial-card:hover {
  box-shadow: var(--cn-shadow);
  border-color: transparent;
}
.cn-testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.cn-testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--cn-gold);
}
.cn-testimonial-card__quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cn-text-secondary);
  margin-bottom: 16px;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cn-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--cn-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--cn-gray-500);
  flex-shrink: 0;
  overflow: hidden;
}
.cn-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cn-testimonial-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--cn-text);
}
.cn-testimonial-card__role {
  font-size: 11px;
  color: var(--cn-gray-500);
  margin-top: 1px;
}

@media (min-width: 769px) {
  .cn-testimonials__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cn-testimonial-card { padding: 32px; }
  .cn-testimonial-card__quote { font-size: 15px; margin-bottom: 20px; }
  .cn-testimonial-card__avatar { width: 44px; height: 44px; min-width: 44px; font-size: 16px; }
  .cn-testimonial-card__name { font-size: 14px; }
  .cn-testimonial-card__role { font-size: 12px; }
}

/* ========== USE CASES ========== */
.cn-use-cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cn-use-case-card {
  background: var(--cn-white);
  border: 1px solid var(--cn-gray-200);
  border-radius: var(--cn-radius-lg);
  padding: 20px 14px;
  text-align: center;
  transition: all var(--cn-transition);
}
.cn-use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cn-shadow);
  border-color: transparent;
}
.cn-use-case-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cn-blue-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
}
.cn-use-case-card__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--cn-text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-use-case-card__text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--cn-text-secondary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 400px) {
  .cn-use-cases__grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
  .cn-use-cases__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .cn-use-case-card { padding: 32px 24px; }
  .cn-use-case-card__icon { width: 56px; height: 56px; border-radius: 16px; font-size: 24px; }
  .cn-use-case-card__title { font-size: 16px; margin-bottom: 8px; }
  .cn-use-case-card__text { font-size: 13px; }
}

/* ========== RISK REVERSAL ========== */
.cn-guarantee__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.cn-guarantee-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--cn-radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.cn-guarantee-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(74, 124, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.cn-guarantee-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cn-white);
}
.cn-guarantee-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (min-width: 769px) {
  .cn-guarantee__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cn-guarantee-card { padding: 40px; }
  .cn-guarantee-card__icon { width: 64px; height: 64px; font-size: 28px; margin-bottom: 20px; }
  .cn-guarantee-card__title { font-size: 20px; margin-bottom: 10px; }
  .cn-guarantee-card__text { font-size: 14px; }
}

/* ========== FINAL CTA ========== */
.cn-final-cta__box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.cn-final-cta__price {
  font-size: 40px;
  font-weight: 800;
  color: var(--cn-navy);
  letter-spacing: -2px;
  margin: 20px 0 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.cn-final-cta__price-sub {
  font-size: 14px;
  color: var(--cn-text-secondary);
  margin-bottom: 24px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cn-navy);
  color: var(--cn-white) !important;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: var(--cn-radius);
  transition: all var(--cn-transition);
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-text-fill-color: var(--cn-white) !important;
}
.cn-final-cta__btn:hover {
  background: var(--cn-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,26,46,0.3);
}
.cn-final-cta__btn svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
}
.cn-final-cta__extras {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cn-final-cta__extra {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--cn-text-secondary);
}
.cn-final-cta__extra svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  stroke: var(--cn-green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .cn-final-cta__price { font-size: 52px; margin: 24px 0 8px; }
  .cn-final-cta__price-sub { font-size: 15px; margin-bottom: 32px; }
  .cn-final-cta__btn { font-size: 17px; padding: 20px 48px; }
  .cn-final-cta__btn svg { width: 20px; height: 20px; min-width: 20px; }
  .cn-final-cta__extras { gap: 24px; margin-top: 20px; }
  .cn-final-cta__extra { font-size: 13px; gap: 6px; }
  .cn-final-cta__extra svg { width: 16px; height: 16px; min-width: 16px; }
}

/* ========== FAQ ========== */
.cn-faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.cn-faq__item {
  border-bottom: 1px solid var(--cn-gray-200);
}
.cn-faq__question {
  width: 100%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--cn-text);
  text-align: left;
  transition: color var(--cn-transition);
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cn-faq__question:hover {
  color: var(--cn-blue);
}
.cn-faq__icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--cn-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--cn-transition);
}
.cn-faq__item.open .cn-faq__icon {
  background: var(--cn-navy);
  transform: rotate(45deg);
}
.cn-faq__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--cn-gray-600);
  stroke-width: 2;
  fill: none;
}
.cn-faq__item.open .cn-faq__icon svg {
  stroke: var(--cn-white);
}
.cn-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.cn-faq__answer-inner {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--cn-text-secondary);
}
.cn-faq__answer-inner p {
  margin: 0;
}

@media (min-width: 769px) {
  .cn-faq__question { padding: 22px 0; font-size: 16px; }
  .cn-faq__icon { width: 28px; height: 28px; min-width: 28px; }
  .cn-faq__icon svg { width: 14px; height: 14px; }
  .cn-faq__answer-inner { padding: 0 0 22px; font-size: 15px; }
}

/* ========== STICKY BUY BAR — CRITICAL: must show on mobile ========== */
.cn-sticky-buy-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: var(--cn-white);
  border-top: 1px solid var(--cn-gray-200);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 2147483647 !important; /* Maximum z-index to beat Shopify admin bar */
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  box-sizing: border-box !important;
  visibility: hidden;
  opacity: 0;
}
.cn-sticky-buy-bar.visible {
  transform: translateY(0) !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.cn-sticky-buy-bar__info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.cn-sticky-buy-bar__thumb {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--cn-gray-100);
  border-radius: var(--cn-radius-sm);
  flex-shrink: 0;
  overflow: hidden;
}
.cn-sticky-buy-bar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cn-sticky-buy-bar__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--cn-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cn-sticky-buy-bar__price {
  font-size: 13px;
  color: var(--cn-text-secondary);
}
.cn-sticky-buy-bar__btn {
  background: var(--cn-navy);
  color: var(--cn-white) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--cn-radius-sm);
  transition: all var(--cn-transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  flex-shrink: 0;
  min-height: 44px;
  -webkit-text-fill-color: var(--cn-white) !important;
}
.cn-sticky-buy-bar__btn:hover {
  background: var(--cn-navy-light);
}

.cn-free-gift-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--cn-green-bg);
  color: var(--cn-green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  margin-left: 4px;
}

@media (min-width: 769px) {
  .cn-sticky-buy-bar { padding: 12px 24px; padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
  .cn-sticky-buy-bar__thumb { width: 44px; height: 44px; min-width: 44px; }
  .cn-sticky-buy-bar__name { font-size: 14px; }
  .cn-sticky-buy-bar__price { font-size: 14px; }
  .cn-sticky-buy-bar__btn { font-size: 14px; padding: 12px 28px; }
  .cn-free-gift-tag { font-size: 11px; padding: 3px 8px; margin-left: 8px; }
}

/* ========== STAR RATING SNIPPET ========== */
.cn-star-rating {
  display: inline-flex;
  gap: 2px;
}
.cn-star-rating svg {
  width: 14px;
  height: 14px;
}
.cn-star-rating--sm svg {
  width: 12px;
  height: 12px;
}
.cn-star-rating--lg svg {
  width: 20px;
  height: 20px;
}

/* ========== ADDITIONAL DAWN OVERRIDES ========== */
.cn-gallery img,
.cn-problem__image img,
.cn-sticky-buy-bar__thumb img,
.cn-testimonial-card__avatar img {
  max-width: 100%;
  display: block;
}

/* Override Dawn's button styles */
.cn-btn-add-to-cart,
.cn-btn-secondary,
.cn-final-cta__btn,
.cn-sticky-buy-bar__btn,
.cn-video__play-btn,
.cn-faq__question {
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Ensure our product form doesn't inherit Dawn styling */
#cn-product-form {
  margin: 0;
  padding: 0;
}

/* Override Dawn's link styles within our sections */
.cn-announcement-bar a,
.cn-product-hero a,
.cn-section a {
  color: inherit;
  text-decoration: none;
}

/* Fix Dawn's h1/h2/h3 styles */
.cn-product-info__title,
.cn-section__title,
.cn-step-card__title,
.cn-use-case-card__title,
.cn-guarantee-card__title,
.cn-testimonial-card__name {
  text-transform: none;
  letter-spacing: normal;
}

/* ========== EXTRA SMALL PHONE BREAKPOINT (<=375px) ========== */
@media (max-width: 375px) {
  .cn-product-info__title { font-size: 22px; }
  .cn-section__title { font-size: 22px; }
  .cn-price-block__main { font-size: 26px; }
  .cn-final-cta__price { font-size: 36px; }
  .cn-btn-add-to-cart { font-size: 14px; padding: 14px 16px; }
  .cn-btn-secondary { font-size: 12px; padding: 12px 14px; }
  .cn-final-cta__btn { font-size: 15px; padding: 16px 24px; }
  .cn-announcement-bar { font-size: 12px; padding: 8px 12px; }
  .cn-sticky-buy-bar__btn { font-size: 12px; padding: 8px 14px; }
}

/* ==========================================================================
   Homepage Shared Utilities
   Extracted shared classes used across multiple homepage sections.
   These classes are defined inline in individual section <style> blocks
   but duplicated here for resilience against section reordering/removal.
   ========================================================================== */

/* ── Shared Button System (hp-btn) ── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
.hp-btn--primary {
  background: #4a7cff;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(74, 124, 255, 0.3);
  width: 100%;
}
.hp-btn--primary:hover {
  background: #6b9aff;
  box-shadow: 0 6px 24px rgba(74, 124, 255, 0.4);
  transform: translateY(-2px);
}
.hp-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  width: 100%;
}
.hp-btn--secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.hp-btn--lg {
  padding: 18px 40px;
  font-size: 16px;
}
.hp-btn--sm {
  padding: 12px 24px;
  font-size: 14px;
}
.hp-btn--dark {
  background: #1a1a2e;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.25);
}
.hp-btn--dark:hover {
  background: #24243e;
  transform: translateY(-2px);
}
.hp-btn--outline {
  background: transparent;
  color: #1a1a2e;
  border: 1.5px solid #1a1a2e;
}
.hp-btn--outline:hover {
  background: #1a1a2e;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .hp-btn--primary,
  .hp-btn--secondary {
    width: auto;
  }
}

/* ── Shared Section Typography (hp-social / hp-ps overlines) ── */
.hp-social__overline {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a7cff;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.hp-social__heading {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1a1a2e;
  margin: 0 0 16px;
}
.hp-ps__overline {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a7cff;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
  .hp-social__heading {
    font-size: clamp(28px, 4vw, 40px);
  }
}