/* NexBio — Futuristic Glass-Morphism Design System */
/* Dark / Command-Center / Premium Medical-Tech */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --bg-base: #050a12;
  --bg-surface: #0b1525;
  --bg-elevated: #0f1e33;
  --emerald: #2E8B57;
  --emerald-glow: rgba(46,139,87,0.4);
  --gold: #f0b429;
  --gold-dim: rgba(240,180,41,0.15);
  --gold-glow: rgba(240,180,41,0.35);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.35);
  --border-glass: rgba(240,180,41,0.18);
  --border-subtle: rgba(255,255,255,0.07);
  --glass-bg: rgba(11,21,37,0.7);
  --glass-bg-hover: rgba(15,28,48,0.85);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; line-height: 1.1; color: var(--text-primary); }
p { color: var(--text-secondary); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Typography Scale ── */
.display-xl { font-family: 'Outfit', sans-serif; font-size: clamp(2.8rem,6vw,5rem); font-weight: 900; letter-spacing: -2px; line-height: 1.05; }
.display-lg { font-family: 'Outfit', sans-serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; letter-spacing: -1.5px; }
.display-md { font-family: 'Outfit', sans-serif; font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 700; letter-spacing: -0.5px; }
.eyebrow { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.body-lg { font-size: 1.05rem; line-height: 1.7; }
.body-sm { font-size: 0.82rem; }

/* ── Gold Glow Utility ── */
.gold-glow {
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(240,180,41,0.15);
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── Glass Card ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}
.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(240,180,41,0.32);
  box-shadow: 0 0 30px rgba(240,180,41,0.08), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.9rem; padding: 14px 28px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: all 0.25s ease; white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--emerald); color: #fff;
  box-shadow: 0 0 20px var(--emerald-glow);
}
.btn-primary:hover {
  background: #38a068;
  box-shadow: 0 0 30px rgba(46,139,87,0.6), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-glass);
}
.btn-ghost:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(5,10,18,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text {
  font-family: 'Outfit', sans-serif; font-size: 1.3rem;
  font-weight: 800; color: #fff; letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.65); transition: color 0.25s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.82rem !important; padding: 10px 22px !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: var(--radius-sm) !important; color: var(--gold) !important;
  background: var(--gold-dim) !important; transition: all 0.25s !important;
  letter-spacing: 0.04em !important;
}
.nav-cta:hover {
  background: var(--gold) !important; color: #050a12 !important;
  border-color: var(--gold) !important; box-shadow: 0 0 20px var(--gold-glow) !important;
}
@media (max-width: 768px) { .nav-links { display: none; } }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 140px 0 80px;
  background: var(--bg-base);
}
/* Deep space radial glow — top right */
.hero::before {
  content: ''; position: absolute;
  top: -30%; right: -20%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(46,139,87,0.08) 0%, transparent 65%);
  pointer-events: none;
}
/* Gold star cluster — bottom left */
.hero::after {
  content: ''; position: absolute;
  bottom: -25%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,180,41,0.06) 0%, transparent 65%);
  pointer-events: none;
}
/* Grid lines overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
/* Hero image — full bleed background */
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_194547/7f6137ba-3cfa-4217-bd6f-35b5d6851057.jpg');
  background-size: cover; background-position: center;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,139,87,0.12); border: 1px solid rgba(46,139,87,0.28);
  color: #6fdfa0; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
  font-family: 'Outfit', sans-serif;
}
.hero-badge::before {
  content: ''; display: inline-block; width: 7px; height: 7px;
  background: #6fdfa0; border-radius: 50%;
  animation: pulse-glow 2.5s infinite;
  box-shadow: 0 0 8px #6fdfa0;
}
@keyframes pulse-glow {
  0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 8px #6fdfa0;}
  50%{opacity:0.6;transform:scale(1.4);box-shadow:0 0 16px #6fdfa0;}
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; color: var(--text-primary);
  line-height: 1.06; margin-bottom: 24px;
  letter-spacing: -2px;
}
.hero h1 .accent-gold { color: var(--gold); text-shadow: 0 0 30px var(--gold-glow); }
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.6);
  max-width: 680px; line-height: 1.75; margin-bottom: 44px;
  font-family: 'DM Sans', sans-serif; font-weight: 400;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 56px; margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 6px; font-family: 'DM Sans', sans-serif; letter-spacing: 0.03em; }
