:root {
  --bg: #f8fbff;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #5e6b7f;
  --line: #dbe7f5;
  --coral: #2563eb;
  --coral-dark: #1d4ed8;
  --green: #0891b2;
  --gold: #7c3aed;
  --shadow: 0 24px 70px rgba(37, 99, 235, 0.13);
  --radius: 8px;
}



* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.discount-strip {
  position: relative;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 9px clamp(20px, 5vw, 72px);
  color: #eaf2ff;
  background: #0f172a;
  border-bottom: 1px solid rgba(147, 197, 253, 0.2);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: center;
}

.discount-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.discount-strip strong {
  font-weight: 850;
}

.discount-strip a {
  color: #7dd3fc;
  font-weight: 900;
  white-space: nowrap;
}

.promo-strip {
  position: relative;
  z-index: 40;
  background: var(--ink);
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
}

.promo-strip a {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 9px clamp(20px, 5vw, 72px);
  text-align: center;
}

.promo-strip strong {
  color: #f3d7a6;
  text-transform: uppercase;
}

.promo-strip span {
  color: rgba(255, 255, 255, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) minmax(220px, 320px) auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 248, 0.88);
  border-bottom: 1px solid rgba(234, 222, 214, 0.8);
  backdrop-filter: blur(20px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-sigil {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-search,
.shop-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search {
  justify-self: end;
  width: min(100%, 320px);
  padding: 4px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(80, 48, 33, 0.06);
}

.header-search input {
  min-width: 0;
  border: 0;
  padding: 9px 10px 9px 14px;
  background: transparent;
}

.header-search input:focus {
  outline: none;
}

.header-search button {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
}

.header-search svg,
.cart-icon,
.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav a:hover,
.section-heading a:hover,
.filter-panel a:hover {
  color: var(--coral-dark);
}

.cart-link {
  position: relative;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(80, 48, 33, 0.06);
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  color: white;
  background: var(--coral);
  border: 2px solid var(--bg);
  border-radius: 50%;
  font-size: 0.68rem;
}

.messages {
  padding: 0 clamp(20px, 5vw, 72px);
}

.message {
  max-width: 980px;
  margin: 18px auto 0;
  padding: 12px 16px;
  background: #eef5e9;
  border: 1px solid #dcead3;
  border-radius: var(--radius);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 72px) 40px;
}

.hero-copy,
.hero-media,
.category-strip a,
.split-feature > *,
.section-heading,
.product-card,
.promo-band > *,
.page-hero > *,
.filter-panel,
.cart-panel,
.contact-form,
.contact-card,
.text-page > * {
  animation: rise-fade 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-media {
  animation-delay: 120ms;
}

.category-strip a:nth-child(2),
.product-card:nth-child(2) {
  animation-delay: 80ms;
}

.category-strip a:nth-child(3),
.product-card:nth-child(3) {
  animation-delay: 150ms;
}

.category-strip a:nth-child(4),
.product-card:nth-child(4) {
  animation-delay: 220ms;
}

.hero h1,
.page-hero h1,
.section h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6.6rem);
}

