/* ==========================================================================
   Wexorinia — design tokens
   ========================================================================== */

:root {
  --bg: #12141A;
  --surface: #1B1E27;
  --surface-raised: #21242F;
  --line: #33384A;
  --line-soft: #262A38;
  --text: #EDEFF4;
  --text-muted: #9CA1B3;
  --text-faint: #6A6F82;
  --accent: #7C90FF;
  --accent-dim: #4E5CB8;
  --gold: #E7B65C;
  --wire: #C9CDD8;
  --danger: #E5766B;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1120px;
  --radius: 2px;
  --edge: 1px solid var(--line);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-muted); max-width: 62ch; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.wire-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  margin: 0;
  position: relative;
}

.wire-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
  background: var(--bg);
}

/* ==========================================================================
   Header / nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 20, 26, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: var(--edge);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
}

.brand-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.brand-mark polygon, .brand-mark polyline, .brand-mark line {
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.4;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--text); }

.nav-cta {
  border: 1px solid var(--accent);
  color: var(--text) !important;
  padding: 8px 16px;
  font-size: 0.88rem !important;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg { width: 18px; height: 18px; stroke: var(--text); }

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 22px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    border-top: var(--edge);
  }
  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a { font-size: 1.05rem; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0D0E13;
}
.btn-primary:hover { background: #93A4FF; }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-block { width: 100%; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 96px 0 84px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 14px;
  font-family: var(--font-display);
}

.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  max-width: 14ch;
}

.hero p.lede {
  font-size: 1.1rem;
  max-width: 46ch;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: var(--edge);
}

.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
}
.hero-stat span {
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* Isometric wireframe cube — pure SVG animation, the hero's one bold move */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
}

.iso-scene { width: 100%; height: 100%; overflow: visible; }

.iso-scene .edge {
  fill: none;
  stroke: var(--wire);
  stroke-width: 1;
  opacity: 0.55;
}

.iso-scene .edge-accent {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
}

.iso-scene .face {
  fill: var(--surface-raised);
  stroke: var(--line);
  stroke-width: 1;
}

.iso-scene .node {
  fill: var(--bg);
  stroke: var(--accent);
  stroke-width: 1.2;
}

.iso-rotate {
  transform-origin: 200px 210px;
  animation: iso-spin 22s linear infinite;
}

@keyframes iso-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .iso-rotate { animation: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 340px; margin: 0 auto; order: -1; }
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }

.section-head {
  max-width: 56ch;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-alt { background: var(--surface); }

/* ==========================================================================
   About / mission
   ========================================================================== */

.mission {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 56px;
  align-items: start;
}

.mission-mark { padding-top: 6px; }
.mission-mark svg { width: 64px; height: 64px; }
.mission-mark path, .mission-mark line, .mission-mark polygon { stroke: var(--accent); fill: none; stroke-width: 1.3; }

@media (max-width: 780px) {
  .mission { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   Product grid & cards
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: var(--edge);
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--surface);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.15s ease;
}

.product-card:hover { background: var(--surface-raised); }

.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.product-card:hover::before { width: 100%; }

.product-index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-card .tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: var(--edge);
}

.price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
}
.price.is-free { color: var(--accent); }

.product-card .card-link {
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.product-card:hover .card-link {
  border-color: var(--accent);
  color: var(--accent);
}

/* ==========================================================================
   Feature / benefits list
   ========================================================================== */

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

@media (max-width: 900px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits { grid-template-columns: 1fr; } }

.benefit svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.3;
  margin-bottom: 16px;
}

.benefit h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.benefit p { font-size: 0.92rem; }

/* ==========================================================================
   Free CTA band
   ========================================================================== */

.cta-band {
  border: var(--edge);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background:
    repeating-linear-gradient(135deg, transparent, transparent 22px, var(--line-soft) 22px, var(--line-soft) 23px),
    var(--surface);
}

.cta-band h2 { font-size: 1.6rem; margin-bottom: 8px; }
.cta-band p { margin: 0; }