.hero-stat-value { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.hero-stat-value.gold-glow-val { color: var(--gold); text-shadow: 0 0 20px var(--gold-glow); }

/* Command center data panel overlay */
.hero-data-panel {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 320px; z-index: 2; display: none;
}
@media (min-width: 1100px) {
  .hero-data-panel { display: block; }
  .hero-inner { max-width: 680px; }
}

/* ── SECTION SHARED ── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-eyebrow { color: var(--gold); margin-bottom: 14px; display: block; }
.section-title { margin-bottom: 18px; }
.section-sub { color: var(--text-secondary); font-size: 1.02rem; }
.section-dark { background: var(--bg-surface); }

/* ── VERTICALS ── */
.verticals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vcard {
  background: var(--glass-bg); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 48px 44px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  position: relative; overflow: hidden; transition: all 0.3s ease;
}
.vcard::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(240,180,41,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.vcard:hover {
  border-color: rgba(240,180,41,0.3);
  box-shadow: 0 0 40px rgba(240,180,41,0.08), 0 24px 64px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}
.vcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.vcard.ortho::before { background: var(--emerald); box-shadow: 0 0 20px var(--emerald-glow); }
.vcard.aesthetic::before { background: linear-gradient(90deg, var(--gold), #e8981a); box-shadow: 0 0 20px var(--gold-glow); }
.vcard-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 1.6rem; }
.vcard.ortho .vcard-icon { background: rgba(46,139,87,0.15); }
.vcard.aesthetic .vcard-icon { background: var(--gold-dim); }
.vcard-tag {
  display: inline-block; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}
.vcard.ortho .vcard-tag { background: rgba(46,139,87,0.15); color: #6fdfa0; }
.vcard.aesthetic .vcard-tag { background: var(--gold-dim); color: var(--gold); }
.vcard h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; color: var(--text-primary); }
.vcard-target { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 32px; font-weight: 500; }
.vcard-props { list-style: none; }
.vcard-props li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem; color: var(--text-secondary); font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}
.vcard-props li:last-child { border-bottom: none; }
.vcard-props li .check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; margin-top: 2px; color: #fff;
}
.vcard.ortho .check { background: var(--emerald); box-shadow: 0 0 8px var(--emerald-glow); }
.vcard.aesthetic .check { background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }

/* ── WHY NEXBIO ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-stat-box {
  background: var(--glass-bg); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 52px 48px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
}
.why-stat-box::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(46,139,87,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.why-stat-box .big-number {
  font-family: 'Outfit', sans-serif; font-size: 3.8rem;
  font-weight: 900; color: var(--emerald);
  line-height: 1; display: block;
  text-shadow: 0 0 30px var(--emerald-glow);
  position: relative; z-index: 1;
}
.why-stat-box .big-gold {
  font-family: 'Outfit', sans-serif; font-size: 3.4rem;
  font-weight: 900; color: var(--gold); line-height: 1; display: block;
  text-shadow: 0 0 30px var(--gold-glow);
  margin-top: 24px;
}
.why-stat-box .stat-desc { font-size: 0.88rem; color: var(--text-secondary); margin-top: 10px; line-height: 1.5; }
.why-stat-box .stat-context {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.6;
}
.why-content h2 { font-size: 2.2rem; margin-bottom: 20px; letter-spacing: -0.5px; }
.why-tagline {
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.why-content p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 36px; color: var(--text-secondary); }
.why-pillars { display: flex; flex-direction: column; gap: 14px; }
.why-pillar {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.03); padding: 16px 20px;
  border-radius: var(--radius-sm); border-left: 3px solid;
  transition: all 0.25s ease;
}
.why-pillar.emerald { border-color: var(--emerald); }
.why-pillar.emerald:hover { background: rgba(46,139,87,0.06); }
.why-pillar.gold { border-color: var(--gold); }
.why-pillar.gold:hover { background: var(--gold-dim); }
.why-pillar-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.why-pillar.emerald .why-pillar-icon { background: var(--emerald); box-shadow: 0 0 12px var(--emerald-glow); }
.why-pillar.gold .why-pillar-icon { background: var(--gold); box-shadow: 0 0 12px var(--gold-glow); }
.why-pillar-text strong { display: block; font-size: 0.88rem; color: var(--text-primary); margin-bottom: 2px; font-family: 'Outfit', sans-serif; }
.why-pillar-text span { font-size: 0.78rem; color: var(--text-muted); }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
  background: var(--glass-bg); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  position: relative; transition: all 0.3s ease;
}
.step-card:hover {
  border-color: rgba(240,180,41,0.3);
  box-shadow: 0 0 30px rgba(240,180,41,0.07), 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  color: #fff; font-family: 'Outfit', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.step-card:nth-child(1) .step-number { background: var(--emerald); box-shadow: 0 0 16px var(--emerald-glow); }
.step-card:nth-child(2) .step-number { background: #2196b5; box-shadow: 0 0 16px rgba(33,150,181,0.4); }
.step-card:nth-child(3) .step-number { background: var(--gold); box-shadow: 0 0 16px var(--gold-glow); color: #050a12; }
.step-card:nth-child(4) .step-number { background: #9b59b6; box-shadow: 0 0 16px rgba(155,89,182,0.4); }
.step-card:nth-child(1):hover { border-color: rgba(46,139,87,0.4); }
.step-title { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.step-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* ── KPIs ── */
.kpis-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.kpi-card {
  background: var(--glass-bg); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 18px;
  text-align: center; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.kpi-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(240,180,41,0.25);
  box-shadow: 0 0 24px rgba(240,180,41,0.06);
}
.kpi-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px; font-family: 'Outfit', sans-serif; }
.kpi-value { font-family: 'Outfit', sans-serif; font-size: 1.85rem; font-weight: 900; color: var(--text-primary); line-height: 1; display: block; margin-bottom: 8px; }
.kpi-value.glow-gold { color: var(--gold); text-shadow: 0 0 20px var(--gold-glow); }
.kpi-value.glow-emerald { color: var(--emerald); text-shadow: 0 0 20px var(--emerald-glow); }
.kpi-change {
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px;
  border-radius: 100px; display: inline-block; font-family: 'Outfit', sans-serif;
}
.kpi-change.up { background: rgba(46,139,87,0.15); color: #6fdfa0; }
.kpi-change.gold { background: var(--gold-dim); color: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--emerald) 0%, #1f6b41 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-band h2 { font-family: 'Outfit', sans-serif; font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 40px; font-family: 'DM Sans', sans-serif; }
.cta-band .btn-white {
  background: #fff; color: var(--emerald); font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.95rem; padding: 16px 36px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s;
  text-decoration: none;
}
.cta-band .btn-white:hover { background: #F8F6F3; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ── FOOTER ── */
.footer { background: var(--bg-base); border-top: 1px solid var(--border-subtle); padding: 60px 0 32px; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; }
.footer .container { display: flex; flex-direction: column; gap: 36px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand .footer-logo { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 10px; }
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }
.footer-links { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-col h4 { color: rgba(255,255,255,0.45); font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 9px; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom span { color: var(--text-muted); font-size: 0.78rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem; transition: all 0.25s;
}
.footer-social a:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .kpis-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .verticals-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .kpis-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .kpis-grid { grid-template-columns: 1fr 1fr; }
}