.hero p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions,
.product-buy-row,
.section-heading,
.trust-row {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
button {
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.button-primary {
  color: white;
  background: var(--coral);
  box-shadow: 0 14px 26px rgba(217, 111, 95, 0.24);
}

.button-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.button-light {
  color: var(--ink);
  background: white;
}

.button-wide {
  width: 100%;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-row span {
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.trust-row span:last-child {
  border-right: 0;
}

.hero-media {
  overflow: hidden;
  border-radius: 0 0 0 76px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(680px, 72vh);
  object-fit: cover;
}

.section,
.page-hero {
  padding: clamp(50px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.page-hero {
  background: linear-gradient(135deg, #fff 0%, #fff7f3 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact {
  padding-top: 72px;
  padding-bottom: 56px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 30px;
}

.category-strip a,
.filter-panel,
.contact-card,
.cart-panel,
.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.category-strip a {
  padding: 22px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-strip a:hover {
  border-color: rgba(217, 111, 95, 0.42);
  box-shadow: 0 18px 42px rgba(80, 48, 33, 0.08);
  transform: translateY(-3px);
}

.category-strip span,
.product-meta h3,
.contact-card h2 {
  display: block;
  font-weight: 800;
}

.category-strip small,
.product-meta span,
.fine-print {
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: white;
}

.split-feature h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
}

.split-feature p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.08rem;
}

.split-feature img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-heading {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading a {
  color: var(--green);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(80, 48, 33, 0.12);
}

.product-image {
  display: grid;
  height: clamp(420px, 34vw, 560px);
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfb 0%, #fff3ef 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(10px, 1.4vw, 20px);
}

.product-meta,
.product-buy-row {
  padding: 18px;
}

.product-meta {
  position: relative;
  z-index: 1;
  flex: 1;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.product-meta p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.product-buy-row {
  justify-content: space-between;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.price-stack {
  display: grid;
  gap: 2px;
}

.price-stack s,
.detail-price s {
  color: var(--muted);
  font-size: 0.82rem;
}

.sale-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 3px 7px;
  color: white;
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.icon-button:hover {
  background: var(--coral);
  transform: rotate(-4deg) scale(1.06);
}

.promo-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: white;
  background: var(--green);
}

.promo-band h2,
.promo-band p {
  max-width: 720px;
  margin: 0;
}

.promo-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.shop-layout,
.product-detail,
.contact-grid {
  display: grid;
  gap: 28px;
}

.shop-layout {
  grid-template-columns: 260px 1fr;
}

.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 18px;
}

.filter-panel h2 {
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.filter-panel a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 800;
}

.filter-panel a.active {
  color: var(--coral-dark);
}

.shop-search {
  max-width: 760px;
  margin-top: 28px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(80, 48, 33, 0.08);
}

.shop-search input {
  flex: 1;
  border: 0;
  background: transparent;
}

.shop-search input:focus {
  outline: none;
}

.result-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.product-detail {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  align-items: start;
}

.detail-media {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  height: min(660px, 72vh);
  object-fit: contain;
  padding: clamp(10px, 2vw, 22px);
}

.detail-copy h1 {
  margin: 8px 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1;
}

.back-link {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.detail-lede {
  color: var(--muted);
  font-size: 1.1rem;
}

.price-large {
  margin: 6px 0 0;
  font-size: 1.4rem;
  font-weight: 900;
}

.detail-price {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.purchase-box {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 26px 0;
}

.purchase-box label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.detail-notes {
  max-width: 720px;
}

.detail-notes h2,
.detail-notes h3 {
  margin-top: 26px;
}

.narrow {
  max-width: 900px;
  margin: 0 auto;
}

.cart-panel {
  padding: 22px;
}

.checkout-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.checkout-form h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

.checkout-form p {
  max-width: 660px;
  margin: -10px 0 0;
  color: var(--muted);
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-fields label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr 190px 92px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line span {
  display: block;
  color: var(--muted);
}

.quantity-form {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 8px;
}

.quantity-form button,
.text-button {
  background: #f6ece7;
  color: var(--ink);
  padding: 10px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 1.2rem;
}

.cart-pulse {
  animation: pulse 450ms ease;
}

.empty-state {
  padding: 36px;
  text-align: center;
}

.success-state {
  text-align: center;
}

.success-state h1,
.success-state p {
  margin-left: auto;
  margin-right: auto;
}

.order-pill {
  display: inline-block;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.contact-card {
  align-self: start;
  padding: 22px;
}

.text-page {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-page h2 {
  margin: 32px 0 10px;
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.compliance-grid div {
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compliance-grid strong,
.compliance-grid span {
  display: block;
}

.compliance-grid strong {
  color: var(--ink);
}

.compliance-grid span {
  margin-top: 4px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px clamp(20px, 5vw, 72px);
  background: #211d1a;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer .brand-mark {
  color: white;
}

.footer-brand .brand-sigil {
  background: var(--coral);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 111, 95, 0.22); }
  100% { box-shadow: 0 0 0 18px rgba(217, 111, 95, 0); }
}

@keyframes rise-fade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-search {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .hero,
  .split-feature,
  .shop-layout,
  .product-detail,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    border-radius: var(--radius);
  }

  .category-strip,
  .product-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-image {
    height: 420px;
  }

  .filter-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .category-strip,
  .product-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 390px;
  }

  .cart-line,
  .purchase-box,
  .compliance-grid,
  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .promo-band,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Apex Digital X premium-tech overrides */
body {
  background:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto;
  overflow-x: hidden;
}

.promo-strip {
  background: #0f172a;
}

.promo-strip strong {
  color: #7dd3fc;
}

.site-header {
  background: rgba(248, 251, 255, 0.9);
  border-bottom-color: rgba(148, 163, 184, 0.24);
  position: sticky;
  top: 0;
  grid-template-columns: auto minmax(360px, 1fr) auto auto;
}

.brand-sigil {
  display: inline-flex;
  width: 68px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 0;
  color: #0f172a;
  background: transparent;
  font-family: Inter, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-sigil b {
  color: #2563eb;
  font-weight: 950;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: white;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 7px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

.header-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.28);
}

.button-primary,
.shop-search .button-primary {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.24);
}

.button-secondary {
  background: white;
  border-color: #cbd5e1;
  color: #111827;
}

.hero {
  min-height: min(760px, calc(100vh - 74px));
  grid-template-columns: minmax(520px, 0.95fr) minmax(560px, 1.05fr);
  background:
    radial-gradient(circle at 70% 18%, rgba(6, 182, 212, 0.12), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(124, 58, 237, 0.1), transparent 28%);
}

.hero h1,
.page-hero h1,
.section h2 {
  color: #111827;
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 4.15vw, 5.05rem);
  line-height: 0.98;
}

.hero-copy p {
  max-width: 680px;
  color: #475569;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dbeafe;
  color: #334155;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dashboard-media {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.dashboard-media img {
  object-fit: contain;
  background: white;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(12px, 2vw, 24px);
  height: auto;
  aspect-ratio: 1.28;
}

.category-strip a,
.filter-panel,
.contact-card,
.cart-panel,
.product-card,
.package-panel,
.customer-panel,
.order-summary {
  border: 1px solid #dbeafe;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.category-strip a:hover,
.product-card:hover,
.package-option:hover {
  border-color: #93c5fd;
  box-shadow: 0 22px 52px rgba(37, 99, 235, 0.12);
}

.product-image {
  height: clamp(240px, 19vw, 310px);
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.product-image img {
  object-fit: contain;
  padding: 18px;
  border-radius: 22px;
}

.product-meta p,
.filter-panel h2,
.sale-pill {
  color: #2563eb;
}

.service-grid .product-card h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.18rem;
}

.service-grid .product-card {
  min-height: 100%;
}

.service-grid .product-buy-row {
  margin-top: auto;
  min-height: 82px;
}

.service-grid .sale-pill {
  width: max-content;
  min-width: 0;
  padding: 5px 10px;
  color: white;
  background: #2563eb;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: #334155;
  font-weight: 800;
}

.feature-list span {
  padding: 12px 14px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: #f8fbff;
}

.systems-preview {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.systems-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.systems-head h3,
.mini-pay-panel h3 {
  margin: 0;
  color: #111827;
  font-size: 1.35rem;
}

.systems-head span {
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: right;
}

.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-service-grid article {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f8fbff;
}

.mini-service-grid strong {
  color: #111827;
}

.mini-service-grid span,
.mini-service-grid small,
.mini-pay-panel p {
  color: #64748b;
}

.mini-pay-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.mini-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mini-packages span {
  padding: 8px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: white;
  color: #1d4ed8;
  font-weight: 900;
  font-size: 0.82rem;
}

.process-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.5fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  padding: 22px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: white;
}

.process-grid span {
  color: #2563eb;
  font-weight: 900;
}

.pay-layout {
  padding-top: 38px;
}

.pay-form {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.package-panel,
.customer-panel,
.order-summary {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
}

.customer-panel {
  grid-column: 1;
}

.order-summary {
  position: sticky;
  top: 120px;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.package-option {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: #f8fbff;
  cursor: pointer;
}

.package-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #2563eb;
}

.package-option:has(input:checked) {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px #2563eb;
}

.package-option span,
.order-summary span {
  color: #334155;
  font-weight: 800;
}

.package-option strong,
.order-summary strong {
  color: #111827;
  font-size: 1.15rem;
}

.field-wide {
  grid-column: 1 / -1;
}

textarea,
.checkout-fields textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
}

.terms-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  justify-content: start;
  max-width: 760px;
  margin: 18px 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 700;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  border-radius: 4px;
  accent-color: #2563eb;
}

.terms-check span {
  display: block;
  max-width: 680px;
}

.site-footer {
  background: #0f172a;
}

.footer-brand .brand-sigil {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

@media (max-width: 980px) {
  .pay-form,
  .process-band,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 3rem;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 280px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .hero,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .discount-strip {
    flex-direction: column;
    gap: 5px;
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .site-header {
    align-items: center;
    padding: 16px 20px;
  }

  .mobile-menu-toggle {
    display: grid;
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.menu-open .main-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 14px;
  }

  .site-header.menu-open .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid #dbeafe;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-mark > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cart-link {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .hero {
    padding-top: 54px;
  }

  .dashboard-media {
    display: none;
  }

  .mini-service-grid,
  .mini-pay-panel {
    grid-template-columns: 1fr;
  }

  .systems-head {
    flex-direction: column;
  }

  .systems-head span {
    text-align: left;
  }
}

/* Apex homepage mockup alignment */
.site-header {
  min-height: 78px;
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  grid-template-columns: auto minmax(420px, 1fr) auto;
}

.site-header > .cart-link {
  display: none;
}

.brand-mark {
  gap: 18px;
}

.brand-sigil {
  width: 92px;
  height: 42px;
  font-size: 2.6rem;
  font-weight: 950;
}

.brand-sigil b {
  margin-left: -3px;
}

.main-nav {
  gap: 54px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}

.header-cta {
  min-width: 146px;
  min-height: 46px;
  background: #0757f8;
  border-radius: 5px;
  box-shadow: 0 16px 34px rgba(7, 87, 248, 0.18);
}

.apex-hero {
  position: relative;
  min-height: 660px;
  padding: 0 clamp(60px, 6vw, 96px);
  overflow: hidden;
  grid-template-columns: minmax(750px, 1fr) minmax(560px, 0.95fr);
  gap: clamp(36px, 4vw, 72px);
  align-items: center;
  background:
    linear-gradient(rgba(219, 234, 254, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 234, 254, 0.42) 1px, transparent 1px),
    radial-gradient(circle at 89% 52%, rgba(124, 58, 237, 0.12) 0 7%, transparent 7.2%),
    linear-gradient(120deg, #ffffff 0%, #f8fbff 54%, #eef8ff 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.apex-hero .hero-copy {
  align-self: center;
}

.apex-hero h1 {
  max-width: 780px;
  font-size: clamp(3.9rem, 3.5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.apex-hero .hero-copy p {
  max-width: 690px;
  margin-top: 26px;
  color: #405074;
  font-size: 1.18rem;
  line-height: 1.5;
}

.apex-hero .hero-actions {
  margin-top: 38px;
  gap: 20px;
}

.arrow-button {
  min-width: 216px;
  min-height: 58px;
  gap: 16px;
  border-radius: 5px;
  font-size: 1.05rem;
}

.apex-hero .button-primary {
  background: #0757f8;
  box-shadow: 0 16px 36px rgba(7, 87, 248, 0.18);
}

.apex-hero .button-secondary {
  color: #0757f8;
  border: 2px solid #0757f8;
  background: #fff;
}

.apex-hero .trust-row {
  margin-top: 31px;
  gap: 10px;
  flex-wrap: nowrap;
}

.apex-hero .trust-row span {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  min-width: 172px;
  min-height: 56px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dce7f8;
  border-radius: 7px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.apex-hero .trust-row svg {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  color: #0757f8;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apex-hero .trust-row strong {
  color: #0f172a;
  font-size: 0.78rem;
  line-height: 1.1;
  white-space: nowrap;
}

.apex-hero .trust-row small {
  color: #64748b;
  font-size: 0.7rem;
  line-height: 1.15;
}

.dashboard-media {
  position: relative;
  align-self: center;
}

.dashboard-media::after {
  content: "";
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  top: 100px;
  width: 82px;
  height: 102px;
  opacity: 0.72;
  background-image: radial-gradient(#0757f8 1.7px, transparent 1.7px);
  background-size: 12px 12px;
  pointer-events: none;
}

.dashboard-media img {
  width: 100%;
  max-width: 770px;
  padding: 0;
  border-radius: 18px;
  border-color: #dce7f8;
  box-shadow: 0 34px 80px rgba(37, 99, 235, 0.13);
}

.home-services {
  padding: 52px clamp(60px, 6vw, 96px) 76px;
  background: #fff;
  border-top: 1px solid #dce7f8;
}

.home-services .section-heading {
  margin-bottom: 20px;
  align-items: end;
}

.section-eyebrow {
  margin: 0 0 8px;
  color: #0757f8;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-services h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.7rem, 2vw, 2.05rem);
  line-height: 1.18;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #0757f8;
  font-weight: 850;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.home-service-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 142px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #dbe7f8;
  border-radius: 7px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-service-card:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 24px 52px rgba(37, 99, 235, 0.12);
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 8px;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-blue {
  color: #0757f8;
  background: #eaf1ff;
}

.service-icon-violet {
  color: #7c3aed;
  background: #f0e9ff;
}

.service-icon-cyan {
  color: #0891b2;
  background: #dcf8fb;
}

.service-icon-orange {
  color: #f97316;
  background: #ffead9;
}

.home-service-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.2;
}

.home-service-card p {
  margin: 8px 0 0;
  color: #5b6b84;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .apex-hero {
    grid-template-columns: 1fr;
  }

  .dashboard-media img {
    max-width: 860px;
  }

  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    gap: 10px;
  }

  .brand-sigil {
    width: 58px;
    height: 32px;
    font-size: 1.95rem;
  }

  .mobile-menu-toggle {
    grid-column: 2;
  }

  .apex-hero {
    padding: 54px 20px 38px;
    min-height: 0;
  }

  .apex-hero .hero-copy {
    min-width: 0;
    width: 100%;
  }

  .apex-hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 11.5vw, 3.45rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .apex-hero .hero-copy p {
    font-size: 1.05rem;
  }

  .arrow-button {
    min-width: 0;
    min-height: 48px;
  }

  .apex-hero .trust-row span {
    min-width: 0;
    width: 100%;
  }

  .home-services {
    padding: 46px 20px 60px;
  }

  .home-services .section-heading {
    align-items: start;
  }

  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    grid-template-columns: 64px 1fr;
  }
}

/* Signal Forge Digital premium AI systems theme */
.signal-site {
  --signal-bg: #050816;
  --signal-panel: rgba(11, 18, 36, 0.82);
  --signal-panel-strong: rgba(15, 23, 42, 0.94);
  --signal-line: rgba(125, 211, 252, 0.2);
  --signal-cyan: #22d3ee;
  --signal-blue: #2563eb;
  --signal-violet: #8b5cf6;
  --signal-amber: #f97316;
  --signal-text: #f8fafc;
  --signal-muted: #9fb0ca;
  background:
    radial-gradient(circle at 18% 14%, rgba(34, 211, 238, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(139, 92, 246, 0.15), transparent 30rem),
    radial-gradient(circle at 52% 92%, rgba(249, 115, 22, 0.1), transparent 26rem),
    linear-gradient(135deg, #050816 0%, #07111f 48%, #090b16 100%);
  color: var(--signal-text);
  overflow-x: hidden;
}

.signal-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.25));
}

.signal-site::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px);
  opacity: 0.55;
}

.signal-site .discount-strip {
  background: linear-gradient(90deg, #07111f, #0c1740 48%, #1e1026);
  border-bottom: 1px solid rgba(125, 211, 252, 0.22);
  color: #e7faff;
}

.signal-site .discount-strip span {
  background: rgba(34, 211, 238, 0.14);
  color: var(--signal-cyan);
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.signal-site .discount-strip a {
  color: #67e8f9;
}

.signal-site .site-header {
  background: rgba(5, 8, 22, 0.82);
  border-bottom: 1px solid rgba(125, 211, 252, 0.18);
  backdrop-filter: blur(22px);
}

.signal-site .brand-mark,
.signal-site .main-nav a,
.signal-site .cart-link,
.signal-site .mobile-menu-toggle {
  color: var(--signal-text);
}

.signal-site .brand-sigil {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: white;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.95), rgba(37, 99, 235, 0.95) 52%, rgba(139, 92, 246, 0.9));
  box-shadow: 0 18px 40px rgba(34, 211, 238, 0.18);
}

.signal-site .brand-sigil b {
  color: #fef3c7;
}

.signal-site .header-cta,
.signal-site .button-primary {
  border: 0;
  color: white;
  background: linear-gradient(135deg, #00b8ff, #2563eb 48%, #7c3aed);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.32);
}

.signal-site .header-cta:hover,
.signal-site .button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(34, 211, 238, 0.32);
}

.signal-site .button-secondary,
.signal-site .button-light {
  color: #e6faff;
  border: 1px solid rgba(34, 211, 238, 0.36);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.signal-site main {
  background: transparent;
}

.signal-hero {
  width: min(1720px, calc(100% - 56px));
  min-height: 760px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 132px) 0 clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(40px, 5vw, 92px);
  align-items: center;
}

.signal-kicker,
.signal-site .section-eyebrow {
  color: var(--signal-cyan);
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 900;
}

.signal-hero h1 {
  max-width: 760px;
  margin: 16px 0 24px;
  color: #f8fbff;
  font-size: clamp(4.3rem, 5.7vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.signal-hero-copy > p:not(.signal-kicker) {
  max-width: 680px;
  color: #b8c5da;
  font-size: clamp(1.8rem, 1.7vw, 2.35rem);
  line-height: 1.52;
}

.signal-site .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.signal-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 700px;
  margin-top: 34px;
}

.signal-metrics span,
.signal-trust-row span,
.signal-category-grid a,
.signal-console,
.signal-site .product-card,
.signal-site .package-panel,
.signal-site .customer-panel,
.signal-site .order-summary,
.signal-site .filter-panel,
.signal-site .contact-card,
.signal-site .contact-form,
.signal-site .policy-content {
  border: 1px solid rgba(125, 211, 252, 0.18);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(8, 13, 27, 0.78));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.signal-metrics span {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
}

.signal-metrics strong {
  color: #e8fbff;
  font-size: 2.6rem;
}

.signal-metrics small {
  color: var(--signal-muted);
  font-weight: 800;
}

.signal-hero-media {
  position: relative;
  isolation: isolate;
}

.signal-hero-media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 34px;
  box-shadow: 0 36px 110px rgba(37, 99, 235, 0.24), 0 18px 70px rgba(0, 0, 0, 0.55);
  animation: signalFloat 8s ease-in-out infinite;
}

.signal-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.4);
  pointer-events: none;
  animation: signalSpin 16s linear infinite;
}

.signal-orbit-one {
  width: 130px;
  height: 130px;
  right: 14px;
  top: 18px;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.22);
}

.signal-orbit-two {
  width: 74px;
  height: 74px;
  left: 18px;
  bottom: 42px;
  border-color: rgba(249, 115, 22, 0.5);
  animation-duration: 10s;
}

.signal-trust-row {
  width: min(1720px, calc(100% - 56px));
  margin: -18px auto 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.signal-trust-row span {
  min-height: 82px;
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dce9ff;
  font-weight: 900;
}

.signal-trust-row svg,
.signal-site .service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--signal-cyan);
}

.signal-site .section {
  width: min(1720px, calc(100% - 56px));
  color: var(--signal-text);
}

.signal-site .section-heading h2,
.signal-site .signal-split h2,
.signal-site .split-feature h2,
.signal-site .page-hero h1,
.signal-process h2,
.signal-pay-band h2 {
  color: #f8fbff;
}

.signal-site .section-heading a,
.signal-site .section-link {
  color: #67e8f9;
}

.signal-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.signal-category-grid a {
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.signal-category-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.48);
  box-shadow: 0 30px 70px rgba(34, 211, 238, 0.16);
}

.signal-category-grid span {
  color: var(--signal-cyan);
  font-weight: 900;
}

.signal-category-grid strong {
  font-size: 2rem;
}

.signal-category-grid small {
  color: #aebbd0;
  line-height: 1.5;
}

.signal-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.signal-split p,
.signal-site .product-meta span,
.signal-site .product-card s,
.signal-site .page-hero p,
.signal-site .policy-content p,
.signal-site .contact-card p,
.signal-site .contact-card a {
  color: #b7c4da;
}

.signal-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-console {
  border-radius: 30px;
  padding: 26px;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 22px;
}

.console-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--signal-cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.55);
}

.console-top span:nth-child(2) {
  background: var(--signal-violet);
}

.console-top span:nth-child(3) {
  background: var(--signal-amber);
}

.console-top strong {
  margin-left: auto;
  color: #e8fbff;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.console-grid article {
  min-height: 142px;
  border-radius: 22px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.12), transparent),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.console-grid b {
  color: white;
  font-size: 1.8rem;
}

.console-grid em,
.signal-console p {
  color: var(--signal-muted);
  font-style: normal;
}

.console-line {
  height: 12px;
  margin: 22px 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.console-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--signal-cyan), var(--signal-violet), var(--signal-amber));
}

