/* Them AI v2 — design language learned from chatgpt.com/codex + /overview */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --ink: #0d0d0d;
  --gray: #5d5d5d;
  --mut: #8e8e8a;
  --card: #f4f4f3;
  --line: rgba(0, 0, 0, 0.07);
  --violet: #6e56cf;
  --sans: -apple-system-body, ui-sans-serif, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: #fff; font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 10px; padding: 14px 24px; background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.nav .brand { display: flex; align-items: center; gap: 9px; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.nav .brand svg { width: 28px; height: 28px; }
.nav .links { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav .links a { font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 99px; color: var(--gray); }
.nav .links a:hover { background: rgba(0, 0, 0, 0.05); color: var(--ink); }
.nav .links a.pill { background: var(--ink); color: #fff; padding: 10px 20px; }
.nav .links a.pill:hover { background: #2c2c2e; }

/* hero */
.hero { position: relative; text-align: center; padding: 96px 24px 84px; overflow: hidden; }
.hero .bg { position: absolute; inset: 0; z-index: -1; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0) 55%, #fff 100%); }
.hero .mark { width: 84px; height: 84px; margin: 0 auto 34px; border-radius: 22px; background: rgba(255, 255, 255, 0.9); box-shadow: 0 8px 40px rgba(20, 10, 60, 0.14); display: flex; align-items: center; justify-content: center; animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .mark svg { width: 52px; height: 52px; }
.eyebrow { font-size: 14px; font-weight: 500; color: var(--gray); letter-spacing: -0.01em; margin-bottom: 18px; animation: rise 0.8s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both; }
h1.display { font-size: clamp(44px, 7.2vw, 84px); font-weight: 700; line-height: 1.0; letter-spacing: -0.047em; max-width: 15ch; margin: 0 auto; animation: rise 0.8s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .sub { font-size: clamp(17px, 2vw, 21px); color: var(--gray); margin: 26px auto 0; max-width: 52ch; animation: rise 0.8s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both; }
.cta-row { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 36px; animation: rise 0.8s 0.36s cubic-bezier(0.22, 1, 0.36, 1) both; }
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; font-size: 15px; font-weight: 500; padding: 13px 26px; border-radius: 99px; }
.btn:hover { background: #2c2c2e; }
.tlink { font-size: 15px; font-weight: 500; color: var(--ink); }
.tlink::after { content: " \2197"; }
.tlink:hover { color: var(--gray); }
.fine { font-size: 13px; color: var(--mut); margin-top: 22px; animation: rise 0.8s 0.44s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* rhythm */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.statement { text-align: center; font-size: clamp(30px, 4.4vw, 48px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.06; max-width: 22ch; margin: 0 auto; }
.statement .quiet { color: var(--mut); }
h2 { font-size: clamp(26px, 3.2vw, 34px); font-weight: 500; letter-spacing: -0.022em; line-height: 1.14; }
.lede { font-size: 17.5px; color: var(--gray); margin-top: 16px; max-width: 62ch; }
.k { font-size: 13px; font-weight: 500; color: var(--mut); text-transform: none; margin-bottom: 12px; }

/* media cards */
.media { border-radius: 24px; overflow: hidden; margin-top: 40px; background: var(--card); }
.media img { width: 100%; height: auto; }
.card { background: var(--card); border-radius: 24px; padding: 30px; }
.card h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--gray); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 860px) { .grid2, .grid3 { grid-template-columns: 1fr; } }

/* who list */
.wholist { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
.wholist div { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; letter-spacing: -0.01em; }
@media (max-width: 760px) { .wholist { grid-template-columns: 1fr; } }
.who-close { margin-top: 36px; font-size: 20px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.4; }
.who-close .quiet { color: var(--mut); }

/* loop steps */
.steps { margin-top: 42px; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 84px 1fr 1.4fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.step .n { font-size: 14px; font-weight: 500; color: var(--mut); font-variant-numeric: tabular-nums; }
.step b { font-size: 19px; font-weight: 500; letter-spacing: -0.015em; }
.step p { font-size: 15.5px; color: var(--gray); }
@media (max-width: 760px) { .step { grid-template-columns: 60px 1fr; } .step p { grid-column: 2; } }

/* teammates */
.mates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
@media (max-width: 860px) { .mates { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .mates { grid-template-columns: 1fr; } }
.mate { background: var(--card); border-radius: 20px; padding: 24px; }
.mate img { width: 56px; height: 56px; border-radius: 16px; margin-bottom: 14px; }
.mate b { display: block; font-size: 16.5px; font-weight: 500; letter-spacing: -0.01em; }
.mate p { font-size: 14px; color: var(--gray); margin-top: 4px; }

/* chant */
.chant { text-align: center; font-size: clamp(24px, 3.4vw, 38px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.3; }
.chant .quiet { color: var(--mut); }

/* faq */
.faq { max-width: 760px; margin: 40px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 300; color: var(--mut); transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 24px; font-size: 15.5px; color: var(--gray); max-width: 60ch; }
.faq .a p + p { margin-top: 10px; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 44px 24px 60px; }
footer .frow { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
footer .brand { display: flex; align-items: center; gap: 8px; font-weight: 600; letter-spacing: -0.01em; }
footer .brand svg { width: 22px; height: 22px; }
footer .fl { margin-left: auto; display: flex; gap: 22px; font-size: 13.5px; color: var(--gray); }
footer .fl a:hover { color: var(--ink); }
footer .note { max-width: 1080px; margin: 18px auto 0; font-size: 12.5px; color: var(--mut); }

/* final cta band */
.band { text-align: center; padding: 100px 24px; position: relative; overflow: hidden; }
.band .bg { position: absolute; inset: 0; z-index: -1; }
.band .bg img { width: 100%; height: 100%; object-fit: cover; }
.band .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(255,255,255,0) 40%, #fff 100%); }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(14px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.rv.in { opacity: 1; transform: none; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* story page */
.prose { max-width: 680px; margin: 0 auto; }
.prose h2 { margin-top: 64px; }
.prose p { font-size: 17.5px; color: #2c2c2e; margin-top: 18px; line-height: 1.65; }
.prose .quiet { color: var(--mut); }
.storyhero { text-align: center; padding: 110px 24px 70px; position: relative; overflow: hidden; }
.storyhero .bg { position: absolute; inset: 0; z-index: -1; }
.storyhero .bg img { width: 100%; height: 100%; object-fit: cover; }
.storyhero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.1) 30%, #fff 100%); }

/* brand accents: olive (human) and brick (agent), used sparingly */
.k { color: #6f7826; }
.step .n { color: #6f7826; }
.faq details[open] summary::after { color: #a24f4f; }
.tlink:hover { color: #a24f4f; }
.eyebrow { color: #6f7826; }
.nav .brand .tmimg { width: 28px; height: auto; }
footer .brand .tmimg { width: 22px; height: auto; }
.hero .mark .tmimg { width: 52px; height: auto; }

/* product showcase cards, codex-style */
.shot { border-radius: 26px; padding: clamp(20px, 4.5vw, 52px); background: linear-gradient(135deg, #ece7f9 0%, #f7f4fc 55%, #fdf9f2 100%); margin-top: 40px; }
.shot img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 30px 90px rgba(24, 12, 64, 0.22); display: block; }
.shot + .shot { margin-top: 26px; }
.shotlbl { font-size: 14px; font-weight: 500; color: var(--gray); margin: 34px 0 -26px; text-align: center; }

/* tabbed showcase */
.showtabs { display: flex; gap: 2px; width: fit-content; margin: 36px auto 0; background: #ececec; border-radius: 99px; padding: 4px; }
.showtabs button { font-size: 14.5px; font-weight: 500; padding: 8px 24px; border-radius: 99px; color: #5d5d5d; cursor: pointer; border: 0; background: transparent; font-family: inherit; transition: color 0.2s; }
.showtabs button[data-on="true"] { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12); }
.showshot img { transition: opacity 0.22s ease; }
.showcap { font-size: 14px; color: var(--gray); text-align: center; margin-top: 18px; }

/* product carousel */
.carhead { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.carbtns { display: flex; gap: 8px; }
.carbtns button { width: 38px; height: 38px; border-radius: 99px; border: 1px solid var(--line); background: #fff; font-size: 16px; color: var(--ink); cursor: pointer; }
.carbtns button:hover { background: var(--card); }
.car { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; margin-top: 30px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.car::-webkit-scrollbar { display: none; }
.car .slide { flex: 0 0 min(720px, 86%); scroll-snap-align: start; background: var(--card); border-radius: 24px; padding: 26px 26px 0; overflow: hidden; }
.car .slide h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }
.car .slide p { font-size: 14.5px; color: var(--gray); margin-top: 5px; }
.car .slide img { width: 100%; border-radius: 14px 14px 0 0; box-shadow: 0 18px 60px rgba(24, 12, 64, 0.16); margin-top: 20px; display: block; }

/* animated learning loop */
.loopwrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: center; margin-top: 42px; }
@media (max-width: 880px) { .loopwrap { grid-template-columns: 1fr; } }
.loop-d { width: 100%; max-width: 440px; margin: 0 auto; display: block; }
.loop-d .ring { animation: loopspin 48s linear infinite; transform-origin: 230px 230px; }
@keyframes loopspin { to { transform: rotate(360deg); } }
.loop-d .halo { opacity: 0; animation: halo 12.5s infinite; }
.loop-d .h1 { animation-delay: 0s; } .loop-d .h2 { animation-delay: 2.5s; } .loop-d .h3 { animation-delay: 5s; }
.loop-d .h4 { animation-delay: 7.5s; } .loop-d .h5 { animation-delay: 10s; }
@keyframes halo { 0%, 20%, 100% { opacity: 0; } 6%, 14% { opacity: 1; } }
.loopwrap .steps { margin-top: 0; }
.loopwrap .step { grid-template-columns: 52px 1fr; padding: 20px 0; }
.loopwrap .step p { grid-column: 2; }

/* color correction: neutral chrome; color only in logo + imagery */
.k, .eyebrow, .step .n { color: #8e8e8a; }
.tlink:hover { color: var(--gray); }
.faq details[open] summary::after { color: var(--gray); }
.loop-d .halo { stroke: #0d0d0d; }

/* richer codex-grade gradient cards */
.shot { background: linear-gradient(148deg, #a292ec 0%, #c9bef4 38%, #eae4fb 72%, #f9f7fe 100%); }
.car .slide { background: var(--card); }

/* cinematic story chapters */
.film { position: relative; min-height: 94vh; display: flex; align-items: center; padding: 70px 5vw; overflow: hidden; }
.film .fbg { position: absolute; inset: 0; z-index: -1; background: #fff; }
.film .fbg img { width: 100%; height: 100%; object-fit: cover; }
.film .panel {
  background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 26px; padding: 42px 44px;
  max-width: 580px; box-shadow: 0 30px 90px rgba(20, 10, 40, 0.12);
}
.film.right .panel { margin-left: auto; }
.film .panel .k { text-align: left; margin-bottom: 10px; }
.film .panel h2 { text-align: left; margin: 0; max-width: none; }
.film .panel p { font-size: 16.5px; color: #2c2c2e; margin-top: 16px; line-height: 1.6; }
.film .panel p.quiet { color: var(--mut); }
.film .fcap { position: absolute; left: 0; right: 0; bottom: 20px; text-align: center; font-size: 13px; color: rgba(13, 13, 13, 0.5); }
.storyhero { min-height: 88vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.scrollcue { margin-top: 44px; font-size: 13px; color: var(--mut); animation: cuebob 2.4s ease-in-out infinite; }
@keyframes cuebob { 0%, 100% { transform: none; } 50% { transform: translateY(7px); } }
@media (max-width: 720px) { .film { padding: 40px 18px; align-items: flex-end; padding-bottom: 70px; } .film .panel { padding: 28px 24px; } }
.herovid video { width: 100%; border-radius: 14px; box-shadow: 0 30px 90px rgba(24, 12, 64, 0.22); display: block; }
.hero { padding-top: 120px; }

/* real product crops inline */
.crop { background: var(--card); border-radius: 24px; padding: clamp(18px, 3.5vw, 38px); margin-top: 36px; }
.crop img { width: 100%; border-radius: 12px; box-shadow: 0 14px 50px rgba(20, 10, 40, 0.12); display: block; }
.cardimg { margin-top: 20px; border-radius: 12px; box-shadow: 0 10px 36px rgba(20, 10, 40, 0.10); width: 100%; display: block; }
.ctrlwrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; text-align: left; }
@media (max-width: 860px) { .ctrlwrap { grid-template-columns: 1fr; } }
.cropcap { font-size: 13px; color: var(--mut); text-align: center; margin-top: 12px; }

/* learning loop: one real screenshot per step */
.lstep { display: grid; grid-template-columns: 0.85fr 1.35fr; gap: 44px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line); }
.lstep:last-of-type { border-bottom: 0; }
@media (max-width: 860px) { .lstep { grid-template-columns: 1fr; gap: 20px; } }
.lstep .n { font-size: 14px; font-weight: 500; color: var(--mut); font-variant-numeric: tabular-nums; }
.lstep b { display: block; font-size: 21px; font-weight: 500; letter-spacing: -0.02em; margin-top: 6px; }
.lstep p { font-size: 15.5px; color: var(--gray); margin-top: 8px; max-width: 40ch; }
.lstep .lshot { background: var(--card); border-radius: 20px; padding: clamp(14px, 2.4vw, 26px); }
.lstep .lshot img { width: 100%; border-radius: 10px; box-shadow: 0 12px 44px rgba(20, 10, 40, 0.12); display: block; }
.loop-d.small { max-width: 340px; margin: 42px auto 6px; }

/* ============ HOME REDESIGN (hx) ============ */
.hx-sec { padding: 96px 0; }
.hx-band { background: #f7f7f5; }
.hx-dark { background: #0d0d0d; color: #fff; }
.hx-dark h2 { color: #fff; }
.hx-dark .lede { color: #b4b4b0; }
.hx-dark .k { color: #8e8e8a; }

/* signature: who-is-them illumination list */
.who-lines { max-width: 880px; margin: 44px auto 0; }
.who-line {
  font-size: clamp(22px, 3.1vw, 34px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.22;
  padding: 18px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  color: #c9c9c4; transition: color 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(6px);
}
.who-line.lit { color: #0d0d0d; transform: none; }
.who-line:first-child { border-top: 1px solid rgba(0, 0, 0, 0.07); }
.who-close2 { max-width: 880px; margin: 40px auto 0; font-size: 19px; line-height: 1.5; }
.who-close2 .quiet { color: var(--mut); }

/* editorial problem columns: rules, no boxes */
.probcols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 44px; }
@media (max-width: 760px) { .probcols { grid-template-columns: 1fr; } }
.probcols > div { border-top: 2px solid #0d0d0d; padding-top: 18px; }
.probcols b { display: block; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.probcols p { font-size: 15.5px; color: var(--gray); margin-top: 8px; }

/* dark control section crop treatment */
.hx-dark .crop { background: rgba(255, 255, 255, 0.06); }
.hx-dark .crop img { box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55); }
.hx-dark .cropcap { color: #8e8e8a; }

/* teammates: tighter cards */
.mates { gap: 12px; }
.mate { background: #fff; border: 1px solid rgba(0, 0, 0, 0.08); padding: 18px 20px; display: flex; gap: 14px; align-items: center; }
.mate img { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 0; flex-shrink: 0; }
.mate b { font-size: 15.5px; }
.mate p { font-size: 13.5px; margin-top: 2px; }

/* vision timeline columns */
.vision3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-top: 46px; }
@media (max-width: 860px) { .vision3 { grid-template-columns: 1fr; } }
.vision3 > div { border-top: 2px solid #0d0d0d; padding-top: 18px; }
.vision3 .vt { font-size: 13px; font-weight: 500; color: var(--mut); }
.vision3 b { display: block; font-size: 17.5px; font-weight: 600; letter-spacing: -0.01em; margin-top: 6px; }
.vision3 p { font-size: 14.5px; color: var(--gray); margin-top: 8px; }
.vision3 .cardimg { margin-top: 16px; }

/* hero composure */
.hero { padding-top: 130px; padding-bottom: 0; }
.hero .bg::after { background: linear-gradient(to bottom, rgba(255,255,255,0) 68%, #fff 100%); }
.hero .herowrap { max-width: 1080px; margin: 54px auto 0; padding: 0 24px 8px; }
.statement.sm { font-size: clamp(24px, 3.2vw, 36px); }
.hx-sec .statement { margin-bottom: 0; }
.secgap { height: 26px; }
.nav .links a.storylink { color: #0d0d0d; font-weight: 600; }
.nav .links a.storylink:hover { background: rgba(0, 0, 0, 0.05); }

/* nav underline hovers, like the hero work/AI swashes */
.nav .links a:not(.pill) { position: relative; }
.nav .links a:not(.pill)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2.5px; border-radius: 99px;
  background: #6f7826; transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav .links a:not(.pill):nth-child(even)::after { background: #a24f4f; }
.nav .links a:not(.pill):hover { background: none; color: #0d0d0d; }
.nav .links a:not(.pill):hover::after { transform: scaleX(1); }

@media (max-width: 840px) {
  .nav { padding: 12px 14px; gap: 6px; }
  .nav .brand { font-size: 16.5px; white-space: nowrap; gap: 7px; }
  .nav .brand .tmimg { width: 24px; }
  .nav .links { gap: 0; }
  .nav .links a { white-space: nowrap; padding: 8px 10px; }
  .nav .links a.pill { padding: 9px 14px; }
  footer .fl a, footer a { padding: 8px 6px; display: inline-block; }
  footer .fl { flex-wrap: wrap; justify-content: center; row-gap: 2px; }
  footer .frow { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
  footer .nvb { display: block; margin: 0 auto; height: 40px; }
  .nav .links { gap: 2px; }
  .nav .links a:not(.pill):not(.storylink) { display: none; }
  .nav .links a.pill { padding: 9px 16px; }
}

footer .nvb { height: 44px; width: auto; display: inline-block; vertical-align: middle; }
.navburger { display: none; }
.navsheet[hidden] { display: none; }
@media (max-width: 840px) {
  .navburger { display: inline-flex; flex-direction: column; gap: 4.5px; justify-content: center; background: transparent; border: 0; padding: 10px 8px; cursor: pointer; }
  .navburger span { width: 20px; height: 2px; background: #0d0d0d; border-radius: 2px; display: block; }
  .navsheet { position: fixed; top: 54px; left: 0; right: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10); padding: 14px 18px 20px; display: flex; flex-direction: column; gap: 2px; z-index: 49; }
  .navsheet a { font-size: 17px; font-weight: 500; padding: 12px 10px; border-radius: 12px; color: #0d0d0d; }
  .navsheet a.pill { background: #0d0d0d; color: #fff; text-align: center; margin-top: 8px; padding: 13px; border-radius: 99px; }

}

img[width] { height: auto; }
