/* ============================================================
   Shiraa Global / EpoxyTMT — product detail pages
   Rework v2 — deep steel + brand green, editorial serif headlines,
   riveted-plate stat blocks, rail-style process sequence.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --steel:    #0A1620;
  --steel-2:  #101F2C;
  --steel-3:  #16293A;
  --ink:      #12222E;
  --green:    #00A651;
  --green-2:  #00743A;
  --green-soft: #E4F3EA;
  --rust:     #C2492A;
  --gold:     #B8860B;
  --paper:    #F6F2E9;
  --paper-2:  #EFE8DA;
  --line:     #DED5C3;
  --line-dark: rgba(255,255,255,0.1);
  --gray:     #7C8A93;
  --white:    #FFFFFF;
  --radius:   3px;
}

html { scroll-behavior: smooth; }

/* ── SCROLL REVEAL SYSTEM ── */
.reveal-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-up.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1 !important; transform: none !important; }
}

/* ── SCROLL PROGRESS BAR ── */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--rust), var(--gold) 45%, var(--green));
  z-index: 1001; transition: width 0.1s linear;
}

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed; right: 22px; bottom: 92px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--steel); color: var(--green);
  border: 1px solid rgba(0,166,81,0.35);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s;
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--green); color: var(--white); }

/* ── PAGE LOADER ── */
#pageLoader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--steel);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#pageLoader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Fraunces', serif; font-weight: 600; font-style: italic;
  font-size: 2.1rem; letter-spacing: 0.01em; color: var(--white); margin-bottom: 1.5rem;
}
.loader-logo span { color: var(--green); }
.loader-bar {
  width: 220px; height: 2px; background: rgba(255,255,255,0.12);
  border-radius: 0; overflow: hidden; margin: 0 auto;
}
.loader-bar-fill {
  width: 0%; height: 100%; background: var(--green);
  animation: loaderFill 1.1s ease-in-out infinite;
}
@keyframes loaderFill {
  0%   { width: 0%; margin-left: 0; }
  50%  { width: 70%; }
  100% { width: 0%; margin-left: 100%; }
}
.loader-tag {
  margin-top: 1rem; font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TOP NAV (matches markup used on product pages) ── */
body { padding-top: 64px; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,32,0.96);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  border-bottom: 1px solid rgba(0,166,81,0.2);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800; letter-spacing: 0.05em;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--green); }
nav ul { display: flex; align-items: center; gap: 2rem; list-style: none; }
nav ul a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
nav ul a:hover { color: var(--green); }
nav ul a.back-link { color: var(--green); }
.nav-cart-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--green) !important; border: 1px solid rgba(0,166,81,0.35);
  padding: 0.4rem 0.8rem; border-radius: var(--radius); transition: background 0.2s, color 0.2s;
}
.nav-cart-link:hover { background: var(--green); color: var(--white) !important; }
@media (max-width: 960px) {
  nav ul { display: none; }
}

/* ── SIDE NAV (legacy — kept for JS compatibility, unused in current markup) ── */

#sideNav {
  position: fixed; left: 0; top: 0; bottom: 0; width: 234px; z-index: 200;
  background: var(--steel); border-right: 1px solid rgba(0,166,81,0.15);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 2.3rem 1.8rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  overflow-y: auto;
}
@media (min-width: 961px) { #sideNav { transform: none; } }
#sideNav.open { transform: none; }
.sn-logo {
  font-family: 'Fraunces', serif; font-weight: 600; font-style: italic;
  font-size: 1.45rem; letter-spacing: 0; color: var(--white);
  text-decoration: none; display: block; margin-bottom: 3rem;
}
.sn-logo span { color: var(--green); }
.sn-links { display: flex; flex-direction: column; gap: 1.4rem; }
.sn-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.55); transition: color 0.2s, padding-left 0.2s;
  font-family: 'IBM Plex Mono', monospace;
}
.sn-links a:hover { color: var(--green); padding-left: 4px; }
.sn-links a.sn-cart { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--green); }
.sn-links a.back-link { color: var(--green); }
.sn-bottom {
  display: flex; flex-direction: column; gap: 0.9rem;
  padding-top: 1.8rem; margin-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.sn-contact-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray);
}
.sn-phone { color: var(--white); text-decoration: none; font-size: 0.86rem; font-weight: 500; }
.sn-phone:hover { color: var(--green); }
.sn-enquire {
  background: var(--green); color: var(--white); text-align: center;
  padding: 0.8rem 1rem; border-radius: var(--radius); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  transition: background 0.2s;
}
.sn-enquire:hover { background: var(--green-2); }
.nav-cart-badge {
  background: var(--rust); color: var(--white);
  font-family: 'IBM Plex Mono', monospace; font-size: 0.64rem; font-weight: 600;
  border-radius: 999px; padding: 0.05rem 0.42rem; min-width: 16px; text-align: center;
}
.nav-cart-badge.zero { display: none; }

