/*
 * ═══════════════════════════════════════════════════════════════════════════
 *  GLOBAL CS® — IMAGINE SERVER SERIES
 *  Shared stylesheet · imagine-servers.css
 *  Covers: IMAGINE 110 · 120 · 130 · 140
 *
 *  Usage — add a theme class on <body>:
 *    <body class="theme-110">   → Cyan    #0BA8C8
 *    <body class="theme-120">   → Green   #2EA853
 *    <body class="theme-130">   → Gold    #C87D0E
 *    <body class="theme-140">   → Red     #C0272D
 *
 *  All accent-dependent styles use var(--accent), var(--accent2),
 *  var(--accent-rgb) so a single class swap recolors the whole page.
 * ═══════════════════════════════════════════════════════════════════════════
 */


/* ══════════════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS — Base (shared across all models)
   ══════════════════════════════════════════════════════════════════════════ */
:root {
  /* — Surfaces — */
  --dark:    #0D0D0D;
  --dark2:   #141414;
  --dark3:   #1A1A1A;
  --dark4:   #232323;
  --mid:     #2E2E2E;
  --border:  #2a2a2a;

  /* — Typography — */
  --white:   #FFFFFF;
  --off:     #E8E8E8;
  --muted:   #888888;
  --sub:     #555555;

  /* — Always-green KPI indicator — */
  --green:   #22C55E;

  /* — Fonts — */
  --font:    'Montserrat', sans-serif;
  --mono:    'JetBrains Mono', monospace;

  /* — Default accent (fallback = IMAGINE 140 red) — */
  --accent:      #C0272D;
  --accent2:     #9B1D21;
  --accent-rgb:  192, 39, 45;
}


/* ══════════════════════════════════════════════════════════════════════════
   2. PER-MODEL THEMES
   ══════════════════════════════════════════════════════════════════════════ */

/* IMAGINE 110 — Cyan */
.theme-110 {
  --accent:     #0BA8C8;
  --accent2:    #077A93;
  --accent-rgb: 11, 168, 200;
}

/* IMAGINE 120 — Green */
.theme-120 {
  --accent:     #2EA853;
  --accent2:    #1E7A3A;
  --accent-rgb: 46, 168, 83;
}

/* IMAGINE 130 — Gold */
.theme-130 {
  --accent:     #C87D0E;
  --accent2:    #9A5E08;
  --accent-rgb: 200, 125, 14;
}

/* IMAGINE 140 — Red */
.theme-140 {
  --accent:     #C0272D;
  --accent2:    #9B1D21;
  --accent-rgb: 192, 39, 45;
}


/* ══════════════════════════════════════════════════════════════════════════
   3. RESET & BASE
   ══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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


/* ══════════════════════════════════════════════════════════════════════════
   4. UTILITY
   ══════════════════════════════════════════════════════════════════════════ */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(var(--accent-rgb), .12);
  border: 1px solid rgba(var(--accent-rgb), .30);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 3px;
}


/* ══════════════════════════════════════════════════════════════════════════
   5. NAVIGATION
   ══════════════════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(13, 13, 13, .85);
  transition: border-color .3s;
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--white);
}

.brand-logo span {
  color: var(--accent);
}

.brand-sep {
  width: 1px;
  height: 18px;
  background: var(--border);
}

.brand-product {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--white);
}

.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .2s, transform .15s !important;
}

.btn-nav:hover {
  background: var(--accent2);
  transform: translateY(-1px) !important;
}


/* ══════════════════════════════════════════════════════════════════════════
   6. HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb), .12) 0%, transparent 70%),
    linear-gradient(180deg, #0D0D0D 0%, #111 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-in {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* — Hero left — */
.hero-mono {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-mono::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

h1 .line2 {
  display: block;
  font-size: clamp(16px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .01em;
  margin-top: 8px;
}

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

/* — Buttons — */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: all .2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), .40);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--off);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .25);
  color: var(--white);
}

/* — Hero stats bar — */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.hstat {
  padding: 16px 18px;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, .02);
}

.hstat:last-child {
  border-right: none;
}

.hv {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}

.hl {
  font-size: 10.5px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: .08em;
  margin-top: 4px;
}

/* — Hero right / device — */
.hero-right {
  position: relative;
}

.device-wrap {
  position: relative;
}

.device-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: rgba(var(--accent-rgb), .30);
  filter: blur(40px);
  border-radius: 50%;
}