.signal-site .product-card {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(8, 13, 27, 0.88));
}

.signal-site .product-image {
  background: #070b19;
}

.signal-site .product-meta,
.signal-site .product-buy-row {
  background: transparent;
}

.signal-site .product-image img,
.signal-site .shop-grid .product-image img,
.signal-product-grid .product-image img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  padding: 0;
  transition: transform 260ms ease, filter 260ms ease;
}

.signal-site .product-card:hover .product-image img {
  transform: scale(1.05);
  filter: saturate(1.16) contrast(1.05);
}

.signal-site .product-meta p,
.signal-site .sale-pill {
  color: var(--signal-cyan);
}

.signal-site .product-meta h3 a,
.signal-site .product-buy-row strong,
.signal-site .filter-panel h2,
.signal-site .order-summary h2,
.signal-site .customer-panel h2,
.signal-site .package-panel h2,
.signal-site .contact-card h2,
.signal-site .contact-form h2,
.signal-site .policy-content h2 {
  color: #f8fbff;
}

.signal-site .icon-button {
  color: #03111e;
  background: linear-gradient(135deg, var(--signal-cyan), #a78bfa);
}

.signal-process .process-grid article {
  border-color: rgba(125, 211, 252, 0.18);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.84), rgba(8, 13, 27, 0.72));
}

