:root{
  --bg:#0a0f14; --bg-elev:#0f1620; --text:#e6ecf2; --muted:#9db0c0;
  --brand:#4db2ff; --line:#1c2632; --radius:10px; --wrap:1080px;
  color-scheme: light dark;
}



*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;background:var(--bg);color:var(--text)}
img{max-width:100%;display:block}
a{color:var(--brand);text-decoration:none} a:hover{text-decoration:underline}
.wrap{max-width:var(--wrap);margin:auto;padding:0 20px}

/* Header/Nav */
.site-header{position:sticky;top:0;z-index:10;background:linear-gradient(180deg,rgba(10,15,20,.95),rgba(10,15,20,.85));backdrop-filter:saturate(140%) blur(12px);border-bottom:1px solid var(--line)}
.site-header .wrap{display:flex;align-items:center;gap:18px;min-height:64px; position:relative;}
.brand{display:inline-flex;align-items:center;gap:10px;color:var(--text);font-weight:600}
.site-nav{margin-left:auto;display:flex;gap:16px;align-items:center}
.site-nav a{padding:8px 10px;border-radius:8px;transition:background-color .15s ease,box-shadow .15s ease,color .15s ease}
.site-nav a:hover,
.site-nav a:focus-visible{background:color-mix(in srgb, var(--brand) 20%, transparent);text-decoration:none;box-shadow:0 0 0 2px rgba(77,178,255,.25)}
.site-nav a.is-active{background:var(--bg-elev)}
.btn{display:inline-block;padding:10px 14px;border:1px solid var(--line);border-radius:10px;transition:background-color .15s ease,border-color .15s ease,box-shadow .15s ease,color .15s ease,transform .15s ease}
.btn-primary{background:var(--brand);color:#071019;border-color:transparent}
.btn-cta{border-color:var(--brand)}
/* Clear, distinct hover/focus styles so buttons feel interactive and are not confused with the active page highlight */
.btn:hover,
.btn:focus-visible{background:color-mix(in srgb, var(--brand) 20%, transparent);border-color:var(--brand);text-decoration:none;box-shadow:0 0 0 3px rgba(77,178,255,.22)}
.btn:active{transform:translateY(1px)}

/* CTA variant: go solid brand on hover for strong affordance */
.btn-cta:hover,
.btn-cta:focus-visible{background:var(--brand);color:#071019;border-color:transparent}

/* Primary variant already solid; add subtle elevation on hover */
.btn-primary:hover,
.btn-primary:focus-visible{box-shadow:0 6px 18px rgba(6,10,14,0.18),0 0 0 3px rgba(77,178,255,.18)}

/* Download buttons on SimHub page */
.page-simhub .btn-download{transition:background-color .15s ease,box-shadow .15s ease,transform .15s ease}
.page-simhub .btn-download:hover,
.page-simhub .btn-download:focus-visible{background:#0a60e8;box-shadow:0 6px 18px rgba(6,10,14,0.18)}
.page-simhub .btn-download:active{transform:translateY(1px)}
.nav-toggle{display:none}

/* Sections */
.hero{
  padding:72px 0 36px;
  /* Static fading effect + soft radial washes (no SVG, no animation) */
  background:
    radial-gradient(80rem 40rem at 10% -10%, rgba(77,178,255,.15), transparent 50%),
    radial-gradient(80rem 50rem at 90% -30%, rgba(46,204,113,.10), transparent 50%);
  will-change: auto;
}



.hero h1{font-size:clamp(28px,4.2vw,44px);line-height:1.12;margin:0 0 10px}
.hero p{color:var(--muted);max-width:60ch;margin:0 0 16px}
.actions{display:flex;gap:10px;flex-wrap:wrap;margin:10px 0}
.cred{display:flex;gap:16px;flex-wrap:wrap;color:var(--muted);padding:0;margin:10px 0 0}
.cred li{list-style:none}

.grid-features{padding:36px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.grid-features .wrap{display:grid;gap:18px;grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-features article{background:var(--bg-elev);padding:18px;border:1px solid var(--line);border-radius:var(--radius)}
.eyebrow{font-size:12px;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);margin:0 0 6px}
.more{display:inline-block;margin-top:8px}

.cta{padding:36px 0;border-top:1px solid var(--line)}

.site-footer{border-top:1px solid var(--line);background:var(--bg-elev);margin-top:36px}
.footer-grid{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:12px}
.footer-grid > div:first-child { justify-self: start; }
.footer-copyright {
  justify-self: center;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}
.footer-grid nav { justify-self: end; }

/* Utilities */
.prose{padding:24px 0}
@media (max-width:960px){ .grid-features .wrap{grid-template-columns:1fr 1fr} .footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:640px){
  .nav-toggle{display:inline-flex;margin-left:auto}
  .site-nav{display:none;flex-direction:column;position:absolute;right:10px;top:60px;background:var(--bg-elev);border:1px solid var(--line);padding:8px;border-radius:10px}
  .site-nav.show{display:flex}
  .grid-features .wrap{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
/* Light mode */
@media (prefers-color-scheme: light){
  :root{--bg:#f7f9fc;--bg-elev:#fff;--text:#111827;--muted:#5e6b78;--line:#e8edf3;--brand:#0a84ff}
}

/* Visually hide skip link but reveal on keyboard focus */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip:focus,
.skip:active {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  background: #ffffff;
  color: #0a0f14;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(10,15,20,0.2);
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
}

/* Keep the brand text centered in the header bar (not the viewport) */
.brand > span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  pointer-events: auto;
  background: transparent;
  margin: 0;
  padding: 0.125rem 0.5rem;
  white-space: nowrap;
  font-weight: 600;
  line-height: 1;
  -webkit-font-smoothing: antialiased;

  /* prevent overlap with header items */
  max-width: calc(100% - 320px);
  width: min(66vw, 48ch);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive tweak: slightly more room on very small screens */
@media (max-width: 420px) {
  .brand > span {
    font-size: 0.95rem;
    padding: 0.1rem 0.4rem;
    max-width: calc(100% - 120px); /* reserve ~60px each side on tiny screens */
  }
}

/* subtle animated background movement */
.hero{
  background-size: 200% 200%;
  animation: bgmove 5s ease-in-out infinite alternate;
  will-change: background-position;
}

@keyframes bgmove{
  0%   { background-position: 10% 20%; }
  100% { background-position: 90% 80%; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero{ animation: none !important; will-change: auto; }
}

/* Contact page: center the form and increase readable sizes */
.page-contact #main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 140px); /* account for header/footer */
  padding: 15px 20px;
}

.page-contact .prose {
  max-width: 760px;
  width: 100%;
  font-size: 1.0625rem; /* slightly larger body text for readability */
}

/* Reduce space above the H1 on the Contact page only */
.page-contact .prose {
  padding-top: 0.5rem; /* less vertical gap between header and content */
}

.page-contact .prose h1 {
  margin-top: 0.1rem;   /* tighten H1 top margin */
  margin-bottom: 0.75rem;/* comfortable spacing below the title */
  text-align: center;    /* keep existing centering */
}

.page-contact .prose form {
  width: 100%;
  background: transparent;
}

.page-contact label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.page-contact .form-row { margin-bottom: 0.9rem; }

.page-contact input[type="text"],
.page-contact input[type="email"],
.page-contact textarea {
  width: 100%;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text);
}

.page-contact textarea { min-height: 120px; }

.page-contact .btn {
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
}

/* Keep layout comfortable on very small screens */
@media (max-width:420px){
  .page-contact #main { padding: 28px 14px; min-height: calc(100vh - 120px); }
  .page-contact .prose { font-size: 1rem; }
}

/* Files / downloads cards — split columns evenly and stretch horizontally */
.file-list.cards {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 2rem;

  /* evenly split available width; each column is at least 220px and grows equally */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;     /* make grid items stretch to the row height */
  grid-auto-rows: 1fr;      /* make each row a flexible, equal-height row */
}

.file-list.cards li {
  margin: 0;
  display: flex;            /* allow child .card-link to stretch */
  align-items: stretch;
  width: 100%;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex: 1 1 auto;           /* fill the grid cell horizontally */
  align-items: stretch;
  width: 100%;
}

/* make card a vertical flex column and force it to fill available height/width */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(6,10,14,0.04);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;

  width: 100%;
  height: 100%;
  min-height: 100px;
  box-sizing: border-box;
}

/* Title + meta row: allow title to wrap and take remaining horizontal space */
.card-body {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.card-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 1.03rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;        /* allow wrapping so title uses horizontal space */
  word-break: break-word;
}

/* fixed width for the small type label so all cards align */
.card-meta {
  flex: 0 0 84px;
  text-align: right;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 6px;
}

/* responsive tweak */
@media (max-width:420px) {
  .file-list.cards { grid-template-columns: repeat(1, 1fr); }
  .card-meta { flex-basis: 64px; font-size: 0.9rem; }
  .card-title { font-size: 1rem; }
}

/* Responsive: two columns on medium screens, three on wider viewports */
@media (min-width: 560px) {
  .file-list.cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .file-list.cards { grid-template-columns: repeat(3, 1fr); }
}

/* Keep small text sizes readable on narrow screens */
@media (max-width:420px) {
  .card { padding: 14px; border-radius:10px; }
  .card-title { font-size:1rem; }
  .card-valid { font-size: 0.9rem; }
}

/* Unified H2 + list card styling (matches other site cards) */
.prose > h2 {
  float: left;
  width: 280px;
  margin: 0 0 0.5rem 0;
  padding: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-right: none;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 6px 18px rgba(6,10,14,0.04);
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1.2;
  box-sizing: border-box;
}

.prose > h2 + ul {
  margin-left: calc(280px + 16px);
  padding: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 6px 18px rgba(6,10,14,0.04);
  min-height: 120px;
  list-style: disc outside;
  box-sizing: border-box;
  margin-bottom: 1.25rem;
}

/* clear earlier floats to avoid layout bleed */
.prose::after { content: ""; display: table; clear: both; }

/* Responsive: stack the heading and list as full-width cards on small screens */
@media (max-width: 880px) {
  .prose > h2,
  .prose > h2 + ul {
    float: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    border-radius: 12px !important;
  }

  .prose > h2 {
    border-right: 1px solid var(--line);
    border-radius: 12px 12px 0 0;
    margin-bottom: 8px;
  }

  .prose > h2 + ul {
    border-radius: 0 0 12px 12px;
    margin-top: 0;
    padding-top: 14px;
  }
}

/* Tweak spacing for very small screens so lists don't feel cramped */
@media (max-width: 420px) {
  .prose > h2 + ul { padding: 12px; min-height: auto; }
  .prose > h2 { padding: 14px; font-size: 1rem; }
}

/* Pricing section — single consolidated block to avoid conflicts */
.pricing-section {
  position: relative;                 /* anchor for the centered note */
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(6,10,14,0.04);
  margin: 1rem 0 1.5rem;
  padding: 0;                         /* children supply column padding */
  padding-bottom: 3.5rem;            /* room for the centered note */
}

/* left column */
.pricing-section > h2 {
  flex: 0 0 280px;
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-radius: 12px 0 0 12px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

/* right column (list) */
.pricing-section > .pricing-list {
  flex: 1 1 auto;
  margin: 0;
  padding: 18px;
  list-style: none;
}

/* list item spacing */
.pricing-list > li { margin-bottom: 0.75rem; }
.pricing-list li > ul { margin: 0.5rem 0 0 1.1rem; }

/* centered note pinned to bottom of the section */
.pricing-note {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  text-align: center;
  width: calc(100% - 40px);
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* Responsive: stack on narrow viewports and make note flow naturally */
@media (max-width:760px) {
  .pricing-section {
    display: block;
    padding-bottom: 1rem; /* allow note to flow below */
  }
  .pricing-section > h2,
  .pricing-section > .pricing-list {
    padding: 14px;
    border-radius: 12px;
    border-right: none;
  }
  .pricing-section > h2 { margin-bottom: 0.5rem; border-bottom: 1px solid var(--line); }
  .pricing-note {
    position: static;
    transform: none;
    margin-top: 0.75rem;
    width: 100%;
  }
}

/* Centered page CTA used on the Services page */
.page-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.25rem 0;
  padding: 0 20px;
}

.page-cta .btn {
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 10px;
  min-width: 220px;
}

/* center CTA button text */
.page-cta .btn,
.pricing-cta .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* On very small screens make the button fit comfortably */
@media (max-width:420px) {
  .page-cta .btn {
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
  }
}

/* Hardware solutions: horizontal columns that collapse responsively */
.hardware-solutions { margin: 1.5rem 0; }

/* Section heading handled by existing H2 rules; keep spacing consistent */
.hardware-solutions > h2 { margin: 0 0 0.5rem 0; }

/* Container: row on wide screens, stacked on small screens */
.solutions {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  /* default: responsive columns that fill available space */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* On large viewports, enforce exactly 3 columns per row */
@media (min-width: 1100px) {
  .solutions {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Each solution column */
.solution-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;            /* share available width equally */
  min-width: 220px;       /* allow wrap on narrow viewports */
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(6,10,14,0.04);
  box-sizing: border-box;
}

/* Header (title + short) */
.sol-header { margin: 0 0 8px 0; }
.sol-header .sol-short { margin: 6px 0 0; color: var(--muted); font-size: 0.95rem; }

/* Full description area */
.sol-desc { margin: 8px 0 12px; color: var(--text); font-size: 0.97rem; }

/* Image: keep square aspect ratio and cover */
.sol-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
  margin: 0 0 12px 0;
  flex: 0 0 auto;
}
.sol-image img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }

/* Price area */
.sol-price { text-align: center; margin-top: 6px; font-size: 1.05rem; color: var(--text); }

/* Responsive: stack cards vertically on narrow screens, preserving order */
@media (max-width: 880px) {
  .solutions { flex-direction: column; }
  .solution-card { min-width: auto; width: 100%; }
}

/* Optional: tighten spacing on very small screens */
@media (max-width: 420px) {
  .solution-card { padding: 12px; border-radius: 10px; }
  .sol-desc { font-size: 0.95rem; }
  .sol-header .sol-short { font-size: 0.9rem; }
}

/* Ensure solution price stays centered horizontally and add extra gap on tiny screens */

/* center price horizontally inside the card */
.solution-card .sol-price {
  text-align: center;
  align-self: center;   /* centers the block inside the flex column */
  width: auto;
}

/* Make stacked layout on small screens and increase gap so cards don't blend */
@media (max-width: 880px) {
  .solutions {
    grid-template-columns: 1fr;  /* force a single column */
    gap: 12px;                   /* slightly larger gap for stacked cards */
  }

  .solution-card {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
  }

  .solution-card .sol-price {
    margin-top: 8px;
  }
}

/* Extra tiny-screen tweak for very small phones */
@media (max-width: 420px) {
  .solutions { gap: 14px; }
  .solution-card { padding: 12px; }
  .solution-card .sol-price { font-size: 1.02rem; }
}

/* stronger, high-specificity clamp so titles and short descriptions always reserve 2 lines */
.hardware-solutions .solution-card .sol-header h3,
.hardware-solutions .solution-card .sol-header .sol-short {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  line-clamp: 3 !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  word-break: break-word !important;
  line-height: 1.2 !important;

  /* reserve exactly two lines of vertical space (scales with font-size) */
  min-height: calc(2 * 1.2em) !important;
  max-height: calc(2 * 1.2em) !important;
  margin: 0;
}

/* small visual tweaks to keep sizes consistent */
.hardware-solutions .solution-card .sol-header h3 { font-size: 1.05rem; font-weight: 600; }
.hardware-solutions .solution-card .sol-header .sol-short { font-size: 0.95rem; color: var(--muted); }

/* ensure no other layout rule forces wrapping differently */
.hardware-solutions .solution-card .sol-header { overflow: visible; }

/* Footer grid: left info, centred copyright, right nav */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

/* left column (company info) */
.footer-grid > div:first-child { justify-self: start; }

/* centered copyright */
.footer-copyright {
  justify-self: center;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

/* right column (footer nav) */
.footer-grid nav { justify-self: end; }

/* small screens: stack vertically and centre everything */
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 8px;
  }
  .footer-grid nav { justify-self: center; }
  .footer-grid > div:first-child { justify-self: center; }
}

.form-embed-wrap {
  width: 100%;
  max-width: 580px;           /* match site content width rhythm */
  margin: 1rem auto;
  border-radius: 12px;
  overflow: hidden;           /* keeps iframe corners rounded */
  background: var(--bg-elev);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(6,10,14,0.04);
}

/* iframe baseline sizing (JotForm handler will resize if needed) */
.form-embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 1080px;         /* safe fallback height for narrow viewports */
  height: 100%;
  border: 0;
}

/* Solid, click-blocking overlay for the JotForm iframe (covers footer and thankyou footer) */
.form-embed-wrap { position: relative; }

.form-embed-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;                 /* increased to cover both regular footer and thankyou footer */
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  z-index: 999;                 /* ensure it sits above the iframe */
  pointer-events: auto;         /* block clicks from reaching iframe area underneath */
  cursor: default;
}

/* If you need to adjust the covered area later, change the height value above */
/* Page: Sim-Hub Dash Profiles */
.page-simhub main#main.wrap.prose { max-width: 800px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.page-simhub main.prose img { display: block; margin: 1rem auto; max-width: 100%; height: auto; }
.page-simhub .video-wrapper { position: relative; width: 100%; padding-top: 56.25%; margin: 1rem 0; }
.page-simhub .video-wrapper iframe { position: absolute; left: 0; top: 0; width: 100%; height: 100%; border: 0; }
.page-simhub .download-cards { display: flex; gap: 1rem; justify-content: center; margin: 1.5rem 0; flex-wrap: wrap; }
.page-simhub .download-card { width: 500px; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 1rem; border-radius: 8px; border: 1px solid rgba(0,0,0,0.06); background: var(--bg-elev, #0f1113); box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset; }
.page-simhub .download-card .meta { flex: 1 1 auto; min-width: 0; }
.page-simhub .download-card h4 { margin: 0 0 0.25rem; font-size: 1rem; line-height: 1.2; }
.page-simhub .download-card p { margin: 0; font-size: 0.9rem; color: var(--muted, #98a0a8); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.page-simhub .download-card .actions { flex: 0 0 auto; margin-left: 1rem; }
.page-simhub .btn-download { display: inline-block; padding: 0.5rem 0.9rem; font-size: 0.9rem; border-radius: 6px; text-decoration: none; background: #0b6cff; color: #fff; border: 0; }
.page-simhub .btn-download:focus { outline: 2px solid #083f9a; outline-offset: 2px; }

/* Page: Gas Governor Meter Pulse Modules */
.page-pulse .pulse-cards { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.page-pulse .pulse-card { width: 75%; max-width: 1000px; padding: 1rem 1.25rem; border: 1px solid rgba(0,0,0,0.12); border-radius: 10px; background: var(--bg-elev, #0f1113); box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset; }
.page-pulse .pulse-card h2 { margin: 0 0 .5rem; }
.page-pulse .pulse-card .desc { margin: 0 0 .75rem; }
.page-pulse .pulse-card .desc ul { margin: .25rem 0 .75rem 1.25rem; }
.page-pulse .pulse-card .media { text-align: center; margin: .25rem 0 .5rem; }
.page-pulse .pulse-card .media img { max-width: 75%; height: auto; border-radius: 8px; object-fit: contain; display:block; margin: 0 auto; }
.page-pulse .pulse-card h3 { margin: .25rem 0 .25rem; font-size: 1rem; }
.page-pulse .pulse-card .short { margin: 0; color: var(--muted, #98a0a8); font-size: .95rem; }
@media (max-width: 640px) { .page-pulse .pulse-card { width: 100%; } .page-pulse .pulse-card .media img { max-width: 100%; } }

/* Utility spacing classes */
.ml-1 { margin-left: 1rem; }
.spacer-10 { height: 10px; }
.spacer-20 { height: 20px; }

/* Informational privacy banner */
#nc13-info-banner{position:fixed;right:1rem;bottom:1rem;max-width:28rem;background:rgba(10,15,20,.88);color:#fff;border-radius:.6rem;padding:.85rem 1rem;box-shadow:0 8px 24px rgba(0,0,0,.28);z-index:10000;border:1px solid rgba(255,255,255,.06)}
#nc13-info-banner p{margin:.1rem 0 .5rem;font-size:.95rem;line-height:1.35}
#nc13-info-banner .actions{display:flex;gap:.5rem;align-items:center}
#nc13-info-banner a{color:#9bd0ff}
#nc13-info-banner button{cursor:pointer;border:0;border-radius:.4rem;padding:.4rem .65rem;font-weight:600;background:#334155;color:#fff}
@media (max-width:520px){#nc13-info-banner{left:1rem;right:1rem;max-width:none}}

