: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;
  }
}

/* Prime Hub Digital LLC 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;
  }
}

.site-logo {
  display: block;
  width: clamp(170px, 18vw, 244px);
  max-height: 100px;
  object-fit: contain;
}

.footer-logo {
  width: min(230px, 100%);
  max-height: 64px;
}

.brand-mark:has(.site-logo) {
  gap: 0;
}