.signal-pay-band {
  border-radius: 34px;
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 22% 20%, rgba(34, 211, 238, 0.18), transparent 26rem),
    linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(124, 58, 237, 0.18)),
    rgba(8, 13, 27, 0.86);
  border: 1px solid rgba(125, 211, 252, 0.22);
}

.signal-pay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 360px;
}

.signal-pay-list span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #e8fbff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.signal-site .page-hero {
  background:
    radial-gradient(circle at 20% 25%, rgba(34, 211, 238, 0.18), transparent 32rem),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.18), transparent 32rem),
    rgba(8, 13, 27, 0.72);
  border-bottom: 1px solid rgba(125, 211, 252, 0.14);
}

.signal-site .shop-search input,
.signal-site input,
.signal-site textarea {
  color: #e8fbff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(125, 211, 252, 0.24);
}

.signal-site .shop-search input::placeholder,
.signal-site textarea::placeholder {
  color: #718096;
}

.signal-site .package-option {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(125, 211, 252, 0.2);
}

.signal-site .package-option:has(input:checked) {
  background: rgba(34, 211, 238, 0.13);
  border-color: var(--signal-cyan);
  box-shadow: 0 18px 44px rgba(34, 211, 238, 0.18);
}

.signal-site .site-footer {
  background: #030712;
  border-top: 1px solid rgba(125, 211, 252, 0.16);
}

