/* ==========================================================================
   aiuto co.,ltd
   ========================================================================== */

:root {
  --bg: #f7f8f5;
  --bg-soft: #edf2ee;
  --surface: #ffffff;
  --surface-2: #f3f6f4;
  --ink: #17201b;
  --text: #17201b;
  --text-dim: #5d6a63;
  --text-faint: #8a968f;
  --border: rgba(23, 32, 27, 0.1);
  --border-strong: rgba(23, 32, 27, 0.18);
  --accent-1: #ef5d3f;
  --accent-2: #0d9488;
  --accent-3: #2563eb;
  /* AA-safe (>=4.5:1 on white/cream) variants for small text & links; the raw
     accent-1/2 above are for large display type, icons, and solid button fills only */
  --accent-1-text: #c2410c;
  --accent-2-text: #0f766e;
  --accent-3-text: #1d4ed8;
  --gradient-brand: linear-gradient(120deg, #ef5d3f 0%, #0d9488 52%, #2563eb 100%);
  --gradient-brand-soft: linear-gradient(120deg, rgba(239, 93, 63, 0.12), rgba(13, 148, 136, 0.12), rgba(37, 99, 235, 0.12));
  --font-serif: "Fraunces", "Times New Roman", serif;
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --shadow-soft: 0 24px 70px rgba(23, 32, 27, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 32, 27, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(23, 32, 27, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.accent-font { font-family: "Space Grotesk", "Noto Sans JP", sans-serif; }

/* editorial spot-color rule — thin brand mark fixed to the very top edge of every page */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-1);
  z-index: 200;
}

:focus-visible {
  outline: 2px solid var(--accent-2-text);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 248, 245, 0.2) 42%, rgba(247, 248, 245, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(13, 148, 136, 0.12), transparent 36%);
}
.blob { display: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), padding .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.26rem;
  line-height: 1;
  letter-spacing: 0;
}
.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gradient-brand);
  display: inline-block;
}
.brand small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(23, 32, 27, 0.06);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); background: #0d1511; }
.nav-cta svg { width: 16px; height: 16px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 88px 28px 32px;
  background: rgba(247, 248, 245, 0.98);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--text-dim);
  font-size: 1.28rem;
  font-weight: 800;
}
.mobile-nav a.active,
.mobile-nav a:hover { color: var(--ink); }
.mobile-nav .nav-cta {
  margin-top: 16px;
  width: fit-content;
  color: #fff;
  padding: 12px 18px;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 168px 0 96px;
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1160px) / 2 + 24px));
  right: max(24px, calc((100vw - 1160px) / 2 + 24px));
  bottom: 0;
  height: 1px;
  background: var(--border);
}
.eyebrow,
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.eyebrow {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-1);
}
.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0 0 26px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 5.4rem); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 4rem); }
.grad {
  color: var(--accent-1);
}
.hero p.lead,
.page-hero p.lead {
  max-width: 710px;
  margin: 0 0 36px;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s, background .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 32, 27, 0.16);
}
.btn-primary:hover { box-shadow: 0 18px 42px rgba(23, 32, 27, 0.2); }
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: rgba(23, 32, 27, 0.32); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 76px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--border);
}
.stat {
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
}
.stat b {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
  color: var(--ink);
}
.stat span {
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 700;
}