#sideNavOverlay {
  position: fixed; inset: 0; background: rgba(10,22,32,0.6); z-index: 190;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#sideNavOverlay.open { opacity: 1; pointer-events: auto; }
@media (min-width: 961px) { #sideNavOverlay { display: none; } }

#mobileTopBar {
  position: fixed; top: 0; left: 0; right: 0; height: 58px; z-index: 150;
  background: rgba(10,22,32,0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; padding: 0 1.2rem;
  border-bottom: 1px solid rgba(0,166,81,0.15);
}
@media (min-width: 961px) { #mobileTopBar { display: none; } }
.mtb-logo {
  font-family: 'Fraunces', serif; font-weight: 600; font-style: italic;
  font-size: 1.15rem; color: var(--white); text-decoration: none;
}
.mtb-logo span { color: var(--green); }

.mobile-menu-btn {
  position: fixed; top: 13px; right: 16px; z-index: 210;
  width: 32px; height: 32px; background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
}
@media (min-width: 961px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn span {
  display: block; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* BREADCRUMB */
.breadcrumb {
  max-width: 1200px; margin: 0 auto; padding: 46px 5vw 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.73rem; color: var(--gray); letter-spacing: 0.04em;
}
@media (max-width: 960px) { .breadcrumb { padding-top: 32px; } }
.breadcrumb a { color: var(--green-2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* PRODUCT HERO */
#phero {
  background:
    linear-gradient(120deg, rgba(10,22,32,0.95) 0%, rgba(10,22,32,0.88) 100%),
    var(--hero-bg, linear-gradient(transparent, transparent));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 46px 5vw 76px;
  position: relative;
}
#phero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--gold) 45%, var(--green));
}
.phero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: center;
}
.phero-icon { font-size: 2.4rem; margin-bottom: 1.1rem; display: block; }
.phero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.1rem;
}
.phero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4.4vw, 3.75rem);
  font-weight: 600; font-style: normal; line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 1.4rem;
}
.phero-subtitle {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.66);
  max-width: 540px; line-height: 1.8; margin-bottom: 2.1rem;
}
.phero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.1rem; }
.phero-tags .tag { background: rgba(0,166,81,0.12); color: var(--green); border: 1px solid rgba(0,166,81,0.32); }
.phero-cta {
  display: inline-block;
  background: var(--green); color: var(--white);
  padding: 0.9rem 2.3rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.phero-cta:hover { background: var(--green-2); transform: translateY(-1px); }

.phero-stats {
  display: flex; flex-direction: column; gap: 0; position: relative;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(0,166,81,0.22);
  padding: 0.4rem 2rem;
}
.phero-stats::before, .phero-stats::after {
  content: ''; position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0,166,81,0.5);
}
.phero-stats::before { top: 10px; left: 10px; }
.phero-stats::after { bottom: 10px; right: 10px; }
.phero-stat { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.35rem 0; }
.phero-stat:last-child { border-bottom: none; }
.phero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem; font-weight: 600; color: var(--green); line-height: 1.1;
}
.phero-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.03em; color: var(--gray); margin-top: 0.35rem;
}

/* SECTION BASE */
section { padding: 88px 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-2); margin-bottom: 1rem;
}
#applications .section-eyebrow, #process-notes .section-eyebrow.on-dark { color: var(--green); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800; line-height: 1.05; margin-bottom: 1.25rem;
  letter-spacing: -0.005em;
}
.section-lead {
  font-size: 1rem; color: #4A4A42; max-width: 680px; line-height: 1.75;
}

#overview { background: var(--white); }
.overview-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
  align-items: start; margin-top: 3rem;
}
.overview-side { display: flex; flex-direction: column; gap: 1.5rem; }

.product-photo-frame {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  margin-bottom: 1.5rem; line-height: 0; aspect-ratio: 16 / 10;
  box-shadow: 0 10px 30px rgba(10,22,32,0.1);
  position: relative;
}
.product-photo-frame::after {
  content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(0,166,81,0.15);
  pointer-events: none;
}
.product-photo { width: 100%; height: 100%; display: block; object-fit: cover; }