.signal-site .site-footer,
.signal-site .site-footer a,
.signal-site .site-footer p {
  color: #c3d1e8;
}

@keyframes signalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.35deg); }
}

@keyframes signalSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .signal-hero-media img,
  .signal-orbit {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .signal-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .signal-hero-media img {
    min-height: 420px;
  }

  .signal-trust-row,
  .signal-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-split,
  .signal-pay-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .signal-hero,
  .signal-site .section,
  .signal-trust-row {
    width: min(100% - 28px, 1720px);
  }

  .signal-hero {
    padding-top: 52px;
    gap: 30px;
  }

  .signal-hero h1 {
    font-size: clamp(4.4rem, 15vw, 6.2rem);
  }

  .signal-hero-copy > p:not(.signal-kicker) {
    font-size: 1.7rem;
  }

  .signal-metrics,
  .signal-trust-row,
  .signal-category-grid,
  .console-grid,
  .signal-feature-list {
    grid-template-columns: 1fr;
  }

  .signal-hero-media img {
    min-height: 300px;
    border-radius: 24px;
  }

  .signal-orbit-one {
    right: 10px;
    top: 14px;
  }

  .signal-orbit-two {
    left: 10px;
  }

  .signal-site .product-image img,
  .signal-site .shop-grid .product-image img,
  .signal-product-grid .product-image img {
    height: 240px;
  }
}

