:root {
  --ink-900: #eaf4ff;
  --ink-700: #b9d3ef;
  --teal-700: #83c2ff;
  --teal-500: #a8d5ff;
  --orange-600: #2bb6ff;
  --sky-100: rgba(55, 115, 180, 0.22);
  --sky-200: rgba(88, 145, 209, 0.24);
  --sand-100: rgba(17, 44, 83, 0.68);
  --surface-900: #071a33;
  --surface-800: #0b2244;
  --border-blue: rgba(123, 178, 239, 0.34);
  --white: #ffffff;
  --shadow: 0 18px 36px rgba(2, 8, 22, 0.5);
  --radius: 16px;
  --container: min(1240px, 94vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Chivo", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background-color: #020a1a;
  background:
    linear-gradient(180deg, rgba(3, 11, 29, 0.72) 0%, rgba(2, 8, 22, 0.9) 100%),
    url("../bg/blueprint.PNG") center / cover no-repeat;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border-blue);
  background: rgba(6, 20, 42, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(1, 5, 14, 0.45);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
}

.site-header.site-header-scroll-hidden {
  transform: translateY(-4.8rem);
  box-shadow: 0 6px 16px rgba(1, 5, 14, 0.28);
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.3px;
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(9, 52, 97, 0.18));
}

.brand-text {
  color: var(--ink-900);
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.08;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.28rem;
  width: 100%;
  font-weight: 600;
  padding: 0.34rem;
  border-radius: 24px;
  border: 1px solid rgba(123, 178, 239, 0.24);
  background: rgba(8, 28, 53, 0.74);
}

.site-nav a {
  padding: 0.4rem 0.68rem;
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(66, 146, 236, 0.3);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(123, 178, 239, 0.45);
  background: rgba(16, 59, 109, 0.45);
}

.cart-count {
  min-width: 1.4rem;
  text-align: center;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--white);
  background: #2a91f0;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border-blue);
  background: rgba(13, 42, 78, 0.78);
  color: var(--ink-900);
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  font-weight: 700;
}

.site-search-strip {
  border-bottom: 1px solid rgba(123, 178, 239, 0.2);
  background: rgba(5, 18, 38, 0.84);
  backdrop-filter: blur(6px);
}

.site-search-wrap {
  padding: 0.58rem 0;
}

.site-search-form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.site-search-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #9ecaf2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-search-input {
  width: 100%;
  border: 1px solid rgba(123, 178, 239, 0.34);
  border-radius: 999px;
  padding: 0.56rem 0.85rem;
  background: rgba(8, 29, 55, 0.78);
  color: var(--ink-900);
  font: inherit;
}

.site-search-input::placeholder {
  color: #95b9df;
}

.site-search-btn {
  border: 1px solid rgba(123, 178, 239, 0.42);
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
  background: rgba(19, 66, 115, 0.66);
  color: var(--ink-900);
  font-weight: 800;
  cursor: pointer;
}

.site-search-btn:hover {
  background: rgba(34, 95, 157, 0.76);
}

.hero {
  padding: 4.7rem 0 2.9rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
}

.kicker {
  margin: 0 0 0.6rem;
  color: var(--teal-700);
  letter-spacing: 0.12em;
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4.3vw, 3.2rem);
  letter-spacing: 0.2px;
}

.lead {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--ink-700);
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.72rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, #1479d9 0%, #31beff 100%);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(3, 20, 47, 0.42);
}

.btn-secondary {
  background: rgba(15, 45, 83, 0.76);
  border-color: var(--border-blue);
  color: var(--ink-900);
}

.hero-panel {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(9, 32, 62, 0.86) 0%, rgba(10, 38, 73, 0.92) 100%);
  border: 1px solid var(--border-blue);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 165, 255, 0.24) 0%, transparent 70%);
  pointer-events: none;
}

.hero-panel h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
}

.hero-panel ul {
  margin: 0.8rem 0 0;
  padding: 0 0 0 1rem;
  display: grid;
  gap: 0.5rem;
}

.page-hero {
  padding: 3.4rem 0 1.2rem;
}

.page-hero .container {
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(123, 178, 239, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(7, 25, 48, 0.64) 0%, rgba(7, 25, 48, 0.4) 100%);
  box-shadow: 0 12px 24px rgba(2, 8, 22, 0.34);
}

.section {
  padding: 2rem 0 3.2rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(6, 24, 48, 0.2) 0%, rgba(16, 58, 103, 0.34) 100%);
}

.section-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.inline-link {
  color: var(--teal-700);
  font-weight: 700;
}

.inline-link:hover {
  color: var(--teal-500);
}