section {
  position: relative;
  z-index: 1;
  padding: 104px 0;
}
.page-hero { padding: 158px 0 82px; }
.section-head {
  max-width: 760px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent-2-text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tag::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--accent-1);
  flex: none;
}
.section-head h2,
.cta-banner h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}
.section-head p,
.cta-banner p { color: var(--text-dim); margin: 0; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 32, 27, 0.24);
  box-shadow: var(--shadow-soft);
}
.card:hover::after { transform: scaleX(1); }
a.card { display: block; }
.card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border);
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.45;
}
.card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.card .num {
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--border-strong);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--accent-3);
  font-size: 0.86rem;
  font-weight: 800;
}
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text-dim);
  font-size: 0.84rem;
  font-weight: 700;
}
a.pill:hover { color: var(--ink); border-color: var(--border-strong); background: #fff; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in .r-child:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.in .r-child:nth-child(2) { transition-delay: .09s; }
.reveal-stagger.in .r-child:nth-child(3) { transition-delay: .14s; }
.reveal-stagger.in .r-child:nth-child(4) { transition-delay: .19s; }
.reveal-stagger.in .r-child:nth-child(5) { transition-delay: .24s; }
.reveal-stagger.in .r-child:nth-child(6) { transition-delay: .29s; }

.breadcrumb { margin-bottom: 20px; letter-spacing: 0; }
.breadcrumb a:hover { color: var(--ink); }
.info-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
}
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: 0; }
.info-table th,
.info-table td {
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
  font-size: 0.94rem;
}
.info-table th {
  width: 200px;
  background: var(--surface-2);
  color: var(--text-dim);
  font-weight: 800;
}
.info-table td { color: var(--text); }
.info-table td a { color: var(--accent-3); font-weight: 800; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}
.split-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(237, 242, 238, 0.74)),
    linear-gradient(90deg, rgba(23, 32, 27, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(23, 32, 27, 0.04) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  overflow: hidden;
}
.split-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.split-visual .glyph {
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.steps { border-top: 1px solid var(--border); }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.step h4 { margin: 0 0 6px; color: var(--ink); font-size: 1.02rem; }
.step p { margin: 0; color: var(--text-dim); font-size: 0.92rem; }

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #102019;
  color: #fff;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.8;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2,
.cta-banner p { color: #fff; }
.cta-banner p { opacity: 0.78; margin-bottom: 30px; }
.cta-banner .tag { color: #90e2d9; }
.cta-banner .hero-actions { justify-content: center; }
.cta-banner .btn-primary { background: #fff; color: var(--ink); box-shadow: none; }
.cta-banner .btn-ghost { color: #fff; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.24); }

.site-footer {
  position: relative;
  z-index: 1;
  padding: 72px 0 28px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
  padding-bottom: 42px;
}
.footer-brand p {
  max-width: 300px;
  margin: 16px 0 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.footer-col h5 {
  margin: 0 0 16px;
  color: var(--text-faint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-dim);
  font-size: 0.88rem;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 0.78rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  color: var(--text-dim);
  font-size: 0.84rem;
  font-weight: 800;
}
.form-field label .req { color: var(--accent-1-text); margin-left: 4px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  font-size: 0.92rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}
.form-field textarea { min-height: 148px; resize: vertical; }
.form-note { margin: 18px 0 0; color: var(--text-faint); font-size: 0.8rem; }
.form-success {
  display: none;
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 148, 136, 0.26);
  border-radius: var(--radius-sm);
  background: rgba(13, 148, 136, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
}
.form-success.show { display: block; }
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-row .icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand-soft);
  color: var(--ink);
}
.contact-info-row .icon svg { width: 20px; height: 20px; }
.contact-info-row h4 { margin: 0 0 4px; color: var(--ink); font-size: 0.94rem; }
.contact-info-row p,
.contact-info-row a { margin: 0; color: var(--text-dim); font-size: 0.9rem; }
.contact-info-row a:hover { color: var(--accent-3); }

.divider-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  color: var(--text-faint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.divider-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.external-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.external-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.external-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-soft);
}
.external-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
}
.external-card p { margin: 0; color: var(--text-dim); font-size: 0.86rem; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 980px) {
  .grid-4,
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2,
  .split { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split-visual { min-height: 300px; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .brand small { display: none; }
  .nav-cta span { display: none; }
  .hero { min-height: auto; padding: 132px 0 72px; }
  .page-hero { padding: 128px 0 58px; }
  section { padding: 72px 0; }
  .hero h1 { font-size: clamp(2.15rem, 15vw, 3.2rem); }
  .hero p.lead,
  .page-hero p.lead { margin-bottom: 28px; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-stats,
  .grid-4,
  .grid-3,
  .form-grid,
  .external-list,
  .footer-grid { grid-template-columns: 1fr; }
  .stat { min-height: auto; }
  .card { padding: 24px; }
  .split-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: auto;
    min-height: 240px;
  }
  .cta-banner { padding: 44px 22px; }
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 6px; }
  .info-table td { padding-top: 6px; }
  .step { grid-template-columns: 1fr; gap: 12px; }
}
