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

:root {
  --ink: #191512;
  --muted: #706760;
  --soft: #a39990;
  --line: #eee5dd;
  --paper: #fff;
  --warm: #fbf7f3;
  --cream: #f2e9df;
  --brand: #8a4e18;
  --brand-dark: #63330f;
  --brand-light: #c98748;
  --gold: #e3a760;
  --tech: #61c7ff;
  --shadow: 0 18px 48px rgba(67, 40, 19, .13);
  --max: 1032px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans SC", Arial, sans-serif;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(64, 42, 24, .05);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(32, 20, 10, .07); }
.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 168px;
}
.brand-mark {
  width: 28px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--brand-light);
  font: 800 30px/1 Georgia, serif;
  transform: rotate(-16deg);
}
.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.05;
  letter-spacing: .3px;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: #2e2722;
  font-size: 10px;
  transform: scale(.92);
  transform-origin: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex: 1;
}
.main-nav a {
  position: relative;
  white-space: nowrap;
  color: #231f1b;
  font-size: 13px;
  font-weight: 500;
}
.main-nav a.active,
.main-nav a:hover { color: var(--brand); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: 20px;
  height: 2px;
  background: var(--brand);
  transform: translateX(-50%);
}
.header-actions { display: flex; gap: 12px; }
.btn {
  min-width: 82px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #ead9cb;
  background: #fff;
  color: var(--brand);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(95, 50, 16, .13); }
.btn.solid {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--brand);
  font-size: 25px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 558px;
  padding-top: 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(250,247,245,.89) 42%, rgba(238,226,216,.55) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 38%, rgba(255,255,255,.34) 70%),
    url("assets/hero-chinese-ai-beauty.png") center right / cover;
  filter: saturate(.96) contrast(.98);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 239, 232, .54);
}
.hero-inner {
  position: relative;
  z-index: 1;
  height: 488px;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
}
.hero-copy { padding-top: 10px; }
.eyebrow {
  margin: 0 0 17px;
  color: #24201e;
  font-size: 15px;
  font-weight: 500;
}
.hero h1 {
  margin: 0;
  color: #1b1714;
  font-size: 44px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero h1 span {
  display: inline-block;
  color: var(--brand);
  margin-left: 8px;
}
.lead {
  margin: 22px 0 31px;
  color: #28221e;
  font-size: 15px;
  line-height: 1.9;
}
.hero-cta { display: flex; align-items: center; gap: 19px; }
.primary-link,
.video-link {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.primary-link:hover,
.video-link:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(93, 48, 14, .12); }
.primary-link {
  min-width: 124px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(118, 63, 18, .18);
}
.video-link {
  min-width: 126px;
  gap: 10px;
  border: 1px solid #ddd6d0;
  background: rgba(255,255,255,.9);
  color: #3d352f;
  cursor: pointer;
}
.video-link.secondary { min-width: 112px; }
.video-link span {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 1px solid #96745e;
  border-radius: 50%;
  color: #83552f;
  font-size: 10px;
}

.hero-stage {
  position: relative;
  height: 100%;
}
.hero-person {
  position: absolute;
  right: 42px;
  bottom: 0;
  width: 420px;
  height: 488px;
  object-fit: cover;
  object-position: 59% top;
  border-radius: 0 0 0 36px;
  filter: saturate(.94);
  mix-blend-mode: normal;
  box-shadow: -28px 0 60px rgba(105, 68, 38, .08);
}
.hero-stage::before {
  content: "";
  position: absolute;
  right: 60px;
  bottom: 44px;
  z-index: 1;
  width: 325px;
  height: 185px;
  background: linear-gradient(120deg, rgba(86,197,255,.24), rgba(255,255,255,.04));
  clip-path: polygon(0 0, 100% 28%, 86% 100%, 12% 86%);
  filter: blur(.2px);
  opacity: .78;
}
.hologram {
  position: absolute;
  left: 162px;
  bottom: 66px;
  width: 194px;
  height: 194px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.78) 0 25%, rgba(161,221,255,.28) 45%, rgba(88,184,239,.1) 65%, transparent 72%);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(48, 116, 166, .5);
  animation: holoPulse 4.2s ease-in-out infinite;
}
.hologram::before,
.hologram::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(151, 215, 255, .86);
  border-radius: 50%;
}
.hologram::before { inset: 16px; }
.hologram::after { inset: 43px; }
.holo-ring {
  position: absolute;
  inset: 3px;
  border: 1px dashed rgba(128, 205, 255, .72);
  border-radius: 50%;
}
.holo-ring.two { inset: 31px; transform: rotate(31deg); }
.holo-ring.three { inset: 68px; border-style: solid; }
.holo-logo {
  position: relative;
  z-index: 2;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}