.value-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.94) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 12px 22px rgba(2, 8, 22, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.value-card h3 {
  font-size: 1rem;
}

.value-card p {
  margin: 0.65rem 0 0;
  color: var(--ink-700);
}

.info-callout,
.faq-item {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.info-callout {
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}

.info-callout h2 {
  margin-bottom: 0.45rem;
}

.info-callout p {
  margin: 0.45rem 0 0.9rem;
  color: var(--ink-700);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1rem 1.1rem;
}

.faq-question {
  font-size: 1.2rem;
}

.faq-answer {
  margin: 0.6rem 0 0;
  color: var(--ink-700);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.document-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: grid;
  gap: 0.6rem;
}

.document-card:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 196, 252, 0.46);
  box-shadow: 0 14px 28px rgba(2, 8, 22, 0.52);
}

.document-type {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d8f2ff;
  background: rgba(42, 145, 240, 0.32);
  border: 1px solid rgba(123, 178, 239, 0.45);
}

.document-title {
  font-size: 1.1rem;
}

.document-copy,
.document-audience {
  margin: 0;
  color: var(--ink-700);
}

.documents-stack {
  display: grid;
  gap: 1.5rem;
}

.documents-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.document-card-featured {
  align-content: start;
}

.documents-priority-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.documents-priority-list li {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(123, 178, 239, 0.16);
}

.documents-priority-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.documents-priority-link {
  color: var(--ink-900);
  font-weight: 800;
}

.documents-priority-link:hover {
  color: #c5e7ff;
}

.documents-priority-list p,
.document-use,
.document-updated,
.documents-section-copy {
  margin: 0;
  color: var(--ink-700);
}

.document-meta {
  margin: -0.2rem 0 0;
  color: #9ecaf2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.document-use {
  font-size: 0.94rem;
}

.document-updated {
  font-size: 0.88rem;
}

.document-action-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.documents-answer-links {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.documents-section-block {
  display: grid;
  gap: 1rem;
}

.product-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 13px 24px rgba(2, 8, 22, 0.46);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-image-wrap {
  position: relative;
}

.card-image-link {
  display: block;
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #133a66;
}

.card-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--orange-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.card-body {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.product-card-link {
  display: grid;
  gap: 0.6rem;
  flex: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 800;
}

.card-copy {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.card-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.card-price {
  font-size: 1.02rem;
  font-weight: 800;
}

.card-detail-link {
  color: #a9d7ff;
  font-weight: 700;
}

.card-detail-link:hover,
.product-card-link:hover .card-title,
.card-image-link:hover + .card-body .card-title,
.cart-product-link:hover {
  color: #d3ebff;
}

.add-cart-btn {
  padding: 0.52rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-blue);
  background: var(--sand-100);
  color: var(--ink-900);
  font-weight: 700;
  cursor: pointer;
}

.add-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.add-cart-btn:hover {
  background: rgba(42, 100, 170, 0.55);
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #9bc4ea;
  font-size: 0.92rem;
}

.product-breadcrumbs a:hover {
  color: #cce6ff;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: start;
}

.product-gallery-shell,
.product-summary-card,
.product-panel {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.product-gallery-shell {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.product-main-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(123, 178, 239, 0.24);
  background:
    radial-gradient(circle at 18% 14%, rgba(78, 166, 255, 0.22) 0%, transparent 58%),
    linear-gradient(180deg, rgba(5, 18, 38, 0.98) 0%, rgba(4, 14, 31, 0.98) 100%);
}

.product-main-media img {
  width: 100%;
  height: clamp(320px, 55vh, 620px);
  object-fit: contain;
  padding: 1rem;
}

.product-thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 0.7rem;
}

.product-thumb {
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(123, 178, 239, 0.24);
  background: rgba(6, 24, 48, 0.72);
  cursor: pointer;
}

.product-thumb img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
}

.product-thumb-active {
  border-color: rgba(143, 196, 252, 0.75);
  box-shadow: 0 0 0 1px rgba(143, 196, 252, 0.2);
}

.product-summary-card {
  padding: 1rem;
  display: grid;
  gap: 0.95rem;
}

.product-summary-top {
  display: grid;
  gap: 0.7rem;
}

.product-chip,
.product-collection-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-chip {
  margin: 0;
  color: #d8f2ff;
  background: rgba(42, 145, 240, 0.28);
  border: 1px solid rgba(123, 178, 239, 0.45);
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: #b8d9f9;
  font-weight: 700;
}

.product-stars,
.product-review-stars {
  color: #7fcbff;
  letter-spacing: 0.08em;
}

.product-short-copy,
.product-long-copy {
  margin: 0;
  color: var(--ink-700);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.product-price-large {
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1;
}

.product-collection-tag {
  color: #d7ffe8;
  background: rgba(27, 122, 74, 0.36);
  border: 1px solid rgba(104, 206, 150, 0.55);
}

.product-highlight-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--ink-700);
}

.product-customization-card {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(123, 178, 239, 0.24);
  background: rgba(6, 23, 46, 0.7);
}