@media (max-width: 700px) {
  .cta-band { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { border-top: var(--edge); max-width: 74ch; }

.faq-item { border-bottom: var(--edge); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.02rem;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.faq-q .plus {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--accent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .plus::before { width: 14px; height: 1.4px; }
.faq-q .plus::after { width: 1.4px; height: 14px; transition: transform 0.2s ease; }
.faq-item[open] .plus::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }

.faq-a {
  padding: 0 0 20px;
  margin: 0;
  color: var(--text-muted);
  max-width: 68ch;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: var(--edge);
  padding: 56px 0 32px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-contact-email {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
  margin: 4px 0 16px;
  padding-bottom: 2px;
}
.footer-contact-email:hover { color: var(--text); border-color: var(--text); }

.footer-col h4 {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; color: var(--text-muted); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-brand p { font-size: 0.9rem; max-width: 34ch; }

.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: var(--edge);
  transition: border-color 0.15s ease;
}
.social-row a:hover { border-color: var(--accent); }
.social-row svg { width: 15px; height: 15px; stroke: var(--text-muted); fill: none; }
.social-row a:hover svg { stroke: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: var(--edge);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-faint); margin: 0; }

/* ==========================================================================
   Generic page header (about/contact/legal/product)
   ========================================================================== */

.page-hero {
  padding: 64px 0 48px;
  border-bottom: var(--edge);
}

.page-hero .kicker {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ==========================================================================
   Product detail page
   ========================================================================== */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
}

.pd-block { margin-bottom: 48px; }
.pd-block h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: var(--edge);
}

.module-list { list-style: none; margin: 0; padding: 0; }
.module-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: var(--edge);
}
.module-item:first-child { border-top: var(--edge); }
.module-num {
  font-family: var(--font-display);
  color: var(--text-faint);
  font-size: 0.9rem;
}
.module-item h3 { font-size: 1rem; margin-bottom: 4px; }
.module-item p { font-size: 0.92rem; margin: 0; }

.learn-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.learn-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--text-muted);
}
.learn-list li svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; stroke: var(--accent); fill: none; stroke-width: 1.6; }

.guarantee-box, .cert-box {
  border: var(--edge);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.guarantee-box svg, .cert-box svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.3; flex-shrink: 0; }
.guarantee-box h3, .cert-box h3 { font-size: 0.98rem; margin-bottom: 4px; }
.guarantee-box p, .cert-box p { font-size: 0.9rem; margin: 0; }

/* Buy panel */
.buy-panel {
  border: var(--edge);
  padding: 28px;
  position: sticky;
  top: 92px;
  background: var(--surface);
}
.buy-panel .for-line {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: var(--edge);
}
.buy-panel .price {
  font-size: 2.1rem;
  display: block;
  margin-bottom: 4px;
}
.buy-panel .format-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.buy-panel .meta-row {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-top: 14px;
}
.buy-panel .meta-row svg { width: 15px; height: 15px; stroke: var(--text-faint); fill: none; stroke-width: 1.4; }

/* ==========================================================================
   Loading page
   ========================================================================== */

.loading-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  padding: 24px;
}

.spinner-cube { width: 72px; height: 72px; }
.spinner-cube .edge { stroke: var(--accent); fill: none; stroke-width: 1.5; }
.spin-loop { transform-origin: 50px 52px; animation: iso-spin 3.2s linear infinite; }

.loading-wrap h1 { font-size: 1.4rem; margin-bottom: 6px; }
.loading-wrap p { color: var(--text-muted); }

.loading-fallback {
  display: none;
  border: var(--edge);
  padding: 24px 28px;
  max-width: 420px;
}
.loading-fallback.show { display: block; }
.loading-fallback h2 { font-size: 1.05rem; margin-bottom: 8px; }
.loading-fallback p { font-size: 0.92rem; margin-bottom: 18px; }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-body { max-width: 74ch; }
.legal-body h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  padding-top: 24px;
  border-top: var(--edge);
}
.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body p, .legal-body li { color: var(--text-muted); font-size: 0.96rem; }
.legal-body ul { padding-left: 20px; }
.legal-body .updated { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 32px; }