.order-box {
  border: 1px solid var(--green); border-radius: var(--radius); overflow: hidden;
  background: #FBFAF5;
  box-shadow: 0 6px 20px rgba(0,166,81,0.1);
}
.order-box-title {
  background: var(--steel); color: var(--white);
  padding: 1.05rem 1.3rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em;
  border-left: 3px solid var(--green);
}
.order-row { padding: 0.9rem 1.3rem 0; }
.order-row label {
  display: block; font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--green-2); margin-bottom: 0.4rem;
}
.order-row select, .order-row input, .order-row textarea {
  width: 100%; padding: 0.65rem 0.75rem; font-family: 'Inter', sans-serif;
  font-size: 0.88rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 2px; background: var(--white);
  resize: vertical;
}
.order-row select:focus, .order-row input:focus, .order-row textarea:focus {
  outline: none; border-color: var(--green);
}
.btn-add-cart {
  display: block; width: calc(100% - 2.6rem); margin: 1.3rem auto 1.3rem;
  background: var(--green); color: var(--white); border: none;
  padding: 0.9rem 1rem; font-size: 0.83rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  border-radius: 2px; transition: background 0.2s;
}
.btn-add-cart:hover { background: var(--green-2); }
.overview-body p { font-size: 1rem; color: #4A4A42; line-height: 1.85; margin-bottom: 1.3rem; }
.feature-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.95rem; color: #4A4A42;
}
.feature-list li::before {
  content: ''; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 2px;
  background: var(--green); border-radius: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

.info-box {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper);
  box-shadow: 0 6px 18px rgba(10,22,32,0.06);
}
.info-box-header {
  background: var(--steel); color: var(--white);
  padding: 1.05rem 1.3rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em;
  border-left: 3px solid var(--gold);
}
.info-row {
  display: grid; grid-template-columns: 1fr 1.2fr;
  border-top: 1px solid var(--line);
}
.info-row:first-of-type { border-top: none; }
.info-cell {
  padding: 0.85rem 1.3rem; font-size: 0.85rem; line-height: 1.5;
}
.info-cell.k { color: var(--gray); font-family: 'IBM Plex Mono', monospace; font-size: 0.71rem; letter-spacing: 0.03em; }
.info-cell.v { color: #333; border-left: 1px solid var(--line); }

#applications { background: var(--steel); position: relative; }
#applications .section-title { color: var(--white); }
#applications .section-lead { color: rgba(255,255,255,0.55); }
.app-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.1); overflow: hidden;
}
.app-item {
  padding: 1.9rem 1.6rem; background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.app-item:hover { background: rgba(0,166,81,0.06); }
.app-item:nth-child(3n) { border-right: none; }
.app-icon {
  font-size: 1.4rem; margin-bottom: 0.9rem; display: flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,166,81,0.1); border: 1px solid rgba(0,166,81,0.28);
}
.app-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.08rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--white);
}
.app-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── PROCESS RAIL (signature device: numbered plates on a beam) ── */
#process-notes { background: var(--paper-2); }
.pn-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 3.5rem; position: relative;
  border-top: 2px solid var(--line);
}
.pn-grid::before {
  content: ''; position: absolute; top: -2px; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--rust), var(--gold) 45%, var(--green));
  transition: width 1.1s cubic-bezier(0.22,1,0.36,1);
}
.pn-grid.rail-live::before { width: 100%; }
.pn-card {
  background: transparent; border: none; border-right: 1px solid var(--line);
  padding: 1.9rem 1.6rem 0; transition: transform 0.2s;
  position: relative;
}
.pn-card:last-child { border-right: none; }
.pn-card::before {
  content: ''; position: absolute; top: -6px; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--paper-2); border: 2px solid var(--green);
}
.pn-card:hover { transform: translateY(-3px); }
.pn-num {
  font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 600; color: var(--green-2);
  letter-spacing: 0; margin-bottom: 0.6rem; line-height: 1;
}
.pn-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.55rem; color: var(--ink); text-transform: uppercase; letter-spacing: 0.02em;
}
.pn-desc { font-size: 0.87rem; color: #555; line-height: 1.65; }

#related { background: var(--white); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.related-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid transparent;
}
.related-card:hover { border-color: var(--line); border-top-color: var(--green); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(10,22,32,0.08); }
.related-icon { font-size: 1.5rem; margin-bottom: 0.65rem; display: block; }
.related-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.4rem;
}
.related-desc { font-size: 0.8rem; color: #666; line-height: 1.5; }

.tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.64rem; letter-spacing: 0.06em; padding: 0.28rem 0.65rem;
  background: var(--green-soft); color: var(--green-2); border-radius: 2px; display: inline-block;
}

#cta { background: var(--steel); padding: 96px 5vw; text-align: center; position: relative; }
#cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold) 55%, var(--rust));
}
#cta .section-title { color: var(--white); margin-bottom: 1rem; font-family: 'Fraunces', serif; font-weight: 600; }
#cta p { color: rgba(255,255,255,0.5); font-size: 1rem; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; }
.btn-primary {
  background: var(--green); color: var(--white);
  padding: 0.9rem 2.5rem; font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--green); transition: all 0.2s;
}
.btn-primary:hover { background: var(--green-2); border-color: var(--green-2); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.9rem 2.5rem; font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3); transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); }

@media (max-width: 960px) {
  .phero-inner, .overview-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .app-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.1); }
  .app-item:nth-child(2n) { border-right: none; }
  .pn-grid { grid-template-columns: repeat(2, 1fr); }
  .pn-card { border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .app-grid { grid-template-columns: 1fr; }
  .app-item { border-right: none !important; }
  .pn-grid { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .info-cell.v { border-left: none; border-top: 1px solid var(--line); }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
