@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0a111a;
  --navy-light: #111d2e;
  --navy-card: #152232;
  --blue: #42a5f5;
  --blue-dark: #1e88e5;
  --blue-glow: rgba(66, 165, 245, 0.25);
  --white: #ffffff;
  --text: #e8edf2;
  --muted: #94a3b8;
  --border: rgba(66, 165, 245, 0.2);
  --radius: 12px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 106.25%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--navy);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

.binary-bg,
.tech-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.page-content {
  position: relative;
  z-index: 1;
}

.page-content::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(66, 165, 245, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 45% at 80% 90%, rgba(30, 136, 229, 0.06), transparent 50%);
}

body[data-tech-bg="circuit"] .page-content::before {
  background:
    linear-gradient(rgba(66, 165, 245, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 165, 245, 0.03) 1px, transparent 1px),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(66, 165, 245, 0.1), transparent);
  background-size: 48px 48px, 48px 48px, auto;
}

body[data-tech-bg="terminal"] .page-content::before {
  background:
    linear-gradient(180deg, rgba(66, 165, 245, 0.06) 0%, transparent 40%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(66, 165, 245, 0.02) 2px, rgba(66, 165, 245, 0.02) 4px);
}

body[data-tech-bg="network"] .page-content::before {
  background:
    radial-gradient(circle at 30% 40%, rgba(66, 165, 245, 0.1), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(100, 181, 246, 0.08), transparent 40%);
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--white); }

.container { width: min(1140px, 92vw); margin: 0 auto; }

.top-bar {
  background: rgba(17, 29, 46, 0.82);
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 17, 26, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.brand:hover { color: var(--white); text-decoration: none; }

.brand__logo {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(66, 165, 245, 0.4);
  box-shadow: 0 0 18px rgba(66, 165, 245, 0.2);
  background: rgba(10, 17, 26, 0.6);
}

.brand__logo--footer {
  height: 52px;
  width: 52px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  background: rgba(66, 165, 245, 0.1);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 8px 24px var(--blue-glow);
}

.btn-primary:hover { color: var(--white); box-shadow: 0 12px 32px var(--blue-glow); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-secondary:hover { background: rgba(66, 165, 245, 0.08); color: var(--white); }

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(66, 165, 245, 0.15), transparent),
    rgba(10, 17, 26, 0.45);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero .lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
}

.stat span { font-size: 0.92rem; color: var(--muted); }

.hero__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo-wrap img {
  max-width: 280px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid rgba(66, 165, 245, 0.35);
  box-shadow: 0 0 48px rgba(66, 165, 245, 0.25), var(--shadow);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
  background: rgba(10, 17, 26, 0.5);
}

.section--alt { background: rgba(17, 29, 46, 0.58); }

.section--glass {
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.45rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(21, 34, 50, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}

.card:hover {
  border-color: rgba(66, 165, 245, 0.45);
  transform: translateY(-3px);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.card p { color: var(--muted); font-size: 1rem; margin: 0; }

/* Course cards */
.course-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.course-card__header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
}

.course-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(66, 165, 245, 0.15);
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.course-card h3 { margin: 0 0 0.5rem; font-size: 1.22rem; }

.course-card__body {
  padding: 1.5rem 1.75rem;
  flex: 1;
}

.course-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.course-card ul li { margin-bottom: 0.35rem; }

.course-card__footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.course-card__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: stretch;
}

.course-card__actions .btn {
  flex: 1;
  min-width: 120px;
}

.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.92rem;
}

/* Curriculum timeline */
.curriculum {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.curriculum-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.curriculum-item__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(66, 165, 245, 0.15);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.98rem;
  border-radius: 8px;
}

.curriculum-item h4 { margin: 0 0 0.25rem; font-size: 1.08rem; }
.curriculum-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Forms */
.form-section { max-width: 560px; margin: 0 auto; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
}

.form-status.is-visible { display: block; }