/* Signal Forge polish pass: premium layout, contrast, and checkout readability */
.signal-site {
  --signal-bg: #040711;
  --signal-panel: rgba(8, 14, 27, 0.9);
  --signal-panel-strong: rgba(10, 17, 31, 0.97);
  --signal-line: rgba(205, 180, 116, 0.24);
  --signal-cyan: #7dd3fc;
  --signal-blue: #3b82f6;
  --signal-violet: #8b5cf6;
  --signal-amber: #d6b66f;
  --signal-text: #f8fafc;
  --signal-muted: #b8c4d8;
  background:
    url("../img/signal/prompt-pattern.8df766f55dae.svg") 50% 120px / 720px 520px repeat,
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.13), transparent 34rem),
    radial-gradient(circle at 78% 18%, rgba(214, 182, 111, 0.12), transparent 28rem),
    radial-gradient(circle at 22% 88%, rgba(139, 92, 246, 0.11), transparent 34rem),
    linear-gradient(135deg, #040711 0%, #07101f 48%, #080611 100%);
  background-blend-mode: soft-light, normal, normal, normal, normal;
}

.signal-site::before {
  background-image:
    radial-gradient(circle at center, rgba(214, 182, 111, 0.12) 0 1px, transparent 2px),
    linear-gradient(rgba(125, 211, 252, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.04) 1px, transparent 1px);
  background-size: 84px 84px, 56px 56px, 56px 56px;
  opacity: 0.72;
}