.holo-logo small { font-size: 12px; font-weight: 600; }
.float-card {
  position: absolute;
  z-index: 3;
  min-width: 104px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 28px rgba(55, 42, 31, .12);
  backdrop-filter: blur(7px);
  color: #3a322d;
  animation: floatCard 5.6s ease-in-out infinite;
}
.float-card strong,
.float-card small { display: block; }
.float-card strong { font-size: 15px; line-height: 1.2; }
.float-card small { margin-top: 4px; color: #8d8379; font-size: 11px; }
.float-card.ai { left: 182px; top: 116px; }
.float-card.scan { left: 94px; top: 212px; min-width: 80px; padding: 10px 13px; animation-delay: .45s; }
.float-card.store { left: 78px; top: 278px; min-width: 88px; padding: 10px 13px; animation-delay: .9s; }
.float-card.order { right: 8px; top: 164px; animation-delay: .2s; }
.float-card.data { right: 6px; top: 302px; animation-delay: .7s; }

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

@keyframes holoPulse {
  0%, 100% { transform: scale(1); opacity: .92; }
  50% { transform: scale(1.035); opacity: 1; }
}

.capabilities {
  position: relative;
  z-index: 3;
  margin-top: -77px;
}
.capability-panel {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: rgba(255,255,255,.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.capability-panel article {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-right: 1px solid #eee7e0;
  transition: transform .22s ease, background .22s ease;
}
.capability-panel article:hover { background: #fffaf5; transform: translateY(-2px); }
.capability-panel article:last-child { border-right: 0; }
.line-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--brand);
  border-radius: 50%;
  color: var(--brand);
  font-size: 18px;
}
.capability-panel h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.2;
}
.capability-panel p {
  margin: 0;
  color: #67605a;
  font-size: 12px;
  line-height: 1.55;
}

.comparison { padding: 24px 0 10px; background: #fff; }
.section-heading {
  margin: 0 auto 28px;
  text-align: center;
}
.section-heading.compact { margin-bottom: 20px; }
.section-heading h2 {
  margin: 0 0 6px;
  color: #16120f;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 900;
}
.section-heading p {
  margin: 0;
  color: #8b827a;
  font-size: 13px;
}
.compare-layout {
  display: grid;
  grid-template-columns: 1fr 84px 1.1fr;
  align-items: center;
}
.compare-card {
  overflow: hidden;
  border: 1px solid #eee3da;
  border-radius: 8px;
  background: #fff;
}
.compare-card.pain {
  border-color: #ececec;
  background: #f8f8f8;
}
.compare-card.answer {
  border-color: #efc79f;
  box-shadow: 0 12px 32px rgba(183, 124, 70, .09);
}
.compare-card h3 {
  margin: 0;
  padding: 15px 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  background: linear-gradient(#f7f7f7, #efefef);
}
.compare-card.answer h3 {
  color: var(--brand);
  background: #fffaf4;
}
.compare-body {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 241px;
}
.compare-body img {
  width: 100%;
  height: 241px;
  object-fit: cover;
  object-position: center;
}
.pain .compare-body img {
  filter: grayscale(.88) contrast(.9);
  object-position: center;
}
.compare-body ul {
  margin: 0;
  padding: 16px 18px;
  list-style: none;
}
.compare-body li {
  position: relative;
  min-height: 38px;
  padding-left: 26px;
  margin-bottom: 7px;
}
.compare-body li:last-child { margin-bottom: 0; }
.compare-body span {
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}
.pain .compare-body span {
  background: #ddd7d2;
  color: #856f60;
}
.answer .compare-body span {
  background: var(--gold);
  color: #fff;
}
.compare-body strong {
  display: block;
  color: #6d3b13;
  font-size: 13px;
  line-height: 1.2;
}
.pain .compare-body strong { color: #5c5049; }
.compare-body small {
  display: block;
  margin-top: 4px;
  color: #8e867f;
  font-size: 11px;
  line-height: 1.25;
}
.vs-block {
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--brand-light);
}
.vs-block b {
  font-size: 33px;
  line-height: 1;
}
.vs-block span {
  width: 68px;
  height: 47px;
  clip-path: polygon(0 28%, 58% 28%, 58% 0, 100% 50%, 58% 100%, 58% 72%, 0 72%);
  background: linear-gradient(90deg, rgba(198,133,70,.15), rgba(198,133,70,.58));
}

.growth {
  padding: 20px 0 18px;
  background: #fff;
}
.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.step-row article {
  position: relative;
  min-height: 94px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 11px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(44, 27, 13, .06);
}
.step-row article:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -31px;
  top: 50%;
  color: var(--brand-light);
  font-size: 26px;
  transform: translateY(-50%);
}
.step-row b {
  position: absolute;
  left: 21px;
  top: 10px;
  color: var(--brand);
  font-size: 15px;
  font-style: italic;
}
.step-row span {
  grid-row: 1 / 3;
  display: grid;
  place-items: end center;
  height: 50px;
  color: var(--brand);
  font-size: 28px;
}
.step-row h3 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.2;
}
.step-row p {
  margin: 0;
  color: #82786f;
  font-size: 11px;
  line-height: 1.55;
}

.stats-cta { padding: 0 0 28px; background: #fff; }
.stats-panel {
  min-height: 132px;
  display: grid;
  grid-template-columns: 63% 37%;
  overflow: hidden;
  border-radius: 5px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(45,30,20,.96), rgba(64,42,25,.86)),
    url("assets/wig-store-busy-cn.png") center / cover;
}
.stats-copy { padding: 28px 37px 26px; }
.goal-label,
.seo-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}
.stats-copy h2,
.join-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.metric-row p { margin: 0; }
.metric-row strong {
  display: block;
  color: #f1a74b;
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}
.metric-row span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.84);
  font-size: 12px;
}
.join-card {
  padding: 28px 28px;
  background: rgba(75, 48, 26, .78);
}
.join-card p {
  margin: 13px 0 20px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  line-height: 1.7;
}
.join-card .role-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.role-card {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  border-radius: 5px;
  background: #fff;
  color: var(--brand);
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: 0 10px 22px rgba(25, 14, 8, .14);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.role-card.primary {
  background: linear-gradient(135deg, #fff, #fff5e8);
  border-color: #f5bc79;
}
.role-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(25, 14, 8, .2);
}
.role-card strong {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
}
.role-card small {
  color: #80614b;
  font-size: 11px;
  line-height: 1.35;
}

.page-plan {
  padding: 64px 0 76px;
  background:
    linear-gradient(180deg, #fff 0%, #faf8f5 22%, #f6efe8 100%);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.plan-grid article {
  min-height: 286px;
  padding: 24px;
  border: 1px solid #eee3da;
  border-radius: 8px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan-grid article:hover {
  transform: translateY(-4px);
  border-color: #e5c6aa;
  box-shadow: 0 18px 36px rgba(70, 43, 21, .09);
}
.plan-grid span {
  color: var(--brand-light);
  font-size: 14px;
  font-weight: 800;
}
.plan-grid h3 {
  margin: 8px 0 12px;
  font-size: 18px;
}
.plan-grid p,
.plan-grid li {
  color: #6f665f;
  font-size: 13px;
  line-height: 1.7;
}
.plan-grid ul {
  margin: 15px 0 0;
  padding-left: 18px;
}

.news-preview {
  background: linear-gradient(180deg, #fff 0%, #faf8f5 24%, #f6efe8 100%);
}

.home-news-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: start;
}

.home-news-cats,
.home-news-feature,
.home-news-grid article {
  border: 1px solid #eee3da;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 32px rgba(70, 43, 21, .06);
}

.home-news-cats {
  padding: 22px;
}

.home-news-cats h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.home-news-cats a {
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  color: #66584f;
  font-size: 13px;
  font-weight: 800;
}

.home-news-cats a + a {
  margin-top: 8px;
}

.home-news-cats a.active,
.home-news-cats a:hover {
  background: var(--brand);
  color: #fff;
}

.home-news-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  margin-bottom: 18px;
}

.home-news-feature img {
  width: 100%;
  height: 246px;
  object-fit: cover;
}

.home-news-feature div {
  padding: 28px;
}

.home-news-feature span,
.home-news-grid span {
  display: inline-flex;
  min-width: 64px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff1e3;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.home-news-feature h3 {
  margin: 16px 0 12px;
  font-size: 24px;
  line-height: 1.35;
}

.home-news-feature p,
.home-news-grid p {
  margin: 0 0 14px;
  color: #6f655d;
  font-size: 13px;
  line-height: 1.7;
}

.home-news-feature small {
  color: #9a8f87;
  font-size: 12px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-news-grid article {
  overflow: hidden;
}

.home-news-grid img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.home-news-grid div {
  padding: 15px;
}

.home-news-grid h3 {
  margin: 10px 0 8px;
  font-size: 15px;
  line-height: 1.42;
}

.news-more {
  width: 180px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 22px auto 0;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.side-tools {
  position: fixed;
  right: 0;
  top: 51%;
  z-index: 12;
  display: grid;
  width: 64px;
  overflow: hidden;
  border: 1px solid #eee4da;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(36, 22, 11, .1);
  transform: translateY(-50%);
}
.side-tools a {
  min-height: 70px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 7px 3px;
  border-bottom: 1px solid #f0e7df;
  color: #8d5b34;
  text-align: center;
  font-size: 11px;
}
.side-tools a:last-child { border-bottom: 0; }
.side-tools span {
  display: block;
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}
.site-footer { display: none; }

@media (max-width: 1100px) {
  :root { --max: 940px; }
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 12px; }
  .hero-inner { grid-template-columns: 45% 55%; }
  .hero-person { right: 34px; }
  .hologram { left: 126px; }
  .float-card.ai { left: 142px; }
  .float-card.scan { left: 70px; }
  .float-card.store { left: 54px; }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 32px, 720px); }
  .header-actions { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 18px;
    background: #fff;
    box-shadow: 0 18px 30px rgba(32, 20, 10, .08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .main-nav a.active::after { display: none; }
  .hero { min-height: auto; }
  .hero-inner {
    height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 60px 0 118px;
  }
  .hero-copy { max-width: 560px; }
  .hero-stage { min-height: 440px; }
  .hero-person { right: 40px; height: 430px; }
  .hologram { left: 45%; bottom: 56px; }
  .float-card.ai { left: 35%; }
  .float-card.scan { left: 18%; }
  .float-card.store { left: 15%; }
  .capabilities { margin-top: -88px; }
  .capability-panel,
  .compare-layout,
  .step-row,
  .plan-grid,
  .home-news-layout,
  .home-news-feature,
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .home-news-layout,
  .home-news-feature { grid-template-columns: 1fr; }
  .home-news-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-layout { gap: 18px; }
  .vs-block { display: none; }
  .step-row { gap: 18px; }
  .step-row article::after { display: none; }
  .stats-panel { grid-template-columns: 1fr; }
  .side-tools { display: none; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 430px); }
  .brand { min-width: 0; }
  .hero h1 { font-size: 34px; }
  .lead br { display: none; }
  .hero-cta { flex-wrap: wrap; }
  .hero-stage { min-height: 360px; }
  .hero-person {
    right: 0;
    width: 280px;
    height: 360px;
  }
  .hologram {
    left: 8px;
    bottom: 50px;
    width: 150px;
    height: 150px;
  }
  .float-card { display: none; }
  .capability-panel,
  .compare-layout,
  .step-row,
  .plan-grid,
  .home-news-grid,
  .metric-row { grid-template-columns: 1fr; }
  .capability-panel article { border-right: 0; border-bottom: 1px solid #eee7e0; }
  .capability-panel article:last-child { border-bottom: 0; }
  .compare-body { grid-template-columns: 1fr; }
  .compare-body img { height: 220px; }
  .pain .compare-body img { object-position: center 32%; }
  .stats-copy,
  .join-card { padding: 24px; }
  .join-card div { grid-template-columns: 1fr; }
}
