/* AI Tech Stacks — design system
   AI product development · Applied AI engineering · ML platform services

   Diverged from the StackGrains stylesheet: warm ember palette, bento
   service grid, gradient-border cards and a marquee logo strip. Shared
   structure (wrap/section/article) still matches so article markup is
   interchangeable between the two sites. */

:root {
  /* Warm near-black surfaces */
  --ember-900: #0a0705;
  --ember-800: #140c06;
  --ember-700: #23140a;

  --ink:      #1a1310;
  --body:     #5d5149;
  --muted:    #8b7d73;
  --line:     #ece3db;
  --line-soft:#f6f0ea;
  --surface:  #ffffff;
  --canvas:   #fdf9f5;

  --brand:    #ff6a1f;
  --brand-dk: #e0520b;
  --accent:   #ffb020;
  --accent-2: #ff2d6f;

  --radius:    16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(40,20,8,.06), 0 1px 3px rgba(40,20,8,.05);
  --shadow-md: 0 10px 30px rgba(40,20,8,.09);
  --shadow-lg: 0 28px 70px rgba(20,10,4,.30);
  --glow:      0 8px 26px rgba(255,106,31,.36);

  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Reusable brand gradient */
  --grad: linear-gradient(115deg, var(--brand), var(--accent));
  --grad-hot: linear-gradient(115deg, var(--accent-2), var(--brand) 45%, var(--accent));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.028em;
  margin: 0 0 .6rem;
  font-weight: 700;
}

a { color: var(--brand-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

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

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,251,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -.03em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
  display: block;
  object-fit: contain;
}
.brand small {
  display: block;
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--body);
  font-size: .93rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--brand-dk); text-decoration: none; }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: #fff; }
.nav-cta { margin-left: .6rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: .45rem .6rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .94rem;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background-image: var(--grad);
  background-color: var(--brand);
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(255,106,31,.46); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dk); }
.btn-light {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-light:hover { background: rgba(255,255,255,.18); }
.btn-sm { padding: .56rem 1.1rem; font-size: .88rem; }

/* ---------- Sections ---------- */
section { padding: 6rem 0; }
.section-alt { background: var(--canvas); }

.eyebrow {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .9rem;
}
.section-head { max-width: 700px; margin-bottom: 3.2rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { font-size: 1.06rem; margin: 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ember-900);
  color: #c8b6aa;
  padding: 6.5rem 0 5.5rem;
}
/* Mesh glow */
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(46% 42% at 78% 8%, rgba(255,176,32,.30), transparent 70%),
    radial-gradient(44% 46% at 16% 4%, rgba(255,106,31,.42), transparent 68%),
    radial-gradient(38% 40% at 52% 96%, rgba(255,45,111,.24), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}
/* Grid + grain */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 18%, transparent 76%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 18%, transparent 76%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 4rem;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  letter-spacing: -.04em;
  line-height: 1.06;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: normal;
  background-image: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  font-size: 1.15rem;
  color: #bda99b;
  max-width: 34rem;
  margin: 0 0 2.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem 1rem .4rem .62rem;
  border: 1px solid rgba(255,176,32,.32);
  background: rgba(255,106,31,.10);
  border-radius: 999px;
  font-size: .8rem;
  color: #ffcf9a;
  margin-bottom: 1.7rem;
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,176,32,.20);
}