.product-customization-card h3,
.product-option-copy,
.product-option-note,
.product-purchase-status {
  margin: 0;
}

.product-option-copy,
.product-option-note {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.product-option-field {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.product-option-input {
  width: 100%;
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.product-purchase-row,
.product-empty-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: end;
}

.product-qty-field {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.product-qty-input {
  width: 92px;
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.product-back-link {
  width: fit-content;
}

.product-purchase-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: #9cc9f0;
}

.product-purchase-status-error {
  color: #ffd0c3;
}

.product-purchase-status-success {
  color: #d7ffe8;
}

.product-content-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-panel {
  padding: 1rem;
}

.product-spec-list,
.product-review-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.product-spec-row,
.product-review-card {
  border: 1px solid rgba(123, 178, 239, 0.24);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(6, 23, 46, 0.7);
}

.product-spec-row {
  display: grid;
  gap: 0.25rem;
}

.product-spec-label {
  color: #9cc9f0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.product-spec-value {
  font-size: 1rem;
}

.product-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.45rem;
}

.product-review-card p {
  margin: 0;
  color: var(--ink-700);
}

.product-review-author {
  display: inline-block;
  margin-top: 0.65rem;
  color: #bcdcff;
  font-weight: 700;
}

.related-products-panel {
  margin-top: 1rem;
}

.cart-product-link {
  color: var(--ink-900);
  font-weight: 700;
}

.cart-item-options {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: var(--ink-700);
}

.cart-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.5fr 0.8fr;
}

.cart-table-wrap,
.cart-summary,
.empty-state,
.contact-card,
.contact-form {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-table-wrap {
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 0.8rem;
  border-bottom: 1px solid rgba(123, 178, 239, 0.2);
  text-align: left;
}

.cart-table th {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid rgba(123, 178, 239, 0.3);
  background: rgba(12, 43, 78, 0.82);
  color: var(--ink-900);
  font-weight: 700;
  cursor: pointer;
}

.remove-link {
  border: 0;
  background: transparent;
  color: #ffae94;
  font-weight: 700;
  cursor: pointer;
}

.cart-summary {
  padding: 1rem;
  height: fit-content;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.summary-total {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(123, 178, 239, 0.24);
  font-weight: 800;
}

.summary-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.value-card:hover,
.product-card:hover,
.cart-summary:hover,
.contact-card:hover,
.contact-form:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 196, 252, 0.46);
  box-shadow: 0 14px 28px rgba(2, 8, 22, 0.52);
}

.summary-actions .btn[disabled] {
  opacity: 0.75;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.checkout-notice {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
}

.checkout-notice-success {
  border-color: #4e9a76;
  background: rgba(18, 82, 52, 0.45);
  color: #b8f0cd;
}

.checkout-notice-info {
  border-color: #5f95c6;
  background: rgba(20, 69, 112, 0.45);
  color: #b9ddff;
}

.checkout-notice-error {
  border-color: #c67c69;
  background: rgba(108, 38, 27, 0.45);
  color: #ffd0c3;
}

.daily-date {
  margin: 0.1rem 0 1rem;
  color: #a3c8ec;
  font-weight: 700;
}

.news-drop-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.news-drop-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(123, 178, 239, 0.3);
}

.news-drop-content h3 {
  margin-bottom: 0.45rem;
}

.drop-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.drop-toolbar label {
  font-weight: 700;
  font-size: 0.9rem;
}

.drop-toolbar input {
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.news-drop-view {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.news-drop-view-posted {
  border-color: rgba(104, 206, 150, 0.62);
}

.news-drop-main-image {
  display: block;
  width: 100%;
  height: clamp(260px, 58vh, 620px);
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 18% 14%, rgba(78, 166, 255, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5, 18, 38, 0.98) 0%, rgba(4, 14, 31, 0.98) 100%);
  padding: 0.45rem;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(123, 178, 239, 0.26);
}

.news-drop-view-body {
  padding: 1rem;
}

.news-drop-view-body h2 {
  margin-bottom: 0.5rem;
}

.news-drop-release-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(123, 178, 239, 0.26);
  background: linear-gradient(180deg, rgba(7, 24, 46, 0.92) 0%, rgba(9, 31, 58, 0.98) 100%);
}

.news-drop-release-card h3 {
  margin-bottom: 0.4rem;
}

.news-drop-release-meta {
  display: grid;
  gap: 0.3rem;
  margin: 0.85rem 0 1rem;
}

.news-drop-release-meta p {
  margin: 0;
}

.news-drop-release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.calendar-toolbar {
  display: inline-grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.calendar-toolbar label {
  font-weight: 700;
  font-size: 0.9rem;
}

.calendar-toolbar input {
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.content-calendar-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calendar-day-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: 14px;
  padding: 0.85rem;
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.calendar-day-card-posted {
  border-color: rgba(104, 206, 150, 0.62);
}

.calendar-day-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.calendar-day-number {
  margin: 0 0 0.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  font-weight: 800;
}

.calendar-day-date {
  margin: 0 0 0.45rem;
  color: #b8d9f9;
  font-weight: 700;
}

.calendar-day-badge {
  margin: 0 0 0.2rem;
  display: inline-flex;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #d7ffe8;
  background: rgba(27, 122, 74, 0.42);
  border: 1px solid rgba(104, 206, 150, 0.55);
}

.calendar-day-image {
  width: 100%;
  max-height: 210px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(123, 178, 239, 0.3);
  margin: 0.1rem 0 0.55rem;
}

.daily-brief-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.daily-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.daily-card h3 {
  margin-bottom: 0.55rem;
}

.daily-card-title {
  margin: 0 0 0.5rem;
  font-weight: 800;
  color: #d5eaff;
}

.daily-ecg-image {
  width: 100%;
  max-height: 230px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(123, 178, 239, 0.3);
  margin-bottom: 0.6rem;
}

.admin-panel {
  margin-top: 1rem;
  border: 1px solid rgba(123, 178, 239, 0.26);
  border-radius: 14px;
  background: rgba(7, 27, 52, 0.65);
  padding: 0.8rem 0.9rem;
}

.admin-panel summary {
  cursor: pointer;
  font-weight: 800;
  color: #c4e0ff;
}

.admin-auth,
.admin-form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.admin-grid {
  display: grid;
  gap: 0.7rem;
}

.admin-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-auth input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.admin-auth label,
.admin-form label {
  font-weight: 700;
  font-size: 0.9rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.upload-shell {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.upload-shell h2 {
  margin-bottom: 0.35rem;
}

.upload-note {
  margin: 0 0 0.7rem;
  color: var(--ink-700);
}

.upload-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.upload-mode {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.35rem;
  max-width: 320px;
}

.upload-mode label {
  font-weight: 700;
  font-size: 0.9rem;
}

.upload-mode select {
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.upload-section {
  margin-top: 0.8rem;
  border: 1px solid rgba(123, 178, 239, 0.24);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(6, 23, 46, 0.7);
}

.upload-section h3 {
  margin-bottom: 0.55rem;
}

.admin-mode-badge {
  margin: 0.2rem 0 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.admin-panel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.admin-tab {
  border: 1px solid rgba(123, 178, 239, 0.22);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(7, 27, 52, 0.72);
  color: var(--ink-800);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.admin-tab:hover,
.admin-tab.active {
  background: rgba(16, 74, 134, 0.32);
  border-color: rgba(123, 178, 239, 0.42);
  color: var(--ink-900);
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.admin-section-head h3,
.admin-section-head h4 {
  margin-bottom: 0.2rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}

.admin-insights-grid,
.admin-mini-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.admin-stat-card,
.admin-card {
  border: 1px solid rgba(123, 178, 239, 0.2);
  border-radius: 14px;
  background: rgba(7, 27, 52, 0.72);
  padding: 0.9rem;
}

.admin-insight-card,
.admin-mini-stat-card {
  border: 1px solid rgba(123, 178, 239, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.84) 0%, rgba(6, 22, 43, 0.96) 100%);
  padding: 0.85rem 0.9rem;
}

.admin-stat-value {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #f5fbff;
}

.admin-stat-label {
  margin: 0.35rem 0 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.admin-insight-value,
.admin-mini-stat-value {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.05;
  color: #f5fbff;
}

.admin-insight-label,
.admin-mini-stat-label {
  margin: 0.35rem 0 0;
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-insight-meta {
  margin: 0.4rem 0 0;
  color: var(--ink-600);
  font-size: 0.84rem;
}

.admin-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 0.9rem 0;
}

.admin-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(123, 178, 239, 0.16);
  border-radius: 12px;
  background: rgba(4, 18, 37, 0.64);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.admin-table th,
.admin-table td {
  padding: 0.78rem 0.85rem;
  border-bottom: 1px solid rgba(123, 178, 239, 0.14);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: #f0f7ff;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-table td {
  color: var(--ink-800);
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-empty-state {
  border: 1px dashed rgba(123, 178, 239, 0.2);
  border-radius: 12px;
  padding: 1rem;
  color: var(--ink-700);
  background: rgba(7, 27, 52, 0.42);
}

.admin-inline-note {
  margin-bottom: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(123, 178, 239, 0.18);
  background: rgba(12, 47, 87, 0.42);
  color: var(--ink-700);
}

.admin-row-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.admin-activity-list,
.admin-player-list {
  display: grid;
  gap: 0.7rem;
}

.admin-activity-row,
.admin-player-row {
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(123, 178, 239, 0.12);
  background: rgba(6, 22, 43, 0.56);
}

.admin-activity-top,
.admin-activity-meta,
.admin-player-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.admin-activity-date,
.admin-player-name {
  font-weight: 800;
  color: #f4fbff;
}

.admin-activity-meta,
.admin-player-meta {
  color: var(--ink-700);
  font-size: 0.88rem;
}

.admin-activity-track {
  width: 100%;
  height: 0.58rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: rgba(123, 178, 239, 0.12);
  overflow: hidden;
}

.admin-activity-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(82, 195, 255, 0.92) 0%, rgba(126, 147, 255, 0.92) 100%);
}

.admin-player-rank {
  min-width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16, 74, 134, 0.4);
  border: 1px solid rgba(123, 178, 239, 0.18);
  color: #f4fbff;
  font-weight: 800;
}

.admin-player-main {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn-small {
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
}

.account-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.account-card {
  border: 1px solid rgba(123, 178, 239, 0.26);
  border-radius: 22px;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(9, 31, 59, 0.96), rgba(7, 22, 44, 0.92)),
    radial-gradient(circle at top right, rgba(71, 149, 236, 0.18), transparent 38%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.account-card-wide {
  grid-column: 1 / -1;
}

.account-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.account-form {
  display: grid;
  gap: 0.75rem;
}

.account-form input {
  width: 100%;
  border: 1px solid rgba(123, 178, 239, 0.34);
  border-radius: 14px;
  padding: 0.78rem 0.95rem;
  background: rgba(8, 29, 55, 0.78);
  color: var(--ink-900);
  font: inherit;
}

.account-form input::placeholder {
  color: #95b9df;
}

.account-form label,
.account-pill-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #9ecaf2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-empty-state {
  border: 1px dashed rgba(123, 178, 239, 0.22);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(10, 32, 59, 0.44);
}

.account-empty-state h3 {
  margin-bottom: 0.35rem;
}

.account-empty-state p {
  margin: 0;
  color: var(--ink-700);
}

.account-summary {
  display: grid;
  gap: 1rem;
}

.account-pill-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.account-pill {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(123, 178, 239, 0.2);
  background: rgba(8, 28, 53, 0.58);
}

.account-pill strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.quiz-shell {
  display: grid;
  gap: 0.9rem;
}

.rapid-toolbar {
  display: inline-grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.quiz-mode-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.quiz-mode-btn {
  border: 1px solid rgba(123, 178, 239, 0.32);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  background: rgba(8, 29, 55, 0.74);
  color: var(--ink-900);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.quiz-mode-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 196, 252, 0.6);
}

.quiz-mode-btn-active {
  border-color: rgba(143, 196, 252, 0.72);
  background: rgba(37, 97, 167, 0.78);
}

.rapid-toolbar label {
  font-weight: 700;
  font-size: 0.88rem;
}

.quiz-date-control {
  display: grid;
  gap: 0.35rem;
}

.rapid-toolbar input {
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.rapid-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 1rem;
}

.rapid-main,
.rapid-side {
  display: grid;
  gap: 0.8rem;
}

.rapid-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.rapid-kicker {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #97ceff;
}

.rapid-rules {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: var(--ink-700);
}

.rapid-rules li + li {
  margin-top: 0.3rem;
}

.rapid-play-btn {
  margin-top: 1rem;
}

.rapid-status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(95, 149, 198, 0.6);
  border-radius: 12px;
  background: rgba(20, 69, 112, 0.45);
  color: #b9ddff;
  font-weight: 700;
}

.rapid-status-error {
  border-color: rgba(198, 124, 105, 0.62);
  background: rgba(108, 38, 27, 0.45);
  color: #ffd0c3;
}

.rapid-question-shell {
  transition: transform 0.15s ease;
}

.rapid-question-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.rapid-progress {
  margin: 0;
  color: #9ac6ee;
  font-weight: 700;
  font-size: 0.86rem;
}

.rapid-timer-wrap {
  position: relative;
  width: 66px;
  height: 66px;
}

.rapid-timer-ring {
  --rapid-progress: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #4ec7ff calc(max(0, min(1, var(--rapid-progress))) * 360deg),
    rgba(123, 178, 239, 0.22) 0deg
  );
  position: relative;
}

.rapid-timer-ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(6, 23, 46, 0.96);
  border: 1px solid rgba(123, 178, 239, 0.3);
}

.rapid-timer-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  z-index: 1;
}

.rapid-options {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.rapid-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
  text-align: left;
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(123, 178, 239, 0.3);
  background: rgba(8, 29, 55, 0.8);
  color: var(--ink-900);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.rapid-option:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 196, 252, 0.65);
}

.rapid-option-letter {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(123, 178, 239, 0.22);
  font-weight: 800;
}

.rapid-option-correct {
  border-color: rgba(90, 185, 132, 0.7);
  background: rgba(15, 94, 61, 0.5);
}

.rapid-option-wrong {
  border-color: rgba(198, 124, 105, 0.72);
  background: rgba(108, 38, 27, 0.5);
}

.rapid-question-correct {
  animation: rapidPulse 0.26s ease;
}

.rapid-question-wrong {
  animation: rapidShake 0.26s ease;
}

.rapid-question-timeout {
  animation: rapidFlash 0.26s ease;
}

.rapid-rank-grid {
  margin: 0.8rem 0 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.rapid-rank-grid div {
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.55rem 0.6rem;
  background: rgba(8, 29, 55, 0.72);
}

.rapid-rank-grid span {
  display: block;
  color: #9ac6ee;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rapid-rank-grid strong {
  font-size: 1.05rem;
}

.rapid-submit-form {
  display: grid;
  gap: 0.45rem;
}

.rapid-submit-form input {
  width: 100%;
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.rapid-submit-note {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.88rem;
}

.rapid-turnstile-slot {
  margin-top: 0.25rem;
}

.rapid-submit-actions {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.treatment-pack-groups {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.treatment-pack-group {
  display: grid;
  gap: 0.7rem;
}

.treatment-pack-group-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.45rem 0.9rem;
  flex-wrap: wrap;
}

.treatment-pack-group-head h3 {
  margin: 0;
  color: #f4fbff;
  font-size: 1rem;
}

.treatment-pack-group-head p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.treatment-pack-grid {
  display: grid;
  gap: 0.65rem;
}

.treatment-pack-btn {
  display: grid;
  gap: 0.2rem;
  text-align: left;
  border: 1px solid rgba(123, 178, 239, 0.24);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  background: rgba(7, 27, 52, 0.66);
  color: var(--ink-900);
  font: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.treatment-pack-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 196, 252, 0.54);
  background: rgba(11, 43, 80, 0.82);
}

.treatment-pack-btn-active {
  border-color: rgba(143, 196, 252, 0.72);
  background: rgba(21, 79, 141, 0.56);
}

.treatment-pack-title {
  font-weight: 800;
  color: #f4fbff;
}

.treatment-pack-meta {
  font-size: 0.86rem;
  color: var(--ink-700);
}

.treatment-pack-access {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ecaf2;
}

.treatment-pack-btn-locked {
  border-color: rgba(198, 124, 105, 0.45);
  background: rgba(63, 22, 17, 0.48);
}

.treatment-pack-btn-locked .treatment-pack-access {
  color: #ffd0c3;
}

.rapid-review-list {
  display: grid;
  gap: 0.75rem;
}

.rapid-review-item {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: 12px;
  padding: 0.9rem;
}

.rapid-review-correct {
  border-color: rgba(90, 185, 132, 0.58);
}

.rapid-review-wrong {
  border-color: rgba(198, 124, 105, 0.58);
}

.rapid-board-card {
  height: fit-content;
}

.rapid-board-head {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.rapid-board-head p {
  margin: 0;
  color: #9ac6ee;
  font-weight: 700;
  font-size: 0.88rem;
}

.rapid-board-source {
  margin: 0.45rem 0 0;
  display: inline-flex;
  width: fit-content;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  border: 1px solid rgba(123, 178, 239, 0.45);
  color: #d8f2ff;
  background: rgba(42, 145, 240, 0.22);
}

.rapid-board-source-global {
  border-color: rgba(104, 206, 150, 0.55);
  background: rgba(27, 122, 74, 0.36);
  color: #d7ffe8;
}

.rapid-board-source-local {
  border-color: rgba(232, 200, 120, 0.55);
  background: rgba(111, 84, 22, 0.35);
  color: #fff0c7;
}

.rapid-board-source-unavailable {
  border-color: rgba(198, 124, 105, 0.55);
  background: rgba(108, 38, 27, 0.35);
  color: #ffd0c3;
}

.rapid-board-health {
  margin: 0.45rem 0 0;
  color: #9ac6ee;
  font-size: 0.82rem;
}

.rapid-board-tabs {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.rapid-board-tabs-scope {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rapid-board-tab {
  border: 1px solid rgba(123, 178, 239, 0.32);
  border-radius: 9px;
  padding: 0.45rem 0.5rem;
  background: rgba(8, 29, 55, 0.72);
  color: var(--ink-900);
  font-weight: 700;
  cursor: pointer;
}

.rapid-board-tab-active {
  border-color: rgba(143, 196, 252, 0.7);
  background: rgba(37, 97, 167, 0.72);
}

.rapid-board-wrap {
  margin-top: 0.7rem;
  overflow-x: auto;
}

.rapid-board-table {
  width: 100%;
  border-collapse: collapse;
}

.rapid-board-table th,
.rapid-board-table td {
  padding: 0.45rem 0.35rem;
  text-align: left;
  border-bottom: 1px solid rgba(123, 178, 239, 0.2);
  white-space: nowrap;
}

.rapid-board-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-700);
}

@keyframes rapidPulse {
  0% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rapidShake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes rapidFlash {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(1);
  }
}

.quiz-review-list {
  display: grid;
  gap: 0.75rem;
}

.quiz-review-item {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: 12px;
  padding: 0.9rem;
}

.practice-summary-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.practice-summary-grid div {
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.55rem 0.6rem;
  background: rgba(8, 29, 55, 0.72);
}

.practice-summary-grid span {
  display: block;
  color: #9ac6ee;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.practice-summary-grid strong {
  font-size: 1.05rem;
}

.quiz-correct {
  border-color: rgba(90, 185, 132, 0.58);
}

.quiz-incorrect {
  border-color: rgba(198, 124, 105, 0.58);
}

.quiz-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.quiz-editor-head h3 {
  font-size: 1rem;
}

.quiz-editor-list {
  display: grid;
  gap: 0.8rem;
}

.quiz-editor-question {
  border: 1px solid rgba(123, 178, 239, 0.24);
  border-radius: 12px;
  padding: 0.8rem;
  display: grid;
  gap: 0.5rem;
  background: rgba(6, 23, 46, 0.7);
}

.quiz-editor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.quiz-editor-row h4 {
  font-size: 0.95rem;
}

.quiz-editor-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.empty-state {
  padding: 1.3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-card {
  padding: 1rem;
}

.contact-form {
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #95b9df;
}

.contact-form label {
  margin-top: 0.3rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.25rem 0 0;
  color: #89c8ff;
  font-weight: 700;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.account-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.account-card-wide {
  grid-column: 1 / -1;
}

.account-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.account-form {
  display: grid;
  gap: 0.45rem;
}

.account-form input {
  width: 100%;
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.account-form label {
  margin-top: 0.2rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.account-form input::placeholder {
  color: #95b9df;
}

.account-empty-state {
  border: 1px dashed rgba(123, 178, 239, 0.2);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(7, 27, 52, 0.42);
}

.account-empty-state p {
  margin: 0.45rem 0 0;
  color: var(--ink-700);
}

.account-summary {
  display: grid;
  gap: 0.9rem;
}

.account-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.account-pill {
  border: 1px solid rgba(123, 178, 239, 0.2);
  border-radius: 14px;
  background: rgba(7, 27, 52, 0.72);
  padding: 0.85rem;
}

.account-pill-label {
  display: block;
  margin-bottom: 0.3rem;
  color: #9cc9f0;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.search-shell {
  display: grid;
  gap: 0.95rem;
}

.search-summary-card,
.search-result-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.search-summary-card {
  padding: 0.95rem 1rem;
}

.search-summary {
  margin: 0;
  color: var(--ink-700);
}

.search-results-list {
  display: grid;
  gap: 0.8rem;
}

.search-result-card {
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.45rem;
}

.search-result-meta {
  margin: 0;
  color: #9cc9f0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.search-result-title {
  margin: 0;
  font-size: 1.1rem;
}

.search-result-title a {
  color: var(--ink-900);
}

.search-result-title a:hover {
  color: #bde3ff;
}

.search-result-snippet {
  margin: 0;
  color: var(--ink-700);
}

.search-result-snippet mark,
.search-summary mark {
  background: rgba(63, 157, 255, 0.3);
  color: #dff1ff;
  border-radius: 4px;
  padding: 0.04em 0.18em;
}

.archives-shell {
  display: grid;
  gap: 1.5rem;
}

.archives-callout-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.archives-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.archives-stat-card,
.archives-series-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
}

.archives-stat-card {
  padding: 1rem;
}

.archives-stat-label,
.archives-results-count {
  margin: 0;
  color: #9cc9f0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.archives-stat-value {
  margin: 0.45rem 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
}

.archives-stat-value-sm {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.archives-series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.archives-series-meta,
.archives-release-meta {
  display: flex;
  gap: 0.6rem 1rem;
  flex-wrap: wrap;
}

.archives-series-meta p,
.archives-release-meta p {
  margin: 0;
  color: var(--ink-700);
}

.archives-series-link {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--teal-700);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.archives-series-link:hover {
  color: var(--teal-500);
}

.archives-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.archives-filter-group {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.archives-filter-chip {
  border: 1px solid rgba(123, 178, 239, 0.32);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  background: rgba(8, 29, 55, 0.74);
  color: var(--ink-900);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.archives-filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 196, 252, 0.6);
}

.archives-filter-chip-active {
  border-color: rgba(143, 196, 252, 0.72);
  background: rgba(37, 97, 167, 0.78);
}

.archives-search-field {
  display: grid;
  gap: 0.35rem;
  min-width: min(340px, 100%);
  flex: 1 1 320px;
}

.archives-search-field label {
  font-weight: 700;
  font-size: 0.84rem;
  color: #9ecaf2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.archives-search-field input {
  width: 100%;
  border: 1px solid rgba(123, 178, 239, 0.28);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  background: rgba(8, 29, 55, 0.82);
  color: var(--ink-900);
  font: inherit;
}

.archives-results-section {
  display: grid;
  gap: 1rem;
}

.archives-results-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.archives-release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.archives-release-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.archives-release-date {
  margin: 0;
  color: #9ecaf2;
  font-weight: 700;
}

.archives-empty h2,
.archives-empty h3 {
  margin-bottom: 0.4rem;
}

.archives-empty p {
  margin: 0;
  color: var(--ink-700);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-card {
  background: linear-gradient(180deg, rgba(8, 29, 55, 0.86) 0%, rgba(9, 34, 64, 0.96) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 11px 24px rgba(2, 8, 22, 0.45);
  display: grid;
  gap: 0.6rem;
}

.legal-card p {
  margin: 0;
  color: var(--ink-700);
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(123, 178, 239, 0.22);
  background: linear-gradient(180deg, rgba(6, 21, 41, 0.18) 0%, rgba(6, 21, 41, 0.45) 100%);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #9ec0e4;
  font-size: 0.92rem;
}

.footer-legal {
  margin: 0;
  align-self: center;
}

.footer-legal-link {
  font-size: 0.8rem;
  color: #88bff0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-link:hover {
  color: #b8ddff;
}

body[data-page="home"] .hero {
  padding: 5.2rem 0 3.4rem;
}

body[data-page="home"] .hero-grid {
  gap: 2.35rem;
}

body[data-page="home"] .section {
  padding: 2.4rem 0 3.7rem;
}

body[data-page="home"] .section-head {
  margin-bottom: 1.25rem;
}

body[data-page="home"] .info-callout {
  padding: 1.2rem 1.25rem;
}

body[data-page="home"] .news-drop-teaser {
  gap: 1.25rem;
  padding: 1.2rem;
}

body[data-page="home"] .value-grid {
  margin-top: 1.35rem;
  gap: 1.15rem;
}

body[data-page="home"] .product-grid {
  gap: 1.15rem;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #7fc4ff;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .site-nav a {
    padding: 0.4rem 0.62rem;
    font-size: 0.82rem;
  }

  .daily-brief-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-calendar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-layout,
  .product-content-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .documents-grid {
    grid-template-columns: 1fr;
  }

  .documents-priority-grid {
    grid-template-columns: 1fr;
  }

  .archives-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archives-series-grid,
  .archives-release-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .admin-two-column {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: stretch;
  }

  .account-grid,
  .account-pill-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-search-form {
    grid-template-columns: 1fr auto;
  }

  .site-search-label {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2 / 3;
    justify-self: end;
  }

  .nav-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 0.4rem 0.75rem;
    min-height: 74px;
    padding: 0.5rem 0;
  }

  .brand {
    grid-column: 1 / 2;
    justify-self: start;
    justify-content: flex-start;
  }

  .site-nav {
    position: absolute;
    right: 0;
    top: calc(100% - 0.1rem);
    width: min(300px, 90vw);
    padding: 0.55rem;
    border-radius: 12px;
    background: rgba(7, 27, 52, 0.95);
    border: 1px solid rgba(123, 178, 239, 0.28);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .site-header.site-header-scroll-hidden {
    transform: translateY(-2.6rem);
  }

  .hero-grid,
  .news-drop-teaser,
  .daily-brief-grid,
  .content-calendar-grid,
  .cart-layout,
  .contact-layout,
  .rapid-layout {
    grid-template-columns: 1fr;
  }

  .admin-grid-2,
  .admin-grid-3,
  .quiz-editor-options,
  .account-grid,
  .account-pill-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-main-media img {
    height: clamp(260px, 48vh, 420px);
  }

  .footer-wrap {
    flex-direction: column;
  }

  .account-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .archives-toolbar,
  .archives-results-head {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

@media (max-width: 560px) {
  .quiz-mode-switch {
    grid-template-columns: 1fr;
  }

  .site-search-form {
    grid-template-columns: 1fr;
  }

  .site-search-btn {
    width: 100%;
  }

  .brand-logo {
    width: 74px;
    height: 74px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .product-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .card-meta,
  .product-price-row,
  .product-purchase-row,
  .product-review-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-actions {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .rapid-rank-grid {
    grid-template-columns: 1fr;
  }

  .practice-summary-grid {
    grid-template-columns: 1fr;
  }

  .rapid-submit-actions {
    flex-direction: column;
  }

  .archives-stat-grid {
    grid-template-columns: 1fr;
  }

  .archives-filter-group {
    width: 100%;
  }

  .archives-filter-chip {
    width: 100%;
    justify-content: center;
  }
}