/* ==========================================================================
   Contact / about extras
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--surface);
  border: var(--edge);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 130px; }

.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: var(--edge);
}
.contact-info-item:first-child { border-top: var(--edge); }
.contact-info-item svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.4; margin-top: 2px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.92rem; margin-bottom: 3px; }
.contact-info-item p { font-size: 0.88rem; margin: 0; }

.form-note {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 4px;
}

/* Values grid on About */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}
@media (max-width: 780px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.92rem; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ==========================================================================
   Who we are block
   ========================================================================== */

.who-we-are {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.who-we-are .who-copy p { font-size: 1rem; }

.who-visual {
  border: var(--edge);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, transparent, transparent 22px, var(--line-soft) 22px, var(--line-soft) 23px),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-visual svg { width: 58%; height: 58%; }
.who-visual .w-shape { stroke: var(--accent); fill: none; stroke-width: 1.2; }
.who-visual .w-shape-fill { fill: var(--surface-raised); stroke: var(--line); stroke-width: 1; }
.who-visual .w-node { fill: var(--gold); }

@media (max-width: 860px) {
  .who-we-are { grid-template-columns: 1fr; }
  .who-visual { order: -1; max-width: 420px; margin: 0 auto; }
}

/* ==========================================================================
   Collection / pricing tiers block
   ========================================================================== */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: var(--edge);
}

@media (max-width: 1020px) {
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .tier-grid { grid-template-columns: 1fr; }
}

.tier-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.15s ease;
}
.tier-card:hover { background: var(--surface-raised); }

.tier-card.is-featured {
  background: var(--surface-raised);
}

.tier-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 4px 8px;
  z-index: 2;
}

.tier-cover {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  border-bottom: var(--edge);
  background:
    repeating-linear-gradient(135deg, transparent, transparent 14px, var(--line-soft) 14px, var(--line-soft) 15px),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tier-cover svg { width: 46%; height: 46%; }
.tier-cover .c-shape { stroke: var(--accent); fill: none; stroke-width: 1.3; }
.tier-cover .c-node { fill: var(--bg); stroke: var(--accent); stroke-width: 1.1; }

.tier-cover.hue-1 { background-image: repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(124,144,255,0.08) 14px, rgba(124,144,255,0.08) 15px), radial-gradient(circle at 30% 20%, rgba(124,144,255,0.14), transparent 60%); }
.tier-cover.hue-1 .c-shape { stroke: var(--accent); }
.tier-cover.hue-2 { background-image: repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(231,182,92,0.08) 14px, rgba(231,182,92,0.08) 15px), radial-gradient(circle at 70% 30%, rgba(231,182,92,0.14), transparent 60%); }
.tier-cover.hue-2 .c-shape { stroke: var(--gold); }
.tier-cover.hue-3 { background-image: repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(229,118,107,0.08) 14px, rgba(229,118,107,0.08) 15px), radial-gradient(circle at 40% 70%, rgba(229,118,107,0.14), transparent 60%); }
.tier-cover.hue-3 .c-shape { stroke: var(--danger); }

.tier-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tier-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.tier-body .tagline { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 18px; flex-grow: 1; }

.tier-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.tier-price.is-free { color: var(--accent); }

.tier-body .btn { width: 100%; padding: 11px 18px; font-size: 0.88rem; }

.collection-more {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   Product grid — cover banner (used on catalog + homepage listing)
   ========================================================================== */

.product-cover {
  aspect-ratio: 16 / 9;
  border-bottom: var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, transparent, transparent 14px, var(--line-soft) 14px, var(--line-soft) 15px),
    var(--surface);
  margin: -28px -26px 20px;
}
.product-cover svg { width: 34%; height: 34%; }
.product-cover .c-shape { stroke: var(--accent); fill: none; stroke-width: 1.3; }
.product-cover .c-node { fill: var(--bg); stroke: var(--accent); stroke-width: 1.1; }

/* ==========================================================================
   FAQ page — grouped categories
   ========================================================================== */

.faq-groups { display: grid; gap: 48px; }
.faq-group-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