/* Hero code card */
.hero-card {
  position: relative;
  background: rgba(18,10,5,.72);
  border: 1px solid rgba(255,176,32,.20);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.hero-card .bar {
  display: flex; align-items: center; gap: .45rem;
  padding: .82rem 1.05rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.035);
}
.hero-card .bar i {
  width: 10px; height: 10px; border-radius: 50%; display: block;
}
.hero-card .bar span {
  margin-left: auto; font-size: .74rem; color: #9a8577; letter-spacing: .06em;
  font-family: var(--mono);
}
.hero-card pre {
  margin: 0;
  padding: 1.35rem 1.45rem 1.65rem;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 1.85;
  color: #b09a8b;
  overflow-x: auto;
}
.hero-card .k { color: #ffa04d; }
.hero-card .s { color: #ffd479; }
.hero-card .c { color: #7d685c; }
.hero-card .v { color: #fff1e4; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4.2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.11);
  position: relative; z-index: 1;
}
.hero-stats b {
  display: block;
  font-size: 1.85rem;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.15;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats span { font-size: .85rem; color: #a08d80; }

/* ---------- Marquee trust strip ---------- */
.strip {
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.strip p {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-weight: 700;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee ul {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover ul { animation-play-state: paused; }
.marquee li {
  font-weight: 700;
  font-size: 1.02rem;
  color: #a9998e;
  letter-spacing: -.015em;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.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;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
/* Gradient hairline on hover */
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.card p { margin: 0; font-size: .95rem; }
.card ul {
  margin: 1.15rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
  font-size: .87rem;
}
.card ul li { padding-left: 1.25rem; position: relative; margin-bottom: .4rem; }
.card ul li::before {
  content: "";
  position: absolute; left: 0; top: .58em;
  width: 7px; height: 7px; border-radius: 2px;
  background-image: var(--grad);
}
.icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(255,106,31,.14), rgba(255,176,32,.16));
  color: var(--brand-dk);
}
.icon svg { width: 23px; height: 23px; }

/* Bento: first tile spans two columns and goes dark */
.bento { grid-template-columns: repeat(3, 1fr); }
.bento .card:first-child,
.bento .card:last-child { grid-column: span 2; }
.card--dark {
  background-color: var(--ember-800);
  background-image:
    radial-gradient(60% 120% at 88% 8%, rgba(255,106,31,.30), transparent 70%),
    radial-gradient(50% 100% at 10% 100%, rgba(255,45,111,.18), transparent 70%);
  border-color: rgba(255,176,32,.20);
  color: #c3b1a4;
}
.card--dark h3 { color: #fff; }
.card--dark p { color: #bda99b; }
.card--dark ul { border-top-color: rgba(255,255,255,.10); color: #b6a397; }
.card--dark .icon {
  background: rgba(255,176,32,.14);
  color: var(--accent);
}

/* ---------- Process ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 2.3rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-size: .8rem; font-weight: 800;
  letter-spacing: .12em;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step::after {
  content: "";
  position: absolute; top: .6rem; left: 2.5rem; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,106,31,.35), transparent);
}
.step h3 { font-size: 1.07rem; margin: .65rem 0 .45rem; }
.step p { font-size: .92rem; margin: 0; }

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.checklist { list-style: none; margin: 1.9rem 0 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.15rem;
  font-size: .97rem;
}
.checklist li strong { color: var(--ink); display: block; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: .15rem;
  width: 23px; height: 23px; border-radius: 8px;
  background-color: rgba(255,106,31,.13);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0520b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Tech stack ---------- */
.stack-group { margin-bottom: 1.9rem; }
.stack-group h4 {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .9rem;
}
.tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.tag {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 9px;
  padding: .42rem .85rem;
  font-size: .85rem;
  color: var(--ink);
  font-weight: 500;
  transition: border-color .16s ease, color .16s ease;
}
.tag:hover { border-color: rgba(255,106,31,.5); color: var(--brand-dk); }

/* ---------- Insights ---------- */
.post {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.post:hover {
  border-color: rgba(255,106,31,.42);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.post .thumb {
  height: 132px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .02em;
  position: relative;
}
.post .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 26px 26px;
}
.post .thumb span { position: relative; z-index: 1; }
.post .body { padding: 1.35rem 1.45rem 1.55rem; display: flex; flex-direction: column; flex: 1; }
.post .kicker {
  font-size: .69rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-dk);
  font-weight: 700;
  margin-bottom: .55rem;
}
.post h3 { font-size: 1.03rem; margin-bottom: .45rem; }
.post h3 a { color: var(--ink); }
.post h3 a:hover { color: var(--brand-dk); text-decoration: none; }
.post p { font-size: .9rem; margin: 0 0 1rem; }
.post .more {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand-dk);
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background-color: var(--ember-800);
  background-image:
    radial-gradient(50% 130% at 88% 0%, rgba(255,176,32,.30), transparent 68%),
    radial-gradient(46% 120% at 8% 100%, rgba(255,45,111,.22), transparent 70%);
  color: #c3b1a4;
  border-radius: var(--radius-lg);
  padding: 3.6rem;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2.5rem;
  align-items: center;
}
.cta h2 { color: #fff; font-size: clamp(1.65rem, 3.1vw, 2.2rem); }
.cta p { margin: 0; font-size: 1.02rem; }
.cta-actions { display: flex; flex-direction: column; gap: .8rem; }
.cta-actions .btn { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ember-900);
  color: #9c8b80;
  padding: 4.2rem 0 2rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #8d7c71; }
.site-footer .about { margin: 1.15rem 0 0; max-width: 24rem; }
.site-footer h5 {
  color: #fff;
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 700;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: #9c8b80; }
.site-footer a:hover { color: var(--accent); }
.footer-note {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.7rem;
  font-size: .84rem;
  color: #7b6c62;
}

/* ---------- Article pages ---------- */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 3.6rem 1.5rem 1rem;
}
.article .crumbs {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.article h1 {
  font-size: clamp(1.95rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
.article h2 {
  font-size: 1.34rem;
  margin-top: 2.7rem;
}
.article h3 { font-size: 1.08rem; margin-top: 1.9rem; }
.article p { font-size: 1.04rem; }
.article ul { padding-left: 1.2rem; }
.article li { margin-bottom: .6rem; }
.article li::marker { color: var(--brand); }
.article strong { color: var(--ink); }
.article .meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  padding-bottom: 1.8rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid var(--line);
  font-size: .84rem;
  color: var(--muted);
}
.article .meta .tag { font-size: .76rem; padding: .24rem .65rem; }
.article .further {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 11px;
  padding: 1rem 1.2rem;
  font-size: .92rem;
  margin: 2rem 0;
}
.article .table-wrap {
  overflow-x: auto;
  margin: 1.8rem 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.article table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}
.article th,
.article td {
  padding: .74rem .95rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.article th {
  background: linear-gradient(135deg, rgba(255,106,31,.10), rgba(255,176,32,.10));
  color: var(--ink);
  font-weight: 700;
  font-size: .73rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.article tr:last-child td { border-bottom: 0; }
.article .endcap {
  margin: 3.2rem 0 1rem;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
}
.article .endcap h3 { font-size: 1.12rem; margin-top: 0; }
.article .endcap p { font-size: .95rem; margin: 0 0 1.2rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .cta { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card:first-child,
  .bento .card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .cta { padding: 2.4rem; }
  .step::after { display: none; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.5rem 1.2rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .78rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { margin: .9rem 0 0; justify-content: center; }
  .nav-toggle { display: block; }
  section { padding: 4rem 0; }
  .grid-2, .grid-3, .grid-4, .bento { grid-template-columns: 1fr; }
  .bento .card:first-child,
  .bento .card:last-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .split { gap: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee ul { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; }
}