.signal-site .discount-strip {
  background: linear-gradient(90deg, #050816, #0b1224 50%, #1b1321);
}

.signal-site .discount-strip span {
  color: #f3d88f;
  background: rgba(214, 182, 111, 0.14);
  border-color: rgba(214, 182, 111, 0.32);
}

.signal-site .site-header {
  padding-left: clamp(24px, 4vw, 72px);
  padding-right: clamp(24px, 4vw, 72px);
}

.signal-hero,
.signal-site .section,
.signal-trust-row {
  width: min(1420px, calc(100% - 112px));
  margin-left: auto;
  margin-right: auto;
}

.signal-hero {
  min-height: 590px;
  padding: clamp(48px, 5vw, 78px) 0 clamp(38px, 4vw, 62px);
  grid-template-columns: minmax(420px, 0.88fr) minmax(540px, 1fr);
  gap: clamp(46px, 5vw, 78px);
  justify-content: center;
}

.signal-hero h1 {
  max-width: 660px;
  font-size: clamp(3.7rem, 3.15vw, 5.25rem);
  line-height: 1.02;
}

.signal-hero-copy > p:not(.signal-kicker) {
  max-width: 620px;
  color: #c6d2e4;
  font-size: clamp(1.3rem, 1vw, 1.65rem);
}

.signal-hero-media img {
  min-height: 430px;
  border-color: rgba(214, 182, 111, 0.32);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.58), 0 18px 64px rgba(125, 211, 252, 0.13);
}

.signal-metrics {
  max-width: 580px;
  margin-top: 28px;
}