.form-status--success {
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.35);
  color: #a5d6a7;
}

.form-status--error {
  background: rgba(198, 40, 40, 0.12);
  border: 1px solid rgba(244, 67, 54, 0.35);
  color: #ef9a9a;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Page header */
.page-header {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(66, 165, 245, 0.12), transparent),
    rgba(10, 17, 26, 0.48);
}

.page-header h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.page-header p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(66, 165, 245, 0.15), rgba(30, 136, 229, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.cta-banner h2 { margin: 0 0 0.75rem; font-size: 1.9rem; }
.cta-banner p { color: var(--muted); margin: 0 0 1.5rem; font-size: 1.05rem; }

/* Footer */
.site-footer {
  background: rgba(17, 29, 46, 0.78);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 { margin: 0 0 0.75rem; font-size: 0.98rem; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: 0.95rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.4rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact hub & detail pages */
.contact-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(21, 34, 50, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.contact-hub-card:hover {
  border-color: rgba(66, 165, 245, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(66, 165, 245, 0.12);
  color: var(--text);
  text-decoration: none;
}

.contact-hub-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-hub-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.contact-hub-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-course-banner {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  padding: 0.85rem 1.25rem;
  background: rgba(66, 165, 245, 0.12);
  border: 1px solid rgba(66, 165, 245, 0.35);
  border-radius: var(--radius);
  color: var(--accent);
  font-weight: 600;
  text-align: center;
}

.contact-detail {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-detail__icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}

.contact-detail h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.contact-detail .lead-link {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1rem 0;
}

.contact-detail p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-back:hover {
  color: var(--blue);
}

/* Learning gallery */
.learning-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(200px, 240px));
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.learning-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 200px;
  box-shadow: var(--shadow);
}

.learning-card--featured {
  grid-row: span 2;
  min-height: 100%;
}

.learning-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.learning-card:hover img {
  transform: scale(1.06);
}

.learning-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 17, 26, 0.95) 0%,
    rgba(10, 17, 26, 0.45) 45%,
    rgba(10, 17, 26, 0.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
}

.learning-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.learning-card__overlay h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.learning-card__overlay p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Floating code snippet */
.code-snippet {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(10, 17, 26, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 0 40px rgba(66, 165, 245, 0.12);
  animation: float 6s ease-in-out infinite;
}

.code-snippet pre {
  margin: 0;
  overflow-x: auto;
}

.code-snippet code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

.code-kw { color: #c792ea; }
.code-fn { color: #82aaff; }
.code-key { color: #ffcb6b; }
.code-str { color: #c3e88d; }

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

@media (prefers-reduced-motion: reduce) {
  .code-snippet { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

/* Job-ready / careers */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.outcome-card {
  background: rgba(21, 34, 50, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.outcome-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.outcome-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.role-pill {
  background: rgba(66, 165, 245, 0.1);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.tool-badge {
  background: rgba(21, 34, 50, 0.95);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}

.checklist {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(21, 34, 50, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.checklist-item__icon {
  flex-shrink: 0;
  color: var(--blue);
  font-weight: 800;
  font-size: 1.1rem;
}

.checklist-item h4 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.checklist-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.phase-grid {
  display: grid;
  gap: 1rem;
}

.phase-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(21, 34, 50, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
}

.phase-item__weeks {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  white-space: nowrap;
}

.phase-item h4 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.phase-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.phase-item__level {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(66, 165, 245, 0.12);
  color: var(--blue);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .phase-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy-light);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem;
  }

  .nav.open { display: flex; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero__logo-wrap { order: -1; }
  .hero__logo-wrap img { max-width: 220px; width: 220px; height: 220px; }

  .learning-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .learning-card--featured {
    grid-row: span 1;
    min-height: 260px;
  }

  .learning-card {
    min-height: 220px;
  }

  .footer-grid { grid-template-columns: 1fr; }
}