.device-img {
  width: 100%;
  filter:
    drop-shadow(0 30px 60px rgba(0, 0, 0, .80))
    drop-shadow(0 0 40px rgba(var(--accent-rgb), .18));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.device-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

.device-badge b {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.device-badge2 {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: rgba(var(--accent-rgb), .14);
  border: 1px solid rgba(var(--accent-rgb), .30);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
}

.device-badge2 b {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

/* — Scroll hint — */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--sub);
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: .1em;
  z-index: 2;
  animation: fadeIn 2s 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50%       { opacity: 1;  transform: scaleY(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* ══════════════════════════════════════════════════════════════════════════
   7. SPECIFICATIONS TABLE
   ══════════════════════════════════════════════════════════════════════════ */
.specs-sec {
  padding: 80px 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.specs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.specs-header h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.specs-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.spec-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  width: 140px;
  vertical-align: top;
  padding: 14px 20px 14px 0;
  white-space: nowrap;
}

.spec-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--off);
  width: 200px;
  vertical-align: top;
  padding: 14px 20px 14px 0;
}

.spec-val {
  color: var(--muted);
  font-size: 13px;
  padding: 14px 0;
  line-height: 1.6;
  vertical-align: top;
}

.spec-val code {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--off);
  background: rgba(255, 255, 255, .05);
  padding: 2px 6px;
  border-radius: 3px;
}

.spec-group-sep td {
  height: 1px;
  padding: 0;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
}


/* ══════════════════════════════════════════════════════════════════════════
   8. 5 PILIERS FONDATEURS
   ══════════════════════════════════════════════════════════════════════════ */
.piliers-sec {
  padding: 100px 0;
}

.sec-header {
  text-align: center;
  margin-bottom: 60px;
}

.sec-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.sec-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.piliers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.pilier-card {
  background: var(--dark2);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .2s;
}

.pilier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.pilier-card:hover {
  background: var(--dark3);
}

.pilier-card:hover::before {
  transform: scaleX(1);
}

.p-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: .14em;
  margin-bottom: 14px;
}

.p-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.p-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.p-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.p-kpis {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-kpi {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-kpi::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════════════════
   9. 4 CAPACITÉS ÉTENDUES
   ══════════════════════════════════════════════════════════════════════════ */
.cap-sec {
  padding: 100px 0;
  background: var(--dark2);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cap-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .2s;
}

.cap-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.cap-card:hover {
  border-color: rgba(var(--accent-rgb), .40);
  transform: translateY(-3px);
}

.cap-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cap-icon {
  font-size: 32px;
  line-height: 1;
}

.cap-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.cap-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cap-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.cap-ul li {
  font-size: 13px;
  color: var(--off);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.cap-ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  top: 3px;
}

.cap-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.ckpi .cv {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -.02em;
  line-height: 1;
}

.ckpi .cl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .08em;
  margin-top: 4px;
}


/* ══════════════════════════════════════════════════════════════════════════
   10. CTA & FORM
   ══════════════════════════════════════════════════════════════════════════ */
.cta-sec {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-el {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), .08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-in {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.cta-left h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-left h2 span {
  color: var(--accent);
}

.cta-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-list li {
  font-size: 14px;
  color: var(--off);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.cta-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* — Form card — */
.form-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}

.form-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.form-card .fsub {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 24px;
  font-family: var(--mono);
  letter-spacing: .04em;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.field label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--off);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  padding: 10px 12px;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(var(--accent-rgb), .50);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .10);
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-sub {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 13px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.btn-sub:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

.form-legal {
  font-size: 11px;
  color: var(--sub);
  text-align: center;
  margin-top: 10px;
  font-family: var(--mono);
}


/* ══════════════════════════════════════════════════════════════════════════
   11. FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

.foot-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.foot-brand {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.foot-brand span {
  color: var(--accent);
}

.foot-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
}

footer h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 14px;
  font-family: var(--mono);
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-links a {
  font-size: 12.5px;
  color: var(--muted);
  transition: color .2s;
}

.foot-links a:hover {
  color: var(--white);
}

.foot-bot {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--sub);
  font-family: var(--mono);
}


/* ══════════════════════════════════════════════════════════════════════════
   12. ANIMATIONS
   ══════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════════════════════════
   13. RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-in               { grid-template-columns: 1fr; gap: 40px; }
  .hero-right            { order: -1; }
  .hero-stats            { grid-template-columns: repeat(2, 1fr); }
  .piliers-grid          { grid-template-columns: repeat(2, 1fr); }
  .cap-grid              { grid-template-columns: 1fr; }
  .cta-in                { grid-template-columns: 1fr; }
  .foot-g                { grid-template-columns: 1fr 1fr; }
  .specs-table .spec-cat { display: none; }
}

@media (max-width: 600px) {
  .nav-links  { display: none; }
  h1          { font-size: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .frow       { grid-template-columns: 1fr; }
  .foot-g     { grid-template-columns: 1fr; }
}