.signal-metrics span,
.signal-trust-row span,
.signal-category-grid a,
.signal-console,
.signal-site .product-card,
.signal-site .package-panel,
.signal-site .customer-panel,
.signal-site .order-summary,
.signal-site .filter-panel,
.signal-site .contact-card,
.signal-site .contact-form,
.signal-site .policy-content,
.signal-site .cart-panel {
  color: #f8fafc;
  border-color: rgba(214, 182, 111, 0.22);
  background:
    linear-gradient(145deg, rgba(13, 22, 39, 0.96), rgba(6, 10, 21, 0.94)),
    rgba(5, 8, 22, 0.95);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.signal-metrics strong,
.signal-category-grid strong,
.signal-site .cart-panel h2,
.signal-site .cart-panel h3,
.signal-site .cart-panel strong,
.signal-site .order-summary h2,
.signal-site .order-summary strong,
.signal-site .package-option strong,
.signal-site .package-option span,
.signal-site .checkout-fields label,
.signal-site .customer-panel h2,
.signal-site .package-panel h2,
.signal-site .terms-check,
.signal-site .terms-check span {
  color: #f8fafc;
}

.signal-metrics small,
.signal-site .cart-panel p,
.signal-site .cart-panel span,
.signal-site .order-summary p,
.signal-site .order-summary span,
.signal-site .checkout-fields label,
.signal-site .package-option strong,
.signal-site .terms-check span {
  color: #c8d3e4;
}

.signal-site .package-grid {
  gap: 16px;
}

.signal-site .package-option {
  min-height: 118px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(148, 163, 184, 0.24);
}

.signal-site .package-option:hover,
.signal-site .package-option:has(input:checked) {
  background:
    linear-gradient(145deg, rgba(125, 211, 252, 0.16), rgba(214, 182, 111, 0.08)),
    rgba(12, 20, 36, 0.95);
  border-color: rgba(125, 211, 252, 0.72);
  box-shadow: 0 18px 46px rgba(125, 211, 252, 0.13), inset 0 0 0 1px rgba(125, 211, 252, 0.3);
}

.signal-site .package-option input,
.signal-site .terms-check input {
  accent-color: #7dd3fc;
}

.signal-site .cart-panel {
  max-width: 1120px;
  margin-inline: auto;
  border-radius: 26px;
}

.signal-site .cart-item,
.signal-site .cart-total,
.signal-site .cart-row {
  border-color: rgba(214, 182, 111, 0.14);
}

.signal-site .cart-item input,
.signal-site .checkout-fields input,
.signal-site .checkout-fields textarea,
.signal-site input,
.signal-site textarea {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(125, 211, 252, 0.24);
}

.signal-site .cart-item input::placeholder,
.signal-site .checkout-fields input::placeholder,
.signal-site .checkout-fields textarea::placeholder {
  color: #91a0b6;
}

.signal-site .button-primary,
.signal-site .header-cta {
  background: linear-gradient(135deg, #d6b66f, #22d3ee 48%, #6d5dfc);
  color: #06101e;
  text-shadow: none;
  box-shadow: 0 18px 46px rgba(125, 211, 252, 0.22);
}

.signal-site .button-secondary,
.signal-site .button-light {
  border-color: rgba(214, 182, 111, 0.34);
  background: rgba(255, 255, 255, 0.045);
  color: #f8fafc;
}

.signal-site .section-heading h2,
.signal-site .signal-split h2,
.signal-site .split-feature h2,
.signal-site .page-hero h1,
.signal-process h2,
.signal-pay-band h2 {
  font-size: clamp(2.7rem, 2.6vw, 4.4rem);
}

.signal-site .section-heading {
  justify-content: center;
  text-align: center;
  gap: 28px;
}

.signal-site .section-heading > div {
  display: grid;
  justify-items: center;
}

.signal-site .section-heading h2 {
  max-width: 980px;
}

.signal-site .section-heading a,
.signal-site .section-link {
  align-self: end;
}

.signal-category-grid {
  max-width: 1280px;
  margin-inline: auto;
  justify-content: center;
}

.signal-split {
  max-width: 1280px;
  margin-inline: auto;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1fr);
  align-items: center;
}

.signal-split > div:first-child {
  max-width: 620px;
}

.signal-product-grid,
.signal-process .process-grid {
  max-width: 1240px;
  margin-inline: auto;
}

.signal-process > div:first-child {
  display: grid;
  justify-items: center;
  text-align: center;
}

.signal-pay-band {
  background:
    radial-gradient(circle at 24% 20%, rgba(214, 182, 111, 0.14), transparent 26rem),
    linear-gradient(135deg, rgba(12, 20, 36, 0.96), rgba(20, 16, 43, 0.96));
  border-color: rgba(214, 182, 111, 0.24);
}

@media (max-width: 1180px) {
  .signal-hero {
    grid-template-columns: 1fr;
    width: min(1040px, calc(100% - 56px));
  }

  .signal-hero h1,
  .signal-hero-copy > p:not(.signal-kicker) {
    max-width: 760px;
  }

  .signal-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .signal-hero,
  .signal-site .section,
  .signal-trust-row {
    width: min(100% - 28px, 1420px);
  }

  .signal-hero h1 {
    font-size: clamp(3.05rem, 10.5vw, 4.35rem);
  }

  .signal-hero-copy > p:not(.signal-kicker) {
    font-size: 1.55rem;
  }

  .signal-hero-media img {
    min-height: 280px;
  }
}

/* Signal Forge centered composition fix */
.signal-site main {
  position: relative;
  isolation: isolate;
}

.signal-site main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("../img/signal/prompt-pattern.8df766f55dae.svg") 50% 88px / 640px 460px repeat;
  opacity: 0.24;
  mix-blend-mode: screen;
}

.signal-categories,
.signal-process,
.signal-site .section:has(.signal-product-grid) {
  display: grid;
  justify-items: center;
}

.signal-site .section-heading {
  width: 100%;
  justify-content: center;
}

.signal-category-grid {
  width: fit-content;
  max-width: 100%;
  grid-template-columns: repeat(5, minmax(210px, 236px));
  justify-content: center;
  justify-items: stretch;
}

.signal-product-grid {
  width: fit-content;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(260px, 310px));
  justify-content: center;
  justify-items: stretch;
}

.signal-process .process-grid {
  width: fit-content;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(280px, 360px));
  justify-content: center;
  justify-items: stretch;
}

.signal-site .section:has(.signal-product-grid) .section-heading,
.signal-categories .section-heading,
.signal-process > div:first-child {
  margin-inline: auto;
}

@media (max-width: 1180px) {
  .signal-category-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .signal-product-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .signal-process .process-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .signal-category-grid,
  .signal-product-grid,
  .signal-process .process-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.site-logo {
  display: block;
  width: clamp(170px, 18vw, 244px);
  max-height: 58px;
  object-fit: contain;
}

.footer-logo {
  width: min(230px, 100%);
  max-height: 64px;
}

.brand-mark:has(.site-logo) {
  gap: 0;
}
